diff --git a/CMakeLists.txt b/CMakeLists.txt index d8394e9a..ea171888 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,7 @@ option(ISLE_USE_SMARTHEAP "Build with SmartHeap" ${MSVC}) option(ISLE_USE_DX5 "Build with internal DirectX 5 SDK" ON) add_library(lego1 SHARED + LEGO1/3dmanager/lego3dmanager.cpp LEGO1/3dmanager/lego3dview.cpp LEGO1/3dmanager/legoview1.cpp LEGO1/3dmanager/tglsurface.cpp @@ -50,7 +51,6 @@ add_library(lego1 SHARED LEGO1/jukebox.cpp LEGO1/jukeboxentity.cpp LEGO1/jukeboxstate.cpp - LEGO1/lego3dmanager.cpp LEGO1/legoact2state.cpp LEGO1/legoactioncontrolpresenter.cpp LEGO1/legoactor.cpp diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index c402098d..7ecb6272 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -21,6 +21,7 @@ #include "mxtimer.h" #include "mxtransitionmanager.h" #include "res/resource.h" +#include "viewmanager/viewmanager.h" #include diff --git a/LEGO1/3dmanager/lego3dmanager.cpp b/LEGO1/3dmanager/lego3dmanager.cpp new file mode 100644 index 00000000..99c977d5 --- /dev/null +++ b/LEGO1/3dmanager/lego3dmanager.cpp @@ -0,0 +1,96 @@ +// Lego3DManager.cpp : implementation file +// +#include "lego3dmanager.h" + +#include "../viewmanager/viewlodlist.h" +#include "decomp.h" + +DECOMP_SIZE_ASSERT(Lego3DManager, 0x10); + +////////////////////////////////////////////////////////////////////////////// + +// FUNCTION: LEGO1 0x100ab2d0 +BOOL InitializeCreateStruct( + TglSurface::CreateStruct& rTglSurfaceCreateStruct, + const Lego3DManager::CreateStruct& rCreateStruct +) +{ + // initializes a TglSurface::CreateStruct from a Lego3DManager::CreateStruct + rTglSurfaceCreateStruct.m_pDriverGUID = rCreateStruct.m_pDriverGUID; + rTglSurfaceCreateStruct.m_hWnd = rCreateStruct.m_hWnd; + rTglSurfaceCreateStruct.m_pDirectDraw = rCreateStruct.m_pDirectDraw; + rTglSurfaceCreateStruct.m_pFrontBuffer = rCreateStruct.m_pFrontBuffer; + rTglSurfaceCreateStruct.m_pBackBuffer = rCreateStruct.m_pBackBuffer; + rTglSurfaceCreateStruct.m_pPalette = rCreateStruct.m_pPalette; + rTglSurfaceCreateStruct.m_isFullScreen = rCreateStruct.m_isFullScreen; + rTglSurfaceCreateStruct.m_isWideViewAngle = rCreateStruct.m_isWideViewAngle; + rTglSurfaceCreateStruct.m_direct3d = rCreateStruct.m_direct3d; + rTglSurfaceCreateStruct.m_d3dDevice = rCreateStruct.m_d3dDevice; + return TRUE; +} + +////////////////////////////////////////////////////////////////////////////// + +// FUNCTION: LEGO1 0x100ab320 +Lego3DManager::Lego3DManager() +{ + // Tgl things + m_pRenderer = 0; + + m_pLego3DView = 0; + m_pViewLODListManager = 0; +} + +// FUNCTION: LEGO1 0x100ab360 +Lego3DManager::~Lego3DManager() +{ + Destroy(); +} + +// FUNCTION: LEGO1 0x100ab370 +BOOL Lego3DManager::Create(CreateStruct& rCreateStruct) +{ + TglSurface::CreateStruct tglSurfaceCreateStruct; + BOOL result; + + assert(!m_pViewLODListManager); + assert(!m_pRenderer); + assert(!m_pLego3DView); + + m_pViewLODListManager = new ViewLODListManager; + assert(m_pViewLODListManager); + + m_pRenderer = Tgl::CreateRenderer(); + assert(m_pRenderer); + + m_pLego3DView = new Lego3DView; + + result = InitializeCreateStruct(tglSurfaceCreateStruct, rCreateStruct); + assert(result); + + result = m_pLego3DView->Create(tglSurfaceCreateStruct, m_pRenderer); + assert(result); + + return result; +} + +// FUNCTION: LEGO1 0x100ab460 +void Lego3DManager::Destroy() +{ + delete m_pLego3DView; + m_pLego3DView = 0; + + delete m_pRenderer; + m_pRenderer = 0; + + delete m_pViewLODListManager; + m_pViewLODListManager = 0; +} + +// FUNCTION: LEGO1 0x100ab4b0 +double Lego3DManager::Render(double p_und) +{ + assert(m_pLego3DView); + + return m_pLego3DView->Render(p_und); +} diff --git a/LEGO1/3dmanager/lego3dmanager.h b/LEGO1/3dmanager/lego3dmanager.h new file mode 100644 index 00000000..8445800b --- /dev/null +++ b/LEGO1/3dmanager/lego3dmanager.h @@ -0,0 +1,117 @@ +#ifndef _Lego3DManager_h +#define _Lego3DManager_h + +#include "assert.h" +#include "lego3dview.h" + +class Tgl::Renderer; +class Tgl::Group; +class ViewROI; + +// ??? for now +class ViewLODListManager; + +///////////////////////////////////////////////////////////////////////////// +// +// Lego3DManager + +// VTABLE: LEGO1 0x100dbfa4 +// SIZE 0x10 +class Lego3DManager { +public: + // SIZE 0x28 + struct CreateStruct { + const GUID* m_pDriverGUID; // 0x00 + HWND m_hWnd; // 0x04 + IDirectDraw* m_pDirectDraw; // 0x08 + IDirectDrawSurface* m_pFrontBuffer; // 0x0c + IDirectDrawSurface* m_pBackBuffer; // 0x10 + IDirectDrawPalette* m_pPalette; // 0x14 + BOOL m_isFullScreen; // 0x18 + BOOL m_isWideViewAngle; // 0x1c + IDirect3D2* m_direct3d; // 0x20 + IDirect3DDevice2* m_d3dDevice; // 0x24 + }; + +public: + Lego3DManager(); + virtual ~Lego3DManager(); + + BOOL Create(CreateStruct&); + void Destroy(); + + BOOL Add(ViewROI&); + BOOL Remove(ViewROI&); + BOOL Moved(ViewROI&); + BOOL SetPointOfView(ViewROI&); + + double Render(double p_und); + + Tgl::Renderer* GetRenderer(); + Tgl::Group* GetScene(); + Lego3DView* GetLego3DView(); + // ??? for now + ViewLODListManager* GetViewLODListManager(); + +private: + Tgl::Renderer* m_pRenderer; // 0x04 + + Lego3DView* m_pLego3DView; // 0x08 + ViewLODListManager* m_pViewLODListManager; // 0x0c +}; + +///////////////////////////////////////////////////////////////////////////// +// +// Lego3DManager implementaion + +inline BOOL Lego3DManager::Add(ViewROI& rROI) +{ + assert(m_pLego3DView); + + return m_pLego3DView->Add(rROI); +} + +inline BOOL Lego3DManager::Remove(ViewROI& rROI) +{ + assert(m_pLego3DView); + + return m_pLego3DView->Remove(rROI); +} + +inline BOOL Lego3DManager::SetPointOfView(ViewROI& rROI) +{ + assert(m_pLego3DView); + + return m_pLego3DView->SetPointOfView(rROI); +} + +inline BOOL Lego3DManager::Moved(ViewROI& rROI) +{ + assert(m_pLego3DView); + + return m_pLego3DView->Moved(rROI); +} + +inline Tgl::Renderer* Lego3DManager::GetRenderer() +{ + return m_pRenderer; +} + +inline Tgl::Group* Lego3DManager::GetScene() +{ + assert(m_pLego3DView); + + return m_pLego3DView->GetScene(); +} + +inline Lego3DView* Lego3DManager::GetLego3DView() +{ + return m_pLego3DView; +} + +inline ViewLODListManager* Lego3DManager::GetViewLODListManager() +{ + return m_pViewLODListManager; +} + +#endif /* _Lego3DManager_h */ diff --git a/LEGO1/3dmanager/lego3dview.cpp b/LEGO1/3dmanager/lego3dview.cpp index a556fcdc..cdededa5 100644 --- a/LEGO1/3dmanager/lego3dview.cpp +++ b/LEGO1/3dmanager/lego3dview.cpp @@ -134,7 +134,7 @@ BOOL Lego3DView::Moved(ViewROI& rROI) } // STUB: LEGO1 0x100ab270 -double Lego3DView::Render() +double Lego3DView::Render(double p_und) { // assert(m_pViewManager); diff --git a/LEGO1/3dmanager/lego3dview.h b/LEGO1/3dmanager/lego3dview.h index 5a6df653..986d652c 100644 --- a/LEGO1/3dmanager/lego3dview.h +++ b/LEGO1/3dmanager/lego3dview.h @@ -25,7 +25,7 @@ class Lego3DView : public LegoView1 { BOOL Moved(ViewROI&); BOOL SetPointOfView(ViewROI&); - double Render(); + double Render(double p_und); ViewROI* Pick(unsigned long x, unsigned long y); diff --git a/LEGO1/lego3dmanager.cpp b/LEGO1/lego3dmanager.cpp deleted file mode 100644 index de87d755..00000000 --- a/LEGO1/lego3dmanager.cpp +++ /dev/null @@ -1,71 +0,0 @@ -#include "lego3dmanager.h" - -#include "3dmanager/tglsurface.h" -#include "decomp.h" -#include "viewmanager/viewlodlist.h" - -DECOMP_SIZE_ASSERT(Lego3DManager, 0x10); - -// FUNCTION: LEGO1 0x100ab2d0 -BOOL InitializeCreateStruct(TglSurface::CreateStruct& p_tglSurface, const Lego3DManager::CreateStruct& p_createStruct) -{ - p_tglSurface.m_pDriverGUID = p_createStruct.m_driverGUID; - p_tglSurface.m_hWnd = p_createStruct.m_hwnd; - p_tglSurface.m_pDirectDraw = p_createStruct.m_directDraw; - p_tglSurface.m_pFrontBuffer = p_createStruct.m_ddSurface1; - p_tglSurface.m_pBackBuffer = p_createStruct.m_ddSurface2; - p_tglSurface.m_pPalette = p_createStruct.m_ddPalette; - p_tglSurface.m_isFullScreen = p_createStruct.m_isFullScreen; - p_tglSurface.m_isWideViewAngle = p_createStruct.m_isWideViewAngle; - p_tglSurface.m_direct3d = p_createStruct.m_direct3d; - p_tglSurface.m_d3dDevice = p_createStruct.m_d3dDevice; - return TRUE; -} - -// FUNCTION: LEGO1 0x100ab320 -Lego3DManager::Lego3DManager() -{ - m_renderer = NULL; - m_3dView = NULL; - m_viewLODListManager = NULL; -} - -// FUNCTION: LEGO1 0x100ab360 -Lego3DManager::~Lego3DManager() -{ - Destroy(); -} - -// FUNCTION: LEGO1 0x100ab370 -BOOL Lego3DManager::Create(Lego3DManager::CreateStruct& p_createStruct) -{ - TglSurface::CreateStruct surfaceCreateStruct; - - m_viewLODListManager = new ViewLODListManager; - m_renderer = Tgl::CreateRenderer(); - m_3dView = new Lego3DView; - - InitializeCreateStruct(surfaceCreateStruct, p_createStruct); - - return m_3dView->Create(surfaceCreateStruct, m_renderer); -} - -// FUNCTION: LEGO1 0x100ab460 -void Lego3DManager::Destroy() -{ - delete m_3dView; - m_3dView = NULL; - - delete m_renderer; - m_renderer = NULL; - - delete m_viewLODListManager; - m_viewLODListManager = NULL; -} - -// STUB: LEGO1 0xx100ab4b0 -double Lego3DManager::FUN_100ab4b0(double p_und) -{ - // TODO - return 0.0; -} diff --git a/LEGO1/lego3dmanager.h b/LEGO1/lego3dmanager.h deleted file mode 100644 index d0dea895..00000000 --- a/LEGO1/lego3dmanager.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef LEGO3DMANAGER_H -#define LEGO3DMANAGER_H - -#include "lego3dview.h" - -class ViewLODListManager; - -// VTABLE: LEGO1 0x100dbfa4 -// SIZE 0x10 -class Lego3DManager { -public: - // SIZE 0x28 - struct CreateStruct { - GUID* m_driverGUID; // 0x00 - HWND m_hwnd; // 0x04 - IDirectDraw* m_directDraw; // 0x08 - IDirectDrawSurface* m_ddSurface1; // 0x0c - IDirectDrawSurface* m_ddSurface2; // 0x10 - IDirectDrawPalette* m_ddPalette; // 0x14 - BOOL m_isFullScreen; // 0x18 - BOOL m_isWideViewAngle; // 0x1c - IDirect3D2* m_direct3d; // 0x20 - IDirect3DDevice2* m_d3dDevice; // 0x24 - }; - - Lego3DManager(); - virtual ~Lego3DManager(); - - BOOL Create(CreateStruct& p_createStruct); - double FUN_100ab4b0(double p_und); - - inline Lego3DView* GetLego3DView() { return this->m_3dView; } - inline ViewLODListManager* GetViewLODListManager() { return this->m_viewLODListManager; } - -private: - Tgl::Renderer* m_renderer; // 0x04 - Lego3DView* m_3dView; // 0x08 - ViewLODListManager* m_viewLODListManager; // 0x0c - - void Destroy(); -}; - -// SYNTHETIC: LEGO1 0x100ab340 -// Lego3DManager::`scalar deleting destructor' - -#endif // LEGO3DMANAGER_H diff --git a/LEGO1/legoomni.cpp b/LEGO1/legoomni.cpp index f8c6b819..29150f95 100644 --- a/LEGO1/legoomni.cpp +++ b/LEGO1/legoomni.cpp @@ -255,7 +255,7 @@ void FUN_1001a700() // FUNCTION: LEGO1 0x1003dd70 LegoROI* PickROI(MxLong p_a, MxLong p_b) { - return VideoManager()->Get3DManager()->GetLego3DView()->PickROI(p_a, p_b); + return (LegoROI*) VideoManager()->Get3DManager()->GetLego3DView()->Pick(p_a, p_b); } // STUB: LEGO1 0x1003ddc0 diff --git a/LEGO1/legovideomanager.cpp b/LEGO1/legovideomanager.cpp index 912ef6ba..d628b985 100644 --- a/LEGO1/legovideomanager.cpp +++ b/LEGO1/legovideomanager.cpp @@ -150,11 +150,11 @@ MxResult LegoVideoManager::Create(MxVideoParam& p_videoParam, MxU32 p_frequencyM Lego3DManager::CreateStruct createStruct; memset(&createStruct, 0, sizeof(createStruct)); - createStruct.m_hwnd = LegoOmni::GetInstance()->GetWindowHandle(); - createStruct.m_directDraw = m_pDirectDraw; - createStruct.m_ddSurface1 = m_displaySurface->GetDirectDrawSurface1(); - createStruct.m_ddSurface2 = m_displaySurface->GetDirectDrawSurface2(); - createStruct.m_ddPalette = m_videoParam.GetPalette()->CreateNativePalette(); + createStruct.m_hWnd = LegoOmni::GetInstance()->GetWindowHandle(); + createStruct.m_pDirectDraw = m_pDirectDraw; + createStruct.m_pFrontBuffer = m_displaySurface->GetDirectDrawSurface1(); + createStruct.m_pBackBuffer = m_displaySurface->GetDirectDrawSurface2(); + createStruct.m_pPalette = m_videoParam.GetPalette()->CreateNativePalette(); createStruct.m_isFullScreen = FALSE; createStruct.m_isWideViewAngle = m_videoParam.Flags().GetWideViewAngle(); createStruct.m_direct3d = m_direct3d->GetDirect3D(); @@ -175,8 +175,8 @@ MxResult LegoVideoManager::Create(MxVideoParam& p_videoParam, MxU32 p_frequencyM CalcLocalTransform(posVec, dirVec, upVec, outMatrix); m_viewROI->WrappedSetLocalTransform(outMatrix); - m_3dManager->GetLego3DView()->FUN_100ab100(m_viewROI); - m_3dManager->GetLego3DView()->FUN_100ab1b0(m_viewROI); + m_3dManager->GetLego3DView()->Add(*m_viewROI); + m_3dManager->GetLego3DView()->SetPointOfView(*m_viewROI); m_unk0x100d9d00 = new MxUnknown100d9d00; m_unk0xe4 = FALSE; @@ -260,7 +260,7 @@ MxResult LegoVideoManager::Tickle() presenter->PutData(); if (!m_unk0xe5) { - m_3dManager->FUN_100ab4b0(0.0); + m_3dManager->Render(0.0); m_3dManager->GetLego3DView()->GetDevice()->Update(); } diff --git a/LEGO1/legovideomanager.h b/LEGO1/legovideomanager.h index e4ef28ea..07ea0904 100644 --- a/LEGO1/legovideomanager.h +++ b/LEGO1/legovideomanager.h @@ -1,8 +1,8 @@ #ifndef LEGOVIDEOMANAGER_H #define LEGOVIDEOMANAGER_H +#include "3dmanager/lego3dmanager.h" #include "decomp.h" -#include "lego3dmanager.h" #include "mxdirect3d.h" #include "mxdirectx/mxstopwatch.h" #include "mxunknown100d9d00.h" @@ -10,6 +10,8 @@ #include +class LegoROI; + // VTABLE: LEGO1 0x100d9c88 // SIZE 0x590 class LegoVideoManager : public MxVideoManager { diff --git a/out.html b/out.html new file mode 100644 index 00000000..b944e7b9 --- /dev/null +++ b/out.html @@ -0,0 +1,274 @@ + + + + Decompilation Status + + + + +
+

Decompilation Status

+ +
+ + +
+ + +
AddressNameMatching
+
+ + diff --git a/tools/isledecomp/isledecomp/lib/qwe b/tools/isledecomp/isledecomp/lib/qwe new file mode 100644 index 00000000..7ed49a51 --- /dev/null +++ b/tools/isledecomp/isledecomp/lib/qwe @@ -0,0 +1,185969 @@ +Microsoft (R) Debugging Information Dumper Version 14.00.23611 +Copyright (C) Microsoft Corporation. All rights reserved. + + +*** IDs + +Error on OpenTpi: 'Invalid file format' (11) + +*** MODULES + +0001 "LEGO1.exp" +0002 "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" +0003 "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" +0004 "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" +0005 "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" +0006 "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" +0007 "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" +0008 "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" +0009 "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" +000A "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" +000B "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" +000C "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" +000D "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" +000E "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" +000F "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" +0010 "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" +0011 "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" +0012 "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" +0013 "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" +0014 "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" +0015 "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" +0016 "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" +0017 "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" +0018 "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" +0019 "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" +001A "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" +001B "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" +001C "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" +001D "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" +001E "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" +001F "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" +0020 "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" +0021 "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" +0022 "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" +0023 "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" +0024 "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" +0025 "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" +0026 "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" +0027 "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" +0028 "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" +0029 "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" +002A "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" +002B "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" +002C "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" +002D "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" +002E "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" +002F "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" +0030 "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" +0031 "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" +0032 "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" +0033 "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" +0034 "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" +0035 "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" +0036 "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" +0037 "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" +0038 "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" +0039 "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" +003A "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" +003B "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" +003C "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" +003D "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" +003E "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" +003F "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" +0040 "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" +0041 "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" +0042 "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" +0043 "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" +0044 "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" +0045 "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" +0046 "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" +0047 "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" +0048 "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" +0049 "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" +004A "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" +004B "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" +004C "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" +004D "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" +004E "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" +004F "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" +0050 "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" +0051 "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" +0052 "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" +0053 "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" +0054 "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" +0055 "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" +0056 "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" +0057 "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" +0058 "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" +0059 "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" +005A "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" +005B "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" +005C "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" +005D "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" +005E "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" +005F "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" +0060 "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" +0061 "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" +0062 "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" +0063 "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" +0064 "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" +0065 "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" +0066 "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" +0067 "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" +0068 "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" +0069 "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" +006A "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" +006B "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" +006C "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" +006D "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" +006E "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" +006F "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" +0070 "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" +0071 "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" +0072 "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" +0073 "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" +0074 "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" +0075 "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" +0076 "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" +0077 "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" +0078 "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" +0079 "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" +007A "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" +007B "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" +007C "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" +007D "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" +007E "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" +007F "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" +0080 "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" +0081 "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" +0082 "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" +0083 "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" +0084 "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" +0085 "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" +0086 "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" +0087 "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" +0088 "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" +0089 "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" +008A "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" +008B "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" +008C "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" +008D "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" +008E "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" +008F "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" +0090 "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" +0091 "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" +0092 "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" +0093 "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" +0094 "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" +0095 "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" +0096 "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" +0097 "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" +0098 "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" +0099 "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" +009A "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" +009B "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" +009C "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" +009D "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" +009E "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" +009F "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" +00A0 "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" +00A1 "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" +00A2 "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" +00A3 "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" +00A4 "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" +00A5 "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" +00A6 "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" +00A7 "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" +00A8 "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" +00A9 "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" +00AA "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" +00AB "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" +00AC "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" +00AD "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" +00AE "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" +00AF "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" +00B0 "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" +00B1 "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" +00B2 "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" +00B3 "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" +00B4 "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" +00B5 "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" +00B6 "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" +00B7 "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" +00B8 "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" +00B9 "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" +00BA "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" +00BB "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" +00BC "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" +00BD "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" +00BE "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" +00BF "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" +00C0 "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" +00C1 "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" +00C2 "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" +00C3 "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" +00C4 "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" +00C5 "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" +00C6 "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" +00C7 "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" +00C8 "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" +00C9 "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" +00CA "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" +00CB "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" +00CC "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" +00CD "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" +00CE "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" +00CF "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" +00D0 "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" +00D1 "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" +00D2 "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" +00D3 "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" +00D4 "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" +00D5 "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" +00D6 "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" +00D7 "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" +00D8 "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" +00D9 "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" +00DA "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" +00DB "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "iowinapi.obj" +00DC "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "task.obj" +00DD "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "error.obj" +00DE "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "shmaljmp.obj" +00DF "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "defpagsz.obj" +00E0 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "defsizfs.obj" +00E1 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "pool.obj" +00E2 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "syswin32.obj" +00E3 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "check.obj" +00E4 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "info.obj" +00E5 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "defflgmt.obj" +00E6 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "heap.obj" +00E7 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "shnewhnd.obj" +00E8 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "defpool.obj" +00E9 "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "shmalloc.obj" +00EA "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" "shnew.obj" +00EB "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" "DDRAW.dll" +00EC "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" "DSOUND.dll" +00ED "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" "DINPUT.dll" +00EE "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" "dilib2.obj" +00EF "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid130.obj" +00F0 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid75.obj" +00F1 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid99.obj" +00F2 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid100.obj" +00F3 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid31.obj" +00F4 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" "guid134.obj" +00F5 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" "WINMM.dll" +00F6 "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" "d3drm.dll" +00F7 "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" "_SmackGetRect.obj" +00F8 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" "KERNEL32.dll" +00F9 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" "USER32.dll" +00FA "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" "GDI32.dll" +00FB "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strupr.obj" +00FC "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strlwr.obj" +00FD "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strnicmp.obj" +00FE "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strcat.obj" +00FF "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strlen.obj" +0100 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strdup.obj" +0101 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\setenv.obj" +0102 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\aw_cmp.obj" +0103 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\wtombenv.obj" +0104 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mbsnbico.obj" +0105 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\days.obj" +0106 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\getenv.obj" +0107 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\wcstombs.obj" +0108 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\iswctype.obj" +0109 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\towupper.obj" +010A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\tzset.obj" +010B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\timeset.obj" +010C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\constpow.obj" +010D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\stricmp.obj" +010E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\wcstol.obj" +010F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\aw_loc.obj" +0110 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\xtoa.obj" +0111 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\lconv.obj" +0112 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\inithelp.obj" +0113 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strftime.obj" +0114 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\ldexp.obj" +0115 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\chkstk.obj" +0116 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\setmode.obj" +0117 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\tenpow.obj" +0118 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\getqloc.obj" +0119 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\nlsdata3.obj" +011A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strpbrk.obj" +011B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strcspn.obj" +011C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\initcoll.obj" +011D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\initctyp.obj" +011E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\initmon.obj" +011F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\initnum.obj" +0120 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\inittime.obj" +0121 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\ieeemisc.obj" +0122 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\frnd.obj" +0123 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\util.obj" +0124 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strrchr.obj" +0125 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\txtmode.obj" +0126 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\chsize.obj" +0127 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\closeall.obj" +0128 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\fpctrl.obj" +0129 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\matherr.obj" +012A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\fpexcept.obj" +012B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\x10fout.obj" +012C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\strgtold.obj" +012D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\mantold.obj" +012E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\aw_map.obj" +012F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\setlocal.obj" +0130 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\wcslen.obj" +0131 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\nlsdata2.obj" +0132 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\sbheap.obj" +0133 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\adj_fdiv.obj" +0134 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\powhlp.obj" +0135 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ungetc.obj" +0136 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_ctype.obj" +0137 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mbtowc.obj" +0138 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\crtmbox.obj" +0139 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\cenvarg.obj" +013A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\dospawn.obj" +013B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mbschr.obj" +013C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mbsrchr.obj" +013D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\access.obj" +013E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ncommode.obj" +013F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\open.obj" +0140 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\commit.obj" +0141 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\osfinfo.obj" +0142 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ullrem.obj" +0143 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ulldiv.obj" +0144 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\wctomb.obj" +0145 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_file.obj" +0146 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\isatty.obj" +0147 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_getbuf.obj" +0148 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\crt0init.obj" +0149 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\aw_str.obj" +014A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87except.obj" +014B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87disp.obj" +014C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\cfout.obj" +014D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_fptostr.obj" +014E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\intrncvt.obj" +014F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\tolower.obj" +0150 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\crt0fp.obj" +0151 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\ieee87.obj" +0152 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\memmove.obj" +0153 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\validate.obj" +0154 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\unhandld.obj" +0155 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_newmode.obj" +0156 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\errmode.obj" +0157 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\aw_env.obj" +0158 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mbctype.obj" +0159 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\stdargv.obj" +015A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\stdenvp.obj" +015B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\heapinit.obj" +015C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\hooks.obj" +015D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87tran.obj" +015E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\winxfltr.obj" +015F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\input.obj" +0160 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_sftbuf.obj" +0161 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\crt0msg.obj" +0162 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\winsig.obj" +0163 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\spawnve.obj" +0164 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\stream.obj" +0165 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_open.obj" +0166 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\dosmap.obj" +0167 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ioinit.obj" +0168 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\lseek.obj" +0169 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\write.obj" +016A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\read.obj" +016B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_filbuf.obj" +016C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fflush.obj" +016D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_freebuf.obj" +016E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\close.obj" +016F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\mlock.obj" +0170 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\output.obj" +0171 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\_flsbuf.obj" +0172 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\crt0dat.obj" +0173 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\llmul.obj" +0174 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\nlsdata1.obj" +0175 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\isctype.obj" +0176 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ctype.obj" +0177 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87cdisp.obj" +0178 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87triga.obj" +0179 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\cvt.obj" +017A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\cmiscdat.obj" +017B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\testfdiv.obj" +017C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fp8.obj" +017D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\tidtable.obj" +017E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\lowhelpr.obj" +017F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\frame.obj" +0180 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\exsup3.obj" +0181 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\new_mode.obj" +0182 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\handler.obj" +0183 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\dllcrt0.obj" +0184 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ehvecctr.obj" +0185 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ehvecdtr.obj" +0186 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87ctran.obj" +0187 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\threadex.obj" +0188 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\rand.obj" +0189 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strncmp.obj" +018A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\sscanf.obj" +018B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\vsprintf.obj" +018C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fprintf.obj" +018D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\abort.obj" +018E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\spawnl.obj" +018F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fopen.obj" +0190 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fseek.obj" +0191 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\ftell.obj" +0192 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fwrite.obj" +0193 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fread.obj" +0194 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\fclose.obj" +0195 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strchr.obj" +0196 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strstr.obj" +0197 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\ftol.obj" +0198 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\sprintf.obj" +0199 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strncpy.obj" +019A "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\onexit.obj" +019B "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\strtok.obj" +019C "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\atox.obj" +019D "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\87ctriga.obj" +019E "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "..\build\intel\mt_obj\fpinit.obj" +019F "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\exsup.obj" +01A0 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\trnsctrl.obj" +01A1 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" "build\intel\mt_obj\purevirt.obj" +01A2 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" "build\intel\st_obj\oldnames\strupr.obj" +01A3 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" "build\intel\st_obj\oldnames\itoa.obj" +01A4 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" "build\intel\st_obj\oldnames\strlwr.obj" +01A5 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" "build\intel\st_obj\oldnames\strcmpi.obj" +01A6 "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" "build\intel\st_obj\oldnames\strnicmp.obj" + +*** PUBLICS + +S_PUB32: [0001:0004D060], Flags: 00000000, _MemUnregisterTask@0 +S_PUB32: [0001:00000130], Flags: 00000000, ??1MxFrequencyMeter@@QAE@XZ +S_PUB32: [0001:00021F60], Flags: 00000000, ??1?$MxStreamList@PAVMxDSAction@@@@QAE@XZ +S_PUB32: [0001:00035570], Flags: 00000000, ??_GMxRegionLeftRightList@@UAEPAXI@Z +S_PUB32: [0001:00000A30], Flags: 00000000, ?VTable0xc4@LegoPathActor@@UAEXXZ +S_PUB32: [0003:00000680], Flags: 00000000, ??_7Vector2Impl@@6B@ +S_PUB32: [0004:000005D4], Flags: 00000000, ??_C@_0L@JGLK@c_rcstrpy0?$AA@ +S_PUB32: [0004:00000334], Flags: 00000000, ??_C@_0L@OPFI@Helicopter?$AA@ +S_PUB32: [0004:000040B0], Flags: 00000000, __OP_ATAN2jmptab +S_PUB32: [0001:00052BB0], Flags: 00000000, __read +S_PUB32: [0001:00008480], Flags: 00000000, ??0LegoHideAnimPresenter@@QAE@XZ +S_PUB32: [0001:00035960], Flags: 00000000, ?FUN_100c5280@MxRegionTopBottom@@QAEXHH@Z +S_PUB32: [0001:0005C3C0], Flags: 00000000, __handle_qnan2 +S_PUB32: [0001:000590A0], Flags: 00000000, _fdiv_main_routine +S_PUB32: [0003:00005BDC], Flags: 00000000, ??_C@_08LIDF@December?$AA@ +S_PUB32: [0001:00026840], Flags: 00000000, ?ClassName@MxDSChunk@@UBEPBDXZ +S_PUB32: [0003:00004D00], Flags: 00000000, ??_7Unk@Tgl@@6B@ +S_PUB32: [0001:0003C3A0], Flags: 00000000, ??_EMxTimer@@UAEPAXI@Z +S_PUB32: [0001:00013850], Flags: 00000000, ?Init@LegoOmni@@UAEXXZ +S_PUB32: [0003:00004D18], Flags: 00000000, ??_7UnkImpl@TglImpl@@6B@ +S_PUB32: [0001:000424F0], Flags: 00000000, ?VTable0x5c@Score@@UAEEXZ +S_PUB32: [0001:000113B0], Flags: 00000000, ?ClassName@InfoCenterEntity@@UBEPBDXZ +S_PUB32: [0001:00011DF0], Flags: 00000000, ??_EScoreState@@UAEPAXI@Z +S_PUB32: [0003:00005CF8], Flags: 00000000, ___mnames +S_PUB32: [0004:00003BEC], Flags: 00000000, ?g_lastTimeTimerStarted@MxTimer@@0JA +S_PUB32: [0001:000300E0], Flags: 00000000, ?insert@?$list@PAVMxNotification@@V?$allocator@PAVMxNotification@@@@@@QAE?AViterator@1@V21@ABQAVMxNotification@@@Z +S_PUB32: [0004:0000C750], Flags: 00000000, __nhandle +S_PUB32: [0001:000596C8], Flags: 00000000, __adj_fdiv_m64 +S_PUB32: [0001:000626FA], Flags: 00000000, _GetEnvironmentStrings@0 +S_PUB32: [0001:00011B90], Flags: 00000000, ??_GLegoJetski@@UAEPAXI@Z +S_PUB32: [0001:00036460], Flags: 00000000, ??0MxRegionCursor@@QAE@PAVMxRegion@@@Z +S_PUB32: [0003:00005CC8], Flags: 00000000, ??_C@_03ECCP@Tue?$AA@ +S_PUB32: [0001:000038B0], Flags: 00000000, ?IsA@HistoryBook@@UBEEPBD@Z +S_PUB32: [0001:00019B40], Flags: 00000000, ?Stop@LegoWorld@@UAEXXZ +S_PUB32: [0001:00023680], Flags: 00000000, ?ClassName@MxDiskStreamProvider@@UBEPBDXZ +S_PUB32: [0001:000162C0], Flags: 00000000, ??_ELegoROI@@UAEPAXI@Z +S_PUB32: [0001:0002F800], Flags: 00000000, ??1?$list@IV?$allocator@I@@@@QAE@XZ +S_PUB32: [0001:0000F4E0], Flags: 00000000, ?IsA@LegoWorld@@UBEEPBD@Z +S_PUB32: [0004:00001564], Flags: 00000000, ??_C@_0BJ@KBKH@mutex?5timeout?5occurred?$CB?6?$AA@ +S_PUB32: [0001:000066F0], Flags: 00000000, ??0LegoCacheSound@@QAE@XZ +S_PUB32: [0003:00005788], Flags: 00000000, ??_C@_0O@MEPL@great?5britain?$AA@ +S_PUB32: [0001:00050F10], Flags: 00000000, __cropzeros +S_PUB32: [0002:00002CE0], Flags: 00000000, _SmackDoPCM +S_PUB32: [0003:00000BB0], Flags: 00000000, ??_7Vector3Impl@@6B@ +S_PUB32: [0004:00000604], Flags: 00000000, ??_C@_0L@JCJG@c_rcfrnty6?$AA@ +S_PUB32: [0001:00006110], Flags: 00000000, ?ClassName@LegoAnimPresenter@@UBEPBDXZ +S_PUB32: [0001:000177A0], Flags: 00000000, ?ClassName@LegoVehicleBuildState@@UBEPBDXZ +S_PUB32: [0001:0003BDD0], Flags: 00000000, ?Run@MxTickleThread@@UAEJXZ +S_PUB32: [0001:00041C50], Flags: 00000000, ?MullScalarImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0001:000331D0], Flags: 00000000, ?SetEntries@MxPalette@@QAEJPAUtagPALETTEENTRY@@@Z +S_PUB32: [0004:00000EE4], Flags: 00000000, ??_C@_0BE@EAGN@?2lego?2scripts?2intro?$AA@ +S_PUB32: [0001:0005CF60], Flags: 00000000, __chsize_lk +S_PUB32: [0001:00007F20], Flags: 00000000, ?GetFileSavePath@LegoGameState@@QAEXPAVMxString@@K@Z +S_PUB32: [0004:0000C754], Flags: 00000000, ___onexitend +S_PUB32: [0003:0000523C], Flags: 00000000, ??_C@_0DF@CKIP@R6024?$AN?6?9?5not?5enough?5space?5for?5_o@ +S_PUB32: [0001:0002A720], Flags: 00000000, ??_GMxDSSerialAction@@UAEPAXI@Z +S_PUB32: [0001:0001A0E0], Flags: 00000000, ??_GMxDSActionListCursor@@UAEPAXI@Z +S_PUB32: [0004:00002C7C], Flags: 00000000, ??_C@_0CP@OGMA@No?5clipper?5object?5attached?5to?5su@ +S_PUB32: [0003:00005B3C], Flags: 00000000, ??_C@_03PCOI@chi?$AA@ +S_PUB32: [0001:0001B510], Flags: 00000000, ?Dec@MxAtomIdCounter@@QAEXXZ +S_PUB32: [0001:0005D210], Flags: 00000000, __decomp +S_PUB32: [0001:00010540], Flags: 00000000, ?IsA@LegoRaceCar@@UBEEPBD@Z +S_PUB32: [0001:0004BBF0], Flags: 00000000, @_shi_getCurrentProcessID@0 +S_PUB32: [0001:00016190], Flags: 00000000, ??1ViewROI@@UAE@XZ +S_PUB32: [0001:00028DB0], Flags: 00000000, ??_GMxDSObjectAction@@UAEPAXI@Z +S_PUB32: [0001:000421A0], Flags: 00000000, ?ClassName@RegistrationBook@@UBEPBDXZ +S_PUB32: [0001:00014180], Flags: 00000000, ??_ELegoWorldList@@UAEPAXI@Z +S_PUB32: [0004:00003310], Flags: 00000000, ??_C@_0DA@NDND@No?5src?5color?5key?5specified?5for?5t@ +S_PUB32: [0001:0001C370], Flags: 00000000, ??1MxBitmap@@UAE@XZ +S_PUB32: [0001:00004670], Flags: 00000000, ?VTable0x5c@Isle@@UAEEXZ +S_PUB32: [0005:000003EC], Flags: 00000000, __imp__IsBadCodePtr@4 +S_PUB32: [0001:00015AD0], Flags: 00000000, ?Tickle@LegoPlantManager@@UAEJXZ +S_PUB32: [0005:000004E4], Flags: 00000000, __imp__ExitProcess@4 +S_PUB32: [0001:00061A70], Flags: 00000000, __getenv_lk +S_PUB32: [0001:0004E3A0], Flags: 00000000, _midiStreamClose@4 +S_PUB32: [0001:00016550], Flags: 00000000, ?Init@LegoSoundManager@@AAEXXZ +S_PUB32: [0001:00043FD0], Flags: 00000000, ?ShallowClone@MeshImpl@TglImpl@@UAEPAVMesh@Tgl@@PAVUnk@4@@Z +S_PUB32: [0001:0005D7E0], Flags: 00000000, __isnan +S_PUB32: [0001:00028E20], Flags: 00000000, ?CopyFrom@MxDSObjectAction@@UAEXAAV1@@Z +S_PUB32: [0001:0004E9C0], Flags: 00000000, __fpmath +S_PUB32: [0001:00005B20], Flags: 00000000, ??_GLegoAnimationManager@@UAEPAXI@Z +S_PUB32: [0004:00002D50], Flags: 00000000, ??_C@_0BJ@BMEE@There?5is?5no?53D?5present?4?$AA?$AA@ +S_PUB32: [0001:000351A0], Flags: 00000000, ??_E?$MxPtrListCursor@UMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0003:00003F60], Flags: 00000000, ??_7MxStillPresenter@@6B@ +S_PUB32: [0004:00001248], Flags: 00000000, ??_C@_0BC@MDJA@lego?5drk?5grey?5flt?$AA@ +S_PUB32: [0001:0006266A], Flags: 00000000, _TlsAlloc@0 +S_PUB32: [0001:0002B140], Flags: 00000000, ??1MxDSStreamingAction@@UAE@XZ +S_PUB32: [0001:00046E00], Flags: 00000000, ??1ViewLODListManager@@UAE@XZ +S_PUB32: [0001:000075F0], Flags: 00000000, ?Destroy@LegoEntityPresenter@@AAEXE@Z +S_PUB32: [0004:000035BC], Flags: 00000000, ??_C@_0L@FEAN@MxDSObject?$AA@ +S_PUB32: [0001:0004E3D6], Flags: 00000000, _CloseHandle@4 +S_PUB32: [0003:00001E60], Flags: 00000000, ??_7PizzaMissionState@@6B@ +S_PUB32: [0001:0003E650], Flags: 00000000, ?RealizePalette@MxVideoManager@@UAEJPAVMxPalette@@@Z +S_PUB32: [0003:00005850], Flags: 00000000, ??_C@_07ENHD@swedish?$AA@ +S_PUB32: [0003:000056E4], Flags: 00000000, ??_C@_03EECH@pol?$AA@ +S_PUB32: [0001:0002AF40], Flags: 00000000, ??4MxDSStill@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00017A90], Flags: 00000000, ?CreateDirect3D@LegoVideoManager@@AAEJXZ +S_PUB32: [0001:00007550], Flags: 00000000, ??_ELegoEntityPresenter@@UAEPAXI@Z +S_PUB32: [0004:0000212C], Flags: 00000000, ??_C@_0DB@IBGK@The?5hardware?5does?5not?5support?5cl@ +S_PUB32: [0001:000626E8], Flags: 00000000, _GetOEMCP@0 +S_PUB32: [0001:00015DF0], Flags: 00000000, ?FUN_100a58f0@LegoROI@@QAEXAAVMatrix4Impl@@@Z +S_PUB32: [0001:00021A90], Flags: 00000000, ??0MxDiskStreamController@@QAE@XZ +S_PUB32: [0001:0000FA80], Flags: 00000000, ?ClassName@LegoCarRaceActor@@UBEPBDXZ +S_PUB32: [0004:00001974], Flags: 00000000, ??_C@_0CI@KGMP@CreateSurface?5for?5text?5surface?52@ +S_PUB32: [0001:00023CC0], Flags: 00000000, ?FUN_100d1780@MxDiskStreamProvider@@QAEJPAVMxDSStreamingAction@@@Z +S_PUB32: [0004:00000E54], Flags: 00000000, ?g_jukeboxwScript@@3PAVMxAtomId@@A +S_PUB32: [0005:0000056C], Flags: 00000000, __imp__GetWindowLongA@8 +S_PUB32: [0001:00040890], Flags: 00000000, ?IsA@PoliceState@@UBEEPBD@Z +S_PUB32: [0001:000194D0], Flags: 00000000, ??_E?$MxPtrList@VLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0001:000418C0], Flags: 00000000, ?GetData@Vector2Impl@@UAEPAMXZ +S_PUB32: [0004:00001AB8], Flags: 00000000, ??_C@_0CG@BNFF@AddAttachedBuffer?5failed?5for?5Z?9B@ +S_PUB32: [0001:0001C350], Flags: 00000000, ??_GMxBitmap@@UAEPAXI@Z +S_PUB32: [0001:00015920], Flags: 00000000, ??_GLegoPhonemePresenter@@UAEPAXI@Z +S_PUB32: [0001:0004AA60], Flags: 00000000, @_shi_sysAllocNear@4 +S_PUB32: [0003:00005A9C], Flags: 00000000, ??_C@_03EEPO@ell?$AA@ +S_PUB32: [0003:000057C4], Flags: 00000000, ??_C@_07ILKC@denmark?$AA@ +S_PUB32: [0003:00001968], Flags: 00000000, ??_7LegoLoadCacheSoundPresenter@@6B@ +S_PUB32: [0001:00028750], Flags: 00000000, ?SetSourceName@MxDSObject@@QAEXPBD@Z +S_PUB32: [0004:00004714], Flags: 00000000, __Num_FPE +S_PUB32: [0001:00042100], Flags: 00000000, ?LenSquared@Vector3Impl@@UBEMXZ +S_PUB32: [0001:00017850], Flags: 00000000, ??_ELegoVehicleBuildState@@UAEPAXI@Z +S_PUB32: [0001:0004F900], Flags: 00000000, _sscanf +S_PUB32: [0001:00021310], Flags: 00000000, ?ErrorToString@MxDirectDraw@@UAEPBDJ@Z +S_PUB32: [0004:00003764], Flags: 00000000, ??_C@_0BH@DMDO@MxLoopingMIDIPresenter?$AA@ +S_PUB32: [0004:000027EC], Flags: 00000000, ??_C@_0FP@DBCG@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0004:00001A98], Flags: 00000000, ??_C@_0BP@JKN@Restore?5of?5front?5buffer?5failed?$AA@ +S_PUB32: [0001:00054190], Flags: 00000000, __stbuf +S_PUB32: [0004:00004734], Flags: 00000000, __logemax +S_PUB32: [0001:0001C7F0], Flags: 00000000, ?CreatePalette@MxBitmap@@UAEPAVMxPalette@@XZ +S_PUB32: [0003:00005B50], Flags: 00000000, ??_C@_07INIJ@belgian?$AA@ +S_PUB32: [0001:00008FA0], Flags: 00000000, ?GetValue@?$MxListEntry@VLegoEventNotificationParam@@@@QAE?AVLegoEventNotificationParam@@XZ +S_PUB32: [0001:000362D0], Flags: 00000000, ??1?$MxList@PAUMxRegionTopBottom@@@@UAE@XZ +S_PUB32: [0001:00015A50], Flags: 00000000, ??_ELegoPlantManager@@UAEPAXI@Z +S_PUB32: [0001:00045680], Flags: 00000000, ?TextureDestroyCallback@@YAXPAUIDirect3DRMObject@@PAX@Z +S_PUB32: [0001:0004E3BE], Flags: 00000000, _Direct3DRMCreate@4 +S_PUB32: [0001:00056E58], Flags: 00000000, __rttospop +S_PUB32: [0005:00000390], Flags: 00000000, __imp__CreateMutexA@12 +S_PUB32: [0001:0001AAF0], Flags: 00000000, ??_GMxStartActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:000421B0], Flags: 00000000, ?IsA@RegistrationBook@@UBEEPBD@Z +S_PUB32: [0004:0000097C], Flags: 00000000, ??_C@_0BE@HGEO@tempBackgroundcolor?$AA@ +S_PUB32: [0001:00056750], Flags: 00000000, __IsZeroMan +S_PUB32: [0003:0000566C], Flags: 00000000, ??_C@_06PJFL@sweden?$AA@ +S_PUB32: [0001:00056E5A], Flags: 00000000, __rtnospop +S_PUB32: [0001:00062640], Flags: 00000000, _RtlUnwind@16 +S_PUB32: [0001:0004F9A0], Flags: 00000000, _rand +S_PUB32: [0001:00042340], Flags: 00000000, ??0Score@@QAE@XZ +S_PUB32: [0002:000007C0], Flags: 00000000, _SmackDoFrameToBuffer +S_PUB32: [0003:00002A58], Flags: 00000000, ??_7LegoPalettePresenter@@6B@ +S_PUB32: [0005:00000404], Flags: 00000000, __imp__OpenProcess@12 +S_PUB32: [0003:00005844], Flags: 00000000, ??_C@_03MKGF@trk?$AA@ +S_PUB32: [0001:00041980], Flags: 00000000, ?LenSquared@Vector2Impl@@UBEMXZ +S_PUB32: [0001:00037CB0], Flags: 00000000, ??1?$MxPtrList@VMxRect32@@@@UAE@XZ +S_PUB32: [0001:0003A220], Flags: 00000000, ?VTable0x2c@MxStreamController@@UAEJPAVMxDSAction@@I@Z +S_PUB32: [0001:00004470], Flags: 00000000, ??0Isle@@QAE@XZ +S_PUB32: [0001:00036580], Flags: 00000000, ??_GMxRegionCursor@@UAEPAXI@Z +S_PUB32: [0001:00043F10], Flags: 00000000, ??1Mesh@Tgl@@UAE@XZ +S_PUB32: [0001:000287D0], Flags: 00000000, ?GetSizeOnDisk@MxDSObject@@UAEIXZ +S_PUB32: [0004:000014AC], Flags: 00000000, ??_C@_01LHO@r?$AA@ +S_PUB32: [0001:0002A610], Flags: 00000000, ?IsA@MxDSSerialAction@@UBEEPBD@Z +S_PUB32: [0001:000314D0], Flags: 00000000, ??_EMxOmni@@UAEPAXI@Z +S_PUB32: [0001:00039C20], Flags: 00000000, ?AddSubscriber@MxStreamController@@QAEXPAVMxDSSubscriber@@@Z +S_PUB32: [0004:00004330], Flags: 00000000, __winminor +S_PUB32: [0001:0000CF20], Flags: 00000000, ?Create@LegoObjectFactory@@UAEPAVMxCore@@PBD@Z +S_PUB32: [0001:0002E4A0], Flags: 00000000, ?StartAction@MxMediaPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0001:000341D0], Flags: 00000000, ?ReadData@@YAPAEPAII@Z +S_PUB32: [0001:000118F0], Flags: 00000000, ??_ELegoModelPresenter@@UAEPAXI@Z +S_PUB32: [0001:00011F40], Flags: 00000000, ??_EHelicopterState@@UAEPAXI@Z +S_PUB32: [0001:00052810], Flags: 00000000, __close_lk +S_PUB32: [0003:00005918], Flags: 00000000, ??_C@_06KKAE@korean?$AA@ +S_PUB32: [0001:00041A00], Flags: 00000000, ?Add@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0003:00004F60], Flags: 00000000, _IID_IDirect3DRMMeshBuilder +S_PUB32: [0001:000009C0], Flags: 00000000, ?VTable0xa0@LegoPathActor@@UAEHXZ +S_PUB32: [0001:000268D0], Flags: 00000000, ??_GMxDSChunk@@UAEPAXI@Z +S_PUB32: [0001:000113C0], Flags: 00000000, ?IsA@InfoCenterEntity@@UBEEPBD@Z +S_PUB32: [0001:00041DC0], Flags: 00000000, ?SetMatrixProduct@Vector4Impl@@UAEXPAV1@PAM@Z +S_PUB32: [0001:00042080], Flags: 00000000, ?DivScalarImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0001:0001E260], Flags: 00000000, ?HasTickleStatePassed@MxControlPresenter@@UAEEW4TickleState@MxPresenter@@@Z +S_PUB32: [0001:0004E51A], Flags: 00000000, _SetRect@20 +S_PUB32: [0001:0004EC30], Flags: 00000000, _strtok +S_PUB32: [0004:0000C644], Flags: 00000000, __crtheap +S_PUB32: [0001:00006EA0], Flags: 00000000, ??_ELegoCarBuildAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00038180], Flags: 00000000, ?RealizePalette@MxSmkPresenter@@UAEXXZ +S_PUB32: [0001:00014240], Flags: 00000000, ??_E?$MxCollection@PAVLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0005:00000588], Flags: 00000000, __imp__midiOutUnprepareHeader@12 +S_PUB32: [0001:00024060], Flags: 00000000, ?FUN_100d1b20@MxDiskStreamProvider@@QAEJPAVMxDSStreamingAction@@@Z +S_PUB32: [0004:00003C40], Flags: 00000000, ?g_unk101013d8@@3EA +S_PUB32: [0001:000382D0], Flags: 00000000, ??_EMxSoundManager@@UAEPAXI@Z +S_PUB32: [0001:00002890], Flags: 00000000, ?ClassName@Helicopter@@UBEPBDXZ +S_PUB32: [0001:0000A3C0], Flags: 00000000, ?SetControlMax@LegoNavController@@QAEXHH@Z +S_PUB32: [0001:00046D00], Flags: 00000000, ?_Erase@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@IAEXPAU_Node@1@@Z +S_PUB32: [0001:00001760], Flags: 00000000, ?IsA@Bike@@UBEEPBD@Z +S_PUB32: [0001:00037C40], Flags: 00000000, ??_GMxRectList@@UAEPAXI@Z +S_PUB32: [0003:00003AD8], Flags: 00000000, ??_7MxDSStreamingAction@@6B@ +S_PUB32: [0001:0004C940], Flags: 00000000, @_shi_poolFree@8 +S_PUB32: [0001:0006265E], Flags: 00000000, _GetProcAddress@8 +S_PUB32: [0001:0001E280], Flags: 00000000, ??0MxCore@@QAE@XZ +S_PUB32: [0001:00027E90], Flags: 00000000, ?HasId@MxDSMultiAction@@UAEEI@Z +S_PUB32: [0003:0000599C], Flags: 00000000, ??_C@_0BA@MKDC@german?9austrian?$AA@ +S_PUB32: [0001:000514FB], Flags: 00000000, __ctrandisp2 +S_PUB32: [0002:000034A0], Flags: 00000000, _SmackGetRect +S_PUB32: [0003:00004E78], Flags: 00000000, ??_7?$LODList@VViewLOD@@@@6B@ +S_PUB32: [0001:0003D340], Flags: 00000000, ?SetValue@MxVariable@@UAEXPBD@Z +S_PUB32: [0001:00052710], Flags: 00000000, __unlock_file +S_PUB32: [0001:0004E4FC], Flags: 00000000, _GetDC@4 +S_PUB32: [0001:00041E00], Flags: 00000000, ?LenSquared@Vector4Impl@@UBEMXZ +S_PUB32: [0001:0002D300], Flags: 00000000, ??_EMxLoopingFlcPresenter@@UAEPAXI@Z +S_PUB32: [0001:0005C4F0], Flags: 00000000, __except2 +S_PUB32: [0003:00002C08], Flags: 00000000, ??_7LegoPathPresenter@@6B@ +S_PUB32: [0004:00000E04], Flags: 00000000, ?g_carraceScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0005C430], Flags: 00000000, __except1 +S_PUB32: [0003:00005798], Flags: 00000000, ??_C@_03EJIM@grc?$AA@ +S_PUB32: [0003:00005824], Flags: 00000000, ??_C@_03GNNO@aus?$AA@ +S_PUB32: [0001:00015D00], Flags: 00000000, ??_ELegoRace@@UAEPAXI@Z +S_PUB32: [0001:0002B550], Flags: 00000000, ??_G?$MxCollection@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0001:00015390], Flags: 00000000, ?VTable0x9c@LegoPathActor@@UAEXXZ +S_PUB32: [0003:000058C8], Flags: 00000000, ??_C@_06CDNL@polish?$AA@ +S_PUB32: [0001:00061BE0], Flags: 00000000, ___crtCompareStringW +S_PUB32: [0001:0001A950], Flags: 00000000, ??_EMxEndActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:0005D8C0], Flags: 00000000, ___init_time +S_PUB32: [0001:00031390], Flags: 00000000, ?Timer@@YAPAVMxTimer@@XZ +S_PUB32: [0004:000035E8], Flags: 00000000, ??_C@_0L@JJON@MxDSBuffer?$AA@ +S_PUB32: [0003:00003308], Flags: 00000000, ??_7MxType4NotificationParam@@6B@ +S_PUB32: [0001:00042050], Flags: 00000000, ?MullScalarImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0001:0001A1A0], Flags: 00000000, ??_E?$MxListCursor@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:0004EB40], Flags: 00000000, _atoi +S_PUB32: [0004:00005FB8], Flags: 00000000, ___rgrgwlang +S_PUB32: [0004:00001200], Flags: 00000000, ??_C@_0BB@JDIL@lego?5lt?5grey?5flt?$AA@ +S_PUB32: [0003:00000C38], Flags: 00000000, ??_7Vector4Impl@@6B@ +S_PUB32: [0004:00003558], Flags: 00000000, ??_C@_0BB@GACF@MxStreamProvider?$AA@ +S_PUB32: [0001:000184E0], Flags: 00000000, ?MoveCursor@LegoVideoManager@@QAEXHH@Z +S_PUB32: [0001:0004EA90], Flags: 00000000, _atol +S_PUB32: [0001:00003DF0], Flags: 00000000, ??_EHospitalState@@UAEPAXI@Z +S_PUB32: [0004:00004920], Flags: 00000000, ___mblcid +S_PUB32: [0003:00005728], Flags: 00000000, ??_C@_05OOCK@korea?$AA@ +S_PUB32: [0004:00000ACC], Flags: 00000000, ??_C@_0BB@NMBG@RaceStandsEntity?$AA@ +S_PUB32: [0001:0004E4F0], Flags: 00000000, _PostMessageA@16 +S_PUB32: [0003:00001888], Flags: 00000000, ??_7MxNotificationParam@@6B@ +S_PUB32: [0001:0001C7D0], Flags: 00000000, ?VTable0x2c@MxBitmap@@UAEXHHHHHHH@Z +S_PUB32: [0001:0004BD70], Flags: 00000000, __shi_leaveCriticalSection@0 +S_PUB32: [0001:00011C50], Flags: 00000000, ??_ELegoCarRaceActor@@UAEPAXI@Z +S_PUB32: [0001:00007670], Flags: 00000000, ?ReadyTickle@LegoEntityPresenter@@UAEXXZ +S_PUB32: [0001:00009E00], Flags: 00000000, ??_EMxWavePresenter@@UAEPAXI@Z +S_PUB32: [0001:00012440], Flags: 00000000, ??1IsleActor@@UAE@XZ +S_PUB32: [0001:00055B90], Flags: 00000000, ___crtGetEnvironmentStringsW +S_PUB32: [0004:00000E60], Flags: 00000000, ?g_nocdSourceName@@3PAVMxAtomId@@A +S_PUB32: [0001:00002A40], Flags: 00000000, ??1Helicopter@@UAE@XZ +S_PUB32: [0001:00015780], Flags: 00000000, ?AddToManager@LegoPathPresenter@@UAEJXZ +S_PUB32: [0004:0000176C], Flags: 00000000, ??_C@_0BL@JMDO@SetCooperativeLevel?5failed?$AA@ +S_PUB32: [0001:0005A440], Flags: 00000000, ___sbh_alloc_block_from_page +S_PUB32: [0003:000056AC], Flags: 00000000, ??_C@_06NHNE@russia?$AA@ +S_PUB32: [0001:00042500], Flags: 00000000, ??1Score@@UAE@XZ +S_PUB32: [0001:0001A7B0], Flags: 00000000, ?Clone@MxEndActionNotificationParam@@UAEPAVMxNotificationParam@@XZ +S_PUB32: [0001:000576A0], Flags: 00000000, __alloc_osfhnd +S_PUB32: [0001:0003F830], Flags: 00000000, ?Destroy@MxWavePresenter@@UAEXXZ +S_PUB32: [0003:00001FC0], Flags: 00000000, ??_7IsleActor@@6B@ +S_PUB32: [0001:00011840], Flags: 00000000, ?IsA@JukeBoxState@@UBEEPBD@Z +S_PUB32: [0005:00000504], Flags: 00000000, __imp__GetStartupInfoA@4 +S_PUB32: [0001:00006960], Flags: 00000000, ??_ELegoCameraController@@UAEPAXI@Z +S_PUB32: [0003:00005C60], Flags: 00000000, ??_C@_03MGHB@May?$AA@ +S_PUB32: [0001:00031430], Flags: 00000000, ??0MxOmni@@QAE@XZ +S_PUB32: [0001:00041840], Flags: 00000000, ?MullScalarImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0001:00041900], Flags: 00000000, ?Dot@Vector2Impl@@UBEMPAM0@Z +S_PUB32: [0001:000026A0], Flags: 00000000, ??_GGasStationState@@UAEPAXI@Z +S_PUB32: [0001:00038B30], Flags: 00000000, ?Destroy@MxStillPresenter@@AAEXE@Z +S_PUB32: [0003:00004838], Flags: 00000000, ??_7RadioState@@6B@ +S_PUB32: [0001:00015850], Flags: 00000000, ?Destroy@LegoPathPresenter@@UAEXXZ +S_PUB32: [0001:000173A0], Flags: 00000000, ?NotifyEntity@@YAXPBDHPAVLegoEntity@@@Z +S_PUB32: [0001:00045BC0], Flags: 00000000, ?ViewportCreateAppData@ViewImpl@TglImpl@@SA?AW4Result@Tgl@@PAUIDirect3DRM2@@PAUIDirect3DRMViewport@@PAUIDirect3DRMFrame2@@@Z +S_PUB32: [0004:00006740], Flags: 00000000, ?g_saveData3@@3PAULegoSaveDataEntry3@@A +S_PUB32: [0001:00038E20], Flags: 00000000, ?StartingTickle@MxStillPresenter@@UAEXXZ +S_PUB32: [0001:0001A0B0], Flags: 00000000, ?_Buynode@?$list@PAVMxPresenter@@V?$allocator@PAVMxPresenter@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0003:00004AB0], Flags: 00000000, ??_7Mesh@Tgl@@6B@ +S_PUB32: [0003:00004AD8], Flags: 00000000, ??_7MeshImpl@TglImpl@@6B@ +S_PUB32: [0003:00003618], Flags: 00000000, ??_7MxDSAction@@6B@ +S_PUB32: [0001:00003B10], Flags: 00000000, ?IsA@Hospital@@UBEEPBD@Z +S_PUB32: [0001:000146D0], Flags: 00000000, ?DoesEntityExist@LegoOmni@@UAEEAAVMxDSAction@@@Z +S_PUB32: [0004:00000730], Flags: 00000000, ??_C@_09IADI@lego?5blue?$AA@ +S_PUB32: [0001:0001B490], Flags: 00000000, ?_Lbound@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@IBEPAU_Node@1@ABQAVMxAtomIdCounter@@@Z +S_PUB32: [0001:00016040], Flags: 00000000, ??_GROI@@UAEPAXI@Z +S_PUB32: [0004:0000055C], Flags: 00000000, ??_C@_0BI@GAJJ@LegoFlcTexturePresenter?$AA@ +S_PUB32: [0001:0001F950], Flags: 00000000, ?ParseDeviceName@MxDeviceEnumerate@@QAEHPBD@Z +S_PUB32: [0004:00004310], Flags: 00000000, ___decimal_point +S_PUB32: [0001:00050E20], Flags: 00000000, __ms_p5_test_fdiv +S_PUB32: [0004:0000341C], Flags: 00000000, ??_C@_0DO@BGNF@This?5surface?5can?5not?5be?5detached@ +S_PUB32: [0001:00041520], Flags: 00000000, ?GetWorldVelocity@OrientableROI@@UBEABVVector3@@XZ +S_PUB32: [0001:00029CF0], Flags: 00000000, ??1MxStringListCursor@@UAE@XZ +S_PUB32: [0001:0000FA90], Flags: 00000000, ?IsA@LegoCarRaceActor@@UBEEPBD@Z +S_PUB32: [0001:00012020], Flags: 00000000, ??_EAct2PoliceStation@@UAEPAXI@Z +S_PUB32: [0001:0002D3A0], Flags: 00000000, ?Destroy@MxLoopingFlcPresenter@@AAEXE@Z +S_PUB32: [0001:00005BA0], Flags: 00000000, ?FUN_1005f6d0@LegoAnimationManager@@QAEXE@Z +S_PUB32: [0003:00001738], Flags: 00000000, ??_7LegoLoopingAnimPresenter@@6B@ +S_PUB32: [0001:00031060], Flags: 00000000, ?ClassName@MxStillPresenter@@UBEPBDXZ +S_PUB32: [0003:000022D8], Flags: 00000000, ??_7JetskiRaceState@@6B@ +S_PUB32: [0004:00003D04], Flags: 00000000, __imp___heapmin +S_PUB32: [0004:00000B18], Flags: 00000000, ??_C@_0N@KAFG@JukeBoxState?$AA@ +S_PUB32: [0004:00003FFC], Flags: 00000000, __FPinit +S_PUB32: [0003:000054F8], Flags: 00000000, ??_C@_01FAJB@?$DL?$AA@ +S_PUB32: [0003:00004140], Flags: 00000000, ??_7MxRegionTopBottomList@@6B@ +S_PUB32: [0001:00055B70], Flags: 00000000, __getmbcp +S_PUB32: [0001:00010A80], Flags: 00000000, ?ClassName@Act2PoliceStation@@UBEPBDXZ +S_PUB32: [0001:00049EB0], Flags: 00000000, @_shi_isBlockInUseFS@12 +S_PUB32: [0001:00004F20], Flags: 00000000, ??_EJetski@@UAEPAXI@Z +S_PUB32: [0004:00001224], Flags: 00000000, ??_C@_0BA@BGAK@lego?5green?5flat?$AA@ +S_PUB32: [0001:0002A7D0], Flags: 00000000, ?CopyFrom@MxDSSerialAction@@QAEXAAV1@@Z +S_PUB32: [0001:00011AD0], Flags: 00000000, ??_ELegoRaceCar@@UAEPAXI@Z +S_PUB32: [0001:00012490], Flags: 00000000, ??_EInfoCenterEntity@@UAEPAXI@Z +S_PUB32: [0001:00031380], Flags: 00000000, ?TickleManager@@YAPAVMxTickleManager@@XZ +S_PUB32: [0001:000313E0], Flags: 00000000, ?VariableTable@@YAPAVMxVariableTable@@XZ +S_PUB32: [0001:0003AB20], Flags: 00000000, ?Create@MxStreamer@@UAEJXZ +S_PUB32: [0001:00006C60], Flags: 00000000, ??_ELegoCarBuild@@UAEPAXI@Z +S_PUB32: [0001:000458E0], Flags: 00000000, ?GetBufferAndPalette@TextureImpl@TglImpl@@UAE?AW4Result@Tgl@@PAH00PAPAX0PAPAUPaletteEntry@4@@Z +S_PUB32: [0005:00000424], Flags: 00000000, __imp__CreateEventA@16 +S_PUB32: [0001:00001AE0], Flags: 00000000, ??_GLegoEntity@@UAEPAXI@Z +S_PUB32: [0001:00009E20], Flags: 00000000, ??_EMxSoundPresenter@@UAEPAXI@Z +S_PUB32: [0001:0001F090], Flags: 00000000, ??1MxDevice@@QAE@XZ +S_PUB32: [0001:0002DA50], Flags: 00000000, ??1MxStreamChunkListCursor@@UAE@XZ +S_PUB32: [0001:00006370], Flags: 00000000, ??1MxVariable@@QAE@XZ +S_PUB32: [0004:00004370], Flags: 00000000, __locktable +S_PUB32: [0003:00005C18], Flags: 00000000, ??_C@_04ICFP@June?$AA@ +S_PUB32: [0003:000043E8], Flags: 00000000, ??_7?$MxPtrList@VMxRect32@@@@6B@ +S_PUB32: [0001:000137B0], Flags: 00000000, ??_ELegoOmni@@UAEPAXI@Z +S_PUB32: [0004:00000AE0], Flags: 00000000, ??_C@_08HAOO@LegoAct2?$AA@ +S_PUB32: [0003:00001850], Flags: 00000000, ??_7?$MxQueue@VLegoEventNotificationParam@@@@6B@ +S_PUB32: [0004:00000718], Flags: 00000000, ??_C@_0L@FGEB@c_chsidry0?$AA@ +S_PUB32: [0001:0003CE10], Flags: 00000000, ?TransitionWindows@MxTransitionManager@@AAEXXZ +S_PUB32: [0001:000411C0], Flags: 00000000, ?AnotherSetData@Matrix4Impl@@UAEXAAVMatrix4@@@Z +S_PUB32: [0001:000627B0], Flags: 00000000, __strnicmp +S_PUB32: [0004:00001560], Flags: 00000000, ?g_useMutex@@3HA +S_PUB32: [0001:0004E3AC], Flags: 00000000, _midiStreamStop@4 +S_PUB32: [0001:0005B3C0], Flags: 00000000, ___crtLCMapStringA +S_PUB32: [0003:00005C54], Flags: 00000000, ??_C@_03CMCH@Aug?$AA@ +S_PUB32: [0001:00056A10], Flags: 00000000, __ld12tof +S_PUB32: [0001:0004BD30], Flags: 00000000, @shi_leavePoolMutexShr@4 +S_PUB32: [0001:00025EE0], Flags: 00000000, ?FUN_100c67b0@MxDSBuffer@@QAEJPAVMxStreamController@@PAVMxDSAction@@PAPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:000569F0], Flags: 00000000, __ld12tod +S_PUB32: [0003:000048E8], Flags: 00000000, ??_7Score@@6B@ +S_PUB32: [0005:0000047C], Flags: 00000000, __imp__QueryPerformanceCounter@4 +S_PUB32: [0003:00003050], Flags: 00000000, ??_7?$MxPtrList@VMxPresenter@@@@6B@ +S_PUB32: [0003:0000574C], Flags: 00000000, ??_C@_07FGBB@iceland?$AA@ +S_PUB32: [0001:00056E5C], Flags: 00000000, __rttosnpop +S_PUB32: [0001:0003AA10], Flags: 00000000, ??_EMxStreamer@@UAEPAXI@Z +S_PUB32: [0003:00005704], Flags: 00000000, ??_C@_0M@OFEA@new?5zealand?$AA@ +S_PUB32: [0001:0002F6C0], Flags: 00000000, ?AddToManager@MxMusicPresenter@@UAEJXZ +S_PUB32: [0004:0000328C], Flags: 00000000, ??_C@_0FJ@LIA@A?5DirectDraw?5object?5representing@ +S_PUB32: [0003:00004BD0], Flags: 00000000, ??_7View@Tgl@@6B@ +S_PUB32: [0003:00004C10], Flags: 00000000, ??_7ViewImpl@TglImpl@@6B@ +S_PUB32: [0001:000228E0], Flags: 00000000, ?FUN_100c7db0@MxDiskStreamController@@AAEPAVMxDSStreamingAction@@XZ +S_PUB32: [0001:0004C0B0], Flags: 00000000, _MemPoolInit@4 +S_PUB32: [0001:00015B00], Flags: 00000000, ?VTable0x5c@LegoRace@@UAEEXZ +S_PUB32: [0001:00009610], Flags: 00000000, ?ProcessEvents@LegoInputManager@@QAEXXZ +S_PUB32: [0001:00032FF0], Flags: 00000000, ??1MxPalette@@UAE@XZ +S_PUB32: [0001:00029680], Flags: 00000000, ?GetValue@?$MxListEntry@VMxString@@@@QAE?AVMxString@@XZ +S_PUB32: [0001:00035070], Flags: 00000000, ??_GMxRegionTopBottomListCursor@@UAEPAXI@Z +S_PUB32: [0001:000604C0], Flags: 00000000, ___getlocaleinfo +S_PUB32: [0001:00042880], Flags: 00000000, ?Stop@Score@@UAEXXZ +S_PUB32: [0004:00001484], Flags: 00000000, ?g_someHandlerFunction@@3P6AEPAD0I@ZA +S_PUB32: [0001:0006273C], Flags: 00000000, _GetFileAttributesA@4 +S_PUB32: [0001:0002C6C0], Flags: 00000000, ?StartingTickle@MxEventPresenter@@UAEXXZ +S_PUB32: [0004:000024D0], Flags: 00000000, ??_C@_0EG@PNII@Returned?5when?5an?5overlay?5member?5@ +S_PUB32: [0001:00056020], Flags: 00000000, ?_ValidateWrite@@YAHPAXI@Z +S_PUB32: [0001:00057930], Flags: 00000000, __get_osfhandle +S_PUB32: [0001:000313F0], Flags: 00000000, ?MusicManager@@YAPAVMxMusicManager@@XZ +S_PUB32: [0001:000240A0], Flags: 00000000, ?GetBufferForDWords@MxDiskStreamProvider@@UAEPAIXZ +S_PUB32: [0005:0000051C], Flags: 00000000, __imp__GetCPInfo@8 +S_PUB32: [0001:000252E0], Flags: 00000000, ??1MxDSAction@@UAE@XZ +S_PUB32: [0001:00033380], Flags: 00000000, ?Detach@MxPalette@@QAEXXZ +S_PUB32: [0001:00038350], Flags: 00000000, ?Init@MxSoundManager@@AAEXXZ +S_PUB32: [0003:00003590], Flags: 00000000, ??_7MxDiskStreamProviderThread@@6B@ +S_PUB32: [0001:0001F0D0], Flags: 00000000, ?Init@MxDevice@@QAEXPAU_GUID@@PAD1PAU_D3DDeviceDesc@@2@Z +S_PUB32: [0005:00000478], Flags: 00000000, __imp__Sleep@4 +S_PUB32: [0001:00053F20], Flags: 00000000, __FF_MSGBANNER +S_PUB32: [0003:000058E8], Flags: 00000000, ??_C@_0BB@PBHK@norwegian?9bokmal?$AA@ +S_PUB32: [0001:00044190], Flags: 00000000, ?CreateRenderer@Tgl@@YAPAVRenderer@1@XZ +S_PUB32: [0001:00028300], Flags: 00000000, ?SetAtomId@MxDSMultiAction@@UAEXVMxAtomId@@@Z +S_PUB32: [0001:00043590], Flags: 00000000, ?Update@DeviceImpl@TglImpl@@UAE?AW4Result@Tgl@@XZ +S_PUB32: [0001:0004E50E], Flags: 00000000, _AdjustWindowRectEx@16 +S_PUB32: [0004:000035CC], Flags: 00000000, ??_C@_08KILJ@MxDSAnim?$AA@ +S_PUB32: [0003:00005710], Flags: 00000000, ??_C@_0M@POGE@netherlands?$AA@ +S_PUB32: [0001:00003E60], Flags: 00000000, ??0Infocenter@@QAE@XZ +S_PUB32: [0004:000009B0], Flags: 00000000, ??_C@_01PACF@G?$AA@ +S_PUB32: [0001:0000C5D0], Flags: 00000000, ??_GLegoObjectFactory@@UAEPAXI@Z +S_PUB32: [0001:00031070], Flags: 00000000, ?IsA@MxStillPresenter@@UBEEPBD@Z +S_PUB32: [0001:00025000], Flags: 00000000, ?VTable0x2c@MxDisplaySurface@@UAEEPAU_DDSURFACEDESC@@PAVMxBitmap@@IIIIIIE@Z +S_PUB32: [0001:0003FAD0], Flags: 00000000, ?StartingTickle@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:00019280], Flags: 00000000, ??1?$MxCollection@PAVLegoPathController@@@@UAE@XZ +S_PUB32: [0001:00062724], Flags: 00000000, _GetStringTypeA@20 +S_PUB32: [0003:00002028], Flags: 00000000, ??_7Act3Shark@@6B@ +S_PUB32: [0001:00025920], Flags: 00000000, ?ClassName@MxDSAnim@@UBEPBDXZ +S_PUB32: [0003:0000539C], Flags: 00000000, ??_C@_0CF@LKPB@R6002?$AN?6?9?5floating?5point?5not?5load@ +S_PUB32: [0001:00029590], Flags: 00000000, ??_G?$MxList@VMxString@@@@UAEPAXI@Z +S_PUB32: [0001:0002F600], Flags: 00000000, ??1MxMusicPresenter@@UAE@XZ +S_PUB32: [0003:00004CC0], Flags: 00000000, ??_7Camera@Tgl@@6B@ +S_PUB32: [0003:00004CD0], Flags: 00000000, ??_7CameraImpl@TglImpl@@6B@ +S_PUB32: [0001:00039000], Flags: 00000000, ?Enable@MxStillPresenter@@UAEXE@Z +S_PUB32: [0001:0001CA80], Flags: 00000000, ?ImportColorsToPalette@MxBitmap@@AAEJPAUtagRGBQUAD@@PAVMxPalette@@@Z +S_PUB32: [0001:000251A0], Flags: 00000000, ?ClassName@MxDSAction@@UBEPBDXZ +S_PUB32: [0001:000315E0], Flags: 00000000, ?Create@MxOmni@@UAEJAAVMxOmniCreateParam@@@Z +S_PUB32: [0001:00005E80], Flags: 00000000, ?IsA@MxPresenter@@UBEEPBD@Z +S_PUB32: [0001:00029100], Flags: 00000000, ??4MxDSParallelAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:0001F750], Flags: 00000000, ?EnumDisplayModesCallback@MxDeviceEnumerate@@QAEJPAU_DDSURFACEDESC@@@Z +S_PUB32: [0001:00062766], Flags: 00000000, _SetEndOfFile@4 +S_PUB32: [0001:00029310], Flags: 00000000, ??0MxDSSelectAction@@QAE@XZ +S_PUB32: [0001:0003C580], Flags: 00000000, ??_EMxTransitionManager@@UAEPAXI@Z +S_PUB32: [0001:00037D00], Flags: 00000000, ??_G?$MxCollection@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0003:00005968], Flags: 00000000, ??_C@_09OEEF@icelandic?$AA@ +S_PUB32: [0001:000412B0], Flags: 00000000, ?TranslateBy@Matrix4Impl@@UAEXPBM00@Z +S_PUB32: [0004:000047CA], Flags: 00000000, __OP_LOGjmptab +S_PUB32: [0001:0005CD60], Flags: 00000000, __matherr +S_PUB32: [0001:00006CD0], Flags: 00000000, ?Tickle@LegoCarBuild@@UAEJXZ +S_PUB32: [0003:00005648], Flags: 00000000, ??_C@_03IGKO@twn?$AA@ +S_PUB32: [0001:0003DE40], Flags: 00000000, ?UpdateRegion@MxVideoManager@@QAEXXZ +S_PUB32: [0001:00012360], Flags: 00000000, ??_ECarRaceState@@UAEPAXI@Z +S_PUB32: [0004:0000377C], Flags: 00000000, ?g_instance@MxOmni@@1PAV1@A +S_PUB32: [0004:00000D20], Flags: 00000000, ??_C@_0L@IIBN@LegoJetski?$AA@ +S_PUB32: [0004:00004A7A], Flags: 00000000, __piby2 +S_PUB32: [0001:00051480], Flags: 00000000, __cintrindisp2 +S_PUB32: [0003:00005114], Flags: 00000000, ??_C@_04GGNP@?4com?$AA@ +S_PUB32: [0001:00035630], Flags: 00000000, ??_G?$MxCollection@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:000069F0], Flags: 00000000, ?FUN_10012740@LegoCameraController@@QAEAAVVector3Data@@XZ +S_PUB32: [0003:000057F4], Flags: 00000000, ??_C@_06GEHJ@brazil?$AA@ +S_PUB32: [0001:0003ED80], Flags: 00000000, ?NextFrame@MxVideoPresenter@@UAEXXZ +S_PUB32: [0004:00002990], Flags: 00000000, ??_C@_0BK@NIFJ@There?5is?5no?5GDI?5present?4?$AA?$AA@ +S_PUB32: [0001:00015AC0], Flags: 00000000, ?Init@LegoPlantManager@@AAEXXZ +S_PUB32: [0001:00015610], Flags: 00000000, ?IsA@LegoPathPresenter@@UBEEPBD@Z +S_PUB32: [0001:00014360], Flags: 00000000, ??_G?$MxPtrList@VLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0004:00000670], Flags: 00000000, ??_C@_0L@MFOD@c_jshndly0?$AA@ +S_PUB32: [0001:0002EF90], Flags: 00000000, ?EndAction@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0001:0004C160], Flags: 00000000, _MemPoolInitNamedSharedEx@28 +S_PUB32: [0001:00007570], Flags: 00000000, ?Init@LegoEntityPresenter@@UAEXXZ +S_PUB32: [0004:00000B6C], Flags: 00000000, ??_C@_0P@OLOK@HospitalEntity?$AA@ +S_PUB32: [0001:00041A90], Flags: 00000000, ?SetVector@Vector2Impl@@UAEXPAV1@@Z +S_PUB32: [0001:00004F90], Flags: 00000000, ??0JukeBox@@QAE@XZ +S_PUB32: [0001:00008E40], Flags: 00000000, ??_E?$MxCollection@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0003:000040F8], Flags: 00000000, ??_7MxPalette@@6B@ +S_PUB32: [0001:0001FC90], Flags: 00000000, ?FUN_1009d1e0@MxDeviceEnumerate@@SAIXZ +S_PUB32: [0001:000028A0], Flags: 00000000, ?IsA@Helicopter@@UBEEPBD@Z +S_PUB32: [0001:00009190], Flags: 00000000, ?Destroy@LegoInputManager@@UAEXXZ +S_PUB32: [0005:000003E8], Flags: 00000000, __imp__HeapFree@12 +S_PUB32: [0003:00004198], Flags: 00000000, ??_7?$MxList@PAUMxRegionTopBottom@@@@6B@ +S_PUB32: [0001:00019360], Flags: 00000000, ??1?$MxPtrList@VLegoPathController@@@@UAE@XZ +S_PUB32: [0001:0002EC10], Flags: 00000000, ?IsA@MxMIDIPresenter@@UBEEPBD@Z +S_PUB32: [0001:0002B4E0], Flags: 00000000, ??_EMxStreamChunkList@@UAEPAXI@Z +S_PUB32: [0003:00002AE0], Flags: 00000000, ??_7LegoMemoryStream@@6B@ +S_PUB32: [0001:00062670], Flags: 00000000, _TlsFree@4 +S_PUB32: [0001:000182B0], Flags: 00000000, ??_GMxUnknown100d9d00@@UAEPAXI@Z +S_PUB32: [0003:00003738], Flags: 00000000, ??_7MxDSFile@@6B@ +S_PUB32: [0003:000054CC], Flags: 00000000, ??_C@_0M@CBIH@LC_MONETARY?$AA@ +S_PUB32: [0001:00001120], Flags: 00000000, ?ClassName@Ambulance@@UBEPBDXZ +S_PUB32: [0001:00010910], Flags: 00000000, ?IsA@PizzaMissionState@@UBEEPBD@Z +S_PUB32: [0003:000053C4], Flags: 00000000, ??_C@_0CF@JPDF@Microsoft?5Visual?5C?$CL?$CL?5Runtime?5Lib@ +S_PUB32: [0003:000055C8], Flags: 00000000, ??_C@_04NPAI@sinh?$AA@ +S_PUB32: [0001:000337E0], Flags: 00000000, ?EndAction@MxPresenter@@UAEXXZ +S_PUB32: [0001:0004EDC0], Flags: 00000000, ___onexitinit +S_PUB32: [0004:00000664], Flags: 00000000, ??_C@_0L@LKJD@c_jslsidy0?$AA@ +S_PUB32: [0001:00051960], Flags: 00000000, __flsbuf +S_PUB32: [0001:00057890], Flags: 00000000, __free_osfhnd +S_PUB32: [0005:00000348], Flags: 00000000, __imp__GetDeviceCaps@8 +S_PUB32: [0003:00005938], Flags: 00000000, ??_C@_0O@BEAN@italian?9swiss?$AA@ +S_PUB32: [0001:0002F870], Flags: 00000000, ??_GMxNotificationManager@@UAEPAXI@Z +S_PUB32: [0001:00011D10], Flags: 00000000, ??_GLegoJetskiRaceActor@@UAEPAXI@Z +S_PUB32: [0004:000002E8], Flags: 00000000, ?g_strWORLD@@3PBDB +S_PUB32: [0001:00032E90], Flags: 00000000, ??0MxPalette@@QAE@XZ +S_PUB32: [0005:0000053C], Flags: 00000000, __imp__DrawMenuBar@4 +S_PUB32: [0001:0002B2C0], Flags: 00000000, ?FUN_100cd2d0@MxDSStreamingAction@@QAEXXZ +S_PUB32: [0001:00022480], Flags: 00000000, ?VTable0x34@MxDiskStreamController@@UAEJI@Z +S_PUB32: [0001:00059E60], Flags: 00000000, ___sbh_new_region +S_PUB32: [0001:000626A6], Flags: 00000000, _SetHandleCount@4 +S_PUB32: [0003:00003BF8], Flags: 00000000, ??_7MxEventPresenter@@6B@ +S_PUB32: [0003:000058A4], Flags: 00000000, ??_C@_0BF@KMMM@portuguese?9brazilian?$AA@ +S_PUB32: [0003:00005AC0], Flags: 00000000, ??_C@_03OBGF@dea?$AA@ +S_PUB32: [0001:00039720], Flags: 00000000, ??1MxStreamListMxDSSubscriber@@QAE@XZ +S_PUB32: [0001:0001B630], Flags: 00000000, ?Destroy@MxAudioManager@@AAEXE@Z +S_PUB32: [0001:000628B0], Flags: 00000000, __strlwr +S_PUB32: [0001:0005987C], Flags: 00000000, __safe_fdiv +S_PUB32: [0005:00000350], Flags: 00000000, __imp__SelectPalette@12 +S_PUB32: [0001:000439E0], Flags: 00000000, ?Remove@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVMesh@4@@Z +S_PUB32: [0001:000024C0], Flags: 00000000, ??_EGasStation@@UAEPAXI@Z +S_PUB32: [0001:00004060], Flags: 00000000, ?Notify@Infocenter@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00018490], Flags: 00000000, ?Destroy@LegoVideoManager@@UAEXXZ +S_PUB32: [0001:00037950], Flags: 00000000, ?LoadFrame@MxSmkPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:0004E780], Flags: 00000000, ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z +S_PUB32: [0001:0001A210], Flags: 00000000, ??1MxDSActionListCursor@@UAE@XZ +S_PUB32: [0001:0003EDD0], Flags: 00000000, ?IsHit@MxVideoPresenter@@UAEEHH@Z +S_PUB32: [0001:00030ED0], Flags: 00000000, ?ClassName@MxLoopingMIDIPresenter@@UBEPBDXZ +S_PUB32: [0001:00007EC0], Flags: 00000000, ?WriteEndOfVariables@LegoGameState@@AAEJPAVLegoStream@@@Z +S_PUB32: [0001:00005C50], Flags: 00000000, ?IsA@LegoAnimMMPresenter@@UBEEPBD@Z +S_PUB32: [0003:00005134], Flags: 00000000, ??_C@_02OFKN@?4?2?$AA@ +S_PUB32: [0004:00000F60], Flags: 00000000, ??_C@_0BM@HKAK@?2lego?2scripts?2garage?2garage?$AA@ +S_PUB32: [0001:00060D40], Flags: 00000000, _strcmpi +S_PUB32: [0001:0000A330], Flags: 00000000, ??_ELegoNavController@@UAEPAXI@Z +S_PUB32: [0001:00041860], Flags: 00000000, ?DivScalarImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0001:00032C20], Flags: 00000000, ??1?$MxHashTable@PAVMxVariable@@@@UAE@XZ +S_PUB32: [0003:00005538], Flags: 00000000, ??_C@_03MHCE@_y0?$AA@ +S_PUB32: [0001:00056EC7], Flags: 00000000, __nan2 +S_PUB32: [0001:0002B750], Flags: 00000000, ??_GMxDSSubscriber@@UAEPAXI@Z +S_PUB32: [0001:00023690], Flags: 00000000, ?IsA@MxDiskStreamProvider@@UBEEPBD@Z +S_PUB32: [0001:00000970], Flags: 00000000, ?VTable0x64@LegoActor@@UAEXE@Z +S_PUB32: [0003:000046E0], Flags: 00000000, ??_7PoliceState@@6B@ +S_PUB32: [0004:00001520], Flags: 00000000, ?g_legoWorldPresenterQuality@@3IA +S_PUB32: [0001:00014B50], Flags: 00000000, ?CreateStreamObject@@YAPAVMxDSObject@@PAVMxDSFile@@F@Z +S_PUB32: [0001:00061A40], Flags: 00000000, _getenv +S_PUB32: [0001:0004BC40], Flags: 00000000, @shi_initPoolMutexShr@4 +S_PUB32: [0003:00005768], Flags: 00000000, ??_C@_09OHNN@hong?5kong?$AA@ +S_PUB32: [0001:00005680], Flags: 00000000, ?ReadyTickle@LegoActionControlPresenter@@UAEXXZ +S_PUB32: [0001:00061570], Flags: 00000000, _towupper +S_PUB32: [0001:00039860], Flags: 00000000, ??1?$List@PAVMxDSSubscriber@@@@QAE@XZ +S_PUB32: [0001:00004690], Flags: 00000000, ??_EIsle@@UAEPAXI@Z +S_PUB32: [0001:0003B0B0], Flags: 00000000, ??_GMxStreamerNotification@@UAEPAXI@Z +S_PUB32: [0003:000045D8], Flags: 00000000, ??_7Pizza@@6B@ +S_PUB32: [0003:000035C8], Flags: 00000000, ??_7MxDisplaySurface@@6B@ +S_PUB32: [0001:00015A70], Flags: 00000000, ??1LegoPlantManager@@UAE@XZ +S_PUB32: [0004:00000DB4], Flags: 00000000, ??_C@_0BA@EFDM@MxObjectFactory?$AA@ +S_PUB32: [0003:000039B8], Flags: 00000000, ??_7MxStringList@@6B@ +S_PUB32: [0001:00023740], Flags: 00000000, ??_EMxDiskStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:00026D30], Flags: 00000000, ?IsA@MxDSFile@@UBEEPBD@Z +S_PUB32: [0004:00000144], Flags: 00000000, ??_C@_05KFHK@WORLD?$AA@ +S_PUB32: [0001:0004D2B0], Flags: 00000000, @_shi_deleteThreadContext@8 +S_PUB32: [0001:00010E10], Flags: 00000000, ?ClassName@BeachHouseEntity@@UBEPBDXZ +S_PUB32: [0004:00004340], Flags: 00000000, __environ +S_PUB32: [0001:0002C5F0], Flags: 00000000, ?Destroy@MxEventPresenter@@UAEXXZ +S_PUB32: [0003:00005C48], Flags: 00000000, ??_C@_03PDLM@Nov?$AA@ +S_PUB32: [0003:00005A0C], Flags: 00000000, ??_C@_03KPHI@esn?$AA@ +S_PUB32: [0001:00019B90], Flags: 00000000, ?FUN_10073430@LegoWorld@@QAEXXZ +S_PUB32: [0001:0001DE20], Flags: 00000000, ?SetTickleState@MxCompositePresenter@@UAEXW4TickleState@MxPresenter@@@Z +S_PUB32: [0004:00000084], Flags: 00000000, ??_C@_04LEO@Act3?$AA@ +S_PUB32: [0001:0001C670], Flags: 00000000, ?Read@MxBitmap@@UAEJPBD@Z +S_PUB32: [0003:00001420], Flags: 00000000, ??_7LegoBackgroundColor@@6B@ +S_PUB32: [0001:0001E1C0], Flags: 00000000, ?StartAction@MxControlPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0001:0001C220], Flags: 00000000, ?LowerVolume@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0001:00008EB0], Flags: 00000000, ??_G?$MxList@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0001:00012230], Flags: 00000000, ??_EAct3Actor@@UAEPAXI@Z +S_PUB32: [0001:00055FF0], Flags: 00000000, ?__CxxRestoreUnhandledExceptionFilter@@YAXXZ +S_PUB32: [0001:00019420], Flags: 00000000, ??_E?$MxList@PAVLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0001:0003C710], Flags: 00000000, ?StartTransition@MxTransitionManager@@QAEJW4TransitionType@1@HEE@Z +S_PUB32: [0003:00005BFC], Flags: 00000000, ??_C@_09MKGD@September?$AA@ +S_PUB32: [0001:00041920], Flags: 00000000, ?Dot@Vector2Impl@@UBEMPAV1@0@Z +S_PUB32: [0001:000165A0], Flags: 00000000, ?Tickle@LegoSoundManager@@UAEJXZ +S_PUB32: [0001:00015330], Flags: 00000000, ?VTable0x8c@LegoPathActor@@UAEXXZ +S_PUB32: [0001:00009F80], Flags: 00000000, ?ClassName@LegoLocomotionAnimPresenter@@UBEPBDXZ +S_PUB32: [0001:00015100], Flags: 00000000, ??_ELegoStream@@UAEPAXI@Z +S_PUB32: [0005:000003D0], Flags: 00000000, __imp__VirtualLock@8 +S_PUB32: [0001:0001E450], Flags: 00000000, ??_EMxDirect3D@@UAEPAXI@Z +S_PUB32: [0004:00000A68], Flags: 00000000, ??_C@_0BM@OJKO@LegoLocomotionAnimPresenter?$AA@ +S_PUB32: [0001:00025AC0], Flags: 00000000, ??4MxDSAnim@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:0001D4E0], Flags: 00000000, ??_GMxCompositePresenter@@UAEPAXI@Z +S_PUB32: [0004:00006698], Flags: 00000000, __days +S_PUB32: [0003:00003A48], Flags: 00000000, ??_7MxDSSound@@6B@ +S_PUB32: [0005:00000460], Flags: 00000000, __imp__WideCharToMultiByte@32 +S_PUB32: [0001:0001B520], Flags: 00000000, ?GetVolume@MxAudioManager@@UAEHXZ +S_PUB32: [0001:000266F0], Flags: 00000000, ?ReleaseRef@MxDSBuffer@@QAEEPAVMxDSChunk@@@Z +S_PUB32: [0005:00000410], Flags: 00000000, __imp__OpenMutexA@12 +S_PUB32: [0001:000159B0], Flags: 00000000, ?Init@LegoPhonemePresenter@@AAEXXZ +S_PUB32: [0001:0004F4E0], Flags: 00000000, _ftell +S_PUB32: [0001:00062790], Flags: 00000000, _CompareStringA@24 +S_PUB32: [0001:00044B20], Flags: 00000000, ??1Group@Tgl@@UAE@XZ +S_PUB32: [0003:00002200], Flags: 00000000, ??_7PoliceEntity@@6B@ +S_PUB32: [0001:000251B0], Flags: 00000000, ?IsA@MxDSAction@@UBEEPBD@Z +S_PUB32: [0001:000240B0], Flags: 00000000, ??0MxDisplaySurface@@QAE@XZ +S_PUB32: [0001:00014170], Flags: 00000000, ?Destroy@?$MxPtrList@VLegoWorld@@@@SAXPAVLegoWorld@@@Z +S_PUB32: [0001:0001CBE0], Flags: 00000000, ?IsA@MxCompositeMediaPresenter@@UBEEPBD@Z +S_PUB32: [0001:00050F70], Flags: 00000000, __positive +S_PUB32: [0001:0001A590], Flags: 00000000, ??_EMotorcycle@@UAEPAXI@Z +S_PUB32: [0001:00018320], Flags: 00000000, ??_E?$MxCollection@PAVMxUnknown100d7c88@@@@UAEPAXI@Z +S_PUB32: [0004:00000078], Flags: 00000000, ??_C@_08HLLF@MxEntity?$AA@ +S_PUB32: [0001:00004D00], Flags: 00000000, ?VTable0xec@IslePathActor@@UAEXXZ +S_PUB32: [0001:0004B6C0], Flags: 00000000, @_shi_registerShared@16 +S_PUB32: [0001:000457A0], Flags: 00000000, ?InitializePalette@TglD3DRMIMAGE@TglImpl@@QAE?AW4Result@Tgl@@HPAUPaletteEntry@4@@Z +S_PUB32: [0001:00027990], Flags: 00000000, ?ClassName@MxDSMultiAction@@UBEPBDXZ +S_PUB32: [0001:000458B0], Flags: 00000000, ?Changed@TextureImpl@TglImpl@@UAE?AW4Result@Tgl@@HH@Z +S_PUB32: [0001:000070C0], Flags: 00000000, ?Register@LegoControlManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0003:00004578], Flags: 00000000, ??_7MxUnknown100d7c88@@6B@ +S_PUB32: [0001:00019D50], Flags: 00000000, ?IsA@LegoWorldPresenter@@UBEEPBD@Z +S_PUB32: [0001:00060D20], Flags: 00000000, _wcstoul +S_PUB32: [0001:00053F00], Flags: 00000000, ___fpecode +S_PUB32: [0001:00062778], Flags: 00000000, _GetUserDefaultLCID@0 +S_PUB32: [0003:000059F0], Flags: 00000000, ??_C@_03BLJK@frc?$AA@ +S_PUB32: [0001:000376B0], Flags: 00000000, ??0MxSmkPresenter@@QAE@XZ +S_PUB32: [0001:0003F690], Flags: 00000000, ?EndAction@MxVideoPresenter@@UAEXXZ +S_PUB32: [0003:00003BC8], Flags: 00000000, ??_7MxEventManager@@6B@ +S_PUB32: [0001:00059E28], Flags: 00000000, __adj_fptan +S_PUB32: [0001:00001F40], Flags: 00000000, ?ClassName@DuneBuggy@@UBEPBDXZ +S_PUB32: [0001:00019A80], Flags: 00000000, ?FUN_1001fc80@LegoWorld@@QAEXPAVIslePathActor@@@Z +S_PUB32: [0001:000439B0], Flags: 00000000, ?Remove@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVGroup@4@@Z +S_PUB32: [0003:00004478], Flags: 00000000, ??_7MxStreamController@@6B@ +S_PUB32: [0001:00021EA0], Flags: 00000000, ??_GMxDiskStreamController@@UAEPAXI@Z +S_PUB32: [0001:0004E406], Flags: 00000000, _LeaveCriticalSection@4 +S_PUB32: [0001:00011D80], Flags: 00000000, ??_GLegoAnimActor@@UAEPAXI@Z +S_PUB32: [0001:00007C90], Flags: 00000000, ?Save@LegoGameState@@QAEJK@Z +S_PUB32: [0001:00004240], Flags: 00000000, ??_GInfocenterDoor@@UAEPAXI@Z +S_PUB32: [0003:00005C68], Flags: 00000000, ??_C@_03GNHA@Mar?$AA@ +S_PUB32: [0003:000025C0], Flags: 00000000, ??_7LegoTexturePresenter@@6B@ +S_PUB32: [0001:00049070], Flags: 00000000, _MemReAllocPtr@12 +S_PUB32: [0001:00040BB0], Flags: 00000000, ??_GRaceCar@@UAEPAXI@Z +S_PUB32: [0001:0001E1E0], Flags: 00000000, ?FUN_10044270@MxControlPresenter@@AAEEIIPAI@Z +S_PUB32: [0003:00005588], Flags: 00000000, ??_C@_03DLFL@cos?$AA@ +S_PUB32: [0003:000056C4], Flags: 00000000, ??_C@_08CHMG@pr?5china?$AA@ +S_PUB32: [0003:00005B20], Flags: 00000000, ??_C@_0BB@JMOE@chinese?9hongkong?$AA@ +S_PUB32: [0001:00029420], Flags: 00000000, ?Destroy@?$MxCollection@VMxString@@@@SAXVMxString@@@Z +S_PUB32: [0001:00027790], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxDSAction@@@@SAXPAVMxDSAction@@@Z +S_PUB32: [0001:00032200], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxVariable@@@@SAXPAVMxVariable@@@Z +S_PUB32: [0001:00019270], Flags: 00000000, ?Destroy@?$MxCollection@PAVLegoPathController@@@@SAXPAVLegoPathController@@@Z +S_PUB32: [0001:00022A70], Flags: 00000000, ?FUN_100c7f40@MxDiskStreamController@@QAEXPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:000164D0], Flags: 00000000, ??_ELegoSoundManager@@UAEPAXI@Z +S_PUB32: [0001:000626B2], Flags: 00000000, _GetStdHandle@4 +S_PUB32: [0001:00018240], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxUnknown100d7c88@@@@SAXPAVMxUnknown100d7c88@@@Z +S_PUB32: [0004:00003CF4], Flags: 00000000, __imp___heapchk +S_PUB32: [0001:000053C0], Flags: 00000000, ?VTable0x14@JukeBoxState@@UAEEXZ +S_PUB32: [0001:000597C8], Flags: 00000000, __adj_fdivr_m64 +S_PUB32: [0001:00026550], Flags: 00000000, ?IsA@MxStreamChunk@@UBEEPBD@Z +S_PUB32: [0001:00005D30], Flags: 00000000, ??_GLegoAnimMMPresenter@@UAEPAXI@Z +S_PUB32: [0001:00032270], Flags: 00000000, ?Hash@?$MxHashTable@PAVMxVariable@@@@UAEIPAVMxVariable@@@Z +S_PUB32: [0001:00005BD0], Flags: 00000000, ?FUN_10064670@LegoAnimationManager@@QAEXE@Z +S_PUB32: [0001:0002BBF0], Flags: 00000000, ?AddChunk@MxDSSubscriber@@QAEJPAVMxStreamChunk@@E@Z +S_PUB32: [0003:00005B44], Flags: 00000000, ??_C@_08HFLO@canadian?$AA@ +S_PUB32: [0004:00002DE0], Flags: 00000000, ??_C@_0GH@DDBN@Returned?5when?5the?5position?5of?5th@ +S_PUB32: [0001:0004BF30], Flags: 00000000, _shi_leavePoolInitMutexReader +S_PUB32: [0003:00003FF0], Flags: 00000000, ??_7MxLoopingMIDIPresenter@@6B@ +S_PUB32: [0004:00003540], Flags: 00000000, ??_C@_0BD@MCLJ@MxStreamController?$AA@ +S_PUB32: [0001:0004E496], Flags: 00000000, _GetSystemInfo@4 +S_PUB32: [0001:00001CF0], Flags: 00000000, ?ClassName@CarRace@@UBEPBDXZ +S_PUB32: [0001:00056B00], Flags: 00000000, __atoldbl +S_PUB32: [0001:00002A20], Flags: 00000000, ??_GHelicopter@@UAEPAXI@Z +S_PUB32: [0001:0003BC40], Flags: 00000000, ??YMxString@@QAEAAV0@PBD@Z +S_PUB32: [0001:00009800], Flags: 00000000, ??1?$MxList@VLegoEventNotificationParam@@@@UAE@XZ +S_PUB32: [0003:00002620], Flags: 00000000, ??_7LegoRaceActor@@6B@ +S_PUB32: [0001:0002B0C0], Flags: 00000000, ??0MxDSStreamingAction@@QAE@AAV0@@Z +S_PUB32: [0001:0001FFA0], Flags: 00000000, ??_GMxDirectDraw@@UAEPAXI@Z +S_PUB32: [0004:00004698], Flags: 00000000, __XcptActTab +S_PUB32: [0001:00050060], Flags: 00000000, ?_query_new_mode@@YAHXZ +S_PUB32: [0001:000336D0], Flags: 00000000, ?PutData@MxPresenter@@UAEJXZ +S_PUB32: [0001:00035570], Flags: 00000000, ??_EMxRegionLeftRightList@@UAEPAXI@Z +S_PUB32: [0001:00024F80], Flags: 00000000, ?GetDC@MxDisplaySurface@@UAEXPAPAX@Z +S_PUB32: [0001:000153A0], Flags: 00000000, ?VTable0xa4@LegoPathActor@@UAEXXZ +S_PUB32: [0004:00000BD8], Flags: 00000000, ??_C@_0BF@FDGL@TowTrackMissionState?$AA@ +S_PUB32: [0004:00004D28], Flags: 00000000, __cflush +S_PUB32: [0001:0000F930], Flags: 00000000, ?ClassName@LegoRaceActor@@UBEPBDXZ +S_PUB32: [0004:00000D80], Flags: 00000000, ??_C@_0BB@JPAJ@LegoCarRaceActor?$AA@ +S_PUB32: [0001:000470C0], Flags: 00000000, ??1LODListBase@@UAE@XZ +S_PUB32: [0003:000038F8], Flags: 00000000, ??_7MxDSParallelAction@@6B@ +S_PUB32: [0004:00003C90], Flags: 00000000, _shi_mutexMovShr +S_PUB32: [0001:000435B0], Flags: 00000000, ?ImplementationDataPtr@GroupImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:0005A170], Flags: 00000000, ___sbh_free_block +S_PUB32: [0001:0003C3A0], Flags: 00000000, ??_GMxTimer@@UAEPAXI@Z +S_PUB32: [0003:00003080], Flags: 00000000, ??_7?$MxCollection@PAVLegoPathController@@@@6B@ +S_PUB32: [0001:00014800], Flags: 00000000, ?StopTimer@LegoOmni@@UAEXXZ +S_PUB32: [0001:00026B80], Flags: 00000000, ??4MxDSEvent@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00011DF0], Flags: 00000000, ??_GScoreState@@UAEPAXI@Z +S_PUB32: [0001:00033680], Flags: 00000000, ?AddToManager@MxPresenter@@UAEJXZ +S_PUB32: [0001:00005B90], Flags: 00000000, ?Init@LegoAnimationManager@@AAEXXZ +S_PUB32: [0001:00005BC0], Flags: 00000000, ?Tickle@LegoAnimationManager@@UAEJXZ +S_PUB32: [0001:00006660], Flags: 00000000, ?ClassName@LegoBuildingManager@@UBEPBDXZ +S_PUB32: [0004:00004810], Flags: 00000000, __amblksiz +S_PUB32: [0003:000017C8], Flags: 00000000, ??_7LegoInputManager@@6B@ +S_PUB32: [0001:00011B90], Flags: 00000000, ??_ELegoJetski@@UAEPAXI@Z +S_PUB32: [0004:00000134], Flags: 00000000, ??_C@_06PIJH@OBJECT?$AA@ +S_PUB32: [0004:00003CDC], Flags: 00000000, __imp__calloc +S_PUB32: [0005:000004A4], Flags: 00000000, __imp__GetTimeZoneInformation@4 +S_PUB32: [0003:00002A00], Flags: 00000000, ??_7GifManager@@6B@ +S_PUB32: [0001:000162C0], Flags: 00000000, ??_GLegoROI@@UAEPAXI@Z +S_PUB32: [0004:00001B10], Flags: 00000000, ??_C@_0BI@HOIF@FlipToGDISurface?5failed?$AA@ +S_PUB32: [0001:00032BC0], Flags: 00000000, ?StartTimer@MxOmni@@UAEXXZ +S_PUB32: [0001:00016D00], Flags: 00000000, ?Tell@LegoMemoryStream@@UAEJPAI@Z +S_PUB32: [0003:00000460], Flags: 00000000, ??_7Bike@@6B@ +S_PUB32: [0001:0002EF20], Flags: 00000000, ?PutData@MxMIDIPresenter@@UAEJXZ +S_PUB32: [0001:00001750], Flags: 00000000, ?ClassName@Bike@@UBEPBDXZ +S_PUB32: [0001:00048F80], Flags: 00000000, @_shi_freeVar@4 +S_PUB32: [0004:00004050], Flags: 00000000, __OP_ASINjmptab +S_PUB32: [0004:00000394], Flags: 00000000, ??_C@_0BA@LBIB@InfocenterState?$AA@ +S_PUB32: [0003:00000D48], Flags: 00000000, ??_7Hospital@@6B@ +S_PUB32: [0004:00005D00], Flags: 00000000, ___rg_ctry_rec +S_PUB32: [0001:0004E57A], Flags: 00000000, _CreateFontA@56 +S_PUB32: [0001:00015230], Flags: 00000000, ??0LegoPathActor@@QAE@XZ +S_PUB32: [0001:00018C50], Flags: 00000000, ?RealizePalette@LegoVideoManager@@UAEJPAVMxPalette@@@Z +S_PUB32: [0001:00000BD0], Flags: 00000000, ?Notify@Act2PoliceStation@@UAEJAAVMxParam@@@Z +S_PUB32: [0003:00005958], Flags: 00000000, ??_C@_0O@OIFK@irish?9english?$AA@ +S_PUB32: [0001:0003F420], Flags: 00000000, ?ReadyTickle@MxVideoPresenter@@UAEXXZ +S_PUB32: [0003:00005518], Flags: 00000000, ??_C@_05BGNL@1?$CDINF?$AA@ +S_PUB32: [0001:0002FAE0], Flags: 00000000, ?Create@MxNotificationManager@@UAEJIE@Z +S_PUB32: [0001:0002EDE0], Flags: 00000000, ?Destroy@MxMIDIPresenter@@AAEXE@Z +S_PUB32: [0001:0001E110], Flags: 00000000, ?RepeatingTickle@MxControlPresenter@@UAEXXZ +S_PUB32: [0001:0004EA4A], Flags: 00000000, _acos +S_PUB32: [0004:00001F30], Flags: 00000000, ??_C@_0FH@MKKD@This?5surface?5is?5already?5a?5depend@ +S_PUB32: [0005:00000338], Flags: 00000000, __imp__DirectInputCreateA@16 +S_PUB32: [0001:0002A720], Flags: 00000000, ??_EMxDSSerialAction@@UAEPAXI@Z +S_PUB32: [0001:0001A0E0], Flags: 00000000, ??_EMxDSActionListCursor@@UAEPAXI@Z +S_PUB32: [0004:00002CE4], Flags: 00000000, ??_C@_0GJ@FDHB@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0004:0000008C], Flags: 00000000, ??_C@_09CIO@LegoWorld?$AA@ +S_PUB32: [0004:00000E20], Flags: 00000000, ?g_infomainScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00030EE0], Flags: 00000000, ?IsA@MxLoopingMIDIPresenter@@UBEEPBD@Z +S_PUB32: [0004:000029AC], Flags: 00000000, ??_C@_0CN@JCJA@Flipping?5visible?5surfaces?5is?5not@ +S_PUB32: [0001:00028DB0], Flags: 00000000, ??_EMxDSObjectAction@@UAEPAXI@Z +S_PUB32: [0003:000023B8], Flags: 00000000, ??_7LegoActionControlPresenter@@6B@ +S_PUB32: [0001:00014180], Flags: 00000000, ??_GLegoWorldList@@UAEPAXI@Z +S_PUB32: [0001:00047830], Flags: 00000000, _malloc +S_PUB32: [0001:0004E514], Flags: 00000000, _GetMenu@4 +S_PUB32: [0001:00004350], Flags: 00000000, ?IsA@InfocenterState@@UBEEPBD@Z +S_PUB32: [0001:00000A00], Flags: 00000000, ?VTable0xb8@LegoPathActor@@UAEMXZ +S_PUB32: [0003:00005C08], Flags: 00000000, ??_C@_06PADP@August?$AA@ +S_PUB32: [0004:00000538], Flags: 00000000, ??_C@_0BE@IGIE@LegoEntityPresenter?$AA@ +S_PUB32: [0003:000043D0], Flags: 00000000, ??_7?$MxList@PAVMxRect32@@@@6B@ +S_PUB32: [0001:00005B20], Flags: 00000000, ??_ELegoAnimationManager@@UAEPAXI@Z +S_PUB32: [0004:00003BD0], Flags: 00000000, ??_C@_0BG@KDLJ@MxRAMStreamController?$AA@ +S_PUB32: [0001:00012AD0], Flags: 00000000, ?SetIsWorldActive@@YAXE@Z +S_PUB32: [0001:000351A0], Flags: 00000000, ??_G?$MxPtrListCursor@UMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0004:00000634], Flags: 00000000, ??_C@_0L@LDBI@c_rcbacky6?$AA@ +S_PUB32: [0001:00036FA0], Flags: 00000000, ?GetInstance@MxScheduler@@SAPAV1@XZ +S_PUB32: [0001:00039560], Flags: 00000000, ??1?$list@PAVMxNextActionDataStart@@V?$allocator@PAVMxNextActionDataStart@@@@@@QAE@XZ +S_PUB32: [0004:000019CC], Flags: 00000000, ??_C@_0CP@BGHP@000?400?5fps?5?$CI000?400?5fps?5?$CI000?400?5f@ +S_PUB32: [0003:00005504], Flags: 00000000, ??_C@_03DBOJ@_?4?0?$AA@ +S_PUB32: [0003:00001890], Flags: 00000000, ??_7MxParam@@6B@ +S_PUB32: [0003:0000558C], Flags: 00000000, ??_C@_03JAMN@sin?$AA@ +S_PUB32: [0001:0003BFC0], Flags: 00000000, ?Run@MxThread@@UAEJXZ +S_PUB32: [0001:00004050], Flags: 00000000, ?Create@Infocenter@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0003:000030E0], Flags: 00000000, ??_7LegoWorld@@6B@ +S_PUB32: [0001:00026D20], Flags: 00000000, ?ClassName@MxDSFile@@UBEPBDXZ +S_PUB32: [0005:00000370], Flags: 00000000, __imp__GetTextExtentPoint32A@16 +S_PUB32: [0001:00050EA0], Flags: 00000000, __forcdecpt +S_PUB32: [0001:00007550], Flags: 00000000, ??_GLegoEntityPresenter@@UAEPAXI@Z +S_PUB32: [0001:00011710], Flags: 00000000, ?ClassName@PoliceEntity@@UBEPBDXZ +S_PUB32: [0004:00001540], Flags: 00000000, ??_C@_0BJ@DDPI@MxBackgroundAudioManager?$AA@ +S_PUB32: [0001:0002B440], Flags: 00000000, ?Compare@MxStreamChunkList@@UAECPAVMxStreamChunk@@0@Z +S_PUB32: [0001:00043790], Flags: 00000000, ??1Object@Tgl@@UAE@XZ +S_PUB32: [0004:00002D6C], Flags: 00000000, ??_C@_0EN@ELIH@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0004:00000D2C], Flags: 00000000, ??_C@_0BE@FLLO@LegoJetskiRaceActor?$AA@ +S_PUB32: [0001:000514BE], Flags: 00000000, __cintrindisp1 +S_PUB32: [0001:00058870], Flags: 00000000, _mbtowc +S_PUB32: [0001:00062180], Flags: 00000000, ___crtsetenv +S_PUB32: [0002:000004A0], Flags: 00000000, _SmackGetSizeTables +S_PUB32: [0003:00004E74], Flags: 00000000, ??_7LODListBase@@6B@ +S_PUB32: [0001:000194D0], Flags: 00000000, ??_G?$MxPtrList@VLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0001:000094F0], Flags: 00000000, ?SetCamera@LegoInputManager@@QAEXPAVLegoCameraController@@@Z +S_PUB32: [0001:00015D60], Flags: 00000000, ??1LegoRace@@UAE@XZ +S_PUB32: [0001:00041440], Flags: 00000000, ?VTable0x24@OrientableROI@@UAEXABVMatrix4Data@@@Z +S_PUB32: [0005:00000514], Flags: 00000000, __imp__HeapDestroy@4 +S_PUB32: [0001:0001C350], Flags: 00000000, ??_EMxBitmap@@UAEPAXI@Z +S_PUB32: [0003:000030C8], Flags: 00000000, ??_7LegoPathControllerList@@6B@ +S_PUB32: [0001:00007960], Flags: 00000000, ??0LegoFullScreenMovie@@QAE@PBD0@Z +S_PUB32: [0001:0002F310], Flags: 00000000, ?SetMultiplier@MxMusicManager@@QAEXH@Z +S_PUB32: [0001:00015920], Flags: 00000000, ??_ELegoPhonemePresenter@@UAEPAXI@Z +S_PUB32: [0001:00056770], Flags: 00000000, __ShrMan +S_PUB32: [0001:00059714], Flags: 00000000, __adj_fdiv_m16i +S_PUB32: [0001:00017850], Flags: 00000000, ??_GLegoVehicleBuildState@@UAEPAXI@Z +S_PUB32: [0001:0004FB8D], Flags: 00000000, __CIexp +S_PUB32: [0001:0002A600], Flags: 00000000, ?ClassName@MxDSSerialAction@@UBEPBDXZ +S_PUB32: [0003:0000556C], Flags: 00000000, ??_C@_04EHAJ@fabs?$AA@ +S_PUB32: [0001:0001D550], Flags: 00000000, ??1?$List@PAVMxPresenter@@@@QAE@XZ +S_PUB32: [0004:00000688], Flags: 00000000, ??_C@_09HNFA@c_jsexhy0?$AA@ +S_PUB32: [0001:00030960], Flags: 00000000, ?Create@MxObjectFactory@@UAEPAVMxCore@@PBD@Z +S_PUB32: [0001:00013A80], Flags: 00000000, ?Create@LegoOmni@@UAEJAAVMxOmniCreateParam@@@Z +S_PUB32: [0001:00053CE0], Flags: 00000000, _raise +S_PUB32: [0003:00000230], Flags: 00000000, ??_7Ambulance@@6B@ +S_PUB32: [0001:000385D0], Flags: 00000000, ?Destroy@MxSoundManager@@UAEXXZ +S_PUB32: [0005:0000042C], Flags: 00000000, __imp__GetVersion@0 +S_PUB32: [0003:000054F0], Flags: 00000000, ??_C@_06GCPK@LC_ALL?$AA@ +S_PUB32: [0001:00055860], Flags: 00000000, __setmbcp +S_PUB32: [0001:00015A50], Flags: 00000000, ??_GLegoPlantManager@@UAEPAXI@Z +S_PUB32: [0001:0001DF30], Flags: 00000000, ?DeleteEntry@?$MxList@PAVMxDSAction@@@@IAEXPAV?$MxListEntry@PAVMxDSAction@@@@@Z +S_PUB32: [0003:00003560], Flags: 00000000, ??_7MxStreamProvider@@6B@ +S_PUB32: [0004:00001750], Flags: 00000000, ?g_isPaletteIndexed8@@3HA +S_PUB32: [0001:00043AF0], Flags: 00000000, ?ImplementationDataPtr@MeshImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:00037BC0], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxRect32@@@@SAXPAVMxRect32@@@Z +S_PUB32: [0001:000419F0], Flags: 00000000, ?Add@Vector2Impl@@UAEXM@Z +S_PUB32: [0001:00041490], Flags: 00000000, ?UpdateWorldData@OrientableROI@@UAEXABVMatrix4Data@@@Z +S_PUB32: [0001:00002C90], Flags: 00000000, ?VTable0xcc@Helicopter@@UAEIXZ +S_PUB32: [0001:00007200], Flags: 00000000, ?Destroy@LegoEntity@@UAEXE@Z +S_PUB32: [0001:0001AAF0], Flags: 00000000, ??_EMxStartActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:00023210], Flags: 00000000, ?FUN_100c8720@MxDiskStreamController@@AAEXXZ +S_PUB32: [0004:000017B4], Flags: 00000000, ??_C@_0FK@LLFA@Attempt?5made?5enter?5a?5windowed?5mo@ +S_PUB32: [0004:000014B8], Flags: 00000000, ??_C@_04BAHI@exit?$AA@ +S_PUB32: [0003:00005410], Flags: 00000000, ??_C@_0BH@NNCD@?$DMprogram?5name?5unknown?$DO?$AA@ +S_PUB32: [0001:00027F90], Flags: 00000000, ?Clone@MxDSMultiAction@@UAEPAVMxDSAction@@XZ +S_PUB32: [0001:00051920], Flags: 00000000, __lockexit +S_PUB32: [0001:000272F0], Flags: 00000000, ?ClassName@MxDSMediaAction@@UBEPBDXZ +S_PUB32: [0001:000574B0], Flags: 00000000, _wctomb +S_PUB32: [0001:00001090], Flags: 00000000, ?VTable0xdc@IslePathActor@@UAEIAAVMxType19NotificationParam@@@Z +S_PUB32: [0001:000561D0], Flags: 00000000, __clearfp +S_PUB32: [0005:000004E8], Flags: 00000000, __imp__TerminateProcess@8 +S_PUB32: [0004:0000125C], Flags: 00000000, ??_C@_0O@KBGG@lego?5drk?5grey?$AA@ +S_PUB32: [0001:000461D0], Flags: 00000000, ?ClassName@TowTrack@@UBEPBDXZ +S_PUB32: [0001:0001FEE0], Flags: 00000000, ??_GMxDriver@@QAEPAXI@Z +S_PUB32: [0001:000152B0], Flags: 00000000, ??1LegoPathActor@@UAE@XZ +S_PUB32: [0001:00036580], Flags: 00000000, ??_EMxRegionCursor@@UAEPAXI@Z +S_PUB32: [0001:00016670], Flags: 00000000, ?VTable0x1c@LegoState@@UAEJPAVLegoFileStream@@@Z +S_PUB32: [0005:00000518], Flags: 00000000, __imp__HeapCreate@12 +S_PUB32: [0001:0004E370], Flags: 00000000, _c_dfDIKeyboard +S_PUB32: [0004:000012B8], Flags: 00000000, ??_C@_0N@MECF@lego?5black?5f?$AA@ +S_PUB32: [0001:0003BED0], Flags: 00000000, ??1MxThread@@UAE@XZ +S_PUB32: [0001:000314D0], Flags: 00000000, ??_GMxOmni@@UAEPAXI@Z +S_PUB32: [0001:00044BE0], Flags: 00000000, ?CreateCamera@RendererImpl@TglImpl@@UAEPAVCamera@Tgl@@XZ +S_PUB32: [0001:0000A180], Flags: 00000000, ?Init@LegoLocomotionAnimPresenter@@AAEXXZ +S_PUB32: [0001:0000C5F0], Flags: 00000000, ??1MxObjectFactory@@UAE@XZ +S_PUB32: [0001:00009500], Flags: 00000000, ?ClearCamera@LegoInputManager@@QAEXXZ +S_PUB32: [0001:00055291], Flags: 00000000, __rtinfnpop +S_PUB32: [0001:00016460], Flags: 00000000, ??0LegoSoundManager@@QAE@XZ +S_PUB32: [0001:00004080], Flags: 00000000, ?VTable0x68@Infocenter@@UAEXE@Z +S_PUB32: [0003:00004180], Flags: 00000000, ??_7?$MxCollection@PAUMxRegionTopBottom@@@@6B@ +S_PUB32: [0003:00005BCC], Flags: 00000000, ??_C@_06HCAD@M?1d?1yy?$AA@ +S_PUB32: [0001:0000A2B0], Flags: 00000000, ?IsA@LegoNavController@@UBEEPBD@Z +S_PUB32: [0003:00000B60], Flags: 00000000, ??_7Matrix4Data@@6B@ +S_PUB32: [0001:000118F0], Flags: 00000000, ??_GLegoModelPresenter@@UAEPAXI@Z +S_PUB32: [0001:00011F40], Flags: 00000000, ??_GHelicopterState@@UAEPAXI@Z +S_PUB32: [0001:0000F6E0], Flags: 00000000, ?ClassName@HelicopterState@@UBEPBDXZ +S_PUB32: [0001:00058060], Flags: 00000000, __mbsrchr +S_PUB32: [0001:0004A7A0], Flags: 00000000, @_shi_sysAlloc@8 +S_PUB32: [0001:00027760], Flags: 00000000, ?Compare@MxDSActionList@@UAECPAVMxDSAction@@0@Z +S_PUB32: [0001:00046050], Flags: 00000000, ?TransformWorldToScreen@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@QBMQAM@Z +S_PUB32: [0003:00005AC4], Flags: 00000000, ??_C@_06KEAI@danish?$AA@ +S_PUB32: [0001:0001EBE0], Flags: 00000000, ??0MxAssignedDevice@@QAE@XZ +S_PUB32: [0004:000005C8], Flags: 00000000, ??_C@_0L@BDNK@c_rctailya?$AA@ +S_PUB32: [0001:00000980], Flags: 00000000, ?VTable0x78@LegoPathActor@@UAEXE@Z +S_PUB32: [0001:000268D0], Flags: 00000000, ??_EMxDSChunk@@UAEPAXI@Z +S_PUB32: [0001:0002BA10], Flags: 00000000, ??1?$MxListCursor@PAVMxStreamChunk@@@@UAE@XZ +S_PUB32: [0001:0003F8E0], Flags: 00000000, ?GetPlayedChunks@MxWavePresenter@@AAECXZ +S_PUB32: [0001:00033DA0], Flags: 00000000, ?CreateEntityBackend@MxPresenter@@QAEPAVMxEntity@@PBD@Z +S_PUB32: [0001:0004E562], Flags: 00000000, _SetBkColor@8 +S_PUB32: [0001:00044600], Flags: 00000000, ?CreateDevice@RendererImpl@TglImpl@@UAEPAVDevice@Tgl@@ABUDeviceDirectDrawCreateData@4@@Z +S_PUB32: [0004:00005970], Flags: 00000000, __d_inf +S_PUB32: [0001:0004B1C0], Flags: 00000000, @_shi_sysAllocPool@12 +S_PUB32: [0001:00033550], Flags: 00000000, ?ReadyTickle@MxPresenter@@UAEXXZ +S_PUB32: [0001:00021A40], Flags: 00000000, ??0DeviceModesInfo@MxDirectDraw@@QAE@XZ +S_PUB32: [0004:00000AB4], Flags: 00000000, ?g_turnUseVelocity@@3EA +S_PUB32: [0001:00006EA0], Flags: 00000000, ??_GLegoCarBuildAnimPresenter@@UAEPAXI@Z +S_PUB32: [0004:00005978], Flags: 00000000, __d_ind +S_PUB32: [0001:000129D0], Flags: 00000000, ?FUN_10015820@@YAXII@Z +S_PUB32: [0001:00059656], Flags: 00000000, __fdivp_sti_st +S_PUB32: [0005:000004C0], Flags: 00000000, __imp__ExitThread@4 +S_PUB32: [0001:00014240], Flags: 00000000, ??_G?$MxCollection@PAVLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0001:00024FE0], Flags: 00000000, ?FUN_100bc070@MxDisplaySurface@@SAPAUIDirectDrawSurface@@XZ +S_PUB32: [0001:000382D0], Flags: 00000000, ??_GMxSoundManager@@UAEPAXI@Z +S_PUB32: [0004:000015E0], Flags: 00000000, ??_C@_0CL@IEBJ@MxDirect3D?3?3D3DSetMode?$CI?$CJ?5back?5lo@ +S_PUB32: [0004:00003C34], Flags: 00000000, ?g_pD3DRM@@3PAUIDirect3DRM2@@A +S_PUB32: [0001:00037C40], Flags: 00000000, ??_EMxRectList@@UAEPAXI@Z +S_PUB32: [0001:00010E20], Flags: 00000000, ?IsA@BeachHouseEntity@@UBEEPBD@Z +S_PUB32: [0001:00044DF0], Flags: 00000000, ?CreateLight@RendererImpl@TglImpl@@UAEPAVLight@Tgl@@W4LightType@4@MMM@Z +S_PUB32: [0001:000257C0], Flags: 00000000, ?Deserialize@MxDSAction@@UAEXPAPAEF@Z +S_PUB32: [0001:0000A1A0], Flags: 00000000, ?configureLegoModelPresenter@LegoModelPresenter@@SAXH@Z +S_PUB32: [0003:00004538], Flags: 00000000, ??_7MxTickleThread@@6B@ +S_PUB32: [0001:00030420], Flags: 00000000, ??0MxObjectFactory@@QAE@XZ +S_PUB32: [0004:00003BC4], Flags: 00000000, ??_C@_0L@IIPC@MxStreamer?$AA@ +S_PUB32: [0001:00039240], Flags: 00000000, ?ReadChunkHeader@MxStreamChunk@@QAEIPAE@Z +S_PUB32: [0004:00004354], Flags: 00000000, __wpgmptr +S_PUB32: [0003:000040F4], Flags: 00000000, ??_7MxOmniCreateParam@@6B@ +S_PUB32: [0001:00060760], Flags: 00000000, __ultoa +S_PUB32: [0001:0002BAD0], Flags: 00000000, ?DeleteChunks@MxDSSubscriber@@QAEXXZ +S_PUB32: [0001:00019B80], Flags: 00000000, ?FUN_10073400@LegoWorld@@QAEXXZ +S_PUB32: [0001:00052750], Flags: 00000000, __unlock_file2 +S_PUB32: [0001:0001EC00], Flags: 00000000, ??1MxAssignedDevice@@QAE@XZ +S_PUB32: [0001:0002AA40], Flags: 00000000, ?IsA@MxDSSound@@UBEEPBD@Z +S_PUB32: [0001:0002D300], Flags: 00000000, ??_GMxLoopingFlcPresenter@@UAEPAXI@Z +S_PUB32: [0001:0002C440], Flags: 00000000, ?ClassName@MxEventPresenter@@UBEPBDXZ +S_PUB32: [0001:00046490], Flags: 00000000, ?IsA@TowTrackMissionState@@UBEEPBD@Z +S_PUB32: [0001:00053F60], Flags: 00000000, __NMSG_WRITE +S_PUB32: [0001:00015D00], Flags: 00000000, ??_GLegoRace@@UAEPAXI@Z +S_PUB32: [0001:0002B550], Flags: 00000000, ??_E?$MxCollection@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0001:0002EE40], Flags: 00000000, ?ReadyTickle@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0001:00021A60], Flags: 00000000, ??1DeviceModesInfo@MxDirectDraw@@QAE@XZ +S_PUB32: [0001:00008310], Flags: 00000000, ?WriteScoreHistory@ScoreStruct@LegoGameState@@QAEXXZ +S_PUB32: [0001:00020CC0], Flags: 00000000, ?TextToTextSurface2@MxDirectDraw@@QAEHPBD@Z +S_PUB32: [0001:00024030], Flags: 00000000, ?FUN_100d1af0@MxDiskStreamProvider@@SAEPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:0004E52C], Flags: 00000000, _ClientToScreen@8 +S_PUB32: [0003:00005B40], Flags: 00000000, ??_C@_03FIHP@chh?$AA@ +S_PUB32: [0001:0004E430], Flags: 00000000, __hwrite@12 +S_PUB32: [0004:00000970], Flags: 00000000, ??_C@_01KOLO@2?$AA@ +S_PUB32: [0001:00025290], Flags: 00000000, ?SetDuration@MxDSAction@@UAEXJ@Z +S_PUB32: [0001:0001ACA0], Flags: 00000000, ??0MxAtomId@@QAE@PBDW4LookupMode@@@Z +S_PUB32: [0001:0001A950], Flags: 00000000, ??_GMxEndActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:0001A1A0], Flags: 00000000, ??_G?$MxListCursor@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:0001F610], Flags: 00000000, ?insert@?$list@UMxDevice@@V?$allocator@UMxDevice@@@@@@QAE?AViterator@1@V21@ABUMxDevice@@@Z +S_PUB32: [0001:00003DF0], Flags: 00000000, ??_GHospitalState@@UAEPAXI@Z +S_PUB32: [0004:000014DC], Flags: 00000000, ??_C@_08OGLJ@opendisk?$AA@ +S_PUB32: [0001:000144B0], Flags: 00000000, ?CreateInstance@LegoOmni@@SAXXZ +S_PUB32: [0001:00062754], Flags: 00000000, _LCMapStringA@24 +S_PUB32: [0001:00022730], Flags: 00000000, ?VTable0x30@MxDiskStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:0002C140], Flags: 00000000, ??0MxEventManager@@QAE@XZ +S_PUB32: [0001:000016C0], Flags: 00000000, ?Notify@BeachHouseEntity@@UAEJAAVMxParam@@@Z +S_PUB32: [0003:00004F50], Flags: 00000000, _IID_IDirect3DRM2 +S_PUB32: [0001:000626BE], Flags: 00000000, _SetConsoleCtrlHandler@8 +S_PUB32: [0001:0003E730], Flags: 00000000, ??0MxVideoParam@@QAE@AAV0@@Z +S_PUB32: [0001:0003EC80], Flags: 00000000, ?Destroy@MxVideoPresenter@@IAEXE@Z +S_PUB32: [0003:000058A0], Flags: 00000000, ??_C@_03LOP@ptb?$AA@ +S_PUB32: [0001:00011C50], Flags: 00000000, ??_GLegoCarRaceActor@@UAEPAXI@Z +S_PUB32: [0001:00009E00], Flags: 00000000, ??_GMxWavePresenter@@UAEPAXI@Z +S_PUB32: [0001:00059E25], Flags: 00000000, __adj_fpatan +S_PUB32: [0004:00000054], Flags: 00000000, ??_C@_09CBIH@Act1State?$AA@ +S_PUB32: [0001:0004E3E8], Flags: 00000000, _InitializeCriticalSection@4 +S_PUB32: [0004:00003004], Flags: 00000000, ??_C@_0FB@ENCE@Unable?5to?5match?5primary?5surface?5@ +S_PUB32: [0001:000069E0], Flags: 00000000, ?FUN_100123e0@LegoCameraController@@QAEXAAVMatrix4Data@@I@Z +S_PUB32: [0001:00054230], Flags: 00000000, __ftbuf +S_PUB32: [0001:0003E8E0], Flags: 00000000, ??1MxVideoPresenter@@UAE@XZ +S_PUB32: [0001:0003F950], Flags: 00000000, ?WriteToSoundBuffer@MxWavePresenter@@AAEXPAXI@Z +S_PUB32: [0001:0002D490], Flags: 00000000, ?DoneTickle@MxLoopingMIDIPresenter@@UAEXXZ +S_PUB32: [0001:000354F0], Flags: 00000000, ?Destroy@?$MxCollection@PAUMxRegionLeftRight@@@@SAXPAUMxRegionLeftRight@@@Z +S_PUB32: [0001:000066E0], Flags: 00000000, ?Init@LegoBuildingManager@@AAEXXZ +S_PUB32: [0001:0002B480], Flags: 00000000, ??1?$MxCollection@PAVMxStreamChunk@@@@UAE@XZ +S_PUB32: [0001:0006275A], Flags: 00000000, _LCMapStringW@24 +S_PUB32: [0001:00020CA0], Flags: 00000000, ?TextToTextSurface1@MxDirectDraw@@QAEHPBD@Z +S_PUB32: [0001:00043440], Flags: 00000000, ?GetWidth@DeviceImpl@TglImpl@@UAEKXZ +S_PUB32: [0001:0004E6E0], Flags: 00000000, ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z +S_PUB32: [0001:00055F50], Flags: 00000000, ___set_app_type +S_PUB32: [0003:0000579C], Flags: 00000000, ??_C@_07CPP@germany?$AA@ +S_PUB32: [0001:00006960], Flags: 00000000, ??_GLegoCameraController@@UAEPAXI@Z +S_PUB32: [0001:0001EDA0], Flags: 00000000, ??1?$list@UMxDisplayMode@@V?$allocator@UMxDisplayMode@@@@@@QAE@XZ +S_PUB32: [0001:0002A7E0], Flags: 00000000, ??4MxDSSerialAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00015210], Flags: 00000000, ?configureLegoPartPresenter@LegoPartPresenter@@SAXHH@Z +S_PUB32: [0001:00046870], Flags: 00000000, ?_Inc@iterator@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@QAEXXZ +S_PUB32: [0001:000026A0], Flags: 00000000, ??_EGasStationState@@UAEPAXI@Z +S_PUB32: [0005:00000388], Flags: 00000000, __imp__ReadFile@20 +S_PUB32: [0001:00001EB0], Flags: 00000000, _DllMain@12 +S_PUB32: [0001:00011830], Flags: 00000000, ?ClassName@JukeBoxState@@UBEPBDXZ +S_PUB32: [0004:000014C4], Flags: 00000000, ??_C@_04JPPJ@stop?$AA@ +S_PUB32: [0001:0003F740], Flags: 00000000, ?PutData@MxVideoPresenter@@UAEJXZ +S_PUB32: [0001:00056B80], Flags: 00000000, __fptostr +S_PUB32: [0001:00057A40], Flags: 00000000, __lock_fhandle +S_PUB32: [0001:00056E6D], Flags: 00000000, __rtonenpop +S_PUB32: [0001:0004BC00], Flags: 00000000, @shi_createAndEnterMutexShr@12 +S_PUB32: [0001:00016040], Flags: 00000000, ??_EROI@@UAEPAXI@Z +S_PUB32: [0003:00005AD8], Flags: 00000000, ??_C@_03LPJK@csy?$AA@ +S_PUB32: [0003:000054FC], Flags: 00000000, ??_C@_02BGDO@?$DN?$DL?$AA@ +S_PUB32: [0003:00002FF0], Flags: 00000000, ??_7MxPresenterListCursor@@6B@ +S_PUB32: [0001:000145F0], Flags: 00000000, ?DeleteObject@LegoOmni@@UAEXAAVMxDSAction@@@Z +S_PUB32: [0001:0004E442], Flags: 00000000, _ReleaseSemaphore@12 +S_PUB32: [0003:0000580C], Flags: 00000000, ??_C@_03DIDL@aut?$AA@ +S_PUB32: [0001:000411D0], Flags: 00000000, ?SetData@Matrix4Impl@@UAEXAAVMatrix4@@@Z +S_PUB32: [0001:00011720], Flags: 00000000, ?IsA@PoliceEntity@@UBEEPBD@Z +S_PUB32: [0001:0002D730], Flags: 00000000, ?Init@MxLoopingSmkPresenter@@AAEXXZ +S_PUB32: [0001:00012020], Flags: 00000000, ??_GAct2PoliceStation@@UAEPAXI@Z +S_PUB32: [0001:0002A390], Flags: 00000000, ?InsertEntry@?$MxList@VMxString@@@@IAEPAV?$MxListEntry@VMxString@@@@VMxString@@PAV2@1@Z +S_PUB32: [0001:00062706], Flags: 00000000, _GetEnvironmentStringsW@0 +S_PUB32: [0004:000000C4], Flags: 00000000, ??_C@_09EHIG@Ambulance?$AA@ +S_PUB32: [0001:00041780], Flags: 00000000, ?GetUserMaxLOD@RealtimeView@@SAMXZ +S_PUB32: [0004:00003680], Flags: 00000000, ??_C@_0BD@KLFG@MxDSParallelAction?$AA@ +S_PUB32: [0001:000222B0], Flags: 00000000, ?Open@MxDiskStreamController@@UAEJPBD@Z +S_PUB32: [0001:0001D420], Flags: 00000000, ?ClassName@MxCompositePresenter@@UBEPBDXZ +S_PUB32: [0001:0003F840], Flags: 00000000, ?IsPaused@MxWavePresenter@@UAEEXZ +S_PUB32: [0001:0001E8D0], Flags: 00000000, ?GetZBufferBitDepth@MxDirect3D@@QAEKPAVMxAssignedDevice@@@Z +S_PUB32: [0001:00004F20], Flags: 00000000, ??_GJetski@@UAEPAXI@Z +S_PUB32: [0003:0000586C], Flags: 00000000, ??_C@_0BA@NHDN@spanish?9mexican?$AA@ +S_PUB32: [0001:00040E10], Flags: 00000000, ??0Radio@@QAE@XZ +S_PUB32: [0004:000002EC], Flags: 00000000, ?g_strSOUND@@3PBDB +S_PUB32: [0001:0001AE80], Flags: 00000000, ??1MxAtomIdCounter@@QAE@XZ +S_PUB32: [0001:00011AD0], Flags: 00000000, ??_GLegoRaceCar@@UAEPAXI@Z +S_PUB32: [0001:00012490], Flags: 00000000, ??_GInfoCenterEntity@@UAEPAXI@Z +S_PUB32: [0001:00036560], Flags: 00000000, ?GetRect@MxRegionCursor@@UAEPAVMxRect32@@XZ +S_PUB32: [0001:00006C60], Flags: 00000000, ??_GLegoCarBuild@@UAEPAXI@Z +S_PUB32: [0001:00001AE0], Flags: 00000000, ??_ELegoEntity@@UAEPAXI@Z +S_PUB32: [0001:00009E20], Flags: 00000000, ??_GMxSoundPresenter@@UAEPAXI@Z +S_PUB32: [0001:0001E1B0], Flags: 00000000, ?AddToManager@MxControlPresenter@@UAEJXZ +S_PUB32: [0001:00007470], Flags: 00000000, ?IsA@LegoEntityPresenter@@UBEEPBD@Z +S_PUB32: [0005:00000454], Flags: 00000000, __imp__IsBadWritePtr@8 +S_PUB32: [0001:0005C370], Flags: 00000000, __handle_qnan1 +S_PUB32: [0001:00003B00], Flags: 00000000, ?ClassName@Hospital@@UBEPBDXZ +S_PUB32: [0001:000137B0], Flags: 00000000, ??_GLegoOmni@@UAEPAXI@Z +S_PUB32: [0001:0002D320], Flags: 00000000, ??1MxLoopingFlcPresenter@@UAE@XZ +S_PUB32: [0003:00004F20], Flags: 00000000, _GUID_SysKeyboard +S_PUB32: [0001:0003BA60], Flags: 00000000, ??4MxString@@QAEAAV0@ABV0@@Z +S_PUB32: [0003:000013B8], Flags: 00000000, ??_7MxPresenter@@6B@ +S_PUB32: [0004:00001090], Flags: 00000000, ??_C@_0BM@KNOD@?2lego?2scripts?2race?2jetracer?$AA@ +S_PUB32: [0003:000036C0], Flags: 00000000, ??_7MxStreamChunk@@6B@ +S_PUB32: [0001:00006980], Flags: 00000000, ??1LegoCameraController@@UAE@XZ +S_PUB32: [0004:000019C4], Flags: 00000000, ??_C@_05CNHG@Arial?$AA@ +S_PUB32: [0001:0002D6D0], Flags: 00000000, ??1MxLoopingSmkPresenter@@UAE@XZ +S_PUB32: [0001:00062796], Flags: 00000000, _CompareStringW@24 +S_PUB32: [0005:0000044C], Flags: 00000000, __imp__GetStringTypeW@16 +S_PUB32: [0001:0004B9F0], Flags: 00000000, @shi_delNextPool@4 +S_PUB32: [0004:00000E10], Flags: 00000000, ?g_jetracerScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0000A700], Flags: 00000000, ?CalculateNewVel@LegoNavController@@QAEMMMMM@Z +S_PUB32: [0001:0004E55C], Flags: 00000000, _SetBkMode@8 +S_PUB32: [0003:00005950], Flags: 00000000, ??_C@_03BHJP@ita?$AA@ +S_PUB32: [0001:00020810], Flags: 00000000, ?CreateDDSurface@MxDirectDraw@@QAEJPAU_DDSURFACEDESC@@PAPAUIDirectDrawSurface@@PAUIUnknown@@@Z +S_PUB32: [0004:00003C70], Flags: 00000000, __shi_compactPageFn +S_PUB32: [0001:00045DF0], Flags: 00000000, ?SetProjection@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@W4ProjectionType@4@@Z +S_PUB32: [0001:00007150], Flags: 00000000, ?Init@LegoEntity@@IAEXXZ +S_PUB32: [0004:00000E80], Flags: 00000000, ??_C@_0BG@EGJ@?2lego?2scripts?2credits?$AA@ +S_PUB32: [0004:00001D38], Flags: 00000000, ??_C@_0FI@JDHA@Size?5requested?5by?5DirectDraw?5is?5@ +S_PUB32: [0003:00005124], Flags: 00000000, ??_C@_04KBDN@?4bat?$AA@ +S_PUB32: [0001:00019E80], Flags: 00000000, ??1LegoWorldPresenter@@UAE@XZ +S_PUB32: [0004:00000E6C], Flags: 00000000, ??_C@_0BD@OFHM@?2lego?2scripts?2nocd?$AA@ +S_PUB32: [0001:0003AA10], Flags: 00000000, ??_GMxStreamer@@UAEPAXI@Z +S_PUB32: [0001:000114E0], Flags: 00000000, ?IsA@JetskiRaceState@@UBEEPBD@Z +S_PUB32: [0001:0002CA40], Flags: 00000000, ?RealizePalette@MxFlcPresenter@@UAEXXZ +S_PUB32: [0001:0004E394], Flags: 00000000, _joyGetDevCapsA@12 +S_PUB32: [0001:00040FA0], Flags: 00000000, ?CreateRadioState@Radio@@AAEXXZ +S_PUB32: [0001:00035070], Flags: 00000000, ??_EMxRegionTopBottomListCursor@@UAEPAXI@Z +S_PUB32: [0004:000003A4], Flags: 00000000, ??_C@_04CMIL@Isle?$AA@ +S_PUB32: [0001:0003E9A0], Flags: 00000000, ?GetHeight@MxVideoPresenter@@UAEHXZ +S_PUB32: [0001:00033960], Flags: 00000000, ?ParseExtra@MxPresenter@@MAEXXZ +S_PUB32: [0001:000381B0], Flags: 00000000, ?AddToManager@MxSmkPresenter@@UAEJXZ +S_PUB32: [0001:0006276C], Flags: 00000000, _IsValidLocale@8 +S_PUB32: [0001:00041B10], Flags: 00000000, ?EqualsCross@Vector3Impl@@UAEXPAV1@PAM@Z +S_PUB32: [0001:0003A050], Flags: 00000000, ?FUN_100c1a00@MxStreamController@@QAEJPAVMxDSAction@@I@Z +S_PUB32: [0001:000150A0], Flags: 00000000, ??1LegoMemoryStream@@UAE@XZ +S_PUB32: [0004:00000A84], Flags: 00000000, ?g_modelPresenterConfig@@3HA +S_PUB32: [0001:000149C0], Flags: 00000000, ?MakeSourceName@@YAXPADPBD@Z +S_PUB32: [0001:00006C80], Flags: 00000000, ??1LegoCarBuild@@UAE@XZ +S_PUB32: [0001:00005B40], Flags: 00000000, ??1LegoAnimationManager@@UAE@XZ +S_PUB32: [0001:000009E0], Flags: 00000000, ?VTable0xb0@LegoPathActor@@UAEMXZ +S_PUB32: [0001:00014110], Flags: 00000000, ??1?$MxCollection@PAVLegoWorld@@@@UAE@XZ +S_PUB32: [0001:000140E0], Flags: 00000000, ?Compare@LegoWorldList@@UAECPAVLegoWorld@@0@Z +S_PUB32: [0001:0004B550], Flags: 00000000, @_shi_sysFreePage@4 +S_PUB32: [0003:000059AC], Flags: 00000000, ??_C@_06IAFA@german?$AA@ +S_PUB32: [0001:00016440], Flags: 00000000, ?SetDisplayBB@LegoROI@@QAEXH@Z +S_PUB32: [0001:00029470], Flags: 00000000, ??1?$MxCollection@VMxString@@@@UAE@XZ +S_PUB32: [0001:000418D0], Flags: 00000000, ?GetData@Vector2Impl@@UBEPBMXZ +S_PUB32: [0004:000004B4], Flags: 00000000, ?g_reset@@3PBDB +S_PUB32: [0003:000000B0], Flags: 00000000, ??_7LegoState@@6B@ +S_PUB32: [0001:0001D430], Flags: 00000000, ?IsA@MxCompositePresenter@@UBEEPBD@Z +S_PUB32: [0004:000016F0], Flags: 00000000, ??_C@_0BO@EAAP@DirectDraw?5Create?5failed?3?5?$CFs?6?$AA@ +S_PUB32: [0003:000040D8], Flags: 00000000, ??_7MxVariableTable@@6B@ +S_PUB32: [0004:00000B28], Flags: 00000000, ??_C@_0N@FDNF@PoliceEntity?$AA@ +S_PUB32: [0003:000058FC], Flags: 00000000, ??_C@_09EHKL@norwegian?$AA@ +S_PUB32: [0001:0000C5D0], Flags: 00000000, ??_ELegoObjectFactory@@UAEPAXI@Z +S_PUB32: [0001:00019950], Flags: 00000000, ?VTable0x5c@LegoWorld@@UAEEXZ +S_PUB32: [0001:00005670], Flags: 00000000, ?PickROI@Lego3DView@@QAEPAVLegoROI@@JJ@Z +S_PUB32: [0001:00002330], Flags: 00000000, ?Notify@ElevatorBottom@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00034370], Flags: 00000000, ?GetLengthInDWords@MxRAMStreamProvider@@UAEIXZ +S_PUB32: [0001:000315A0], Flags: 00000000, ?Init@MxOmni@@UAEXXZ +S_PUB32: [0001:0003B2D0], Flags: 00000000, ?FUN_100b99b0@MxStreamer@@QAEJPAVMxDSAction@@@Z +S_PUB32: [0001:00025930], Flags: 00000000, ?IsA@MxDSAnim@@UBEEPBD@Z +S_PUB32: [0001:00041770], Flags: 00000000, ?SetPartsThreshold@RealtimeView@@SAXM@Z +S_PUB32: [0001:00029590], Flags: 00000000, ??_E?$MxList@VMxString@@@@UAEPAXI@Z +S_PUB32: [0003:00001B10], Flags: 00000000, ??_7Lego3DWavePresenter@@6B@ +S_PUB32: [0001:00007260], Flags: 00000000, ?FUN_10010c30@LegoEntity@@QAEXXZ +S_PUB32: [0001:000256B0], Flags: 00000000, ?AppendData@MxDSAction@@QAEXGPBD@Z +S_PUB32: [0001:00014760], Flags: 00000000, ?Start@LegoOmni@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:000146B0], Flags: 00000000, ?NotifyCurrentEntity@LegoOmni@@UAEXPAVMxNotificationParam@@@Z +S_PUB32: [0004:00003C14], Flags: 00000000, ??_C@_05DFIP@Radio?$AA@ +S_PUB32: [0001:0002D750], Flags: 00000000, ?Destroy@MxLoopingSmkPresenter@@AAEXE@Z +S_PUB32: [0001:00047AF0], Flags: 00000000, _MemInitDefaultPool@0 +S_PUB32: [0004:00001A38], Flags: 00000000, ??_C@_0CB@MJGO@Restore?5of?5text?5surface?51?5failed@ +S_PUB32: [0001:00008400], Flags: 00000000, ?SetSomeEnumState@LegoGameState@@QAEXI@Z +S_PUB32: [0001:0001BD90], Flags: 00000000, ?FadeInOrFadeOut@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0001:0003C580], Flags: 00000000, ??_GMxTransitionManager@@UAEPAXI@Z +S_PUB32: [0001:00037D00], Flags: 00000000, ??_E?$MxCollection@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0001:0003B900], Flags: 00000000, ??0MxString@@QAE@PBD@Z +S_PUB32: [0001:00022C50], Flags: 00000000, ?VTable0x24@MxDiskStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0003:00005838], Flags: 00000000, ??_C@_02FHP@uk?$AA@ +S_PUB32: [0003:00005BE8], Flags: 00000000, ??_C@_08NJLI@November?$AA@ +S_PUB32: [0003:00005AF8], Flags: 00000000, ??_C@_0BC@CHFL@chinese?9singapore?$AA@ +S_PUB32: [0004:000004A8], Flags: 00000000, ??_C@_01POCP@?7?$AA@ +S_PUB32: [0001:00051800], Flags: 00000000, _exit +S_PUB32: [0003:000059FC], Flags: 00000000, ??_C@_07DLFI@finnish?$AA@ +S_PUB32: [0003:00005800], Flags: 00000000, ??_C@_07ECDD@belgium?$AA@ +S_PUB32: [0001:00012360], Flags: 00000000, ??_GCarRaceState@@UAEPAXI@Z +S_PUB32: [0001:00008330], Flags: 00000000, ?SerializeScoreHistory@LegoGameState@@QAEXF@Z +S_PUB32: [0001:00035630], Flags: 00000000, ??_E?$MxCollection@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0003:00005BB8], Flags: 00000000, ??_C@_0BE@MHI@dddd?0?5MMMM?5dd?0?5yyyy?$AA@ +S_PUB32: [0001:00029D70], Flags: 00000000, ?Clone@MxDSSelectAction@@UAEPAVMxDSAction@@XZ +S_PUB32: [0001:000461E0], Flags: 00000000, ?IsA@TowTrack@@UBEEPBD@Z +S_PUB32: [0001:00014360], Flags: 00000000, ??_E?$MxPtrList@VLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0001:00019D40], Flags: 00000000, ?ClassName@LegoWorldPresenter@@UBEPBDXZ +S_PUB32: [0001:00007950], Flags: 00000000, ?Init@LegoFlcTexturePresenter@@AAEXXZ +S_PUB32: [0001:00006A40], Flags: 00000000, ?FUN_100127f0@LegoCameraController@@QAEAAVVector3Data@@XZ +S_PUB32: [0001:000534C0], Flags: 00000000, ___doserrno +S_PUB32: [0001:000336F0], Flags: 00000000, ?Init@MxPresenter@@IAEXXZ +S_PUB32: [0003:00003BB0], Flags: 00000000, ??_7MxEntity@@6B@ +S_PUB32: [0001:00008E40], Flags: 00000000, ??_G?$MxCollection@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0001:0004C7B0], Flags: 00000000, _MemPoolSetFloor@8 +S_PUB32: [0003:00005A44], Flags: 00000000, ??_C@_0L@EGPP@english?9nz?$AA@ +S_PUB32: [0003:00000320], Flags: 00000000, ??_7IslePathActor@@6B@ +S_PUB32: [0004:00001C50], Flags: 00000000, ??_C@_0CA@IJBK@Vertical?5blank?5is?5in?5progress?4?$AA?$AA@ +S_PUB32: [0001:0001DF80], Flags: 00000000, ??0MxControlPresenter@@QAE@XZ +S_PUB32: [0001:00041A80], Flags: 00000000, ?SetVector@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0001:00043990], Flags: 00000000, ?Add@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVGroup@4@@Z +S_PUB32: [0004:000056D0], Flags: 00000000, ___lc_handle +S_PUB32: [0004:000032E8], Flags: 00000000, ??_C@_0CF@KJPN@Support?5is?5currently?5not?5availab@ +S_PUB32: [0001:0004E48A], Flags: 00000000, _CreateFileMappingA@24 +S_PUB32: [0003:000029C0], Flags: 00000000, ??_7MxTickleManager@@6B@ +S_PUB32: [0003:0000511C], Flags: 00000000, ??_C@_04NFOM@?4exe?$AA@ +S_PUB32: [0001:0004E9F0], Flags: 00000000, __cfltcvt_init +S_PUB32: [0001:0002B4E0], Flags: 00000000, ??_GMxStreamChunkList@@UAEPAXI@Z +S_PUB32: [0001:000517D0], Flags: 00000000, __cinit +S_PUB32: [0001:00058BD0], Flags: 00000000, _isgraph +S_PUB32: [0001:000365A0], Flags: 00000000, ??1MxRegionCursor@@UAE@XZ +S_PUB32: [0001:000182B0], Flags: 00000000, ??_EMxUnknown100d9d00@@UAEPAXI@Z +S_PUB32: [0001:0001D970], Flags: 00000000, ??1MxEndActionNotificationParam@@UAE@XZ +S_PUB32: [0005:00000378], Flags: 00000000, __imp__GetSystemPaletteEntries@16 +S_PUB32: [0001:0003F7D0], Flags: 00000000, ??1MxWavePresenter@@UAE@XZ +S_PUB32: [0001:00029C30], Flags: 00000000, ??1?$MxListCursor@VMxString@@@@UAE@XZ +S_PUB32: [0005:000004B8], Flags: 00000000, __imp__CreateThread@24 +S_PUB32: [0001:0004E6C0], Flags: 00000000, ___CxxLongjmpUnwind@4 +S_PUB32: [0001:00040190], Flags: 00000000, ??0Pizza@@QAE@XZ +S_PUB32: [0001:00032B80], Flags: 00000000, ?SetSound3D@MxOmni@@SAXE@Z +S_PUB32: [0004:00000AEC], Flags: 00000000, ??_C@_0O@DANJ@LegoAnimActor?$AA@ +S_PUB32: [0004:00001058], Flags: 00000000, ??_C@_0CA@MNHP@?2lego?2scripts?2infocntr?2elevbott?$AA@ +S_PUB32: [0001:00040600], Flags: 00000000, ??0Police@@QAE@XZ +S_PUB32: [0003:00004580], Flags: 00000000, ??_7?$MxHashTableCursor@PAVMxVariable@@@@6B@ +S_PUB32: [0001:00050BC0], Flags: 00000000, __CallSettingFrame@12 +S_PUB32: [0001:0002C450], Flags: 00000000, ?IsA@MxEventPresenter@@UBEEPBD@Z +S_PUB32: [0001:0002F870], Flags: 00000000, ??_EMxNotificationManager@@UAEPAXI@Z +S_PUB32: [0004:000009D0], Flags: 00000000, ??_C@_08PKHA@INDIR?9F?9?$AA@ +S_PUB32: [0001:00011D10], Flags: 00000000, ??_ELegoJetskiRaceActor@@UAEPAXI@Z +S_PUB32: [0001:0004B6A0], Flags: 00000000, @_shi_sysSizePool@8 +S_PUB32: [0001:00014530], Flags: 00000000, ?GetInstance@LegoOmni@@SAPAV1@XZ +S_PUB32: [0001:00040CA0], Flags: 00000000, ?ClassName@RaceState@@UBEPBDXZ +S_PUB32: [0001:0004B9E0], Flags: 00000000, @_shi_getNextPool@4 +S_PUB32: [0003:00000410], Flags: 00000000, ??_7AmbulanceMissionState@@6B@ +S_PUB32: [0001:0003EBA0], Flags: 00000000, ??1AlphaMask@MxVideoPresenter@@UAE@XZ +S_PUB32: [0005:000004B0], Flags: 00000000, __imp__UnmapViewOfFile@4 +S_PUB32: [0001:0001D2A0], Flags: 00000000, ?VTable0x64@MxCompositePresenter@@UAEEI@Z +S_PUB32: [0001:0004FCD0], Flags: 00000000, ??_L@YGXPAXIHP6EX0@Z1@Z +S_PUB32: [0004:00003CE8], Flags: 00000000, __imp___expand +S_PUB32: [0004:00005998], Flags: 00000000, ___lc_time_intl +S_PUB32: [0001:0004EDA0], Flags: 00000000, _atexit +S_PUB32: [0001:000153B0], Flags: 00000000, ?VTable0xa8@LegoPathActor@@UAEXXZ +S_PUB32: [0001:000329D0], Flags: 00000000, ?FUN_100b06b0@MxOmni@@SAEPAVMxDSAction@@PBD@Z +S_PUB32: [0001:00039360], Flags: 00000000, ?VTable0x18@MxStreamController@@UAEJII@Z +S_PUB32: [0001:000335D0], Flags: 00000000, ?Unk5Tickle@MxPresenter@@UAEXXZ +S_PUB32: [0001:000024C0], Flags: 00000000, ??_GGasStation@@UAEPAXI@Z +S_PUB32: [0001:0004EA6C], Flags: 00000000, __CIacos +S_PUB32: [0004:000014F0], Flags: 00000000, ??_C@_0BM@FMIM@?2lego?2sources?2main?2main?4exe?$AA@ +S_PUB32: [0001:000145D0], Flags: 00000000, ?RemoveWorld@LegoOmni@@QAEXABVMxAtomId@@J@Z +S_PUB32: [0001:0003BB30], Flags: 00000000, ??HMxString@@QAE?AV0@PBD@Z +S_PUB32: [0001:00007390], Flags: 00000000, ?VTable0x3c@LegoEntity@@UAEXXZ +S_PUB32: [0001:0000A330], Flags: 00000000, ??_GLegoNavController@@UAEPAXI@Z +S_PUB32: [0005:0000032C], Flags: 00000000, __imp__DirectDrawEnumerateA@8 +S_PUB32: [0001:000626F4], Flags: 00000000, _MultiByteToWideChar@24 +S_PUB32: [0003:000057DC], Flags: 00000000, ??_C@_03MAM@che?$AA@ +S_PUB32: [0001:0005F460], Flags: 00000000, __Getdays +S_PUB32: [0003:00004F70], Flags: 00000000, _GUID_Key +S_PUB32: [0001:00040A30], Flags: 00000000, ?IsA@RaceCar@@UBEEPBD@Z +S_PUB32: [0001:0002B750], Flags: 00000000, ??_EMxDSSubscriber@@UAEPAXI@Z +S_PUB32: [0001:00041530], Flags: 00000000, ?GetWorldBoundingBox@OrientableROI@@UBEABVBoundingBox@@XZ +S_PUB32: [0001:00056E6B], Flags: 00000000, __rtonepop +S_PUB32: [0001:0004F800], Flags: 00000000, __spawnl +S_PUB32: [0001:00012A10], Flags: 00000000, ?TransitionManager@@YAPAVMxTransitionManager@@XZ +S_PUB32: [0003:00005ACC], Flags: 00000000, ??_C@_03LKJC@dan?$AA@ +S_PUB32: [0004:00003628], Flags: 00000000, ??_C@_0L@MNPH@MxDSSource?$AA@ +S_PUB32: [0001:00040F50], Flags: 00000000, ??1Radio@@UAE@XZ +S_PUB32: [0004:00003C8C], Flags: 00000000, _shi_eventInitPool +S_PUB32: [0001:00041410], Flags: 00000000, ?SetLocalTransform@OrientableROI@@UAEXABVMatrix4Impl@@@Z +S_PUB32: [0001:00023B10], Flags: 00000000, ?VTable0x20@MxDiskStreamProvider@@UAEXPAVMxDSAction@@@Z +S_PUB32: [0001:00004690], Flags: 00000000, ??_GIsle@@UAEPAXI@Z +S_PUB32: [0001:0003B0B0], Flags: 00000000, ??_EMxStreamerNotification@@UAEPAXI@Z +S_PUB32: [0001:0005CDB0], Flags: 00000000, __ctrlfp +S_PUB32: [0001:00041D20], Flags: 00000000, ?SetMatrixProductImpl@Vector4Impl@@UAEXPAM0@Z +S_PUB32: [0001:0004E90E], Flags: 00000000, __local_unwind2 +S_PUB32: [0001:00023740], Flags: 00000000, ??_GMxDiskStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:00018ED0], Flags: 00000000, ?ConfigureD3DRM@LegoVideoManager@@AAEJXZ +S_PUB32: [0001:000433A0], Flags: 00000000, ?ImplementationDataPtr@CameraImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:00012920], Flags: 00000000, ?BackgroundAudioManager@@YAPAVMxBackgroundAudioManager@@XZ +S_PUB32: [0001:0002D280], Flags: 00000000, ??0MxLoopingFlcPresenter@@QAE@XZ +S_PUB32: [0001:00018B90], Flags: 00000000, ??1?$MxListCursor@PAVMxPresenter@@@@UAE@XZ +S_PUB32: [0001:0001B190], Flags: 00000000, ?_Dec@iterator@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@QAEXXZ +S_PUB32: [0001:00058B90], Flags: 00000000, _isprint +S_PUB32: [0001:0005167B], Flags: 00000000, __ctrandisp1 +S_PUB32: [0003:00004648], Flags: 00000000, ??_7PizzeriaState@@6B@ +S_PUB32: [0001:00007750], Flags: 00000000, ??0LegoFlcTexturePresenter@@QAE@XZ +S_PUB32: [0004:00000FF8], Flags: 00000000, ??_C@_0CA@FPMM@?2lego?2scripts?2infocntr?2infoscor?$AA@ +S_PUB32: [0001:000404E0], Flags: 00000000, ?IsA@PizzeriaState@@UBEEPBD@Z +S_PUB32: [0001:0002D520], Flags: 00000000, ??0MxLoopingSmkPresenter@@QAE@XZ +S_PUB32: [0001:00032A70], Flags: 00000000, ?HandleActionEnd@MxOmni@@QAEJAAVMxParam@@@Z +S_PUB32: [0004:0000372C], Flags: 00000000, ??_C@_0BA@BJAK@MxMIDIPresenter?$AA@ +S_PUB32: [0001:00018150], Flags: 00000000, ??1?$List@UMxDriver@@@@QAE@XZ +S_PUB32: [0001:000627B0], Flags: 00000000, _strnicmp +S_PUB32: [0005:00000520], Flags: 00000000, __imp__GetACP@0 +S_PUB32: [0001:000009F0], Flags: 00000000, ?VTable0xb4@LegoPathActor@@UAEMXZ +S_PUB32: [0003:00003988], Flags: 00000000, ??_7?$MxCollection@VMxString@@@@6B@ +S_PUB32: [0004:00004D34], Flags: 00000000, __p_overlay +S_PUB32: [0004:00001190], Flags: 00000000, ??_C@_0BD@IAAK@LegoPathController?$AA@ +S_PUB32: [0001:00021230], Flags: 00000000, ?RestoreOriginalPaletteEntries@MxDirectDraw@@QAEHXZ +S_PUB32: [0001:00008EB0], Flags: 00000000, ??_E?$MxList@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0001:0003B6B0], Flags: 00000000, ?Find@MxStreamListMxNextActionDataStart@@QAEPAVMxNextActionDataStart@@IF@Z +S_PUB32: [0001:00012230], Flags: 00000000, ??_GAct3Actor@@UAEPAXI@Z +S_PUB32: [0001:00019420], Flags: 00000000, ??_G?$MxList@PAVLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0004:0000C75C], Flags: 00000000, __acmdln +S_PUB32: [0001:00004A50], Flags: 00000000, ?VTable0x58@Isle@@UAEXPAVMxCore@@@Z +S_PUB32: [0001:0003A480], Flags: 00000000, ?FUN_100c1e70@MxStreamController@@QAEPAVMxPresenter@@AAVMxDSAction@@@Z +S_PUB32: [0003:00000CD8], Flags: 00000000, ??_7HistoryBook@@6B@ +S_PUB32: [0003:00005A98], Flags: 00000000, ??_C@_03DNNI@ena?$AA@ +S_PUB32: [0001:000040C0], Flags: 00000000, ??0InfocenterDoor@@QAE@XZ +S_PUB32: [0004:00000E3C], Flags: 00000000, ?g_act2mainScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0003F660], Flags: 00000000, ?AddToManager@MxVideoPresenter@@UAEJXZ +S_PUB32: [0004:00000E68], Flags: 00000000, ?g_isWorldActive@@3EA +S_PUB32: [0001:00015100], Flags: 00000000, ??_GLegoStream@@UAEPAXI@Z +S_PUB32: [0004:000011A4], Flags: 00000000, ??_C@_0BB@GEMD@LegoPlantManager?$AA@ +S_PUB32: [0001:00031360], Flags: 00000000, ?ObjectFactory@@YAPAVMxObjectFactory@@XZ +S_PUB32: [0001:0001E450], Flags: 00000000, ??_GMxDirect3D@@UAEPAXI@Z +S_PUB32: [0001:000381D0], Flags: 00000000, ??1?$MxList@PAVMxRect32@@@@UAE@XZ +S_PUB32: [0001:0005528F], Flags: 00000000, __rtinfpop +S_PUB32: [0004:000004B8], Flags: 00000000, ?g_buildingManagerConfig@@3HA +S_PUB32: [0001:00052680], Flags: 00000000, __unlock +S_PUB32: [0004:00003C24], Flags: 00000000, ?g_partsThreshold@@3MA +S_PUB32: [0001:000195B0], Flags: 00000000, ??0?$MxCollection@PAVMxPresenter@@@@QAE@XZ +S_PUB32: [0004:00000960], Flags: 00000000, ??_C@_0O@IEOG@lightposition?$AA@ +S_PUB32: [0001:0001D4E0], Flags: 00000000, ??_EMxCompositePresenter@@UAEPAXI@Z +S_PUB32: [0001:0005A030], Flags: 00000000, ___sbh_decommit_pages +S_PUB32: [0001:00010E00], Flags: 00000000, ?ClassName@Act3Shark@@UBEPBDXZ +S_PUB32: [0001:0004D140], Flags: 00000000, @_shi_expungeTaskRec@8 +S_PUB32: [0001:00022B20], Flags: 00000000, ?VTable0x20@MxDiskStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0004:000003B4], Flags: 00000000, ??_C@_06BFNF@Jetski?$AA@ +S_PUB32: [0004:00000E58], Flags: 00000000, ?g_sndAnimScript@@3PAVMxAtomId@@A +S_PUB32: [0005:00000480], Flags: 00000000, __imp__QueryPerformanceFrequency@4 +S_PUB32: [0001:000382F0], Flags: 00000000, ??1MxSoundManager@@UAE@XZ +S_PUB32: [0001:0003B790], Flags: 00000000, ?SetResourceToGet@MxStreamProvider@@UAEJPAVMxStreamController@@@Z +S_PUB32: [0001:0002EDD0], Flags: 00000000, ?Init@MxMIDIPresenter@@AAEXXZ +S_PUB32: [0001:0001A590], Flags: 00000000, ??_GMotorcycle@@UAEPAXI@Z +S_PUB32: [0004:00000474], Flags: 00000000, ??_C@_0BB@LNOM@MxVideoPresenter?$AA@ +S_PUB32: [0001:0002B460], Flags: 00000000, ?Destroy@MxStreamChunkList@@SAXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00018320], Flags: 00000000, ??_G?$MxCollection@PAVMxUnknown100d7c88@@@@UAEPAXI@Z +S_PUB32: [0001:000137D0], Flags: 00000000, ??1LegoOmni@@UAE@XZ +S_PUB32: [0001:0001ED30], Flags: 00000000, ??1?$list@UMxDevice@@V?$allocator@UMxDevice@@@@@@QAE@XZ +S_PUB32: [0001:000181A0], Flags: 00000000, ??1?$list@UMxDriver@@V?$allocator@UMxDriver@@@@@@QAE@XZ +S_PUB32: [0001:00021CA0], Flags: 00000000, ??1?$list@PAVMxDSAction@@V?$allocator@PAVMxDSAction@@@@@@QAE@XZ +S_PUB32: [0001:00021E00], Flags: 00000000, ??1?$list@PAVMxDSBuffer@@V?$allocator@PAVMxDSBuffer@@@@@@QAE@XZ +S_PUB32: [0001:000395D0], Flags: 00000000, ??1?$list@PAVMxDSSubscriber@@V?$allocator@PAVMxDSSubscriber@@@@@@QAE@XZ +S_PUB32: [0001:0002FA70], Flags: 00000000, ??1?$list@PAVMxNotification@@V?$allocator@PAVMxNotification@@@@@@QAE@XZ +S_PUB32: [0001:000143D0], Flags: 00000000, ??1?$list@PAVMxTickleClient@@V?$allocator@PAVMxTickleClient@@@@@@QAE@XZ +S_PUB32: [0001:0003A9A0], Flags: 00000000, ??1?$list@PAVMxStreamController@@V?$allocator@PAVMxStreamController@@@@@@QAE@XZ +S_PUB32: [0001:000403A0], Flags: 00000000, ??1Pizza@@UAE@XZ +S_PUB32: [0003:00003150], Flags: 00000000, ??_7LegoWorldPresenter@@6B@ +S_PUB32: [0001:00062676], Flags: 00000000, _SetLastError@4 +S_PUB32: [0001:0004E502], Flags: 00000000, _SetWindowLongA@12 +S_PUB32: [0001:00046480], Flags: 00000000, ?ClassName@TowTrackMissionState@@UBEPBDXZ +S_PUB32: [0001:00062700], Flags: 00000000, _FreeEnvironmentStringsW@4 +S_PUB32: [0001:00055B80], Flags: 00000000, ___initmbctable +S_PUB32: [0004:00000C68], Flags: 00000000, ??_C@_0BD@MIOO@MxControlPresenter?$AA@ +S_PUB32: [0001:00019630], Flags: 00000000, ??1?$MxCollection@PAVMxPresenter@@@@UAE@XZ +S_PUB32: [0004:00001890], Flags: 00000000, ??_C@_0CM@CAIA@CreateSurface?5for?5window?5back?5bu@ +S_PUB32: [0004:0000061C], Flags: 00000000, ??_C@_0L@GNDA@c_rcedgey0?$AA@ +S_PUB32: [0001:0000F7A0], Flags: 00000000, ?ClassName@Lego3DWavePresenter@@UBEPBDXZ +S_PUB32: [0001:00034270], Flags: 00000000, ?ClassName@MxRAMStreamProvider@@UBEPBDXZ +S_PUB32: [0001:000581B0], Flags: 00000000, __dospawn +S_PUB32: [0001:00021EA0], Flags: 00000000, ??_EMxDiskStreamController@@UAEPAXI@Z +S_PUB32: [0001:00062736], Flags: 00000000, _FlushFileBuffers@4 +S_PUB32: [0001:00011D80], Flags: 00000000, ??_ELegoAnimActor@@UAEPAXI@Z +S_PUB32: [0001:00015880], Flags: 00000000, ?ParseExtra@LegoPathPresenter@@UAEXXZ +S_PUB32: [0001:00004240], Flags: 00000000, ??_EInfocenterDoor@@UAEPAXI@Z +S_PUB32: [0001:0002F1E0], Flags: 00000000, ?Create@MxMusicManager@@UAEJIE@Z +S_PUB32: [0001:0000FF80], Flags: 00000000, ?IsA@LegoJetskiRaceActor@@UBEEPBD@Z +S_PUB32: [0005:0000045C], Flags: 00000000, __imp__SetUnhandledExceptionFilter@4 +S_PUB32: [0001:00032440], Flags: 00000000, ??1?$Set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@@@QAE@XZ +S_PUB32: [0004:0000079C], Flags: 00000000, ??_C@_0L@KIFN@c_chbasey0?$AA@ +S_PUB32: [0001:00040BB0], Flags: 00000000, ??_ERaceCar@@UAEPAXI@Z +S_PUB32: [0001:0004C630], Flags: 00000000, _MemPoolSetBlockSizeFS@8 +S_PUB32: [0001:00037E90], Flags: 00000000, ??1MxRectList@@UAE@XZ +S_PUB32: [0001:000564A0], Flags: 00000000, __tolower_lk +S_PUB32: [0001:000164D0], Flags: 00000000, ??_GLegoSoundManager@@UAEPAXI@Z +S_PUB32: [0001:0002BFA0], Flags: 00000000, ??1MxEntity@@UAE@XZ +S_PUB32: [0001:0002CB50], Flags: 00000000, ?Close@MXIOINFO@@QAEGJ@Z +S_PUB32: [0001:00024890], Flags: 00000000, ?VTable0x28@MxDisplaySurface@@UAEXPAVMxBitmap@@HHHHHH@Z +S_PUB32: [0003:000056DC], Flags: 00000000, ??_C@_06NOHH@poland?$AA@ +S_PUB32: [0001:00005D30], Flags: 00000000, ??_ELegoAnimMMPresenter@@UAEPAXI@Z +S_PUB32: [0003:00004270], Flags: 00000000, ??_7?$MxPtrListCursor@UMxRegionLeftRight@@@@6B@ +S_PUB32: [0001:00038B20], Flags: 00000000, ?Destroy@MxStillPresenter@@UAEXXZ +S_PUB32: [0001:0004B360], Flags: 00000000, @_shi_sysReallocPool@16 +S_PUB32: [0001:000062A0], Flags: 00000000, ?Init@LegoAnimPresenter@@AAEXXZ +S_PUB32: [0004:000009A0], Flags: 00000000, ??_C@_0N@HBIL@set?556?554?568?$AA@ +S_PUB32: [0001:00002A20], Flags: 00000000, ??_EHelicopter@@UAEPAXI@Z +S_PUB32: [0001:0001FFA0], Flags: 00000000, ??_EMxDirectDraw@@UAEPAXI@Z +S_PUB32: [0004:000006C4], Flags: 00000000, ??_C@_0L@OEEB@c_dbfrfny4?$AA@ +S_PUB32: [0003:00001868], Flags: 00000000, ??_7LegoEventQueue@@6B@ +S_PUB32: [0004:0000040C], Flags: 00000000, ?g_legoAnimationManagerConfig@@3HA +S_PUB32: [0001:00015520], Flags: 00000000, ?Tickle@LegoPathController@@UAEJXZ +S_PUB32: [0004:00001810], Flags: 00000000, ??_C@_0BG@IE@SetDisplayMode?5failed?$AA@ +S_PUB32: [0004:00002044], Flags: 00000000, ??_C@_0GC@JCLK@Access?5to?5this?5palette?5is?5being?5@ +S_PUB32: [0001:00039B50], Flags: 00000000, ??Eiterator@?$list@PAVMxDSAction@@V?$allocator@PAVMxDSAction@@@@@@QAE?AV01@H@Z +S_PUB32: [0004:0000128C], Flags: 00000000, ??_C@_0L@LMDJ@lego?5brown?$AA@ +S_PUB32: [0001:00016390], Flags: 00000000, ?ColorAliasLookup@LegoROI@@SAEPADAAM111@Z +S_PUB32: [0001:00004680], Flags: 00000000, ?VTable0x60@Isle@@UAEXXZ +S_PUB32: [0001:00019930], Flags: 00000000, ??_GLegoWorld@@UAEPAXI@Z +S_PUB32: [0001:00021D40], Flags: 00000000, ?ClassName@MxDiskStreamController@@UBEPBDXZ +S_PUB32: [0001:00041A70], Flags: 00000000, ?Div@Vector2Impl@@UAEXAAM@Z +S_PUB32: [0001:00011FB0], Flags: 00000000, ??_EPizzaMissionState@@UAEPAXI@Z +S_PUB32: [0004:00004100], Flags: 00000000, __pctype +S_PUB32: [0001:0002ABE0], Flags: 00000000, ??4MxDSSound@@QAEAAV0@AAV0@@Z +S_PUB32: [0004:00006440], Flags: 00000000, __pow10neg +S_PUB32: [0001:00001BF0], Flags: 00000000, ??_GBuildingEntity@@UAEPAXI@Z +S_PUB32: [0001:0005F550], Flags: 00000000, __Getmonths +S_PUB32: [0004:0000049C], Flags: 00000000, ??_C@_05NGOJ@reset?$AA@ +S_PUB32: [0001:0002C280], Flags: 00000000, ?Create@MxEventManager@@UAEJIE@Z +S_PUB32: [0001:00018C40], Flags: 00000000, ?VTable0x38@LegoVideoManager@@UAEXII@Z +S_PUB32: [0001:00006EC0], Flags: 00000000, ??1LegoAnimPresenter@@UAE@XZ +S_PUB32: [0001:00019C30], Flags: 00000000, ??1?$MxList@PAVMxPresenter@@@@UAE@XZ +S_PUB32: [0001:00029C80], Flags: 00000000, ??_G?$MxListCursor@VMxString@@@@UAEPAXI@Z +S_PUB32: [0001:0004A060], Flags: 00000000, _MemPoolNext@8 +S_PUB32: [0004:0000AF58], Flags: 00000000, ?g_cdPath@@3PADA +S_PUB32: [0001:000166F0], Flags: 00000000, ?FUN_10006030@LegoFileStream@@QAEPAV1@VMxString@@@Z +S_PUB32: [0004:000015B4], Flags: 00000000, ??_C@_0CM@EGEF@MxDirect3D?3?3D3DSetMode?$CI?$CJ?5front?5l@ +S_PUB32: [0001:0002F890], Flags: 00000000, ??1MxIdList@@QAE@XZ +S_PUB32: [0003:000059E8], Flags: 00000000, ??_C@_06PMNM@french?$AA@ +S_PUB32: [0004:000005B0], Flags: 00000000, ??_C@_0L@MCAK@c_rcwhl2y0?$AA@ +S_PUB32: [0004:00000A3C], Flags: 00000000, ??_C@_0BA@GBCM@MxWavePresenter?$AA@ +S_PUB32: [0001:0001BB00], Flags: 00000000, ?Tickle@MxBackgroundAudioManager@@UAEJXZ +S_PUB32: [0001:0001F6D0], Flags: 00000000, ?BuildErrorString@MxDeviceEnumerate@@SAXPBDZZ +S_PUB32: [0001:0001C2E0], Flags: 00000000, ??0MxBitmap@@QAE@XZ +S_PUB32: [0001:000483B0], Flags: 00000000, @_shi_allocExternal@12 +S_PUB32: [0001:000042B0], Flags: 00000000, ?Notify@InfocenterDoor@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00033B90], Flags: 00000000, ?Tickle@MxPresenter@@UAEJXZ +S_PUB32: [0003:000030B0], Flags: 00000000, ??_7?$MxPtrList@VLegoPathController@@@@6B@ +S_PUB32: [0004:00000800], Flags: 00000000, ?g_fileExtensionGS@@3PBDB +S_PUB32: [0003:00002EF0], Flags: 00000000, ??_7LegoVehicleBuildState@@6B@ +S_PUB32: [0004:0000345C], Flags: 00000000, ??_C@_0DM@MBHG@This?5surface?5can?5not?5be?5attached@ +S_PUB32: [0001:00000110], Flags: 00000000, ??_GTglSurface@@UAEPAXI@Z +S_PUB32: [0001:00026B70], Flags: 00000000, ?CopyFrom@MxDSEvent@@QAEXAAV1@@Z +S_PUB32: [0001:0003F460], Flags: 00000000, ?StartingTickle@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:000268F0], Flags: 00000000, ??1MxDSChunk@@UAE@XZ +S_PUB32: [0004:0000366C], Flags: 00000000, ??_C@_0BB@FELM@MxDSObjectAction?$AA@ +S_PUB32: [0001:000055B0], Flags: 00000000, ?FUN_100ab4b0@Lego3DManager@@QAENN@Z +S_PUB32: [0001:000012B0], Flags: 00000000, ??_GAmbulance@@UAEPAXI@Z +S_PUB32: [0004:0000373C], Flags: 00000000, ??_C@_0BB@OCOD@MxMusicPresenter?$AA@ +S_PUB32: [0001:00020070], Flags: 00000000, ?Create@MxDirectDraw@@UAEHPAXHHHHHHPBUtagPALETTEENTRY@@H@Z +S_PUB32: [0001:0004E9B5], Flags: 00000000, __NLG_Dispatch +S_PUB32: [0001:000331B0], Flags: 00000000, ?GetEntries@MxPalette@@QAEJPAUtagPALETTEENTRY@@@Z +S_PUB32: [0004:0000117C], Flags: 00000000, ??_C@_03BJLJ@?4si?$AA@ +S_PUB32: [0001:00016000], Flags: 00000000, ??0Matrix4Data@@QAE@XZ +S_PUB32: [0003:00005A2C], Flags: 00000000, ??_C@_0L@FMNC@english?9us?$AA@ +S_PUB32: [0001:00023030], Flags: 00000000, ?FUN_100c8540@MxDiskStreamController@@AAEXXZ +S_PUB32: [0003:00003888], Flags: 00000000, ??_7MxDSObject@@6B@ +S_PUB32: [0001:000078E0], Flags: 00000000, ??_GLegoFlcTexturePresenter@@UAEPAXI@Z +S_PUB32: [0001:00017B20], Flags: 00000000, ?Create@LegoVideoManager@@UAEJAAVMxVideoParam@@IE@Z +S_PUB32: [0005:00000028], Flags: 00000000, __IMPORT_DESCRIPTOR_DINPUT +S_PUB32: [0003:00004960], Flags: 00000000, ??_7SkateBoard@@6B@ +S_PUB32: [0001:00012990], Flags: 00000000, ?GetCurrentWorld@@YAPAVLegoWorld@@XZ +S_PUB32: [0001:000192E0], Flags: 00000000, ?Destroy@?$MxPtrList@VLegoPathController@@@@SAXPAVLegoPathController@@@Z +S_PUB32: [0001:00020190], Flags: 00000000, ?SetPaletteEntries@MxDirectDraw@@QAEHPBUtagPALETTEENTRY@@HH@Z +S_PUB32: [0004:00000410], Flags: 00000000, ??_C@_0BF@HKP@LegoAnimationManager?$AA@ +S_PUB32: [0001:0004E5A0], Flags: 00000000, __purecall +S_PUB32: [0001:000615F0], Flags: 00000000, __towupper_lk +S_PUB32: [0001:00001E40], Flags: 00000000, ??_GCarRace@@UAEPAXI@Z +S_PUB32: [0004:00001488], Flags: 00000000, ??_C@_0BB@NCIA@END_OF_VARIABLES?$AA@ +S_PUB32: [0005:00000418], Flags: 00000000, __imp__GetCurrentProcessId@0 +S_PUB32: [0001:00016E60], Flags: 00000000, ?id@?$numpunct@D@@$E +S_PUB32: [0001:00006810], Flags: 00000000, ??1LegoCacheSound@@UAE@XZ +S_PUB32: [0001:00016220], Flags: 00000000, ??_EViewROI@@UAEPAXI@Z +S_PUB32: [0004:00004328], Flags: 00000000, __winver +S_PUB32: [0001:00003ED0], Flags: 00000000, ?IsA@Infocenter@@UBEEPBD@Z +S_PUB32: [0001:00043850], Flags: 00000000, ??1Texture@Tgl@@UAE@XZ +S_PUB32: [0001:00006760], Flags: 00000000, ?ClassName@LegoCacheSound@@UBEPBDXZ +S_PUB32: [0001:00034420], Flags: 00000000, ?SetResourceToGet@MxRAMStreamProvider@@UAEJPAVMxStreamController@@@Z +S_PUB32: [0001:00026F70], Flags: 00000000, ??_EMxDSSource@@UAEPAXI@Z +S_PUB32: [0001:0001B8C0], Flags: 00000000, ??_EMxBackgroundAudioManager@@UAEPAXI@Z +S_PUB32: [0001:000040B0], Flags: 00000000, ?VTable0x64@Infocenter@@UAEEXZ +S_PUB32: [0001:00005420], Flags: 00000000, ??0Lego3DManager@@QAE@XZ +S_PUB32: [0001:00008D90], Flags: 00000000, ??1?$MxCollection@VLegoEventNotificationParam@@@@UAE@XZ +S_PUB32: [0001:00041240], Flags: 00000000, ?Clear@Matrix4Impl@@UAEXXZ +S_PUB32: [0001:00016A90], Flags: 00000000, ??_ELegoFileStream@@UAEPAXI@Z +S_PUB32: [0001:0005ADD0], Flags: 00000000, __expandlocale +S_PUB32: [0001:0004C860], Flags: 00000000, _MemPoolSetCeiling@8 +S_PUB32: [0001:0001E1F0], Flags: 00000000, ?FUN_10044480@MxControlPresenter@@AAEEIPAI@Z +S_PUB32: [0001:0004FD60], Flags: 00000000, __CRT_INIT@12 +S_PUB32: [0001:00043450], Flags: 00000000, ?GetHeight@DeviceImpl@TglImpl@@UAEKXZ +S_PUB32: [0001:0004E680], Flags: 00000000, ___CxxFrameHandler +S_PUB32: [0005:000003E4], Flags: 00000000, __imp__HeapReAlloc@16 +S_PUB32: [0001:00025FF0], Flags: 00000000, ?CreateObject@MxDSBuffer@@QAEJPAVMxStreamController@@PAIPAVMxDSAction@@PAPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:0001AE30], Flags: 00000000, ??RMxAtomIdCounterCompare@@QBEHABQAVMxAtomIdCounter@@0@Z +S_PUB32: [0004:000007CC], Flags: 00000000, ??_C@_0L@LLMH@c_dbbkfny0?$AA@ +S_PUB32: [0003:0000571C], Flags: 00000000, ??_C@_06KJLN@mexico?$AA@ +S_PUB32: [0001:000577E0], Flags: 00000000, __set_osfhnd +S_PUB32: [0001:00047550], Flags: 00000000, ?GetGeometry@ViewROI@@UBEPBVGroup@Tgl@@XZ +S_PUB32: [0001:00016D10], Flags: 00000000, ?Seek@LegoMemoryStream@@UAEJI@Z +S_PUB32: [0001:0003C0A0], Flags: 00000000, ?Tickle@MxTickleManager@@UAEJXZ +S_PUB32: [0005:000004A8], Flags: 00000000, __imp__CompareStringA@24 +S_PUB32: [0001:00052AB0], Flags: 00000000, __filbuf +S_PUB32: [0001:00021D10], Flags: 00000000, ?_Buynode@?$list@PAVMxDSAction@@V?$allocator@PAVMxDSAction@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0001:00021E70], Flags: 00000000, ?_Buynode@?$list@PAVMxDSBuffer@@V?$allocator@PAVMxDSBuffer@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0001:00039640], Flags: 00000000, ?_Buynode@?$list@PAVMxDSSubscriber@@V?$allocator@PAVMxDSSubscriber@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0001:00030180], Flags: 00000000, ?_Buynode@?$list@PAVMxNotification@@V?$allocator@PAVMxNotification@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0001:000090D0], Flags: 00000000, ??1?$MxQueue@VLegoEventNotificationParam@@@@UAE@XZ +S_PUB32: [0001:000466B0], Flags: 00000000, ??0ViewLODListManager@@QAE@XZ +S_PUB32: [0001:000390A0], Flags: 00000000, ?ParseExtra@MxStillPresenter@@UAEXXZ +S_PUB32: [0003:00005484], Flags: 00000000, ??_C@_0M@PKCK@MessageBoxA?$AA@ +S_PUB32: [0001:00014460], Flags: 00000000, ??1?$List@PAVMxTickleClient@@@@QAE@XZ +S_PUB32: [0001:000225E0], Flags: 00000000, ?VTable0x28@MxDiskStreamController@@UAEPAVMxDSStreamingAction@@XZ +S_PUB32: [0001:00027A80], Flags: 00000000, ??_EMxDSMultiAction@@UAEPAXI@Z +S_PUB32: [0001:00003C90], Flags: 00000000, ?Notify@Hospital@@UAEJAAVMxParam@@@Z +S_PUB32: [0004:0000013C], Flags: 00000000, ??_C@_05LGNL@SOUND?$AA@ +S_PUB32: [0001:00062718], Flags: 00000000, _IsBadReadPtr@8 +S_PUB32: [0001:00003FE0], Flags: 00000000, ??_GInfocenter@@UAEPAXI@Z +S_PUB32: [0001:00032F30], Flags: 00000000, ??0MxPalette@@QAE@PBUtagRGBQUAD@@@Z +S_PUB32: [0001:00033540], Flags: 00000000, ?VTable0x14@MxPresenter@@UAEXXZ +S_PUB32: [0004:00000F10], Flags: 00000000, ??_C@_0BL@EELK@?2lego?2scripts?2isle?2jukebox?$AA@ +S_PUB32: [0003:00003828], Flags: 00000000, ??_7MxDSActionList@@6B@ +S_PUB32: [0005:00000554], Flags: 00000000, __imp__SetWindowLongA@12 +S_PUB32: [0005:00000498], Flags: 00000000, __imp__GetUserDefaultLCID@0 +S_PUB32: [0001:00022000], Flags: 00000000, ??1MxDiskStreamController@@UAE@XZ +S_PUB32: [0001:00055360], Flags: 00000000, ?terminate@@YAXXZ +S_PUB32: [0003:000029E8], Flags: 00000000, ??_7LegoWorldList@@6B@ +S_PUB32: [0001:000398B0], Flags: 00000000, ??1?$List@PAVMxNextActionDataStart@@@@QAE@XZ +S_PUB32: [0001:0004A760], Flags: 00000000, @shi_findAllocAddress@4 +S_PUB32: [0001:00000BB0], Flags: 00000000, ?Tickle@Act2Brick@@UAEJXZ +S_PUB32: [0005:000004AC], Flags: 00000000, __imp__CompareStringW@24 +S_PUB32: [0001:0002F010], Flags: 00000000, ?SetVolume@MxMIDIPresenter@@UAEXH@Z +S_PUB32: [0001:000071B0], Flags: 00000000, ?ResetWorldTransform@LegoEntity@@UAEXE@Z +S_PUB32: [0001:0003A900], Flags: 00000000, ??1MxStreamerSubClass1@@QAE@XZ +S_PUB32: [0001:0002C370], Flags: 00000000, ?Destroy@MxEventManager@@UAEXXZ +S_PUB32: [0001:00015D50], Flags: 00000000, ?Create@LegoRace@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0001:00012A00], Flags: 00000000, ?GetCurrentAction@@YAAAVMxDSAction@@XZ +S_PUB32: [0001:00016930], Flags: 00000000, ?IsWriteMode@LegoStream@@UAEEXZ +S_PUB32: [0001:000422C0], Flags: 00000000, ??_GRegistrationBook@@UAEPAXI@Z +S_PUB32: [0001:00032D30], Flags: 00000000, ??0MxOmniCreateParam@@QAE@PBDPAUHWND__@@AAVMxVideoParam@@VMxOmniCreateFlags@@@Z +S_PUB32: [0001:00012B00], Flags: 00000000, ?PickROI@@YAPAVLegoROI@@JJ@Z +S_PUB32: [0001:0002D590], Flags: 00000000, ?IsA@MxSmkPresenter@@UBEEPBD@Z +S_PUB32: [0001:000267D0], Flags: 00000000, ??0MxDSChunk@@QAE@XZ +S_PUB32: [0001:00015380], Flags: 00000000, ?VTable0x68@LegoPathActor@@UAEXXZ +S_PUB32: [0001:00051790], Flags: 00000000, __allmul +S_PUB32: [0003:00000DB8], Flags: 00000000, ??_7HospitalState@@6B@ +S_PUB32: [0003:00001DF0], Flags: 00000000, ??_7BeachHouseEntity@@6B@ +S_PUB32: [0001:00016140], Flags: 00000000, ??1OrientableROI@@UAE@XZ +S_PUB32: [0001:0004BF60], Flags: 00000000, _shi_enterPoolInitMutexWriter +S_PUB32: [0001:0005AFA0], Flags: 00000000, ___init_dummy +S_PUB32: [0001:00046540], Flags: 00000000, ??_GTowTrackMissionState@@UAEPAXI@Z +S_PUB32: [0001:00029130], Flags: 00000000, ?Clone@MxDSParallelAction@@UAEPAVMxDSAction@@XZ +S_PUB32: [0001:00011980], Flags: 00000000, ??_ELegoActorPresenter@@UAEPAXI@Z +S_PUB32: [0003:00001248], Flags: 00000000, ??_7MxVideoPresenter@@6B@ +S_PUB32: [0004:00000E50], Flags: 00000000, ?g_testScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0001E2C0], Flags: 00000000, ??1MxCore@@UAE@XZ +S_PUB32: [0001:00008650], Flags: 00000000, ?ClassName@LegoHideAnimPresenter@@UBEPBDXZ +S_PUB32: [0005:000004BC], Flags: 00000000, __imp__TlsSetValue@8 +S_PUB32: [0003:00001070], Flags: 00000000, ??_7JukeBox@@6B@ +S_PUB32: [0005:00000344], Flags: 00000000, DSOUND_NULL_THUNK_DATA +S_PUB32: [0004:00000784], Flags: 00000000, ??_C@_0L@IBLO@c_chbacky0?$AA@ +S_PUB32: [0001:000530E0], Flags: 00000000, __lseek +S_PUB32: [0001:00041A60], Flags: 00000000, ?Mul@Vector2Impl@@UAEXAAM@Z +S_PUB32: [0001:00037C30], Flags: 00000000, ?Destroy@?$MxPtrList@VMxRect32@@@@SAXPAVMxRect32@@@Z +S_PUB32: [0001:000073D0], Flags: 00000000, ?VTable0x4c@LegoEntity@@UAEXXZ +S_PUB32: [0001:0002DDF0], Flags: 00000000, ?Tickle@MxMediaManager@@UAEJXZ +S_PUB32: [0005:00000494], Flags: 00000000, __imp__IsValidCodePage@4 +S_PUB32: [0001:00015DE0], Flags: 00000000, ?FUN_100a46b0@LegoROI@@QAEXAAVMatrix4Impl@@@Z +S_PUB32: [0001:00039330], Flags: 00000000, ?IntoObjectId@MxStreamChunk@@SAPAIPAE@Z +S_PUB32: [0001:0000A190], Flags: 00000000, ?Destroy@LegoModelPresenter@@UAEXXZ +S_PUB32: [0001:00030380], Flags: 00000000, ?Clone@MxNotificationParam@@UAEPAV1@XZ +S_PUB32: [0001:000046B0], Flags: 00000000, ??1Isle@@UAE@XZ +S_PUB32: [0001:00029940], Flags: 00000000, ?CopyFrom@MxDSSelectAction@@QAEXAAV1@@Z +S_PUB32: [0001:00036750], Flags: 00000000, ?VTable0x28@MxRegionCursor@@UAEPAVMxRect32@@XZ +S_PUB32: [0001:00023550], Flags: 00000000, ??1MxStreamProvider@@UAE@XZ +S_PUB32: [0001:00012810], Flags: 00000000, ??_EIsleActor@@UAEPAXI@Z +S_PUB32: [0004:00000378], Flags: 00000000, ??_C@_0L@ODGK@Infocenter?$AA@ +S_PUB32: [0001:00014A20], Flags: 00000000, ?KeyValueStringParse@@YAEPADPBD1@Z +S_PUB32: [0001:00000A10], Flags: 00000000, ?VTable0xbc@LegoPathActor@@UAEXM@Z +S_PUB32: [0001:00014DB0], Flags: 00000000, ?IsA@LegoPalettePresenter@@UBEEPBD@Z +S_PUB32: [0001:00036850], Flags: 00000000, ?VTable0x30@MxRegionCursor@@UAEPAVMxRect32@@XZ +S_PUB32: [0004:00002B24], Flags: 00000000, ??_C@_0FL@FGLB@Create?5function?5called?5without?5D@ +S_PUB32: [0001:0005D810], Flags: 00000000, __fpclass +S_PUB32: [0003:00005754], Flags: 00000000, ??_C@_07IDDB@hungary?$AA@ +S_PUB32: [0001:00005DA0], Flags: 00000000, ??0LegoAnimPresenter@@QAE@XZ +S_PUB32: [0004:00000E14], Flags: 00000000, ?g_isleScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0003FC20], Flags: 00000000, ?StreamingTickle@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:000129C0], Flags: 00000000, ?GetGifManager@@YAPAVGifManager@@XZ +S_PUB32: [0001:000411A0], Flags: 00000000, ?EqualsMatrixImpl@Matrix4Impl@@UAEXPBV1@@Z +S_PUB32: [0001:00007270], Flags: 00000000, ?ParseAction@LegoEntity@@UAEXPAD@Z +S_PUB32: [0001:000241F0], Flags: 00000000, ?FUN_100ba640@MxDisplaySurface@@QAEXXZ +S_PUB32: [0001:000189F0], Flags: 00000000, ??_GMxPresenterListCursor@@UAEPAXI@Z +S_PUB32: [0001:00016EA0], Flags: 00000000, ?id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@@@@@@$E +S_PUB32: [0003:00002920], Flags: 00000000, ??_7Act2PoliceStation@@6B@ +S_PUB32: [0001:0001C2C0], Flags: 00000000, ?Init@MxBackgroundAudioManager@@AAEXXZ +S_PUB32: [0001:00034880], Flags: 00000000, ??_EMxRegionTopBottomList@@UAEPAXI@Z +S_PUB32: [0004:00003CEC], Flags: 00000000, __imp___msize +S_PUB32: [0004:00004000], Flags: 00000000, __FPmtinit +S_PUB32: [0001:00044590], Flags: 00000000, ??_GDevice@Tgl@@UAEPAXI@Z +S_PUB32: [0001:0003AED0], Flags: 00000000, ?Close@MxStreamer@@QAEJPBD@Z +S_PUB32: [0004:000006A0], Flags: 00000000, ??_C@_0L@GEEO@c_dbltbry0?$AA@ +S_PUB32: [0001:000444B0], Flags: 00000000, ??_GDeviceImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00007630], Flags: 00000000, ?StartAction@LegoEntityPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0003:00003C58], Flags: 00000000, ??_7MxFlcPresenter@@6B@ +S_PUB32: [0001:00012500], Flags: 00000000, ??_EHospitalEntity@@UAEPAXI@Z +S_PUB32: [0001:00000C50], Flags: 00000000, ?ClassName@Act3@@UBEPBDXZ +S_PUB32: [0001:000022C0], Flags: 00000000, ??_EElevatorBottom@@UAEPAXI@Z +S_PUB32: [0003:0000585C], Flags: 00000000, ??_C@_0P@NJBN@spanish?9modern?$AA@ +S_PUB32: [0001:00000D70], Flags: 00000000, ??_EAct3@@UAEPAXI@Z +S_PUB32: [0003:00005CA8], Flags: 00000000, ??_C@_06CHLK@Monday?$AA@ +S_PUB32: [0001:00031510], Flags: 00000000, ??1MxOmni@@UAE@XZ +S_PUB32: [0001:00018E60], Flags: 00000000, ?VTable0x34@LegoVideoManager@@UAEXIIII@Z +S_PUB32: [0001:000160E0], Flags: 00000000, ??0BoundingBox@@QAE@XZ +S_PUB32: [0003:00005510], Flags: 00000000, ??_C@_06PAPI@1?$CDQNAN?$AA@ +S_PUB32: [0001:00025EB0], Flags: 00000000, ?SetBufferPointer@MxDSBuffer@@QAEJPAII@Z +S_PUB32: [0001:000302D0], Flags: 00000000, ?Unregister@MxNotificationManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:000587D0], Flags: 00000000, ___crtMessageBoxA +S_PUB32: [0004:000007DC], Flags: 00000000, ??_C@_0M@HOFE@Players?4gsi?$AA@ +S_PUB32: [0001:0004E56E], Flags: 00000000, _SelectObject@8 +S_PUB32: [0004:00000508], Flags: 00000000, ??_C@_0BK@NAD@LegoCarBuildAnimPresenter?$AA@ +S_PUB32: [0001:00044540], Flags: 00000000, ??1Device@Tgl@@UAE@XZ +S_PUB32: [0003:00005A38], Flags: 00000000, ??_C@_0L@KBBK@english?9uk?$AA@ +S_PUB32: [0001:00018A60], Flags: 00000000, ??1?$MxPtrListCursor@VMxPresenter@@@@UAE@XZ +S_PUB32: [0001:00034940], Flags: 00000000, ??_G?$MxCollection@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:0005F0D0], Flags: 00000000, __setmode +S_PUB32: [0001:0002D0D0], Flags: 00000000, ?Descend@MXIOINFO@@QAEGPAU_MMCKINFO@@PBU2@G@Z +S_PUB32: [0004:00000E34], Flags: 00000000, ?g_policeScript@@3PAVMxAtomId@@A +S_PUB32: [0005:00000384], Flags: 00000000, GDI32_NULL_THUNK_DATA +S_PUB32: [0001:00016EC0], Flags: 00000000, ?id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@@@@@@$E +S_PUB32: [0003:00005B0C], Flags: 00000000, ??_C@_0BD@DCMH@chinese?9simplified?$AA@ +S_PUB32: [0001:00039770], Flags: 00000000, ??1MxStreamListMxNextActionDataStart@@QAE@XZ +S_PUB32: [0001:00019A20], Flags: 00000000, ?Notify@LegoWorld@@UAEJAAVMxParam@@@Z +S_PUB32: [0004:000007B4], Flags: 00000000, ??_C@_0L@LPLH@c_dbbkxly0?$AA@ +S_PUB32: [0003:0000545C], Flags: 00000000, ??_C@_13A@?$AA?$AA?$AA?$AA?$AA?$AH?$AA?$AA@ +S_PUB32: [0001:00012940], Flags: 00000000, ?ControlManager@@YAPAVLegoControlManager@@XZ +S_PUB32: [0004:00002928], Flags: 00000000, ??_C@_0GI@HHHM@Clipper?5notification?5requires?5an@ +S_PUB32: [0003:000014F8], Flags: 00000000, ??_7LegoCarBuildAnimPresenter@@6B@ +S_PUB32: [0001:00014050], Flags: 00000000, ??_GGifManagerBase@@UAEPAXI@Z +S_PUB32: [0003:00004540], Flags: 00000000, ??_7MxThread@@6B@ +S_PUB32: [0004:00001038], Flags: 00000000, ??_C@_0CA@CILM@?2lego?2scripts?2infocntr?2infodoor?$AA@ +S_PUB32: [0001:00021F10], Flags: 00000000, ??1?$List@PAVMxDSBuffer@@@@QAE@XZ +S_PUB32: [0003:00002A08], Flags: 00000000, ??_7?$MxCollection@PAVLegoWorld@@@@6B@ +S_PUB32: [0004:00002B80], Flags: 00000000, ??_C@_0GH@POMM@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:00010530], Flags: 00000000, ?ClassName@LegoRaceCar@@UBEPBDXZ +S_PUB32: [0001:00027300], Flags: 00000000, ?IsA@MxDSMediaAction@@UBEEPBD@Z +S_PUB32: [0003:00004D60], Flags: 00000000, ??_7TowTrack@@6B@ +S_PUB32: [0001:0004E976], Flags: 00000000, __abnormal_termination +S_PUB32: [0003:00004598], Flags: 00000000, ??_7MxVideoManager@@6B@ +S_PUB32: [0004:000065A4], Flags: 00000000, __daylight +S_PUB32: [0001:00014540], Flags: 00000000, ?AddWorld@LegoOmni@@QAEXPAVLegoWorld@@@Z +S_PUB32: [0001:00005460], Flags: 00000000, ??1Lego3DManager@@UAE@XZ +S_PUB32: [0001:0001C500], Flags: 00000000, ?ImportBitmapInfo@MxBitmap@@UAEJPAUMxBITMAPINFO@@@Z +S_PUB32: [0001:00061150], Flags: 00000000, __isindst +S_PUB32: [0003:00005910], Flags: 00000000, ??_C@_03HGMI@nld?$AA@ +S_PUB32: [0005:00000538], Flags: 00000000, __imp__MessageBoxA@16 +S_PUB32: [0001:00021D50], Flags: 00000000, ?IsA@MxDiskStreamController@@UBEEPBD@Z +S_PUB32: [0001:000423B0], Flags: 00000000, ?ClassName@Score@@UBEPBDXZ +S_PUB32: [0003:000050B8], Flags: 00000000, ___lookuptable +S_PUB32: [0001:00032E00], Flags: 00000000, ??_GMxOmniCreateParam@@UAEPAXI@Z +S_PUB32: [0001:0003F7C0], Flags: 00000000, ?VTable0x74@MxVideoPresenter@@UAEEXZ +S_PUB32: [0003:0000516C], Flags: 00000000, ??_C@_0P@OJAK@DOMAIN?5error?$AN?6?$AA@ +S_PUB32: [0001:0002B9A0], Flags: 00000000, ??_GMxStreamChunkListCursor@@UAEPAXI@Z +S_PUB32: [0001:00050C70], Flags: 00000000, __mtterm +S_PUB32: [0001:00000DE0], Flags: 00000000, ?VTable0x14@Act3State@@UAEEXZ +S_PUB32: [0001:000411E0], Flags: 00000000, ?GetData@Matrix4Impl@@UBEPBVMatrix4@@XZ +S_PUB32: [0001:0006267C], Flags: 00000000, _TlsGetValue@4 +S_PUB32: [0001:0005977C], Flags: 00000000, __adj_fdivr_m32 +S_PUB32: [0001:00008B80], Flags: 00000000, ?ClassName@MxCore@@UBEPBDXZ +S_PUB32: [0005:000004B4], Flags: 00000000, __imp__RtlUnwind@16 +S_PUB32: [0004:00000C4C], Flags: 00000000, ??_C@_06KJAF@Police?$AA@ +S_PUB32: [0003:00005B64], Flags: 00000000, ??_C@_0BB@BJIO@american?9english?$AA@ +S_PUB32: [0003:000055D0], Flags: 00000000, ??_C@_05IJHH@log10?$AA@ +S_PUB32: [0001:000107E0], Flags: 00000000, ?ClassName@IsleActor@@UBEPBDXZ +S_PUB32: [0001:00002770], Flags: 00000000, ??0Helicopter@@QAE@XZ +S_PUB32: [0004:0000B62C], Flags: 00000000, ___unguarded_readlc_active +S_PUB32: [0001:000156F0], Flags: 00000000, ??_ELegoPathPresenter@@UAEPAXI@Z +S_PUB32: [0001:000073E0], Flags: 00000000, ?Notify@LegoEntity@@UAEJAAVMxParam@@@Z +S_PUB32: [0003:00003CE0], Flags: 00000000, ??_7MxLoopingFlcPresenter@@6B@ +S_PUB32: [0001:000056A0], Flags: 00000000, ?AddToManager@LegoActionControlPresenter@@UAEJXZ +S_PUB32: [0004:00004324], Flags: 00000000, __osver +S_PUB32: [0001:0005E2A0], Flags: 00000000, ___init_monetary +S_PUB32: [0001:00041960], Flags: 00000000, ?Dot@Vector2Impl@@UBEMPAV1@PAM@Z +S_PUB32: [0004:00000C04], Flags: 00000000, ??_C@_0BC@CBLP@Act2PoliceStation?$AA@ +S_PUB32: [0004:000035AC], Flags: 00000000, ?g_sep@@3GA +S_PUB32: [0001:00012570], Flags: 00000000, ??_GGasStationEntity@@UAEPAXI@Z +S_PUB32: [0004:00003584], Flags: 00000000, ?g_unk0x1010215c@@3IA +S_PUB32: [0001:000055D0], Flags: 00000000, ??_GLego3DView@@UAEPAXI@Z +S_PUB32: [0001:00006770], Flags: 00000000, ?IsA@LegoCacheSound@@UBEEPBD@Z +S_PUB32: [0004:000003BC], Flags: 00000000, ??_C@_0L@PJCK@SkateBoard?$AA@ +S_PUB32: [0001:00012100], Flags: 00000000, ??_EAct3Shark@@UAEPAXI@Z +S_PUB32: [0001:0000A110], Flags: 00000000, ??_ELegoLocomotionAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00040880], Flags: 00000000, ?ClassName@PoliceState@@UBEPBDXZ +S_PUB32: [0001:0002F340], Flags: 00000000, ?CalculateVolume@MxMusicManager@@AAEHH@Z +S_PUB32: [0003:000041B0], Flags: 00000000, ??_7?$MxPtrList@UMxRegionTopBottom@@@@6B@ +S_PUB32: [0001:000336E0], Flags: 00000000, ?IsHit@MxPresenter@@UAEEHH@Z +S_PUB32: [0001:0003BFB0], Flags: 00000000, ?ThreadProc@MxThread@@CAIPAX@Z +S_PUB32: [0001:0005B6C0], Flags: 00000000, ___shl_12 +S_PUB32: [0001:00035E30], Flags: 00000000, ??1MxRegionLeftRightListCursor@@UAE@XZ +S_PUB32: [0001:000106F0], Flags: 00000000, ?ClassName@LegoTexturePresenter@@UBEPBDXZ +S_PUB32: [0003:00002250], Flags: 00000000, ??_7Pizzeria@@6B@ +S_PUB32: [0001:0001ACE0], Flags: 00000000, ??1MxAtomId@@QAE@XZ +S_PUB32: [0001:00025010], Flags: 00000000, ??0MxDSAction@@QAE@XZ +S_PUB32: [0004:00003588], Flags: 00000000, ??_C@_0CB@PNIN@MxDisplaySurface?3?3Display?5error?6@ +S_PUB32: [0001:00008C30], Flags: 00000000, ??1MxNotificationParam@@UAE@XZ +S_PUB32: [0004:00004004], Flags: 00000000, __FPmtterm +S_PUB32: [0001:00058B20], Flags: 00000000, _ispunct +S_PUB32: [0001:00056A30], Flags: 00000000, __ld12told +S_PUB32: [0004:00003C48], Flags: 00000000, _SmartHeap_new +S_PUB32: [0001:00004400], Flags: 00000000, ??_EInfocenterState@@UAEPAXI@Z +S_PUB32: [0001:0001E010], Flags: 00000000, ?IsA@MxControlPresenter@@UBEEPBD@Z +S_PUB32: [0001:00046D40], Flags: 00000000, ??1?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@QAE@XZ +S_PUB32: [0001:0004E3DC], Flags: 00000000, _CreateFileA@28 +S_PUB32: [0001:00004000], Flags: 00000000, ??1Infocenter@@UAE@XZ +S_PUB32: [0001:00004130], Flags: 00000000, ?IsA@InfocenterDoor@@UBEEPBD@Z +S_PUB32: [0001:00032F10], Flags: 00000000, ??_EMxPalette@@UAEPAXI@Z +S_PUB32: [0001:000010A0], Flags: 00000000, ??_GIslePathActor@@UAEPAXI@Z +S_PUB32: [0001:0004E4D8], Flags: 00000000, _GetVersion@0 +S_PUB32: [0004:00000060], Flags: 00000000, ??_C@_09NCHI@Act2Brick?$AA@ +S_PUB32: [0001:0004F950], Flags: 00000000, _strncmp +S_PUB32: [0003:000043B8], Flags: 00000000, ??_7MxRectListCursor@@6B@ +S_PUB32: [0001:0005BFD0], Flags: 00000000, _$I10_OUTPUT +S_PUB32: [0001:00057620], Flags: 00000000, __aullrem +S_PUB32: [0004:0000076C], Flags: 00000000, ??_C@_0L@KMDF@c_chhorny0?$AA@ +S_PUB32: [0003:000058D4], Flags: 00000000, ??_C@_0BC@BAAE@norwegian?9nynorsk?$AA@ +S_PUB32: [0001:0001A600], Flags: 00000000, ?Clone@MxActionNotificationParam@@UAEPAVMxNotificationParam@@XZ +S_PUB32: [0002:00000510], Flags: 00000000, _SmackDoTables +S_PUB32: [0003:00003B50], Flags: 00000000, ??_7MxStreamChunkList@@6B@ +S_PUB32: [0004:00000DC4], Flags: 00000000, ??_C@_0O@GPLJ@LegoRaceActor?$AA@ +S_PUB32: [0001:0005F050], Flags: 00000000, ___multtenpow12 +S_PUB32: [0001:00008810], Flags: 00000000, ??1LegoLoopingAnimPresenter@@UAE@XZ +S_PUB32: [0001:00014990], Flags: 00000000, ?CopyFrom@MxRect32@@AAEPAV1@ABVMxPoint32@@ABVMxSize32@@@Z +S_PUB32: [0001:00021070], Flags: 00000000, ?CreateZBuffer@MxDirectDraw@@QAEHKK@Z +S_PUB32: [0001:0000FE50], Flags: 00000000, ?ClassName@LegoActorPresenter@@UBEPBDXZ +S_PUB32: [0004:000006F4], Flags: 00000000, ??_C@_0L@HHP@c_chwindy1?$AA@ +S_PUB32: [0001:00034330], Flags: 00000000, ??_GMxRAMStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:0004E436], Flags: 00000000, _GetFileSize@8 +S_PUB32: [0001:000430F0], Flags: 00000000, ?VTable0x14@ScoreState@@UAEEXZ +S_PUB32: [0001:00049460], Flags: 00000000, @_shi_resizeVar@8 +S_PUB32: [0004:00001954], Flags: 00000000, ??_C@_0BO@IKHK@GetDC?5for?5text?5surface?5failed?$AA@ +S_PUB32: [0003:0000517C], Flags: 00000000, ??_C@_0CF@EANP@R6028?$AN?6?9?5unable?5to?5initialize?5he@ +S_PUB32: [0004:00001A5C], Flags: 00000000, ??_C@_0BL@KPHJ@Restore?5of?5Z?9buffer?5failed?$AA@ +S_PUB32: [0004:00000BC0], Flags: 00000000, ??_C@_09DMAL@Act3Shark?$AA@ +S_PUB32: [0001:0001E270], Flags: 00000000, ?Tickle@MxCore@@UAEJXZ +S_PUB32: [0001:0004C1A0], Flags: 00000000, _MemPoolAttachShared@8 +S_PUB32: [0004:00004718], Flags: 00000000, __XcptActTabSize +S_PUB32: [0001:00007700], Flags: 00000000, ?ParseExtra@LegoEntityPresenter@@UAEXXZ +S_PUB32: [0001:000232E0], Flags: 00000000, ?Run@MxDiskStreamProviderThread@@UAEJXZ +S_PUB32: [0001:0001BC00], Flags: 00000000, ?FUN_1007ef40@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0004:00003244], Flags: 00000000, ??_C@_0EI@DJDL@An?5exception?5was?5encountered?5whi@ +S_PUB32: [0001:00016840], Flags: 00000000, ?ReadVariable@LegoStream@@SGHPAV1@PAVMxVariableTable@@@Z +S_PUB32: [0001:0004E3A6], Flags: 00000000, _midiOutUnprepareHeader@12 +S_PUB32: [0001:000496F0], Flags: 00000000, _MemPoolSize@4 +S_PUB32: [0003:000037B0], Flags: 00000000, ??_7MxDSMediaAction@@6B@ +S_PUB32: [0005:00000540], Flags: 00000000, __imp__RedrawWindow@16 +S_PUB32: [0001:00057AB0], Flags: 00000000, __unlock_fhandle +S_PUB32: [0001:00026600], Flags: 00000000, ??_GMxStreamChunk@@UAEPAXI@Z +S_PUB32: [0001:0000A3F0], Flags: 00000000, ?ResetToDefault@LegoNavController@@QAEXXZ +S_PUB32: [0004:000004E0], Flags: 00000000, ??_C@_0BF@NGHC@LegoCameraController?$AA@ +S_PUB32: [0001:0001B720], Flags: 00000000, ??0MxAutoLocker@@QAE@PAVMxCriticalSection@@@Z +S_PUB32: [0003:00005C5C], Flags: 00000000, ??_C@_03LEIG@Jun?$AA@ +S_PUB32: [0005:0000036C], Flags: 00000000, __imp__SetBkMode@8 +S_PUB32: [0001:00011E60], Flags: 00000000, ??_GLegoAct2@@UAEPAXI@Z +S_PUB32: [0001:00006670], Flags: 00000000, ??_GLegoBuildingManager@@UAEPAXI@Z +S_PUB32: [0004:0000199C], Flags: 00000000, ??_C@_0CI@HOLM@CreateSurface?5for?5text?5surface?51@ +S_PUB32: [0001:00039170], Flags: 00000000, ?Clone@MxStillPresenter@@UAEPAV1@XZ +S_PUB32: [0001:000056D0], Flags: 00000000, ?Destroy@LegoActionControlPresenter@@UAEXE@Z +S_PUB32: [0001:00015910], Flags: 00000000, ?ClassName@LegoPhonemePresenter@@UBEPBDXZ +S_PUB32: [0001:000424D0], Flags: 00000000, ??_EScore@@UAEPAXI@Z +S_PUB32: [0004:00000460], Flags: 00000000, ??_C@_0BB@DEIE@MxMediaPresenter?$AA@ +S_PUB32: [0001:0003E870], Flags: 00000000, ??0MxVideoParamFlags@@QAE@XZ +S_PUB32: [0001:00025550], Flags: 00000000, ?MergeFrom@MxDSAction@@UAEXAAV1@@Z +S_PUB32: [0005:0000038C], Flags: 00000000, __imp__InitializeCriticalSection@4 +S_PUB32: [0001:0002F730], Flags: 00000000, ??0MxNotificationManager@@QAE@XZ +S_PUB32: [0001:00024690], Flags: 00000000, ?SetPalette@MxDisplaySurface@@UAEXPAVMxPalette@@@Z +S_PUB32: [0001:00024070], Flags: 00000000, ?GetFileSize@MxDiskStreamProvider@@UAEIXZ +S_PUB32: [0001:00015AF0], Flags: 00000000, ?VTable0x7c@LegoRace@@UAEXII@Z +S_PUB32: [0001:00004780], Flags: 00000000, ?Create@Isle@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0004:00001D08], Flags: 00000000, ??_C@_0CN@KJJG@Width?5requested?5by?5DirectDraw?5is@ +S_PUB32: [0001:0002E6A0], Flags: 00000000, ?EndAction@MxMediaPresenter@@UAEXXZ +S_PUB32: [0001:0001FC80], Flags: 00000000, ?FUN_1009d1a0@MxDeviceEnumerate@@SAIXZ +S_PUB32: [0003:00001580], Flags: 00000000, ??_7LegoControlManager@@6B@ +S_PUB32: [0001:0002E120], Flags: 00000000, ?StopPresenters@MxMediaManager@@UAEXXZ +S_PUB32: [0001:00009BA0], Flags: 00000000, ?IsA@MxSoundPresenter@@UBEEPBD@Z +S_PUB32: [0003:000037F8], Flags: 00000000, ??_7?$MxCollection@PAVMxDSAction@@@@6B@ +S_PUB32: [0003:00005A14], Flags: 00000000, ??_C@_03DPKJ@enz?$AA@ +S_PUB32: [0001:00003EC0], Flags: 00000000, ?ClassName@Infocenter@@UBEPBDXZ +S_PUB32: [0001:0002F3E0], Flags: 00000000, ??0MxMusicPresenter@@QAE@XZ +S_PUB32: [0001:00005C40], Flags: 00000000, ?ClassName@LegoAnimMMPresenter@@UBEPBDXZ +S_PUB32: [0001:00045010], Flags: 00000000, ??1Light@Tgl@@UAE@XZ +S_PUB32: [0001:0004AA20], Flags: 00000000, @_shi_sysSize@4 +S_PUB32: [0001:000038A0], Flags: 00000000, ?ClassName@HistoryBook@@UBEPBDXZ +S_PUB32: [0004:000018BC], Flags: 00000000, ??_C@_0CN@MDFE@CreateSurface?5for?5window?5front?5b@ +S_PUB32: [0003:00001880], Flags: 00000000, ??_7LegoEventNotificationParam@@6B@ +S_PUB32: [0001:00001EC0], Flags: 00000000, ??0DuneBuggy@@QAE@XZ +S_PUB32: [0005:00000450], Flags: 00000000, __imp__GetStringTypeA@20 +S_PUB32: [0001:000298C0], Flags: 00000000, ??1MxDSSelectAction@@UAE@XZ +S_PUB32: [0001:00061B10], Flags: 00000000, __mbsnbicoll +S_PUB32: [0001:0004FB72], Flags: 00000000, __CIpow +S_PUB32: [0001:00028E30], Flags: 00000000, ??4MxDSObjectAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0003:00002FA0], Flags: 00000000, ??_7?$MxList@PAVMxUnknown100d7c88@@@@6B@ +S_PUB32: [0004:00004710], Flags: 00000000, __First_FPE_Indx +S_PUB32: [0004:00000308], Flags: 00000000, ??_C@_0P@HMH@ElevatorBottom?$AA@ +S_PUB32: [0001:000114D0], Flags: 00000000, ?ClassName@JetskiRaceState@@UBEPBDXZ +S_PUB32: [0001:000380D0], Flags: 00000000, ??1MxRectListCursor@@UAE@XZ +S_PUB32: [0001:00028CA0], Flags: 00000000, ?IsA@MxDSObjectAction@@UBEEPBD@Z +S_PUB32: [0005:00000364], Flags: 00000000, __imp__SetTextColor@8 +S_PUB32: [0001:0000FF70], Flags: 00000000, ?ClassName@LegoJetskiRaceActor@@UBEPBDXZ +S_PUB32: [0001:0001FA10], Flags: 00000000, ?ProcessDeviceBytes@MxDeviceEnumerate@@QAEHHAAU_GUID@@@Z +S_PUB32: [0003:0000557C], Flags: 00000000, ??_C@_04JJMP@ceil?$AA@ +S_PUB32: [0001:0004BD90], Flags: 00000000, __shi_createAndEnterMutex +S_PUB32: [0001:000561F0], Flags: 00000000, __control87 +S_PUB32: [0001:000006E0], Flags: 00000000, ?IsA@LegoState@@UBEEPBD@Z +S_PUB32: [0001:00019A10], Flags: 00000000, ?SetAsCurrentWorld@LegoWorld@@QAEJAAVMxDSObject@@@Z +S_PUB32: [0001:0004FB7C], Flags: 00000000, __CIlog +S_PUB32: [0003:000045D0], Flags: 00000000, ??_7AlphaMask@MxVideoPresenter@@6B@ +S_PUB32: [0001:00036C80], Flags: 00000000, ?UpdateRect@MxRegionCursor@@AAEXHHHH@Z +S_PUB32: [0001:000145E0], Flags: 00000000, ?FindByEntityIdOrAtomId@LegoOmni@@QAEPAVLegoEntity@@ABVMxAtomId@@H@Z +S_PUB32: [0001:0004F0E0], Flags: 00000000, _fclose +S_PUB32: [0003:000039D0], Flags: 00000000, ??_7MxStringListCursor@@6B@ +S_PUB32: [0001:00014F50], Flags: 00000000, ?Destroy@LegoPalettePresenter@@AAEXE@Z +S_PUB32: [0001:00000890], Flags: 00000000, ??_GLegoState@@UAEPAXI@Z +S_PUB32: [0001:0004E3C4], Flags: 00000000, _QueryPerformanceFrequency@4 +S_PUB32: [0004:00000748], Flags: 00000000, ??_C@_0L@IBCK@c_chmidly0?$AA@ +S_PUB32: [0001:00019ED0], Flags: 00000000, ?StartAction@LegoWorldPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0004:0000432C], Flags: 00000000, __winmajor +S_PUB32: [0001:00025A40], Flags: 00000000, ??_GMxDSAnim@@UAEPAXI@Z +S_PUB32: [0004:00001788], Flags: 00000000, ??_C@_0BC@PKPG@SetPalette?5failed?$AA@ +S_PUB32: [0003:000054B8], Flags: 00000000, ??_C@_07PCLE@LC_TIME?$AA@ +S_PUB32: [0001:0004E4AE], Flags: 00000000, _OpenMutexA@12 +S_PUB32: [0001:00041990], Flags: 00000000, ?Unitize@Vector2Impl@@UAEHXZ +S_PUB32: [0001:00037790], Flags: 00000000, ?ClassName@MxSmkPresenter@@UBEPBDXZ +S_PUB32: [0001:0002AB50], Flags: 00000000, ??_EMxDSSound@@UAEPAXI@Z +S_PUB32: [0001:000159D0], Flags: 00000000, ??0LegoPlantManager@@QAE@XZ +S_PUB32: [0004:00001180], Flags: 00000000, ??_C@_06KMBD@?0?5?7?$AN?6?3?$AA@ +S_PUB32: [0001:00038EB0], Flags: 00000000, ?RepeatingTickle@MxStillPresenter@@UAEXXZ +S_PUB32: [0004:00006290], Flags: 00000000, __alternate_form +S_PUB32: [0001:00018AB0], Flags: 00000000, ??_G?$MxListCursor@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:000598A6], Flags: 00000000, __fprem_common +S_PUB32: [0003:00005CD8], Flags: 00000000, ??_C@_05BDJK@am?1pm?$AA@ +S_PUB32: [0001:000287C0], Flags: 00000000, ?VTable0x14@MxDSObject@@UAEIXZ +S_PUB32: [0001:00062652], Flags: 00000000, _ExitThread@4 +S_PUB32: [0001:0002F720], Flags: 00000000, ??1MxNotification@@QAE@XZ +S_PUB32: [0001:0003E9C0], Flags: 00000000, ??0AlphaMask@MxVideoPresenter@@QAE@ABVMxBitmap@@@Z +S_PUB32: [0001:00050C10], Flags: 00000000, __mtinit +S_PUB32: [0003:00001458], Flags: 00000000, ??_7LegoCacheSound@@6B@ +S_PUB32: [0004:00005988], Flags: 00000000, __d_min +S_PUB32: [0001:0005012D], Flags: 00000000, __seh_longjmp_unwind@4 +S_PUB32: [0004:0000365C], Flags: 00000000, ??_C@_0BA@ONG@MxDSMultiAction?$AA@ +S_PUB32: [0001:00009F90], Flags: 00000000, ?IsA@LegoLocomotionAnimPresenter@@UBEEPBD@Z +S_PUB32: [0001:00034AD0], Flags: 00000000, ??_GMxRegion@@UAEPAXI@Z +S_PUB32: [0003:00002F80], Flags: 00000000, ??_7?$MxCollection@PAVMxUnknown100d7c88@@@@6B@ +S_PUB32: [0001:000474B0], Flags: 00000000, ?Destroy@ViewLODListManager@@QAEXPAVViewLODList@@@Z +S_PUB32: [0001:000278E0], Flags: 00000000, ??_G?$MxList@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:0006272A], Flags: 00000000, _GetStringTypeW@16 +S_PUB32: [0001:00000470], Flags: 00000000, ?DestroyView@TglSurface@@MAEXXZ +S_PUB32: [0004:00001234], Flags: 00000000, ??_C@_0BB@OKIM@lego?5dk?5grey?5flt?$AA@ +S_PUB32: [0001:0002ED50], Flags: 00000000, ??_GMxMIDIPresenter@@UAEPAXI@Z +S_PUB32: [0001:0004E388], Flags: 00000000, _DirectInputCreateA@16 +S_PUB32: [0001:0003F850], Flags: 00000000, ?Init@MxWavePresenter@@AAEXXZ +S_PUB32: [0001:0005D300], Flags: 00000000, __frnd +S_PUB32: [0005:00000584], Flags: 00000000, __imp__midiStreamStop@4 +S_PUB32: [0001:00035C40], Flags: 00000000, ??_EMxRegionLeftRightListCursor@@UAEPAXI@Z +S_PUB32: [0001:0003D7E0], Flags: 00000000, ?SetVariable@MxVariableTable@@QAEXPAVMxVariable@@@Z +S_PUB32: [0003:000050A0], Flags: 00000000, ??_C@_1O@POHA@?$AA?$CI?$AAn?$AAu?$AAl?$AAl?$AA?$CJ?$AA?$AA?$AA?$AA?$AA?$AH?$AA?$AA?$AA?$AA?$AA?$AA?$AA?$9A?$AE?$;I@ +S_PUB32: [0001:00008410], Flags: 00000000, ?FUN_1003ceb0@LegoGameState@@QAEXXZ +S_PUB32: [0001:000465B0], Flags: 00000000, ?VTable0x1c@TowTrackMissionState@@UAEJPAVLegoFileStream@@@Z +S_PUB32: [0004:000000D0], Flags: 00000000, ??_C@_0BG@DPNI@AmbulanceMissionState?$AA@ +S_PUB32: [0001:00031BF0], Flags: 00000000, ??1_Lockit@@QAE@XZ +S_PUB32: [0001:00047D00], Flags: 00000000, _MemPoolPreAllocate@12 +S_PUB32: [0001:0001B9A0], Flags: 00000000, ?Create@MxBackgroundAudioManager@@UAEJAAVMxAtomId@@I@Z +S_PUB32: [0001:00049630], Flags: 00000000, _MemSizePtr@4 +S_PUB32: [0003:000055A8], Flags: 00000000, ??_C@_04OAMO@acos?$AA@ +S_PUB32: [0004:000014A8], Flags: 00000000, ??_C@_01LLF@w?$AA@ +S_PUB32: [0003:00005C30], Flags: 00000000, ??_C@_08PGBA@February?$AA@ +S_PUB32: [0001:000366C0], Flags: 00000000, ?VTable0x20@MxRegionCursor@@UAEPAVMxRect32@@XZ +S_PUB32: [0001:0004E490], Flags: 00000000, _OpenFileMappingA@12 +S_PUB32: [0004:00000FB8], Flags: 00000000, ??_C@_0CA@FLPL@?2lego?2scripts?2infocntr?2histbook?$AA@ +S_PUB32: [0001:0002A480], Flags: 00000000, ??0?$MxListEntry@VMxString@@@@QAE@VMxString@@PAV0@1@Z +S_PUB32: [0001:00044980], Flags: 00000000, ?CreateGroup@RendererImpl@TglImpl@@UAEPAVGroup@Tgl@@PBV34@@Z +S_PUB32: [0001:0004E41E], Flags: 00000000, __lclose@4 +S_PUB32: [0004:000031D8], Flags: 00000000, ??_C@_0BC@FPFN@Generic?5failure?4?$AA?$AA@ +S_PUB32: [0001:00036080], Flags: 00000000, ?FUN_100c57b0@MxRegionTopBottom@@QAEEAAVMxRect32@@@Z +S_PUB32: [0001:0001E3A0], Flags: 00000000, ?Leave@MxCriticalSection@@QAEXXZ +S_PUB32: [0004:00001758], Flags: 00000000, ??_C@_0BC@IJAM@SetEntries?5failed?$AA@ +S_PUB32: [0001:0005F9C0], Flags: 00000000, __Strftime +S_PUB32: [0001:00036950], Flags: 00000000, ?VTable0x14@MxRegionCursor@@UAEPAVMxRect32@@AAV2@@Z +S_PUB32: [0001:00054160], Flags: 00000000, __GET_RTERRMSG +S_PUB32: [0001:00006A90], Flags: 00000000, ?FUN_100128a0@LegoCameraController@@QAEAAVVector3Data@@XZ +S_PUB32: [0001:00000960], Flags: 00000000, ?VTable0x60@LegoActor@@UAEEXZ +S_PUB32: [0001:0002E450], Flags: 00000000, ?NextChunk@MxMediaPresenter@@QAEPAVMxStreamChunk@@XZ +S_PUB32: [0001:0004A270], Flags: 00000000, _MemPoolCheck@4 +S_PUB32: [0001:000211E0], Flags: 00000000, ?RestorePaletteEntries@MxDirectDraw@@QAEHXZ +S_PUB32: [0001:00027070], Flags: 00000000, ?ReadChunks@MxDSFile@@AAEJXZ +S_PUB32: [0005:000003B4], Flags: 00000000, __imp___llseek@12 +S_PUB32: [0003:00005810], Flags: 00000000, ??_C@_07OIK@austria?$AA@ +S_PUB32: [0001:000173B0], Flags: 00000000, ?ConvertHSVToRGB@@YAXMMMPAM00@Z +S_PUB32: [0003:00005C20], Flags: 00000000, ??_C@_05JFGC@April?$AA@ +S_PUB32: [0001:00035750], Flags: 00000000, ??_G?$MxPtrList@UMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:00006D60], Flags: 00000000, ?IsA@LegoCarBuildAnimPresenter@@UBEEPBD@Z +S_PUB32: [0001:0004F7E0], Flags: 00000000, _fopen +S_PUB32: [0004:000014B0], Flags: 00000000, ??_C@_06PDOH@notify?$AA@ +S_PUB32: [0001:00016060], Flags: 00000000, ?VTable0x14@OrientableROI@@UAEXXZ +S_PUB32: [0001:000127A0], Flags: 00000000, ??_ELegoRaceActor@@UAEPAXI@Z +S_PUB32: [0001:00027780], Flags: 00000000, ?Destroy@MxDSActionList@@SAXPAVMxDSAction@@@Z +S_PUB32: [0001:0005E030], Flags: 00000000, ___init_numeric +S_PUB32: [0001:0006274E], Flags: 00000000, _LoadLibraryA@4 +S_PUB32: [0001:0002ADB0], Flags: 00000000, ?IsA@MxDSStill@@UBEEPBD@Z +S_PUB32: [0004:0000B610], Flags: 00000000, __shi_mutexGlobal +S_PUB32: [0001:0002F130], Flags: 00000000, ?InitData@MxMusicManager@@IAEXXZ +S_PUB32: [0001:00001480], Flags: 00000000, ??_GAmbulanceMissionState@@UAEPAXI@Z +S_PUB32: [0001:00034380], Flags: 00000000, ?GetBufferForDWords@MxRAMStreamProvider@@UAEPAIXZ +S_PUB32: [0001:00008200], Flags: 00000000, ?CreateState@LegoGameState@@QAEPAVLegoState@@PBD@Z +S_PUB32: [0001:0005F1E0], Flags: 00000000, _ldexp +S_PUB32: [0001:000381C0], Flags: 00000000, ?Destroy@MxSmkPresenter@@UAEXXZ +S_PUB32: [0001:0002DFE0], Flags: 00000000, ?RemovePresenter@MxMediaManager@@UAEXAAVMxPresenter@@@Z +S_PUB32: [0003:00005774], Flags: 00000000, ??_C@_07CCAK@holland?$AA@ +S_PUB32: [0001:00045D10], Flags: 00000000, ?Add@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVLight@4@@Z +S_PUB32: [0001:00014100], Flags: 00000000, ?Destroy@?$MxCollection@PAVLegoWorld@@@@SAXPAVLegoWorld@@@Z +S_PUB32: [0001:00040040], Flags: 00000000, ?ParseExtra@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:000528E0], Flags: 00000000, _fflush +S_PUB32: [0001:00027B10], Flags: 00000000, ?CopyFrom@MxDSMultiAction@@QAEXAAV1@@Z +S_PUB32: [0003:000052F4], Flags: 00000000, ??_C@_0CM@OBIC@R6016?$AN?6?9?5not?5enough?5space?5for?5th@ +S_PUB32: [0004:00004030], Flags: 00000000, ___tlsindex +S_PUB32: [0001:000482D0], Flags: 00000000, @_shi_deletePage@8 +S_PUB32: [0001:00010330], Flags: 00000000, ?IsA@LegoModelPresenter@@UBEEPBD@Z +S_PUB32: [0003:00004F30], Flags: 00000000, _IID_IDirect3D2 +S_PUB32: [0001:0004E4DE], Flags: 00000000, _GetWindowLongA@8 +S_PUB32: [0001:00016B60], Flags: 00000000, ?Write@LegoFileStream@@UAEJPBXI@Z +S_PUB32: [0004:0000B5F0], Flags: 00000000, _shi_mutexPoolSynch +S_PUB32: [0003:00001AD8], Flags: 00000000, ??_7LegoNavController@@6B@ +S_PUB32: [0001:000313C0], Flags: 00000000, ?MSoundManager@@YAPAVMxSoundManager@@XZ +S_PUB32: [0001:00058C60], Flags: 00000000, ___toascii +S_PUB32: [0001:000626EE], Flags: 00000000, _FreeEnvironmentStringsA@4 +S_PUB32: [0001:000412F0], Flags: 00000000, ?SetTranslation@Matrix4Impl@@UAEXPBM00@Z +S_PUB32: [0001:000300D0], Flags: 00000000, ?begin@?$list@PAVMxNotification@@V?$allocator@PAVMxNotification@@@@@@QAE?AViterator@1@XZ +S_PUB32: [0001:0002B210], Flags: 00000000, ?CopyFrom@MxDSStreamingAction@@QAEPAV1@AAV1@@Z +S_PUB32: [0003:00005B58], Flags: 00000000, ??_C@_0L@LCCA@australian?$AA@ +S_PUB32: [0001:0002AF30], Flags: 00000000, ?CopyFrom@MxDSStill@@QAEXAAV1@@Z +S_PUB32: [0001:0002FE70], Flags: 00000000, ?FlushPending@MxNotificationManager@@AAEXPAVMxCore@@@Z +S_PUB32: [0001:0005B620], Flags: 00000000, ___addl +S_PUB32: [0004:000014CC], Flags: 00000000, ??_C@_05IIAE@start?$AA@ +S_PUB32: [0005:00000530], Flags: 00000000, KERNEL32_NULL_THUNK_DATA +S_PUB32: [0001:00047730], Flags: 00000000, ??1FloatMatrix4@Tgl@@QAE@XZ +S_PUB32: [0001:00005470], Flags: 00000000, ?Create@Lego3DManager@@QAEHAAUCreateStruct@1@@Z +S_PUB32: [0004:00003780], Flags: 00000000, ?g_defaultPaletteEntries@@3PAUtagPALETTEENTRY@@A +S_PUB32: [0003:00005ABC], Flags: 00000000, ??_C@_03BNDL@des?$AA@ +S_PUB32: [0001:0003AA30], Flags: 00000000, ??1?$List@PAVMxStreamController@@@@QAE@XZ +S_PUB32: [0003:00005D20], Flags: 00000000, ??_C@_02JHIA@TZ?$AA@ +S_PUB32: [0001:00059AAC], Flags: 00000000, __adj_fprem +S_PUB32: [0005:00000464], Flags: 00000000, __imp__SetEnvironmentVariableA@8 +S_PUB32: [0001:000322F0], Flags: 00000000, ??_G?$MxCollection@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0003:00005AE0], Flags: 00000000, ??_C@_03FKAO@chs?$AA@ +S_PUB32: [0001:00001050], Flags: 00000000, ?VTable0xcc@IslePathActor@@UAEIXZ +S_PUB32: [0001:00040380], Flags: 00000000, ??_EPizza@@UAEPAXI@Z +S_PUB32: [0001:000115D0], Flags: 00000000, ?IsA@Pizzeria@@UBEEPBD@Z +S_PUB32: [0001:00043910], Flags: 00000000, ?SetMaterialMode@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@W4MaterialMode@4@@Z +S_PUB32: [0001:000175B0], Flags: 00000000, ?SetAppCursor@@YAXI@Z +S_PUB32: [0001:00029830], Flags: 00000000, ??_EMxDSSelectAction@@UAEPAXI@Z +S_PUB32: [0001:00020F60], Flags: 00000000, ?RestoreSurfaces@MxDirectDraw@@QAEHXZ +S_PUB32: [0001:0003B120], Flags: 00000000, ?Clone@MxStreamerNotification@@UAEPAVMxNotificationParam@@XZ +S_PUB32: [0001:00000DF0], Flags: 00000000, ??0Ambulance@@QAE@XZ +S_PUB32: [0001:00024150], Flags: 00000000, ??1MxDisplaySurface@@UAE@XZ +S_PUB32: [0001:00028C90], Flags: 00000000, ?ClassName@MxDSObjectAction@@UBEPBDXZ +S_PUB32: [0001:000474A0], Flags: 00000000, ?Lookup@ViewLODListManager@@QBEPAVViewLODList@@ABQBD@Z +S_PUB32: [0001:00056E9D], Flags: 00000000, __nosnan2 +S_PUB32: [0001:00040590], Flags: 00000000, ??_GPizzeriaState@@UAEPAXI@Z +S_PUB32: [0001:00026450], Flags: 00000000, ?ReadChunk@MxDSBuffer@@SAPAVMxCore@@PAV1@PAIG@Z +S_PUB32: [0001:00036570], Flags: 00000000, ?HasRect@MxRegionCursor@@UAEEXZ +S_PUB32: [0001:00059E40], Flags: 00000000, __set_sbh_threshold +S_PUB32: [0001:00033390], Flags: 00000000, ??8MxPalette@@QAEEAAV0@@Z +S_PUB32: [0001:00010700], Flags: 00000000, ?IsA@LegoTexturePresenter@@UBEEPBD@Z +S_PUB32: [0001:00007460], Flags: 00000000, ?ClassName@LegoEntityPresenter@@UBEPBDXZ +S_PUB32: [0004:00002CC4], Flags: 00000000, ??_C@_0BO@OIGG@No?5blitter?5hardware?5present?4?$AA?$AA@ +S_PUB32: [0003:000021E8], Flags: 00000000, ??_7Act3Actor@@6B@ +S_PUB32: [0001:0002F930], Flags: 00000000, ??1MxNotificationManager@@UAE@XZ +S_PUB32: [0004:00003FEC], Flags: 00000000, __fltused +S_PUB32: [0004:00000724], Flags: 00000000, ??_C@_0L@LOJ@c_chsidly0?$AA@ +S_PUB32: [0001:000203F0], Flags: 00000000, ?DDInit@MxDirectDraw@@QAEHH@Z +S_PUB32: [0001:00010CA0], Flags: 00000000, ?ClassName@Doors@@UBEPBDXZ +S_PUB32: [0001:0003A3B0], Flags: 00000000, ?InsertActionToList54@MxStreamController@@QAEJPAVMxDSAction@@@Z +S_PUB32: [0001:00062730], Flags: 00000000, _SetStdHandle@8 +S_PUB32: [0001:000377C0], Flags: 00000000, ??1MxSmkPresenter@@UAE@XZ +S_PUB32: [0001:0002CA90], Flags: 00000000, ??1MXIOINFO@@QAE@XZ +S_PUB32: [0003:00005A50], Flags: 00000000, ??_C@_0M@PMJI@english?9ire?$AA@ +S_PUB32: [0001:0001B740], Flags: 00000000, ??1MxAutoLocker@@QAE@XZ +S_PUB32: [0005:000004C8], Flags: 00000000, __imp__GetProcAddress@8 +S_PUB32: [0001:00021130], Flags: 00000000, ?Pause@MxDirectDraw@@QAEHH@Z +S_PUB32: [0005:00000508], Flags: 00000000, __imp__SetConsoleCtrlHandler@8 +S_PUB32: [0004:000011EC], Flags: 00000000, ??_C@_0BB@DKDA@lego?5lt?5grey?5fla?$AA@ +S_PUB32: [0004:000016DC], Flags: 00000000, ??_C@_0BE@GEMO@GetCaps?5failed?3?5?$CFs?6?$AA@ +S_PUB32: [0001:0004F820], Flags: 00000000, _abort +S_PUB32: [0005:00000568], Flags: 00000000, __imp__SetTimer@16 +S_PUB32: [0001:000420D0], Flags: 00000000, ?EqualsImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0001:00008BE0], Flags: 00000000, ??1LegoEventNotificationParam@@UAE@XZ +S_PUB32: [0001:0004E5B0], Flags: 00000000, ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z +S_PUB32: [0005:000004CC], Flags: 00000000, __imp__GetModuleHandleA@4 +S_PUB32: [0003:00003E88], Flags: 00000000, ??_7MxMusicManager@@6B@ +S_PUB32: [0001:0002EE80], Flags: 00000000, ?StartingTickle@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0001:00019930], Flags: 00000000, ??_ELegoWorld@@UAEPAXI@Z +S_PUB32: [0001:00032BF0], Flags: 00000000, ?StopTimer@MxOmni@@UAEXXZ +S_PUB32: [0001:00011FB0], Flags: 00000000, ??_GPizzaMissionState@@UAEPAXI@Z +S_PUB32: [0001:00022E50], Flags: 00000000, ?FUN_100c8360@MxDiskStreamController@@AAEJPAVMxDSStreamingAction@@@Z +S_PUB32: [0004:00003694], Flags: 00000000, ??_C@_0BB@OHMI@MxDSSelectAction?$AA@ +S_PUB32: [0001:00001BF0], Flags: 00000000, ??_EBuildingEntity@@UAEPAXI@Z +S_PUB32: [0001:00016330], Flags: 00000000, ?CallTheHandlerFunction@LegoROI@@SAEPADAAM111@Z +S_PUB32: [0001:00040A20], Flags: 00000000, ?ClassName@RaceCar@@UBEPBDXZ +S_PUB32: [0001:0004E40C], Flags: 00000000, _ReleaseMutex@4 +S_PUB32: [0001:00029C80], Flags: 00000000, ??_E?$MxListCursor@VMxString@@@@UAEPAXI@Z +S_PUB32: [0004:0000B628], Flags: 00000000, ___setlc_active +S_PUB32: [0001:0004E592], Flags: 00000000, _GetDeviceCaps@8 +S_PUB32: [0001:0004F510], Flags: 00000000, __ftell_lk +S_PUB32: [0001:0005967C], Flags: 00000000, __adj_fdiv_m32 +S_PUB32: [0003:00001F70], Flags: 00000000, ??_7RaceStandsEntity@@6B@ +S_PUB32: [0001:00040000], Flags: 00000000, ?Enable@MxWavePresenter@@UAEXE@Z +S_PUB32: [0003:00005830], Flags: 00000000, ??_C@_03IPEP@usa?$AA@ +S_PUB32: [0001:0002EC00], Flags: 00000000, ?ClassName@MxMIDIPresenter@@UBEPBDXZ +S_PUB32: [0001:0003F920], Flags: 00000000, ?FUN_100b1ba0@MxWavePresenter@@AAEEXZ +S_PUB32: [0001:0005D350], Flags: 00000000, __chgsign +S_PUB32: [0004:0000435C], Flags: 00000000, __C_Termination_Done +S_PUB32: [0003:00003310], Flags: 00000000, ??_7MxAudioManager@@6B@ +S_PUB32: [0001:0004F6C0], Flags: 00000000, _fseek +S_PUB32: [0001:00000110], Flags: 00000000, ??_ETglSurface@@UAEPAXI@Z +S_PUB32: [0001:00019B30], Flags: 00000000, ?FUN_100220e0@LegoWorld@@QAEEXZ +S_PUB32: [0001:0002CA70], Flags: 00000000, ??0MXIOINFO@@QAE@XZ +S_PUB32: [0001:00014DA0], Flags: 00000000, ?ClassName@LegoPalettePresenter@@UBEPBDXZ +S_PUB32: [0001:0004EA40], Flags: 00000000, _asin +S_PUB32: [0001:00040670], Flags: 00000000, ?IsA@Police@@UBEEPBD@Z +S_PUB32: [0001:0003FDD0], Flags: 00000000, ?AppendChunk@MxWavePresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:000012B0], Flags: 00000000, ??_EAmbulance@@UAEPAXI@Z +S_PUB32: [0005:000003F8], Flags: 00000000, __imp__CreateFileMappingA@24 +S_PUB32: [0001:000418A0], Flags: 00000000, ?EqualsImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0004:00006630], Flags: 00000000, __tzname +S_PUB32: [0001:000496E0], Flags: 00000000, _MemVersion@0 +S_PUB32: [0003:000057A4], Flags: 00000000, ??_C@_03CAMC@gbr?$AA@ +S_PUB32: [0001:0003DC20], Flags: 00000000, ?NodeInsert@?$MxHashTable@PAVMxVariable@@@@IAEXPAV?$MxHashTableNode@PAVMxVariable@@@@@Z +S_PUB32: [0001:0003E500], Flags: 00000000, ?Tickle@MxVideoManager@@UAEJXZ +S_PUB32: [0001:0004E9E0], Flags: 00000000, __fpclear +S_PUB32: [0001:000440B0], Flags: 00000000, ?GetTexture@MeshImpl@TglImpl@@UAE?AW4Result@Tgl@@AAPAVTexture@4@@Z +S_PUB32: [0001:0001BB30], Flags: 00000000, ?FUN_1007ee70@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0001:00002DF0], Flags: 00000000, ?VTable0xd4@Helicopter@@UAEIAAVMxType17NotificationParam@@@Z +S_PUB32: [0004:00004070], Flags: 00000000, __OP_ACOSjmptab +S_PUB32: [0001:00011CC0], Flags: 00000000, ??1LegoRaceActor@@UAE@XZ +S_PUB32: [0001:00058C10], Flags: 00000000, _iscntrl +S_PUB32: [0001:0003BF40], Flags: 00000000, ?Start@MxThread@@QAEJHH@Z +S_PUB32: [0001:000078E0], Flags: 00000000, ??_ELegoFlcTexturePresenter@@UAEPAXI@Z +S_PUB32: [0004:000035B0], Flags: 00000000, ??_C@_0L@BLED@MxDSAction?$AA@ +S_PUB32: [0004:00002518], Flags: 00000000, ??_C@_0GA@JDIF@DirectDrawSurface?5is?5not?5in?58?5bi@ +S_PUB32: [0003:00001358], Flags: 00000000, ??_7MxMediaPresenter@@6B@ +S_PUB32: [0001:000400E0], Flags: 00000000, ?Pause@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:0001E4D0], Flags: 00000000, ?Create@MxDirect3D@@UAEHPAXHHHHHHPBUtagPALETTEENTRY@@H@Z +S_PUB32: [0001:00047780], Flags: 00000000, ?SetUnk101013d8@ViewROI@@SAEE@Z +S_PUB32: [0001:00014740], Flags: 00000000, ?CreateBackgroundAudio@LegoOmni@@QAEXXZ +S_PUB32: [0001:00005E70], Flags: 00000000, ?ClassName@MxPresenter@@UBEPBDXZ +S_PUB32: [0001:00036360], Flags: 00000000, ?InsertEntry@?$MxList@PAUMxRegionTopBottom@@@@IAEPAV?$MxListEntry@PAUMxRegionTopBottom@@@@PAUMxRegionTopBottom@@PAV2@1@Z +S_PUB32: [0003:00005828], Flags: 00000000, ??_C@_07DLAK@america?$AA@ +S_PUB32: [0004:00006294], Flags: 00000000, __no_lead_zeros +S_PUB32: [0001:00001E40], Flags: 00000000, ??_ECarRace@@UAEPAXI@Z +S_PUB32: [0004:00001FD4], Flags: 00000000, ??_C@_0DF@ECGF@Region?5passed?5to?5Clipper?3?3GetCli@ +S_PUB32: [0001:00016220], Flags: 00000000, ??_GViewROI@@UAEPAXI@Z +S_PUB32: [0001:00022840], Flags: 00000000, ?FUN_100c7d10@MxDiskStreamController@@AAEJXZ +S_PUB32: [0004:00003D00], Flags: 00000000, __imp___heapused +S_PUB32: [0003:00004258], Flags: 00000000, ??_7MxRegionLeftRightList@@6B@ +S_PUB32: [0001:00009B40], Flags: 00000000, ??1MxAudioPresenter@@UAE@XZ +S_PUB32: [0001:00016F40], Flags: 00000000, ?AddToManager@LegoTexturePresenter@@UAEJXZ +S_PUB32: [0001:00026F70], Flags: 00000000, ??_GMxDSSource@@UAEPAXI@Z +S_PUB32: [0004:00000D0C], Flags: 00000000, ??_C@_0BD@BCJP@LegoModelPresenter?$AA@ +S_PUB32: [0001:0001B8C0], Flags: 00000000, ??_GMxBackgroundAudioManager@@UAEPAXI@Z +S_PUB32: [0001:00050DE0], Flags: 00000000, ___threadid +S_PUB32: [0003:00003470], Flags: 00000000, ??_7MxControlPresenter@@6B@ +S_PUB32: [0001:0003C5A0], Flags: 00000000, ??1MxTransitionManager@@UAE@XZ +S_PUB32: [0004:00001710], Flags: 00000000, ??_C@_0CH@GBHH@DirectDrawEnumerate?5returned?5err@ +S_PUB32: [0001:00016A90], Flags: 00000000, ??_GLegoFileStream@@UAEPAXI@Z +S_PUB32: [0001:0002A8A0], Flags: 00000000, ?GetDuration@MxDSSerialAction@@UAEJXZ +S_PUB32: [0001:00027CD0], Flags: 00000000, ?SetUnknown90@MxDSMultiAction@@UAEXJ@Z +S_PUB32: [0001:00003240], Flags: 00000000, ?VTable0xd8@Helicopter@@UAEIAAVMxType18NotificationParam@@@Z +S_PUB32: [0001:0001BA30], Flags: 00000000, ?DestroyMusic@MxBackgroundAudioManager@@AAEXXZ +S_PUB32: [0001:0002E290], Flags: 00000000, ?Destroy@MxMediaPresenter@@IAEXE@Z +S_PUB32: [0005:00000368], Flags: 00000000, __imp__SetBkColor@8 +S_PUB32: [0001:0000FE60], Flags: 00000000, ?IsA@LegoActorPresenter@@UBEEPBD@Z +S_PUB32: [0001:0002E210], Flags: 00000000, ??1MxMediaPresenter@@UAE@XZ +S_PUB32: [0001:00028410], Flags: 00000000, ??1?$MxList@PAVMxDSAction@@@@UAE@XZ +S_PUB32: [0001:00036FB0], Flags: 00000000, ?StartMultiTasking@MxScheduler@@QAEXK@Z +S_PUB32: [0001:0003B710], Flags: 00000000, ?FindAndErase@MxStreamListMxNextActionDataStart@@QAEPAVMxNextActionDataStart@@IF@Z +S_PUB32: [0001:0004A030], Flags: 00000000, _MemPoolFirst@8 +S_PUB32: [0005:0000054C], Flags: 00000000, __imp__AdjustWindowRectEx@16 +S_PUB32: [0001:0003DB50], Flags: 00000000, ?Resize@?$MxHashTable@PAVMxVariable@@@@QAEXXZ +S_PUB32: [0001:00039F60], Flags: 00000000, ?IsA@MxNextActionDataStart@@UBEEPBD@Z +S_PUB32: [0004:000007C0], Flags: 00000000, ??_C@_08FCBE@lego?5red?$AA@ +S_PUB32: [0001:0003ADA0], Flags: 00000000, ?IsA@MxRAMStreamController@@UBEEPBD@Z +S_PUB32: [0001:00059748], Flags: 00000000, __adj_fdiv_m32i +S_PUB32: [0003:00003DF8], Flags: 00000000, ??_7MxMediaManager@@6B@ +S_PUB32: [0001:000443E0], Flags: 00000000, ?CreateDevice@RendererImpl@TglImpl@@UAEPAVDevice@Tgl@@ABUDeviceDirect3DCreateData@4@@Z +S_PUB32: [0001:0000A4F0], Flags: 00000000, ?SetDefaults@LegoNavController@@SAXHMMMMMMMMME@Z +S_PUB32: [0001:00019AA0], Flags: 00000000, ?VTable0x58@LegoWorld@@UAEXPAVMxCore@@@Z +S_PUB32: [0001:00019620], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxPresenter@@@@SAXPAVMxPresenter@@@Z +S_PUB32: [0001:0005D160], Flags: 00000000, __set_bexp +S_PUB32: [0001:00050CA0], Flags: 00000000, __initptd +S_PUB32: [0001:0003B250], Flags: 00000000, ?AddStreamControllerToOpenList@MxStreamer@@QAEJPAVMxStreamController@@@Z +S_PUB32: [0001:0003C470], Flags: 00000000, ??0MxTransitionManager@@QAE@XZ +S_PUB32: [0001:00027A80], Flags: 00000000, ??_GMxDSMultiAction@@UAEPAXI@Z +S_PUB32: [0001:00014F90], Flags: 00000000, ?Destroy@LegoPalettePresenter@@UAEXXZ +S_PUB32: [0003:00003EC0], Flags: 00000000, ??_7MxMusicPresenter@@6B@ +S_PUB32: [0001:00003FE0], Flags: 00000000, ??_EInfocenter@@UAEPAXI@Z +S_PUB32: [0004:000006E8], Flags: 00000000, ??_C@_0L@LILJ@c_dbfbrdy0?$AA@ +S_PUB32: [0001:00002530], Flags: 00000000, ?Notify@GasStation@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0002D810], Flags: 00000000, ?VTable0x8c@MxLoopingSmkPresenter@@UAEXXZ +S_PUB32: [0005:00000570], Flags: 00000000, __imp__ClientToScreen@8 +S_PUB32: [0001:00041AF0], Flags: 00000000, ?EqualsCross@Vector3Impl@@UAEXPAV1@0@Z +S_PUB32: [0001:00055F90], Flags: 00000000, ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z +S_PUB32: [0001:0004F7A0], Flags: 00000000, __fsopen +S_PUB32: [0001:00010320], Flags: 00000000, ?ClassName@LegoModelPresenter@@UBEPBDXZ +S_PUB32: [0004:00002424], Flags: 00000000, ??_C@_0ED@DNBA@An?5attempt?5has?5been?5made?5to?5flip@ +S_PUB32: [0001:0001D3B0], Flags: 00000000, ??1?$list@PAVMxPresenter@@V?$allocator@PAVMxPresenter@@@@@@QAE@XZ +S_PUB32: [0004:000036BC], Flags: 00000000, ??_C@_09FMMM@MxDSStill?$AA@ +S_PUB32: [0001:00043B00], Flags: 00000000, ?SetColor@MeshImpl@TglImpl@@UAE?AW4Result@Tgl@@MMMM@Z +S_PUB32: [0003:00001900], Flags: 00000000, ??_7MxAudioPresenter@@6B@ +S_PUB32: [0003:00005564], Flags: 00000000, ??_C@_04KAOJ@modf?$AA@ +S_PUB32: [0001:00056CA0], Flags: 00000000, ___dtold +S_PUB32: [0001:0003AAD0], Flags: 00000000, ??1MxStreamerSubClass3@@QAE@XZ +S_PUB32: [0001:00015B10], Flags: 00000000, ??0LegoRace@@QAE@XZ +S_PUB32: [0004:00000324], Flags: 00000000, ??_C@_0BA@GCHJ@GasStationState?$AA@ +S_PUB32: [0003:00005534], Flags: 00000000, ??_C@_03GNLD@_y1?$AA@ +S_PUB32: [0001:000286C0], Flags: 00000000, ??4MxDSObject@@QAEAAV0@AAV0@@Z +S_PUB32: [0003:00005808], Flags: 00000000, ??_C@_03FJGB@bel?$AA@ +S_PUB32: [0001:0004E586], Flags: 00000000, _SelectPalette@12 +S_PUB32: [0001:000422C0], Flags: 00000000, ??_ERegistrationBook@@UAEPAXI@Z +S_PUB32: [0001:0004E8CC], Flags: 00000000, __global_unwind2 +S_PUB32: [0001:000498F0], Flags: 00000000, @_shi_walkPool@16 +S_PUB32: [0001:0004C100], Flags: 00000000, _MemPoolInitRegion@12 +S_PUB32: [0001:00016E50], Flags: 00000000, ?id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@@@@@@$E +S_PUB32: [0001:0002F150], Flags: 00000000, ?Destroy@MxMusicManager@@AAEXE@Z +S_PUB32: [0001:00046540], Flags: 00000000, ??_ETowTrackMissionState@@UAEPAXI@Z +S_PUB32: [0001:00011980], Flags: 00000000, ??_GLegoActorPresenter@@UAEPAXI@Z +S_PUB32: [0003:00003068], Flags: 00000000, ??_7MxPresenterList@@6B@ +S_PUB32: [0001:0005C950], Flags: 00000000, __handle_exc +S_PUB32: [0001:0004F026], Flags: 00000000, ___from_strstr_to_strchr +S_PUB32: [0001:000385E0], Flags: 00000000, ?SetVolume@MxSoundManager@@UAEXH@Z +S_PUB32: [0001:00015860], Flags: 00000000, ?RepeatingTickle@LegoPathPresenter@@UAEXXZ +S_PUB32: [0001:00059B5E], Flags: 00000000, __fprem1_common +S_PUB32: [0004:000009FC], Flags: 00000000, ??_C@_0BG@CFPB@LegoHideAnimPresenter?$AA@ +S_PUB32: [0001:00041180], Flags: 00000000, ?EqualsMatrixData@Matrix4Impl@@UAEXABVMatrix4@@@Z +S_PUB32: [0001:000336C0], Flags: 00000000, ?HasTickleStatePassed@MxPresenter@@UAEEW4TickleState@1@@Z +S_PUB32: [0005:000004FC], Flags: 00000000, __imp__GetFileType@4 +S_PUB32: [0004:00001480], Flags: 00000000, ?g_roiConfig@@3HA +S_PUB32: [0001:00000A40], Flags: 00000000, ?VTable0xc8@LegoPathActor@@UAEXE@Z +S_PUB32: [0001:00057490], Flags: 00000000, ___endstdio +S_PUB32: [0001:00061790], Flags: 00000000, __wcstombs_lk +S_PUB32: [0004:00000E28], Flags: 00000000, ?g_regbookScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00057390], Flags: 00000000, __isatty +S_PUB32: [0001:00012810], Flags: 00000000, ??_GIsleActor@@UAEPAXI@Z +S_PUB32: [0001:00041A40], Flags: 00000000, ?Mul@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0004:00001018], Flags: 00000000, ??_C@_0CA@HLNH@?2lego?2scripts?2infocntr?2infomain?$AA@ +S_PUB32: [0001:00020290], Flags: 00000000, ?Destroy@MxDirectDraw@@UAEXXZ +S_PUB32: [0001:00022260], Flags: 00000000, ?erase@?$list@PAVMxDSAction@@V?$allocator@PAVMxDSAction@@@@@@QAE?AViterator@1@V21@@Z +S_PUB32: [0001:00030130], Flags: 00000000, ?erase@?$list@PAVMxNotification@@V?$allocator@PAVMxNotification@@@@@@QAE?AViterator@1@V21@@Z +S_PUB32: [0001:00041A20], Flags: 00000000, ?Sub@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0004:00001F88], Flags: 00000000, ??_C@_0EK@FCAH@This?5surface?5is?5already?5attached@ +S_PUB32: [0001:00031290], Flags: 00000000, ?DeleteObjects@@YAXPAVMxAtomId@@HH@Z +S_PUB32: [0001:00056E9F], Flags: 00000000, __tosnan2 +S_PUB32: [0001:00056E72], Flags: 00000000, __tosnan1 +S_PUB32: [0001:00043A30], Flags: 00000000, ?ImplementationDataPtr@LightImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:000164F0], Flags: 00000000, ??1LegoSoundManager@@UAE@XZ +S_PUB32: [0001:00048860], Flags: 00000000, @_shi_initPageVariable@8 +S_PUB32: [0001:00037020], Flags: 00000000, ?Release@MxSemaphore@@QAEXI@Z +S_PUB32: [0001:0000F5C0], Flags: 00000000, ?ClassName@LegoPathActor@@UBEPBDXZ +S_PUB32: [0004:00002DBC], Flags: 00000000, ??_C@_0CB@MLLB@Rectangle?5provided?5was?5invalid?4?$AA@ +S_PUB32: [0001:0004CED0], Flags: 00000000, _MemErrorUnwind@0 +S_PUB32: [0001:0001B840], Flags: 00000000, ?IsA@MxBackgroundAudioManager@@UBEEPBD@Z +S_PUB32: [0001:000467A0], Flags: 00000000, ??1?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@QAE@XZ +S_PUB32: [0001:00036990], Flags: 00000000, ?VTable0x24@MxRegionCursor@@UAEPAVMxRect32@@AAV2@@Z +S_PUB32: [0004:00001524], Flags: 00000000, ??_C@_0BB@FDLI@MxDSSerialAction?$AA@ +S_PUB32: [0001:000189F0], Flags: 00000000, ??_EMxPresenterListCursor@@UAEPAXI@Z +S_PUB32: [0005:000004C4], Flags: 00000000, __imp__GetCommandLineA@0 +S_PUB32: [0004:000000A8], Flags: 00000000, ??_C@_0O@KFLK@LegoPathActor?$AA@ +S_PUB32: [0001:00003D40], Flags: 00000000, ?IsA@HospitalState@@UBEEPBD@Z +S_PUB32: [0004:00000E64], Flags: 00000000, ?g_current@@3PBDB +S_PUB32: [0001:00034880], Flags: 00000000, ??_GMxRegionTopBottomList@@UAEPAXI@Z +S_PUB32: [0001:000626E2], Flags: 00000000, _GetACP@0 +S_PUB32: [0001:000277F0], Flags: 00000000, ?Compare@?$MxCollection@PAVMxDSAction@@@@UAECPAVMxDSAction@@0@Z +S_PUB32: [0001:000455D0], Flags: 00000000, ?SetTextureDefaultShadeCount@RendererImpl@TglImpl@@UAE?AW4Result@Tgl@@K@Z +S_PUB32: [0001:00044590], Flags: 00000000, ??_EDevice@Tgl@@UAEPAXI@Z +S_PUB32: [0001:000444B0], Flags: 00000000, ??_EDeviceImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00023E30], Flags: 00000000, ?PerformWork@MxDiskStreamProvider@@QAEXXZ +S_PUB32: [0001:00012500], Flags: 00000000, ??_GHospitalEntity@@UAEPAXI@Z +S_PUB32: [0001:000022C0], Flags: 00000000, ??_GElevatorBottom@@UAEPAXI@Z +S_PUB32: [0001:000224A0], Flags: 00000000, ?FUN_100c7980@MxDiskStreamController@@AAEXXZ +S_PUB32: [0001:00000D70], Flags: 00000000, ??_GAct3@@UAEPAXI@Z +S_PUB32: [0001:0001E120], Flags: 00000000, ?VTable0x64@MxControlPresenter@@UAEEI@Z +S_PUB32: [0001:0003E290], Flags: 00000000, ?Create@MxVideoManager@@UAEJAAVMxVideoParam@@IE@Z +S_PUB32: [0001:0001F8D0], Flags: 00000000, ?DoEnumerate@MxDeviceEnumerate@@UAEJXZ +S_PUB32: [0001:00025280], Flags: 00000000, ?GetDuration@MxDSAction@@UAEJXZ +S_PUB32: [0001:00061E60], Flags: 00000000, ___crtCompareStringA +S_PUB32: [0001:0003D3D0], Flags: 00000000, ?Compare@MxVariableTable@@UAECPAVMxVariable@@0@Z +S_PUB32: [0001:00035560], Flags: 00000000, ?Destroy@?$MxPtrList@UMxRegionLeftRight@@@@SAXPAUMxRegionLeftRight@@@Z +S_PUB32: [0003:00005C70], Flags: 00000000, ??_C@_03IEIF@Jan?$AA@ +S_PUB32: [0001:00058A50], Flags: 00000000, _islower +S_PUB32: [0004:00003BA0], Flags: 00000000, ?g_strBmpIsmap@@3PBDB +S_PUB32: [0001:000252D0], Flags: 00000000, ?GetUnknown90@MxDSAction@@UAEJXZ +S_PUB32: [0003:00002BF0], Flags: 00000000, ??_7LegoPathController@@6B@ +S_PUB32: [0003:00005628], Flags: 00000000, ??_C@_0O@ILBP@united?5states?$AA@ +S_PUB32: [0001:00001D00], Flags: 00000000, ?IsA@CarRace@@UBEEPBD@Z +S_PUB32: [0009:00000000], Flags: 00000000, __except_list +S_PUB32: [0001:0004C070], Flags: 00000000, @_shi_getCurrentThreadID@0 +S_PUB32: [0004:00003750], Flags: 00000000, ??_C@_0BB@IODA@MxStillPresenter?$AA@ +S_PUB32: [0001:00001070], Flags: 00000000, ?VTable0xd4@IslePathActor@@UAEIAAVMxType17NotificationParam@@@Z +S_PUB32: [0003:00005598], Flags: 00000000, ??_C@_05BFPO@atan2?$AA@ +S_PUB32: [0001:00034940], Flags: 00000000, ??_E?$MxCollection@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0003:00005740], Flags: 00000000, ??_C@_03DEBD@irl?$AA@ +S_PUB32: [0001:0004BCF0], Flags: 00000000, @shi_termPoolMutexShr@4 +S_PUB32: [0001:000013D0], Flags: 00000000, ?IsA@AmbulanceMissionState@@UBEEPBD@Z +S_PUB32: [0001:000468B0], Flags: 00000000, ?erase@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@QAE?AViterator@1@V21@@Z +S_PUB32: [0001:0004AAD0], Flags: 00000000, @_shi_sysValidatePtr@12 +S_PUB32: [0001:0000F7B0], Flags: 00000000, ?IsA@Lego3DWavePresenter@@UBEEPBD@Z +S_PUB32: [0003:000036D8], Flags: 00000000, ??_7MxDSChunk@@6B@ +S_PUB32: [0003:00004520], Flags: 00000000, ??_7MxString@@6B@ +S_PUB32: [0001:00055D90], Flags: 00000000, ___crtGetEnvironmentStringsA +S_PUB32: [0001:0001B830], Flags: 00000000, ?ClassName@MxBackgroundAudioManager@@UBEPBDXZ +S_PUB32: [0004:0000010C], Flags: 00000000, ??_C@_07LNBA@CarRace?$AA@ +S_PUB32: [0001:000097B0], Flags: 00000000, ?ProcessOneEvent@LegoInputManager@@QAEEAAVLegoEventNotificationParam@@@Z +S_PUB32: [0004:000005A4], Flags: 00000000, ??_C@_0L@EPEO@c_jsbasey0?$AA@ +S_PUB32: [0001:00014160], Flags: 00000000, ?Compare@?$MxCollection@PAVLegoWorld@@@@UAECPAVLegoWorld@@0@Z +S_PUB32: [0001:0002B4D0], Flags: 00000000, ?Compare@?$MxCollection@PAVMxStreamChunk@@@@UAECPAVMxStreamChunk@@0@Z +S_PUB32: [0001:00035550], Flags: 00000000, ?Compare@?$MxCollection@PAUMxRegionLeftRight@@@@UAECPAUMxRegionLeftRight@@0@Z +S_PUB32: [0001:00034840], Flags: 00000000, ?Compare@?$MxCollection@PAUMxRegionTopBottom@@@@UAECPAUMxRegionTopBottom@@0@Z +S_PUB32: [0001:000182A0], Flags: 00000000, ?Compare@?$MxCollection@PAVMxUnknown100d7c88@@@@UAECPAVMxUnknown100d7c88@@0@Z +S_PUB32: [0001:00052610], Flags: 00000000, __lock +S_PUB32: [0004:00003CD0], Flags: 00000000, _MemDefaultPoolPageSize +S_PUB32: [0004:0000054C], Flags: 00000000, ??_C@_0P@JPDD@MxFlcPresenter?$AA@ +S_PUB32: [0001:0004D000], Flags: 00000000, _MemRegisterTask@0 +S_PUB32: [0001:0003B480], Flags: 00000000, ?Notify@MxStreamer@@UAEJAAVMxParam@@@Z +S_PUB32: [0004:00000E4C], Flags: 00000000, ?g_introScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00014050], Flags: 00000000, ??_EGifManagerBase@@UAEPAXI@Z +S_PUB32: [0003:00005928], Flags: 00000000, ??_C@_08KCAB@japanese?$AA@ +S_PUB32: [0001:0003D070], Flags: 00000000, ?SubmitCopyRect@MxTransitionManager@@AAEXPAU_DDSURFACEDESC@@@Z +S_PUB32: [0001:0004FB64], Flags: 00000000, _log10 +S_PUB32: [0001:00020120], Flags: 00000000, ?RecreateDirectDraw@MxDirectDraw@@QAEHPAPAU_GUID@@@Z +S_PUB32: [0001:00041D00], Flags: 00000000, ?EqualsImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0001:00016E70], Flags: 00000000, ?id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@@@@@@$E +S_PUB32: [0001:000460C0], Flags: 00000000, ?TransformScreenToWorld@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@QBMQAM@Z +S_PUB32: [0005:00000440], Flags: 00000000, __imp__GetFileAttributesA@4 +S_PUB32: [0003:00002A20], Flags: 00000000, ??_7?$MxList@PAVLegoWorld@@@@6B@ +S_PUB32: [0001:000128F0], Flags: 00000000, ?Lego@@YAPAVLegoOmni@@XZ +S_PUB32: [0003:000055DC], Flags: 00000000, ??_C@_03EGFG@pow?$AA@ +S_PUB32: [0001:00051930], Flags: 00000000, __unlockexit +S_PUB32: [0003:00005A1C], Flags: 00000000, ??_C@_03GJGA@eni?$AA@ +S_PUB32: [0003:000055C0], Flags: 00000000, ??_C@_04PFKD@cosh?$AA@ +S_PUB32: [0001:0002C1D0], Flags: 00000000, ??1MxEventManager@@UAE@XZ +S_PUB32: [0001:000279A0], Flags: 00000000, ?IsA@MxDSMultiAction@@UBEEPBD@Z +S_PUB32: [0004:0000057C], Flags: 00000000, ??_C@_06MAD@enable?$AA@ +S_PUB32: [0001:000115C0], Flags: 00000000, ?ClassName@Pizzeria@@UBEPBDXZ +S_PUB32: [0001:000202F0], Flags: 00000000, ?DestroyButNotDirectDraw@MxDirectDraw@@UAEXXZ +S_PUB32: [0003:000059B8], Flags: 00000000, ??_C@_0N@ODNB@french?9swiss?$AA@ +S_PUB32: [0004:00004338], Flags: 00000000, ___argv +S_PUB32: [0001:0004E43C], Flags: 00000000, _CreateSemaphoreA@16 +S_PUB32: [0001:00033720], Flags: 00000000, ?StartAction@MxPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0001:0004FB5A], Flags: 00000000, _log +S_PUB32: [0001:0004E45A], Flags: 00000000, _VirtualFree@12 +S_PUB32: [0001:000626CA], Flags: 00000000, _UnhandledExceptionFilter@4 +S_PUB32: [0001:00032E00], Flags: 00000000, ??_EMxOmniCreateParam@@UAEPAXI@Z +S_PUB32: [0003:0000577C], Flags: 00000000, ??_C@_03EFD@hkg?$AA@ +S_PUB32: [0001:0002B9A0], Flags: 00000000, ??_EMxStreamChunkListCursor@@UAEPAXI@Z +S_PUB32: [0001:0004E454], Flags: 00000000, _VirtualAlloc@16 +S_PUB32: [0001:000088D0], Flags: 00000000, ?Init@LegoHideAnimPresenter@@AAEXXZ +S_PUB32: [0001:0004E53E], Flags: 00000000, _DeleteObject@4 +S_PUB32: [0003:00003B20], Flags: 00000000, ??_7?$MxCollection@PAVMxStreamChunk@@@@6B@ +S_PUB32: [0003:000051A4], Flags: 00000000, ??_C@_0DF@ECGN@R6027?$AN?6?9?5not?5enough?5space?5for?5lo@ +S_PUB32: [0004:00004334], Flags: 00000000, ___argc +S_PUB32: [0001:000156F0], Flags: 00000000, ??_GLegoPathPresenter@@UAEPAXI@Z +S_PUB32: [0001:0005CC10], Flags: 00000000, __umatherr +S_PUB32: [0003:000056E8], Flags: 00000000, ??_C@_03DPCG@nzl?$AA@ +S_PUB32: [0004:00002F04], Flags: 00000000, ??_C@_0DB@HCNM@DirectDraw?5does?5not?5support?5the?5@ +S_PUB32: [0005:00000428], Flags: 00000000, __imp__SetEvent@4 +S_PUB32: [0001:00012570], Flags: 00000000, ??_EGasStationEntity@@UAEPAXI@Z +S_PUB32: [0003:000042F8], Flags: 00000000, ??_7MxSmkPresenter@@6B@ +S_PUB32: [0003:00005730], Flags: 00000000, ??_C@_05EEKJ@japan?$AA@ +S_PUB32: [0001:000055D0], Flags: 00000000, ??_ELego3DView@@UAEPAXI@Z +S_PUB32: [0001:00019CD0], Flags: 00000000, ??0LegoWorldPresenter@@QAE@XZ +S_PUB32: [0001:0003E6E0], Flags: 00000000, ??0MxVideoParam@@QAE@AAVMxRect32@@PAVMxPalette@@KAAVMxVideoParamFlags@@@Z +S_PUB32: [0004:000010AC], Flags: 00000000, ??_C@_0BL@JNBJ@?2lego?2scripts?2race?2jetrace?$AA@ +S_PUB32: [0001:00012100], Flags: 00000000, ??_GAct3Shark@@UAEPAXI@Z +S_PUB32: [0001:0000A110], Flags: 00000000, ??_GLegoLocomotionAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00018C90], Flags: 00000000, ?EnableFullScreenMovie@LegoVideoManager@@QAEXE@Z +S_PUB32: [0004:00002A4C], Flags: 00000000, ??_C@_0CD@IDMB@Software?5emulation?5not?5available@ +S_PUB32: [0001:0002D430], Flags: 00000000, ?StreamingTickle@MxLoopingMIDIPresenter@@UAEXXZ +S_PUB32: [0003:00005490], Flags: 00000000, ??_C@_0L@HKL@user32?4dll?$AA@ +S_PUB32: [0001:00025AB0], Flags: 00000000, ?CopyFrom@MxDSAnim@@QAEXAAV1@@Z +S_PUB32: [0001:00040C20], Flags: 00000000, ??0RaceState@@QAE@XZ +S_PUB32: [0001:0004D350], Flags: 00000000, _DirectDrawCreate@12 +S_PUB32: [0001:0003D410], Flags: 00000000, ?Hash@MxVariableTable@@UAEIPAVMxVariable@@@Z +S_PUB32: [0004:00003118], Flags: 00000000, ??_C@_0HJ@NBFH@The?5CooperativeLevel?5HWND?5has?5al@ +S_PUB32: [0001:00006AE0], Flags: 00000000, ??0LegoCarBuild@@QAE@XZ +S_PUB32: [0001:00005A30], Flags: 00000000, ??0LegoAnimationManager@@QAE@XZ +S_PUB32: [0001:00045970], Flags: 00000000, ?SetPalette@TextureImpl@TglImpl@@UAE?AW4Result@Tgl@@HPAUPaletteEntry@4@@Z +S_PUB32: [0001:0005B170], Flags: 00000000, ___crtLCMapStringW +S_PUB32: [0004:00000404], Flags: 00000000, ??_C@_07OLDO@JukeBox?$AA@ +S_PUB32: [0001:00001580], Flags: 00000000, ?IsA@AnimState@@UBEEPBD@Z +S_PUB32: [0001:0002F370], Flags: 00000000, ?DeinitializeMIDI@MxMusicManager@@QAEXXZ +S_PUB32: [0001:00032490], Flags: 00000000, ?Destroy@MxOmni@@UAEXXZ +S_PUB32: [0001:0003BA40], Flags: 00000000, ?ToUpperCase@MxString@@QAEXXZ +S_PUB32: [0003:00004210], Flags: 00000000, ??_7?$MxCollection@PAUMxRegionLeftRight@@@@6B@ +S_PUB32: [0001:00056600], Flags: 00000000, __IncMan +S_PUB32: [0005:00000558], Flags: 00000000, __imp__GetDC@4 +S_PUB32: [0001:000034B0], Flags: 00000000, ?VTable0x70@Helicopter@@UAEXM@Z +S_PUB32: [0001:00004400], Flags: 00000000, ??_GInfocenterState@@UAEPAXI@Z +S_PUB32: [0001:0003DDA0], Flags: 00000000, ?Destroy@MxVideoManager@@QAEXE@Z +S_PUB32: [0001:0000F6F0], Flags: 00000000, ?IsA@HelicopterState@@UBEEPBD@Z +S_PUB32: [0001:0003A6E0], Flags: 00000000, ?FUN_100c20d0@MxStreamController@@QAEEAAVMxDSObject@@@Z +S_PUB32: [0001:0001AF20], Flags: 00000000, ?GetCounter@MxAtomId@@AAEPAVMxAtomIdCounter@@PBDW4LookupMode@@@Z +S_PUB32: [0003:000035C4], Flags: 00000000, ??_7MxSemaphore@@6B@ +S_PUB32: [0004:000012A8], Flags: 00000000, ??_C@_0BA@BJFF@lego?5black?5flat?$AA@ +S_PUB32: [0001:000071D0], Flags: 00000000, ?Create@LegoEntity@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0001:00032F10], Flags: 00000000, ??_GMxPalette@@UAEPAXI@Z +S_PUB32: [0001:00040660], Flags: 00000000, ?ClassName@Police@@UBEPBDXZ +S_PUB32: [0001:000212C0], Flags: 00000000, ?Error@MxDirectDraw@@QAEXPBDH@Z +S_PUB32: [0001:000010A0], Flags: 00000000, ??_EIslePathActor@@UAEPAXI@Z +S_PUB32: [0004:000036EC], Flags: 00000000, ??_C@_0BG@KLAK@MxLoopingFlcPresenter?$AA@ +S_PUB32: [0001:00007A20], Flags: 00000000, ?SetValue@LegoFullScreenMovie@@UAEXPBD@Z +S_PUB32: [0001:0002D2F0], Flags: 00000000, ?ClassName@MxLoopingFlcPresenter@@UBEPBDXZ +S_PUB32: [0001:0006271E], Flags: 00000000, _IsBadWritePtr@8 +S_PUB32: [0001:00041280], Flags: 00000000, ??YMatrix4Impl@@UAEPAV0@ABVMatrix4@@@Z +S_PUB32: [0003:000043A0], Flags: 00000000, ??_7?$MxListCursor@PAVMxRect32@@@@6B@ +S_PUB32: [0001:000261A0], Flags: 00000000, ?ParseChunk@MxDSBuffer@@QAEJPAVMxStreamController@@PAIPAVMxDSAction@@PAPAVMxDSStreamingAction@@PAVMxStreamChunk@@@Z +S_PUB32: [0001:000459C0], Flags: 00000000, ?ImplementationDataPtr@UnkImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:00038C90], Flags: 00000000, ?LoadFrame@MxStillPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0003:00003F40], Flags: 00000000, ??_7MxObjectFactory@@6B@ +S_PUB32: [0001:00016430], Flags: 00000000, ?SetSomeHandlerFunction@LegoROI@@SAXP6AEPAD0I@Z@Z +S_PUB32: [0003:00002FB8], Flags: 00000000, ??_7MxUnknown100d9d00@@6B@ +S_PUB32: [0001:00006870], Flags: 00000000, ??0LegoCameraController@@QAE@XZ +S_PUB32: [0001:0002EB10], Flags: 00000000, ?Enable@MxMediaPresenter@@UAEXE@Z +S_PUB32: [0001:00002550], Flags: 00000000, ??0GasStationState@@QAE@XZ +S_PUB32: [0001:00034330], Flags: 00000000, ??_EMxRAMStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:0002D6A0], Flags: 00000000, ?ClassName@MxLoopingSmkPresenter@@UBEPBDXZ +S_PUB32: [0003:00003F28], Flags: 00000000, ??_7MxNotificationManager@@6B@ +S_PUB32: [0001:0001E000], Flags: 00000000, ?ClassName@MxControlPresenter@@UBEPBDXZ +S_PUB32: [0001:00022A40], Flags: 00000000, ?_Buynode@?$list@PAVMxNextActionDataStart@@V?$allocator@PAVMxNextActionDataStart@@@@@@IAEPAU_Node@1@PAU21@0@Z +S_PUB32: [0001:00047AB0], Flags: 00000000, __heapchk +S_PUB32: [0001:00016E80], Flags: 00000000, ?id@?$numpunct@G@@$E +S_PUB32: [0001:00047560], Flags: 00000000, ?GetGeometry@ViewROI@@UAEPAVGroup@Tgl@@XZ +S_PUB32: [0001:000227E0], Flags: 00000000, ?FUN_100c7cb0@MxDiskStreamController@@QAEXPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:00027500], Flags: 00000000, ?CopyMediaSrcPath@MxDSMediaAction@@QAEXPBD@Z +S_PUB32: [0001:00016B20], Flags: 00000000, ?Read@LegoFileStream@@UAEJPAXI@Z +S_PUB32: [0001:00010450], Flags: 00000000, ?IsA@LegoPartPresenter@@UBEEPBD@Z +S_PUB32: [0001:0001E140], Flags: 00000000, ??1MxControlPresenter@@UAE@XZ +S_PUB32: [0004:00000790], Flags: 00000000, ??_C@_0L@FAGO@lego?5black?$AA@ +S_PUB32: [0004:00003554], Flags: 00000000, ?g_unk0x10102878@@3IA +S_PUB32: [0004:00000524], Flags: 00000000, ??_C@_0BD@PHJP@LegoControlManager?$AA@ +S_PUB32: [0001:00014710], Flags: 00000000, ?GetCurrPathInfo@LegoOmni@@SAHPAPAVLegoPathBoundary@@AAH@Z +S_PUB32: [0001:00004340], Flags: 00000000, ?ClassName@InfocenterState@@UBEPBDXZ +S_PUB32: [0001:000626D6], Flags: 00000000, _HeapCreate@12 +S_PUB32: [0003:000054C0], Flags: 00000000, ??_C@_0L@NKG@LC_NUMERIC?$AA@ +S_PUB32: [0001:00016BA0], Flags: 00000000, ?Tell@LegoFileStream@@UAEJPAI@Z +S_PUB32: [0001:0001DEE0], Flags: 00000000, ?HasTickleStatePassed@MxCompositePresenter@@UAEEW4TickleState@MxPresenter@@@Z +S_PUB32: [0001:00013680], Flags: 00000000, ?GetNoCD_SourceName@@YAPBDXZ +S_PUB32: [0004:00000E00], Flags: 00000000, ?g_racecarScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00016940], Flags: 00000000, ?IsReadMode@LegoStream@@UAEEXZ +S_PUB32: [0001:00026600], Flags: 00000000, ??_EMxStreamChunk@@UAEPAXI@Z +S_PUB32: [0001:00033AB0], Flags: 00000000, ?SendToCompositePresenter@MxPresenter@@IAEXPAVMxOmni@@@Z +S_PUB32: [0003:00005500], Flags: 00000000, ??_C@_01KPOD@?$DN?$AA@ +S_PUB32: [0003:000057FC], Flags: 00000000, ??_C@_03GOO@bra?$AA@ +S_PUB32: [0001:00011E60], Flags: 00000000, ??_ELegoAct2@@UAEPAXI@Z +S_PUB32: [0001:00006670], Flags: 00000000, ??_ELegoBuildingManager@@UAEPAXI@Z +S_PUB32: [0001:0004E418], Flags: 00000000, _OpenFile@12 +S_PUB32: [0003:00005344], Flags: 00000000, ??_C@_0CM@JOOB@R6009?$AN?6?9?5not?5enough?5space?5for?5en@ +S_PUB32: [0001:000424D0], Flags: 00000000, ??_GScore@@UAEPAXI@Z +S_PUB32: [0004:000007F8], Flags: 00000000, ?g_historyGSI@@3PBDB +S_PUB32: [0001:00032690], Flags: 00000000, ?Start@MxOmni@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:000407A0], Flags: 00000000, ??1Police@@UAE@XZ +S_PUB32: [0001:00034360], Flags: 00000000, ?GetStreamBuffersNum@MxRAMStreamProvider@@UAEHXZ +S_PUB32: [0001:0002B470], Flags: 00000000, ?Destroy@?$MxCollection@PAVMxStreamChunk@@@@SAXPAVMxStreamChunk@@@Z +S_PUB32: [0003:00004670], Flags: 00000000, ??_7Police@@6B@ +S_PUB32: [0001:00000F10], Flags: 00000000, ?IsA@IslePathActor@@UBEEPBD@Z +S_PUB32: [0003:00002FD8], Flags: 00000000, ??_7?$MxPtrListCursor@VMxPresenter@@@@6B@ +S_PUB32: [0001:0003CA70], Flags: 00000000, ?TransitionPixelation@MxTransitionManager@@AAEXXZ +S_PUB32: [0001:000223B0], Flags: 00000000, ?FUN_100c7890@MxDiskStreamController@@AAEJPAVMxDSStreamingAction@@@Z +S_PUB32: [0001:00035BD0], Flags: 00000000, ??0?$MxListCursor@PAUMxRegionLeftRight@@@@QAE@PAV?$MxList@PAUMxRegionLeftRight@@@@@Z +S_PUB32: [0001:00059E30], Flags: 00000000, __get_sbh_threshold +S_PUB32: [0001:0001C260], Flags: 00000000, ?RaiseVolume@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0001:00047970], Flags: 00000000, __expand +S_PUB32: [0004:00004368], Flags: 00000000, ___wnullstring +S_PUB32: [0004:00003BF0], Flags: 00000000, ?g_fullScreenRect@@3UtagRECT@@A +S_PUB32: [0001:000526A0], Flags: 00000000, __lock_file +S_PUB32: [0001:0005D1A0], Flags: 00000000, __sptype +S_PUB32: [0004:00004108], Flags: 00000000, __ctype +S_PUB32: [0001:000313D0], Flags: 00000000, ?MVideoManager@@YAPAVMxVideoManager@@XZ +S_PUB32: [0003:00005A74], Flags: 00000000, ??_C@_0BB@HNCK@english?9american?$AA@ +S_PUB32: [0001:00060AF0], Flags: 00000000, _wcstol +S_PUB32: [0003:00001B80], Flags: 00000000, ??_7BumpBouy@@6B@ +S_PUB32: [0004:00004A38], Flags: 00000000, __newmode +S_PUB32: [0001:00060690], Flags: 00000000, __itoa +S_PUB32: [0001:0005BF80], Flags: 00000000, ___STRINGTOLD +S_PUB32: [0001:0001E1D0], Flags: 00000000, ?EndAction@MxControlPresenter@@UAEXXZ +S_PUB32: [0001:00056AC0], Flags: 00000000, __atodbl +S_PUB32: [0001:000333E0], Flags: 00000000, ?ApplySystemEntriesToPalette@MxPalette@@QAEXPAUtagPALETTEENTRY@@@Z +S_PUB32: [0001:0004E508], Flags: 00000000, _SetWindowPos@28 +S_PUB32: [0004:00000ECC], Flags: 00000000, ??_C@_0BI@OIAL@?2lego?2scripts?2test?2test?$AA@ +S_PUB32: [0003:00005738], Flags: 00000000, ??_C@_05DHEA@italy?$AA@ +S_PUB32: [0001:000080B0], Flags: 00000000, ?HandleAction@LegoGameState@@QAEXI@Z +S_PUB32: [0004:0000673C], Flags: 00000000, ?g_omniUserMessage@@3P6AXPBDH@ZA +S_PUB32: [0001:000329E0], Flags: 00000000, ?Notify@MxOmni@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00018250], Flags: 00000000, ??1?$MxCollection@PAVMxUnknown100d7c88@@@@UAE@XZ +S_PUB32: [0001:0001FE00], Flags: 00000000, ?FUN_1009d370@MxDeviceEnumerate@@QAEEAAUMxDriver@@@Z +S_PUB32: [0001:0003AA80], Flags: 00000000, ??1MxStreamerSubClass2@@QAE@XZ +S_PUB32: [0003:00001AF0], Flags: 00000000, ??_7LegoObjectFactory@@6B@ +S_PUB32: [0004:00000340], Flags: 00000000, ??_C@_0BA@OHH@HelicopterState?$AA@ +S_PUB32: [0001:00000890], Flags: 00000000, ??_ELegoState@@UAEPAXI@Z +S_PUB32: [0003:00004E70], Flags: 00000000, ??_7ViewLODListManager@@6B@ +S_PUB32: [0001:00025A40], Flags: 00000000, ??_EMxDSAnim@@UAEPAXI@Z +S_PUB32: [0003:000034E0], Flags: 00000000, ??_7MxCore@@6B@ +S_PUB32: [0001:00038E50], Flags: 00000000, ?StreamingTickle@MxStillPresenter@@UAEXXZ +S_PUB32: [0003:00005C10], Flags: 00000000, ??_C@_04PIJO@July?$AA@ +S_PUB32: [0001:0004BDC0], Flags: 00000000, _shi_enterPoolMutexSafely +S_PUB32: [0003:00005138], Flags: 00000000, ??_C@_0P@GGKG@runtime?5error?5?$AA@ +S_PUB32: [0001:00018980], Flags: 00000000, ??0?$MxListCursor@PAVMxPresenter@@@@QAE@PAV?$MxList@PAVMxPresenter@@@@@Z +S_PUB32: [0001:000269F0], Flags: 00000000, ?IsA@MxDSEvent@@UBEEPBD@Z +S_PUB32: [0001:00009B90], Flags: 00000000, ?ClassName@MxSoundPresenter@@UBEPBDXZ +S_PUB32: [0001:00009E70], Flags: 00000000, ??1LegoLoadCacheSoundPresenter@@UAE@XZ +S_PUB32: [0004:00003634], Flags: 00000000, ??_C@_0CH@KJEB@Wrong?5SI?5file?5version?4?5?$CFd?4?$CFd?5exp@ +S_PUB32: [0003:00002F40], Flags: 00000000, ??_7LegoVideoManager@@6B@ +S_PUB32: [0005:000004E0], Flags: 00000000, __imp__GetCurrentThread@0 +S_PUB32: [0001:00033E70], Flags: 00000000, ?Open@MxRAMStreamController@@UAEJPBD@Z +S_PUB32: [0001:0002AB50], Flags: 00000000, ??_GMxDSSound@@UAEPAXI@Z +S_PUB32: [0001:00040EA0], Flags: 00000000, ?ClassName@Radio@@UBEPBDXZ +S_PUB32: [0001:00005270], Flags: 00000000, ?IsA@JukeBoxEntity@@UBEEPBD@Z +S_PUB32: [0001:00042710], Flags: 00000000, ?Notify@Score@@UAEJAAVMxParam@@@Z +S_PUB32: [0004:00004348], Flags: 00000000, __wenviron +S_PUB32: [0003:0000588C], Flags: 00000000, ??_C@_03EBAN@sky?$AA@ +S_PUB32: [0001:00018AB0], Flags: 00000000, ??_E?$MxListCursor@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0003:00001E40], Flags: 00000000, ??_7JukeBoxState@@6B@ +S_PUB32: [0004:0000C650], Flags: 00000000, ___pioinfo +S_PUB32: [0001:0003E790], Flags: 00000000, ??1MxVideoParam@@QAE@XZ +S_PUB32: [0003:000057A8], Flags: 00000000, ??_C@_06DNOH@france?$AA@ +S_PUB32: [0004:000066E0], Flags: 00000000, ?g_unk0x100f0100@@3PAUGifMapEntry@@A +S_PUB32: [0001:00019B60], Flags: 00000000, ?FUN_100727e0@LegoWorld@@QAEEIAAVVector3Data@@00@Z +S_PUB32: [0004:00003340], Flags: 00000000, ??_C@_0GA@NADG@An?5attempt?5was?5made?5to?5set?5a?5cli@ +S_PUB32: [0001:0001EC30], Flags: 00000000, ??0MxDriver@@QAE@PAU_GUID@@PAD1@Z +S_PUB32: [0001:0000A1B0], Flags: 00000000, ?Destroy@LegoModelPresenter@@IAEXE@Z +S_PUB32: [0003:00005C64], Flags: 00000000, ??_C@_03MJJM@Apr?$AA@ +S_PUB32: [0001:00034280], Flags: 00000000, ?IsA@MxRAMStreamProvider@@UBEEPBD@Z +S_PUB32: [0001:0003DEB0], Flags: 00000000, ?SortPresenterList@MxVideoManager@@QAEXXZ +S_PUB32: [0001:0004F020], Flags: 00000000, _strchr +S_PUB32: [0001:0005D0A0], Flags: 00000000, _strrchr +S_PUB32: [0001:00034AD0], Flags: 00000000, ??_EMxRegion@@UAEPAXI@Z +S_PUB32: [0001:000058D0], Flags: 00000000, ?IsA@LegoActor@@UBEEPBD@Z +S_PUB32: [0001:00042640], Flags: 00000000, ?DeleteScript@Score@@AAEXXZ +S_PUB32: [0001:000278E0], Flags: 00000000, ??_E?$MxList@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:0003C280], Flags: 00000000, ?SetClientTickleInterval@MxTickleManager@@UAEXPAVMxCore@@H@Z +S_PUB32: [0005:00000400], Flags: 00000000, __imp__GetSystemInfo@4 +S_PUB32: [0001:000411F0], Flags: 00000000, ?GetData@Matrix4Impl@@UAEPAVMatrix4@@XZ +S_PUB32: [0001:00024340], Flags: 00000000, ?Init@MxDisplaySurface@@UAEJAAVMxVideoParam@@PAUIDirectDrawSurface@@1PAUIDirectDrawClipper@@@Z +S_PUB32: [0003:00003020], Flags: 00000000, ??_7?$MxCollection@PAVMxPresenter@@@@6B@ +S_PUB32: [0001:0002ED50], Flags: 00000000, ??_EMxMIDIPresenter@@UAEPAXI@Z +S_PUB32: [0001:00004120], Flags: 00000000, ?ClassName@InfocenterDoor@@UBEPBDXZ +S_PUB32: [0001:00041C90], Flags: 00000000, ?DivScalarImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0001:0004E3D0], Flags: 00000000, _Sleep@4 +S_PUB32: [0003:00005474], Flags: 00000000, ??_C@_0BA@GILI@GetActiveWindow?$AA@ +S_PUB32: [0001:000626DC], Flags: 00000000, _GetCPInfo@8 +S_PUB32: [0004:00000B48], Flags: 00000000, ??_C@_0BA@HKKL@JetskiRaceState?$AA@ +S_PUB32: [0001:00035DE0], Flags: 00000000, ??1?$MxListCursor@PAUMxRegionLeftRight@@@@UAE@XZ +S_PUB32: [0001:00035C40], Flags: 00000000, ??_GMxRegionLeftRightListCursor@@UAEPAXI@Z +S_PUB32: [0005:00000490], Flags: 00000000, __imp__IsValidLocale@8 +S_PUB32: [0001:0003B060], Flags: 00000000, ??1MxStreamerNotification@@UAE@XZ +S_PUB32: [0001:000098D0], Flags: 00000000, ??0LegoLoadCacheSoundPresenter@@QAE@XZ +S_PUB32: [0001:00036630], Flags: 00000000, ?VTable0x18@MxRegionCursor@@UAEPAVMxRect32@@XZ +S_PUB32: [0003:00005884], Flags: 00000000, ??_C@_06KFFJ@slovak?$AA@ +S_PUB32: [0004:00000584], Flags: 00000000, ?g_strEnable@@3PBDB +S_PUB32: [0001:000479C0], Flags: 00000000, __heapwalk +S_PUB32: [0003:00002850], Flags: 00000000, ??_7LegoAnimActor@@6B@ +S_PUB32: [0001:000070E0], Flags: 00000000, ?Tickle@LegoControlManager@@UAEJXZ +S_PUB32: [0001:000413C0], Flags: 00000000, ?FromQuaternion@Matrix4Impl@@UAEHABVVector4Impl@@@Z +S_PUB32: [0001:000009D0], Flags: 00000000, ?VTable0xac@LegoPathActor@@UAEXM@Z +S_PUB32: [0004:000029DC], Flags: 00000000, ??_C@_0GN@NGG@Operation?5requires?5the?5applicati@ +S_PUB32: [0001:0001CD50], Flags: 00000000, ?StartAction@MxCompositeMediaPresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0005:000004F8], Flags: 00000000, __imp__SetHandleCount@4 +S_PUB32: [0001:000391F0], Flags: 00000000, ?ReadChunk@MxStreamChunk@@QAEJPAVMxDSBuffer@@PAE@Z +S_PUB32: [0001:0004E538], Flags: 00000000, _MessageBeep@4 +S_PUB32: [0003:0000550C], Flags: 00000000, ??_C@_01NON@_?$AA@ +S_PUB32: [0001:00012310], Flags: 00000000, ??1RaceState@@UAE@XZ +S_PUB32: [0001:0001F050], Flags: 00000000, ??0MxDevice@@QAE@PAU_GUID@@PAD1PAU_D3DDeviceDesc@@2@Z +S_PUB32: [0005:00000374], Flags: 00000000, __imp__ExtTextOutA@32 +S_PUB32: [0001:00010A90], Flags: 00000000, ?IsA@Act2PoliceStation@@UBEEPBD@Z +S_PUB32: [0003:00005908], Flags: 00000000, ??_C@_03BLDF@nor?$AA@ +S_PUB32: [0001:0003E6B0], Flags: 00000000, ??0MxVideoParam@@QAE@XZ +S_PUB32: [0001:00034B70], Flags: 00000000, ?Reset@MxRegion@@UAEXXZ +S_PUB32: [0001:00038A90], Flags: 00000000, ?Destroy@MxSoundPresenter@@UAEXXZ +S_PUB32: [0004:00000B90], Flags: 00000000, ??_C@_0N@KINJ@CarRaceState?$AA@ +S_PUB32: [0001:00029F50], Flags: 00000000, ?Deserialize@MxDSSelectAction@@UAEXPAPAEF@Z +S_PUB32: [0003:000036A8], Flags: 00000000, ??_7MxDSBuffer@@6B@ +S_PUB32: [0005:00000468], Flags: 00000000, __imp__GetEnvironmentStringsW@0 +S_PUB32: [0001:00012950], Flags: 00000000, ?GameState@@YAPAVLegoGameState@@XZ +S_PUB32: [0001:00012970], Flags: 00000000, ?NavController@@YAPAVLegoNavController@@XZ +S_PUB32: [0001:0004E484], Flags: 00000000, _MapViewOfFileEx@24 +S_PUB32: [0001:000097E0], Flags: 00000000, ?KillTimer@LegoInputManager@@QAEXXZ +S_PUB32: [0001:000525A0], Flags: 00000000, __mtdeletelocks +S_PUB32: [0001:00012B30], Flags: 00000000, ?RegisterScripts@@YAXXZ +S_PUB32: [0005:00000470], Flags: 00000000, __imp__GetEnvironmentStrings@0 +S_PUB32: [0001:00035750], Flags: 00000000, ??_E?$MxPtrList@UMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:00000920], Flags: 00000000, ?VTable0x50@LegoActor@@UAEMXZ +S_PUB32: [0001:000336A0], Flags: 00000000, ?SetTickleState@MxPresenter@@UAEXW4TickleState@1@@Z +S_PUB32: [0001:00023160], Flags: 00000000, ?FUN_100c8670@MxDiskStreamController@@QAEXPAVMxDSStreamingAction@@@Z +S_PUB32: [0003:00003B38], Flags: 00000000, ??_7?$MxList@PAVMxStreamChunk@@@@6B@ +S_PUB32: [0004:000034F4], Flags: 00000000, ??_C@_0CF@NPLB@This?5object?5is?5already?5initializ@ +S_PUB32: [0003:00004A80], Flags: 00000000, ??_7Object@Tgl@@6B@ +S_PUB32: [0001:0003D350], Flags: 00000000, ?Destroy@MxVariable@@UAEXXZ +S_PUB32: [0001:000127A0], Flags: 00000000, ??_GLegoRaceActor@@UAEPAXI@Z +S_PUB32: [0001:00052780], Flags: 00000000, __lockerr_exit +S_PUB32: [0003:000054D8], Flags: 00000000, ??_C@_08LFGE@LC_CTYPE?$AA@ +S_PUB32: [0005:00000578], Flags: 00000000, __imp__joyGetPosEx@8 +S_PUB32: [0001:00001480], Flags: 00000000, ??_EAmbulanceMissionState@@UAEPAXI@Z +S_PUB32: [0003:000057EC], Flags: 00000000, ??_C@_07GN@britain?$AA@ +S_PUB32: [0004:00001590], Flags: 00000000, ??_C@_01FNLH@a?$AA@ +S_PUB32: [0001:0004D1B0], Flags: 00000000, @_shi_taskRemovePool@4 +S_PUB32: [0003:00004A60], Flags: 00000000, ??_7Texture@Tgl@@6B@ +S_PUB32: [0003:00004A88], Flags: 00000000, ??_7TextureImpl@TglImpl@@6B@ +S_PUB32: [0004:000000E8], Flags: 00000000, ??_C@_09MINJ@AnimState?$AA@ +S_PUB32: [0005:00000398], Flags: 00000000, __imp__EnterCriticalSection@4 +S_PUB32: [0003:00004228], Flags: 00000000, ??_7?$MxList@PAUMxRegionLeftRight@@@@6B@ +S_PUB32: [0001:0002C0C0], Flags: 00000000, ??0MxEntity@@QAE@XZ +S_PUB32: [0001:0004C520], Flags: 00000000, _MemPoolSetPageSize@8 +S_PUB32: [0001:00035500], Flags: 00000000, ??1?$MxCollection@PAUMxRegionLeftRight@@@@UAE@XZ +S_PUB32: [0003:00005CD0], Flags: 00000000, ??_C@_03FHEP@Sun?$AA@ +S_PUB32: [0001:00006620], Flags: 00000000, ?IsA@MxCore@@UBEEPBD@Z +S_PUB32: [0003:00005948], Flags: 00000000, ??_C@_07CBME@italian?$AA@ +S_PUB32: [0001:0004E400], Flags: 00000000, _WaitForSingleObject@8 +S_PUB32: [0001:00017590], Flags: 00000000, ?FUN_1003ee00@@YAEAAVMxAtomId@@H@Z +S_PUB32: [0001:00060730], Flags: 00000000, __ltoa +S_PUB32: [0001:0004E448], Flags: 00000000, _VirtualQuery@12 +S_PUB32: [0001:00058AB0], Flags: 00000000, _isxdigit +S_PUB32: [0001:0004E4C0], Flags: 00000000, _GetLastError@0 +S_PUB32: [0001:00031270], Flags: 00000000, ?Destroy@MxObjectFactory@@UAEXPAVMxCore@@@Z +S_PUB32: [0001:00002AD0], Flags: 00000000, ?Create@Helicopter@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0001:0005E8E0], Flags: 00000000, ___get_qualified_locale +S_PUB32: [0001:000329A0], Flags: 00000000, ?GetInstance@MxOmni@@SAPAV1@XZ +S_PUB32: [0004:00000028], Flags: 00000000, ___xp_z +S_PUB32: [0001:00004260], Flags: 00000000, ??1InfocenterDoor@@UAE@XZ +S_PUB32: [0001:0004E39A], Flags: 00000000, _midiOutSetVolume@8 +S_PUB32: [0005:00000580], Flags: 00000000, __imp__timeGetTime@0 +S_PUB32: [0004:00001ECC], Flags: 00000000, ??_C@_0GC@NAKB@Access?5to?5this?5surface?5is?5being?5@ +S_PUB32: [0004:00000010], Flags: 00000000, ___xi_a +S_PUB32: [0003:00005A20], Flags: 00000000, ??_C@_0M@LJOL@english?9usa?$AA@ +S_PUB32: [0004:00000030], Flags: 00000000, ___xt_z +S_PUB32: [0004:00000754], Flags: 00000000, ??_C@_0L@EADM@c_chrjety1?$AA@ +S_PUB32: [0001:000322F0], Flags: 00000000, ??_E?$MxCollection@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0004:00000000], Flags: 00000000, ___xc_a +S_PUB32: [0005:0000057C], Flags: 00000000, __imp__joyGetDevCapsA@12 +S_PUB32: [0001:00040380], Flags: 00000000, ??_GPizza@@UAEPAXI@Z +S_PUB32: [0001:0002C5C0], Flags: 00000000, ?AddToManager@MxEventPresenter@@UAEJXZ +S_PUB32: [0001:00029830], Flags: 00000000, ??_GMxDSSelectAction@@UAEPAXI@Z +S_PUB32: [0004:00000658], Flags: 00000000, ??_C@_0L@DAFA@c_jsrsidy0?$AA@ +S_PUB32: [0001:00041510], Flags: 00000000, ?UpdateWorldVelocity@OrientableROI@@UAEXXZ +S_PUB32: [0001:00052E60], Flags: 00000000, __write +S_PUB32: [0003:00004B00], Flags: 00000000, ??_7Renderer@Tgl@@6B@ +S_PUB32: [0003:00004B38], Flags: 00000000, ??_7RendererImpl@TglImpl@@6B@ +S_PUB32: [0003:00005934], Flags: 00000000, ??_C@_03OLMB@its?$AA@ +S_PUB32: [0001:00038260], Flags: 00000000, ??0MxSoundManager@@QAE@XZ +S_PUB32: [0001:00040230], Flags: 00000000, ?ClassName@Pizza@@UBEPBDXZ +S_PUB32: [0004:00000CE0], Flags: 00000000, ??_C@_0BC@DJNB@LegoPartPresenter?$AA@ +S_PUB32: [0001:0004E574], Flags: 00000000, _GetTextExtentPointA@16 +S_PUB32: [0001:00019AB0], Flags: 00000000, ?EndAction@LegoWorld@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:0002F360], Flags: 00000000, ?FUN_100c09c0@MxMusicManager@@QAEIPAEH@Z +S_PUB32: [0001:0001D130], Flags: 00000000, ?Tickle@MxCompositeMediaPresenter@@UAEJXZ +S_PUB32: [0004:0000000C], Flags: 00000000, ___xc_z +S_PUB32: [0001:00040590], Flags: 00000000, ??_EPizzeriaState@@UAEPAXI@Z +S_PUB32: [0001:0002E9F0], Flags: 00000000, ?AppendChunk@MxMediaPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00025D70], Flags: 00000000, ?AllocateBuffer@MxDSBuffer@@QAEJIW4MxDSBufferType@@@Z +S_PUB32: [0001:00047A80], Flags: 00000000, __heapmin +S_PUB32: [0004:0000001C], Flags: 00000000, ___xi_z +S_PUB32: [0001:0006278A], Flags: 00000000, _GetTimeZoneInformation@4 +S_PUB32: [0001:00013690], Flags: 00000000, ??0LegoOmni@@QAE@XZ +S_PUB32: [0004:00000020], Flags: 00000000, ___xp_a +S_PUB32: [0001:00052C30], Flags: 00000000, __read_lk +S_PUB32: [0001:0000A1D0], Flags: 00000000, ?ParseExtra@LegoModelPresenter@@UAEXXZ +S_PUB32: [0004:0000002C], Flags: 00000000, ___xt_a +S_PUB32: [0003:00005858], Flags: 00000000, ??_C@_03IFGE@sve?$AA@ +S_PUB32: [0001:00015530], Flags: 00000000, ??0LegoPathPresenter@@QAE@XZ +S_PUB32: [0003:00002830], Flags: 00000000, ??_7CarRaceState@@6B@ +S_PUB32: [0004:00000990], Flags: 00000000, ??_C@_0BA@KABB@backgroundcolor?$AA@ +S_PUB32: [0001:0001B710], Flags: 00000000, ?SetVolume@MxAudioPresenter@@UAEXH@Z +S_PUB32: [0004:000004BC], Flags: 00000000, ??_C@_0BE@CBC@LegoBuildingManager?$AA@ +S_PUB32: [0001:00018440], Flags: 00000000, ??1MxDeviceEnumerate100d9cc8@@QAE@XZ +S_PUB32: [0001:00059669], Flags: 00000000, __fdivrp_sti_st +S_PUB32: [0003:00005A04], Flags: 00000000, ??_C@_03KLOL@fin?$AA@ +S_PUB32: [0001:0002C0A0], Flags: 00000000, ??_GMxEntity@@UAEPAXI@Z +S_PUB32: [0001:00041790], Flags: 00000000, ?GetPartsThreshold@RealtimeView@@SAMXZ +S_PUB32: [0003:00001820], Flags: 00000000, ??_7?$MxCollection@VLegoEventNotificationParam@@@@6B@ +S_PUB32: [0001:0004F990], Flags: 00000000, _srand +S_PUB32: [0001:000407F0], Flags: 00000000, ?Notify@Police@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0002A740], Flags: 00000000, ?SetDuration@MxDSSerialAction@@UAEXJ@Z +S_PUB32: [0005:00000574], Flags: 00000000, USER32_NULL_THUNK_DATA +S_PUB32: [0004:00000610], Flags: 00000000, ??_C@_0L@HBGO@c_rcfrmey0?$AA@ +S_PUB32: [0001:00012B20], Flags: 00000000, ?PickEntity@@YAPAVLegoEntity@@JJ@Z +S_PUB32: [0001:00042CD0], Flags: 00000000, ?Paint@Score@@QAEXXZ +S_PUB32: [0004:0000480C], Flags: 00000000, ?__pInconsistency@@3P6AXXZA +S_PUB32: [0003:00004058], Flags: 00000000, ??_7MxOmni@@6B@ +S_PUB32: [0001:00062784], Flags: 00000000, _GetLocaleInfoW@16 +S_PUB32: [0001:0003F5F0], Flags: 00000000, ?Unk5Tickle@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:00037B50], Flags: 00000000, ??0?$MxCollection@PAVMxRect32@@@@QAE@XZ +S_PUB32: [0003:00005C6C], Flags: 00000000, ??_C@_03PICE@Feb?$AA@ +S_PUB32: [0001:00030800], Flags: 00000000, ??_GMxObjectFactory@@UAEPAXI@Z +S_PUB32: [0001:00016660], Flags: 00000000, ?SetFlag@LegoState@@UAEEXZ +S_PUB32: [0001:0002B840], Flags: 00000000, ?Create@MxDSSubscriber@@QAEJPAVMxStreamController@@IF@Z +S_PUB32: [0001:0001EEB0], Flags: 00000000, ??1MxDriver@@QAE@XZ +S_PUB32: [0003:00001430], Flags: 00000000, ??_7MxVariable@@6B@ +S_PUB32: [0003:00002418], Flags: 00000000, ??_7LegoModelPresenter@@6B@ +S_PUB32: [0001:000009B0], Flags: 00000000, ?VTable0x94@LegoPathActor@@UAEHXZ +S_PUB32: [0001:0002DF20], Flags: 00000000, ?AddPresenter@MxMediaManager@@UAEXAAVMxPresenter@@@Z +S_PUB32: [0001:00045CF0], Flags: 00000000, ?ViewportPickImpl@@YA?AW4Result@Tgl@@PAUIDirect3DRMViewport@@HHPAPBVGroup@2@HAAPAPBV42@AAH@Z +S_PUB32: [0001:00058AF0], Flags: 00000000, _isspace +S_PUB32: [0001:0004E4EA], Flags: 00000000, _KillTimer@8 +S_PUB32: [0001:0004A350], Flags: 00000000, @shi_checkPoolPage@4 +S_PUB32: [0004:00002578], Flags: 00000000, ??_C@_0HH@KIKF@DirectDrawSurface?5is?5not?5in?54?5bi@ +S_PUB32: [0003:00005A10], Flags: 00000000, ??_C@_03FAMB@esm?$AA@ +S_PUB32: [0001:0003C240], Flags: 00000000, ?UnregisterClient@MxTickleManager@@UAEXPAVMxCore@@@Z +S_PUB32: [0001:000128D0], Flags: 00000000, ?Destroy@LegoObjectFactory@@UAEXPAVMxCore@@@Z +S_PUB32: [0001:0004EA30], Flags: 00000000, ___setfflag +S_PUB32: [0001:00026DE0], Flags: 00000000, ??_EMxDSFile@@UAEPAXI@Z +S_PUB32: [0001:0002C550], Flags: 00000000, ??1MxEventPresenter@@UAE@XZ +S_PUB32: [0005:00000340], Flags: 00000000, __imp__DirectSoundCreate@12 +S_PUB32: [0004:0000184C], Flags: 00000000, ??_C@_0BC@BBEJ@SetClipper?5failed?$AA@ +S_PUB32: [0001:00050070], Flags: 00000000, __except_handler3 +S_PUB32: [0003:00001A48], Flags: 00000000, ??_7LegoLocomotionAnimPresenter@@6B@ +S_PUB32: [0001:00002710], Flags: 00000000, ?FindNode@GifMap@@QAEPAUGifMapEntry@@AAPBD@Z +S_PUB32: [0001:00001A10], Flags: 00000000, ?SetData@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0005:000004EC], Flags: 00000000, __imp__FatalAppExitA@8 +S_PUB32: [0001:0005A1C0], Flags: 00000000, ___sbh_alloc_block +S_PUB32: [0001:00000910], Flags: 00000000, ?SetWorldSpeed@LegoEntity@@UAEXM@Z +S_PUB32: [0001:00007E40], Flags: 00000000, ?Load@LegoGameState@@QAEJK@Z +S_PUB32: [0001:0004D250], Flags: 00000000, @_shi_getCurrentThreadContext@8 +S_PUB32: [0001:00008B90], Flags: 00000000, ?Destroy@?$MxCollection@VLegoEventNotificationParam@@@@SAXVLegoEventNotificationParam@@@Z +S_PUB32: [0001:00048B70], Flags: 00000000, @_shi_allocVar@12 +S_PUB32: [0001:0003B310], Flags: 00000000, ?DeleteObject@MxStreamer@@QAEJPAVMxDSAction@@@Z +S_PUB32: [0001:00047AE0], Flags: 00000000, __heapset +S_PUB32: [0004:00000D40], Flags: 00000000, ??_C@_0BD@KCPL@LegoActorPresenter?$AA@ +S_PUB32: [0005:00000448], Flags: 00000000, __imp__SetStdHandle@8 +S_PUB32: [0003:00004430], Flags: 00000000, ??_7MxSoundManager@@6B@ +S_PUB32: [0001:000425A0], Flags: 00000000, ?Create@Score@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0001:000169C0], Flags: 00000000, ?Read@LegoMemoryStream@@UAEJPAXI@Z +S_PUB32: [0001:00005260], Flags: 00000000, ?ClassName@JukeBoxEntity@@UBEPBDXZ +S_PUB32: [0003:00000EC0], Flags: 00000000, ??_7InfocenterState@@6B@ +S_PUB32: [0001:00015120], Flags: 00000000, ??_ELegoMemoryStream@@UAEPAXI@Z +S_PUB32: [0003:000055E0], Flags: 00000000, ??_C@_03CDGJ@exp?$AA@ +S_PUB32: [0003:00005CD4], Flags: 00000000, ??_C@_03MKGK@a?1p?$AA@ +S_PUB32: [0001:0003BD60], Flags: 00000000, ??_GMxTickleThread@@UAEPAXI@Z +S_PUB32: [0001:0002BF80], Flags: 00000000, ?Create@MxEntity@@UAEJHABVMxAtomId@@@Z +S_PUB32: [0004:000014D4], Flags: 00000000, ??_C@_05JMGP@close?$AA@ +S_PUB32: [0001:0002DC40], Flags: 00000000, ?InitPresenters@MxMediaManager@@UAEJXZ +S_PUB32: [0001:0001A720], Flags: 00000000, ??_EMxActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:00053A70], Flags: 00000000, _signal +S_PUB32: [0001:0003DC50], Flags: 00000000, ??0MxVideoManager@@QAE@XZ +S_PUB32: [0001:000119F0], Flags: 00000000, ??_ELegoPartPresenter@@UAEPAXI@Z +S_PUB32: [0001:00044D30], Flags: 00000000, ??1Camera@Tgl@@UAE@XZ +S_PUB32: [0003:00005320], Flags: 00000000, ??_C@_0CB@HPAL@?$AN?6abnormal?5program?5termination?$AN?6@ +S_PUB32: [0005:000003B0], Flags: 00000000, __imp___lclose@4 +S_PUB32: [0003:000055D8], Flags: 00000000, ??_C@_03BGKD@log?$AA@ +S_PUB32: [0001:000357C0], Flags: 00000000, ??0MxRegionTopBottom@@QAE@AAVMxRect32@@@Z +S_PUB32: [0001:00001080], Flags: 00000000, ?VTable0xd8@IslePathActor@@UAEIAAVMxType18NotificationParam@@@Z +S_PUB32: [0001:0004E4C6], Flags: 00000000, _GetCurrentThreadId@0 +S_PUB32: [0004:000036B0], Flags: 00000000, ??_C@_09MMOD@MxDSSound?$AA@ +S_PUB32: [0003:0000575C], Flags: 00000000, ??_C@_09MGEH@hong?9kong?$AA@ +S_PUB32: [0001:0001E2E0], Flags: 00000000, ??0MxCriticalSection@@QAE@XZ +S_PUB32: [0001:0000FC20], Flags: 00000000, ?IsA@LegoAct2State@@UBEEPBD@Z +S_PUB32: [0001:00039E50], Flags: 00000000, ?FUN_100c1800@MxStreamController@@QAEJPAVMxDSAction@@I@Z +S_PUB32: [0003:00005528], Flags: 00000000, ??_C@_06LKFM@1?$CDSNAN?$AA@ +S_PUB32: [0001:00015290], Flags: 00000000, ??_GLegoPathActor@@UAEPAXI@Z +S_PUB32: [0004:000009B8], Flags: 00000000, ??_C@_00A@?$AA@ +S_PUB32: [0001:00006000], Flags: 00000000, ?ClassName@MxVideoPresenter@@UBEPBDXZ +S_PUB32: [0001:0004EA7A], Flags: 00000000, __CIatan2 +S_PUB32: [0001:000470E0], Flags: 00000000, ?_Dec@iterator@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@QAEXXZ +S_PUB32: [0001:0005D320], Flags: 00000000, __copysign +S_PUB32: [0001:0002F6F0], Flags: 00000000, ?Destroy@MxMusicPresenter@@UAEXXZ +S_PUB32: [0001:0001C900], Flags: 00000000, ?SetBitDepth@MxBitmap@@UAEJE@Z +S_PUB32: [0003:00001898], Flags: 00000000, ??_7MxSoundPresenter@@6B@ +S_PUB32: [0001:00018390], Flags: 00000000, ??_E?$MxList@PAVMxUnknown100d7c88@@@@UAEPAXI@Z +S_PUB32: [0003:00001488], Flags: 00000000, ??_7LegoCarBuild@@6B@ +S_PUB32: [0001:00047800], Flags: 00000000, ??2@YAPAXI@Z +S_PUB32: [0003:000031C0], Flags: 00000000, ??_7?$MxListCursor@PAVMxDSAction@@@@6B@ +S_PUB32: [0001:0003B850], Flags: 00000000, ??0MxString@@QAE@ABV0@@Z +S_PUB32: [0001:00002140], Flags: 00000000, ??0ElevatorBottom@@QAE@XZ +S_PUB32: [0003:00002368], Flags: 00000000, ??_7InfoCenterEntity@@6B@ +S_PUB32: [0003:000044B0], Flags: 00000000, ??_7MxNextActionDataStart@@6B@ +S_PUB32: [0001:0005B100], Flags: 00000000, ___lc_lctostr +S_PUB32: [0001:00007250], Flags: 00000000, ?SetLocation@LegoEntity@@QAEXAAVVector3Data@@00E@Z +S_PUB32: [0001:00056430], Flags: 00000000, _tolower +S_PUB32: [0005:000003CC], Flags: 00000000, __imp__VirtualQuery@12 +S_PUB32: [0001:00057340], Flags: 00000000, __getbuf +S_PUB32: [0001:00038810], Flags: 00000000, ?FUN_100aecf0@MxSoundManager@@QAEHI@Z +S_PUB32: [0003:00002978], Flags: 00000000, ??_7LegoOmni@@6B@ +S_PUB32: [0004:0000067C], Flags: 00000000, ??_C@_0L@EHOI@c_jsfrnty5?$AA@ +S_PUB32: [0001:0004EA73], Flags: 00000000, __CIatan +S_PUB32: [0001:0003A2F0], Flags: 00000000, ?VTable0x30@MxStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:0003FF20], Flags: 00000000, ?EndAction@MxWavePresenter@@UAEXXZ +S_PUB32: [0004:000005EC], Flags: 00000000, ??_C@_0L@EJO@c_rcsidey0?$AA@ +S_PUB32: [0001:0001D5A0], Flags: 00000000, ??1MxCompositePresenter@@UAE@XZ +S_PUB32: [0001:00003460], Flags: 00000000, ?VTable0x74@Helicopter@@UAEXAAVMatrix4Impl@@@Z +S_PUB32: [0001:00044700], Flags: 00000000, ?CreateView@RendererImpl@TglImpl@@UAEPAVView@Tgl@@PBVDevice@4@PBVCamera@4@KKKK@Z +S_PUB32: [0003:00000AC8], Flags: 00000000, ??_7Vector4Data@@6B@ +S_PUB32: [0004:0000430C], Flags: 00000000, ___mb_cur_max +S_PUB32: [0001:0001E320], Flags: 00000000, ??1MxCriticalSection@@QAE@XZ +S_PUB32: [0001:00029E00], Flags: 00000000, ?GetSizeOnDisk@MxDSSelectAction@@UAEIXZ +S_PUB32: [0001:00018210], Flags: 00000000, ?Compare@MxUnknown100d9d00@@UAECPAVMxUnknown100d7c88@@0@Z +S_PUB32: [0003:00000F78], Flags: 00000000, ??_7Jetski@@6B@ +S_PUB32: [0001:000273E0], Flags: 00000000, ??_EMxDSMediaAction@@UAEPAXI@Z +S_PUB32: [0001:000480F0], Flags: 00000000, @shi_allocPageHeader@4 +S_PUB32: [0001:0001B750], Flags: 00000000, ??0MxBackgroundAudioManager@@QAE@XZ +S_PUB32: [0001:000232C0], Flags: 00000000, ?_Construct@@YAXPAPAVMxNextActionDataStart@@ABQAV1@@Z +S_PUB32: [0001:000473E0], Flags: 00000000, ??_EViewLODList@@MAEPAXI@Z +S_PUB32: [0001:00062A10], Flags: 00000000, __strupr +S_PUB32: [0001:00015340], Flags: 00000000, ?VTable0x74@LegoPathActor@@UAEXAAVMatrix4Impl@@@Z +S_PUB32: [0001:00043560], Flags: 00000000, ?InitFromWindowsDevice@DeviceImpl@TglImpl@@UAEXPAVDevice@Tgl@@@Z +S_PUB32: [0003:0000564C], Flags: 00000000, ??_C@_06CMKP@turkey?$AA@ +S_PUB32: [0004:000011B8], Flags: 00000000, ??_C@_0BB@IMJB@lego?5yellow?5flat?$AA@ +S_PUB32: [0001:00041110], Flags: 00000000, ??_ERadioState@@UAEPAXI@Z +S_PUB32: [0001:00044910], Flags: 00000000, ??_EView@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044830], Flags: 00000000, ??_EViewImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:000534D0], Flags: 00000000, __openfile +S_PUB32: [0001:000626AC], Flags: 00000000, _GetFileType@4 +S_PUB32: [0004:00003FF4], Flags: 00000000, ___fastflag +S_PUB32: [0001:00054FD0], Flags: 00000000, __XcptFilter +S_PUB32: [0004:00000114], Flags: 00000000, ??_C@_08LMLN@LegoRace?$AA@ +S_PUB32: [0001:00050CC0], Flags: 00000000, __getptd +S_PUB32: [0001:0004E568], Flags: 00000000, _SetTextColor@8 +S_PUB32: [0001:00025260], Flags: 00000000, ??_EMxDSAction@@UAEPAXI@Z +S_PUB32: [0004:00001C70], Flags: 00000000, ??_C@_0EF@FEKI@Bitmask?5in?5the?5pixel?5format?5requ@ +S_PUB32: [0004:00000AA4], Flags: 00000000, ?g_turnMinAccel@@3MA +S_PUB32: [0001:0001B670], Flags: 00000000, ?InitPresenters@MxAudioManager@@UAEJXZ +S_PUB32: [0001:00043A10], Flags: 00000000, ?RemoveAll@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@XZ +S_PUB32: [0004:00000598], Flags: 00000000, ??_C@_0L@MEFE@c_chblady0?$AA@ +S_PUB32: [0001:00041EC0], Flags: 00000000, ?UnknownQuaternionOp@Vector4Impl@@UAEXPAV1@0@Z +S_PUB32: [0001:000555F0], Flags: 00000000, __setargv +S_PUB32: [0005:00000408], Flags: 00000000, __imp__GetCurrentProcess@0 +S_PUB32: [0001:00041F90], Flags: 00000000, ?AddVectorImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0004:00000808], Flags: 00000000, ?g_colorSaveData@@3PAUColorStringStruct@@A +S_PUB32: [0001:0005B830], Flags: 00000000, ___strgtold12 +S_PUB32: [0001:000529D0], Flags: 00000000, __flushall +S_PUB32: [0001:000476B0], Flags: 00000000, ??1?$Array@V?$Array@M$03@Tgl@@$03@Tgl@@QAE@XZ +S_PUB32: [0003:000005A8], Flags: 00000000, ??_7Vector3Data@@6B@ +S_PUB32: [0001:0004FBA0], Flags: 00000000, ??_M@YGXPAXIHP6EX0@Z@Z +S_PUB32: [0001:0002CBA0], Flags: 00000000, ?Read@MXIOINFO@@QAEJPAXJ@Z +S_PUB32: [0001:00039C70], Flags: 00000000, ?RemoveSubscriber@MxStreamController@@QAEXPAVMxDSSubscriber@@@Z +S_PUB32: [0001:000418E0], Flags: 00000000, ?Clear@Vector2Impl@@UAEXXZ +S_PUB32: [0001:0002D7B0], Flags: 00000000, ?NextFrame@MxLoopingSmkPresenter@@UAEXXZ +S_PUB32: [0001:00043BA0], Flags: 00000000, ?SetTextureMappingMode@MeshImpl@TglImpl@@UAE?AW4Result@Tgl@@W4ProjectionType@4@@Z +S_PUB32: [0001:00060780], Flags: 00000000, __i64toa +S_PUB32: [0003:000021C8], Flags: 00000000, ??_7ScoreState@@6B@ +S_PUB32: [0001:0004E3F4], Flags: 00000000, _DeleteCriticalSection@4 +S_PUB32: [0001:000284A0], Flags: 00000000, ??0MxDSObject@@QAE@XZ +S_PUB32: [0004:0000006C], Flags: 00000000, ??_C@_0L@COBD@LegoEntity?$AA@ +S_PUB32: [0001:0002DD70], Flags: 00000000, ?Destroy@MxMediaManager@@UAEXXZ +S_PUB32: [0001:0003BFD0], Flags: 00000000, ??0MxTickleClient@@QAE@PAVMxCore@@H@Z +S_PUB32: [0001:0001DC10], Flags: 00000000, ?VTable0x5c@MxCompositePresenter@@UAEXAAVMxNotificationParam@@@Z +S_PUB32: [0001:0001B5C0], Flags: 00000000, ??1MxAudioManager@@UAE@XZ +S_PUB32: [0004:00003C28], Flags: 00000000, ??_C@_0M@LOND@bigcube?4gif?$AA@ +S_PUB32: [0001:0002C640], Flags: 00000000, ?CopyData@MxEventPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00014070], Flags: 00000000, ??_GGifManager@@UAEPAXI@Z +S_PUB32: [0001:0005A890], Flags: 00000000, _setlocale +S_PUB32: [0001:0004F840], Flags: 00000000, _fprintf +S_PUB32: [0001:00029080], Flags: 00000000, ??_GMxDSParallelAction@@UAEPAXI@Z +S_PUB32: [0001:00015D40], Flags: 00000000, ?VTable0x64@LegoRace@@UAEEXZ +S_PUB32: [0001:000204B0], Flags: 00000000, ?EnableResizing@@YAXPAXH@Z +S_PUB32: [0001:000561B0], Flags: 00000000, __statusfp +S_PUB32: [0001:00038010], Flags: 00000000, ??_E?$MxPtrListCursor@VMxRect32@@@@UAEPAXI@Z +S_PUB32: [0004:00001878], Flags: 00000000, ??_C@_0BF@KPL@CreateClipper?5failed?$AA@ +S_PUB32: [0001:000125E0], Flags: 00000000, ??_EPoliceEntity@@UAEPAXI@Z +S_PUB32: [0001:000193B0], Flags: 00000000, ??_G?$MxCollection@PAVLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0001:00018C30], Flags: 00000000, ?DrawFPS@LegoVideoManager@@AAEXXZ +S_PUB32: [0001:0005E860], Flags: 00000000, _strcspn +S_PUB32: [0001:00014CC0], Flags: 00000000, ??0LegoPalettePresenter@@QAE@XZ +S_PUB32: [0001:0002E3F0], Flags: 00000000, ?FUN_100b5650@MxMediaPresenter@@QAEPAVMxStreamChunk@@XZ +S_PUB32: [0001:0001BE60], Flags: 00000000, ?StartAction@MxBackgroundAudioManager@@QAEXAAVMxParam@@@Z +S_PUB32: [0001:0002DBC0], Flags: 00000000, ??1MxMediaManager@@UAE@XZ +S_PUB32: [0001:000334E0], Flags: 00000000, ?Reset@MxPalette@@QAEXE@Z +S_PUB32: [0001:000009A0], Flags: 00000000, ?VTable0x90@LegoPathActor@@UAEHXZ +S_PUB32: [0001:0002D3E0], Flags: 00000000, ?NextFrame@MxLoopingFlcPresenter@@UAEXXZ +S_PUB32: [0001:0002B5C0], Flags: 00000000, ??_G?$MxList@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0001:000628B0], Flags: 00000000, _strlwr +S_PUB32: [0001:0001CA10], Flags: 00000000, ?StretchBits@MxBitmap@@UAEJPAXHHHHHH@Z +S_PUB32: [0001:0003CF80], Flags: 00000000, ?TransitionBroken@MxTransitionManager@@AAEXXZ +S_PUB32: [0004:000004A4], Flags: 00000000, ??_C@_03NHNF@set?$AA@ +S_PUB32: [0004:00001A14], Flags: 00000000, ??_C@_0CB@BBBN@Restore?5of?5text?5surface?52?5failed@ +S_PUB32: [0001:0000FDC0], Flags: 00000000, ??_GLegoActionControlPresenter@@UAEPAXI@Z +S_PUB32: [0003:000022B8], Flags: 00000000, ??_7LegoAct2State@@6B@ +S_PUB32: [0001:00007380], Flags: 00000000, ?VTable0x38@LegoEntity@@UAEXXZ +S_PUB32: [0001:0002C8C0], Flags: 00000000, ?ClassName@MxFlcPresenter@@UBEPBDXZ +S_PUB32: [0003:000010E0], Flags: 00000000, ??_7JukeBoxEntity@@6B@ +S_PUB32: [0001:000580F0], Flags: 00000000, __mbschr +S_PUB32: [0001:00037D70], Flags: 00000000, ??_G?$MxList@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0001:0004EB50], Flags: 00000000, __atoi64 +S_PUB32: [0003:00005AA0], Flags: 00000000, ??_C@_0O@PAMI@dutch?9belgian?$AA@ +S_PUB32: [0001:0000A630], Flags: 00000000, ?CalculateNewTargetSpeed@LegoNavController@@QAEMHHM@Z +S_PUB32: [0001:00036B70], Flags: 00000000, ?Reset@MxRegionCursor@@UAEXXZ +S_PUB32: [0001:0001A2D0], Flags: 00000000, ?StartingTickle@LegoWorldPresenter@@UAEXXZ +S_PUB32: [0003:0000555C], Flags: 00000000, ??_C@_05MEKH@ldexp?$AA@ +S_PUB32: [0001:00039370], Flags: 00000000, ?VTable0x1c@MxStreamController@@UAEJII@Z +S_PUB32: [0004:00000A4C], Flags: 00000000, ??_C@_0BM@MGPA@LegoLoadCacheSoundPresenter?$AA@ +S_PUB32: [0001:00033CA0], Flags: 00000000, ?PresenterNameDispatch@@YAPBDABVMxDSAction@@@Z +S_PUB32: [0001:000097C0], Flags: 00000000, ?SetTimer@LegoInputManager@@QAEXXZ +S_PUB32: [0001:00020880], Flags: 00000000, ?DDCreateSurfaces@MxDirectDraw@@QAEHXZ +S_PUB32: [0001:0003EB40], Flags: 00000000, ??0AlphaMask@MxVideoPresenter@@QAE@ABU01@@Z +S_PUB32: [0003:00005BD8], Flags: 00000000, ??_C@_02ENLM@AM?$AA@ +S_PUB32: [0003:00002E60], Flags: 00000000, ??_7LegoSoundManager@@6B@ +S_PUB32: [0001:00034850], Flags: 00000000, ?Destroy@?$MxPtrList@UMxRegionTopBottom@@@@SAXPAUMxRegionTopBottom@@@Z +S_PUB32: [0005:000003AC], Flags: 00000000, __imp__OpenFile@12 +S_PUB32: [0003:00005BD4], Flags: 00000000, ??_C@_02DBLP@PM?$AA@ +S_PUB32: [0001:00026E00], Flags: 00000000, ??0MxDSFile@@QAE@PBDK@Z +S_PUB32: [0001:00019750], Flags: 00000000, ??_G?$MxCollection@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0005:00000550], Flags: 00000000, __imp__SetWindowPos@28 +S_PUB32: [0001:000286E0], Flags: 00000000, ?SetObjectName@MxDSObject@@QAEXPBD@Z +S_PUB32: [0001:00026BB0], Flags: 00000000, ?Clone@MxDSEvent@@UAEPAVMxDSAction@@XZ +S_PUB32: [0003:00004288], Flags: 00000000, ??_7MxRegionLeftRightListCursor@@6B@ +S_PUB32: [0001:00011960], Flags: 00000000, ??_ELegoTexturePresenter@@UAEPAXI@Z +S_PUB32: [0001:00000A50], Flags: 00000000, ?ClassName@Act2Brick@@UBEPBDXZ +S_PUB32: [0001:00015BE0], Flags: 00000000, ?ClassName@LegoRace@@UBEPBDXZ +S_PUB32: [0001:00046020], Flags: 00000000, ?Pick@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@KKPAPBVGroup@4@HAAPAPBV54@AAH@Z +S_PUB32: [0001:00058C40], Flags: 00000000, ___isascii +S_PUB32: [0001:0002CF70], Flags: 00000000, ?Advance@MXIOINFO@@QAEGG@Z +S_PUB32: [0001:00033470], Flags: 00000000, ?GetDefaultPalette@MxPalette@@QAEXPAUtagPALETTEENTRY@@@Z +S_PUB32: [0001:00017A20], Flags: 00000000, ??1LegoVideoManager@@UAE@XZ +S_PUB32: [0004:00003CE4], Flags: 00000000, __imp__free +S_PUB32: [0002:00003480], Flags: 00000000, _SmackGetSizeDeltas +S_PUB32: [0001:0003AE50], Flags: 00000000, ??_EMxRAMStreamController@@UAEPAXI@Z +S_PUB32: [0001:0003A510], Flags: 00000000, ?FUN_100c1f00@MxStreamController@@QAEJPAVMxDSAction@@@Z +S_PUB32: [0003:00005AB8], Flags: 00000000, ??_C@_03OCEJ@deu?$AA@ +S_PUB32: [0004:00000120], Flags: 00000000, ??_C@_0L@OPCJ@VISIBILITY?$AA@ +S_PUB32: [0001:00060690], Flags: 00000000, _itoa +S_PUB32: [0003:000057C0], Flags: 00000000, ??_C@_03GOFI@dnk?$AA@ +S_PUB32: [0001:000006D0], Flags: 00000000, ?ClassName@LegoState@@UBEPBDXZ +S_PUB32: [0001:0005D130], Flags: 00000000, __add_exp +S_PUB32: [0001:000192F0], Flags: 00000000, ??_GLegoPathControllerList@@UAEPAXI@Z +S_PUB32: [0003:00005890], Flags: 00000000, ??_C@_07JNDN@russian?$AA@ +S_PUB32: [0001:000252C0], Flags: 00000000, ?SetUnknown90@MxDSAction@@UAEXJ@Z +S_PUB32: [0001:000553E0], Flags: 00000000, ?unexpected@@YAXXZ +S_PUB32: [0001:00026C40], Flags: 00000000, ??1MxDSFile@@UAE@XZ +S_PUB32: [0004:00000C40], Flags: 00000000, ??_C@_0M@PGDB@PoliceState?$AA@ +S_PUB32: [0004:0000153C], Flags: 00000000, ?g_count@MxAudioManager@@0HA +S_PUB32: [0001:0002C530], Flags: 00000000, ??_EMxEventPresenter@@UAEPAXI@Z +S_PUB32: [0001:000375F0], Flags: 00000000, ?GetRect@MxSmack@@SAEPAEPAGPAKPAVMxRect32@@@Z +S_PUB32: [0001:0003E8D0], Flags: 00000000, ?RealizePalette@MxVideoPresenter@@UAEXXZ +S_PUB32: [0004:00000E38], Flags: 00000000, ?g_garageScript@@3PAVMxAtomId@@A +S_PUB32: [0004:0000035C], Flags: 00000000, ??_C@_08IINP@Hospital?$AA@ +S_PUB32: [0001:000252A0], Flags: 00000000, ?HasId@MxDSAction@@UAEEI@Z +S_PUB32: [0003:000058BC], Flags: 00000000, ??_C@_0L@HNPF@portuguese?$AA@ +S_PUB32: [0003:000041C8], Flags: 00000000, ??_7?$MxPtrListCursor@UMxRegionTopBottom@@@@6B@ +S_PUB32: [0004:000059E8], Flags: 00000000, ___rg_lang_rec +S_PUB32: [0004:00003610], Flags: 00000000, ??_C@_09NMJA@MxDSEvent?$AA@ +S_PUB32: [0001:00058A20], Flags: 00000000, _isupper +S_PUB32: [0004:0000B35C], Flags: 00000000, ?g_userMaxLodPower@@3MA +S_PUB32: [0001:0004C710], Flags: 00000000, _MemPoolSetSmallBlockSize@8 +S_PUB32: [0004:00000098], Flags: 00000000, ??_C@_0O@JMP@IslePathActor?$AA@ +S_PUB32: [0001:00001060], Flags: 00000000, ?VTable0xd0@IslePathActor@@UAEIXZ +S_PUB32: [0001:00020000], Flags: 00000000, ?GetPrimaryBitDepth@MxDirectDraw@@SAHXZ +S_PUB32: [0001:0002C8F0], Flags: 00000000, ??1MxFlcPresenter@@UAE@XZ +S_PUB32: [0001:0002ACA0], Flags: 00000000, ?Deserialize@MxDSSound@@UAEXPAPAEF@Z +S_PUB32: [0001:000053D0], Flags: 00000000, ?InitializeCreateStruct@@YAHAAUCreateStruct@TglSurface@@ABU1Lego3DManager@@@Z +S_PUB32: [0001:0006264C], Flags: 00000000, _TlsSetValue@8 +S_PUB32: [0004:00003F00], Flags: 00000000, __shi_TaskRecord +S_PUB32: [0001:0005D4B0], Flags: 00000000, __nextafter +S_PUB32: [0001:0006279C], Flags: 00000000, _SetEnvironmentVariableA@8 +S_PUB32: [0001:0001E2D0], Flags: 00000000, ?Notify@MxCore@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00062664], Flags: 00000000, _GetModuleHandleA@4 +S_PUB32: [0004:00000778], Flags: 00000000, ??_C@_0L@FOEO@c_chdishy0?$AA@ +S_PUB32: [0003:00003098], Flags: 00000000, ??_7?$MxList@PAVLegoPathController@@@@6B@ +S_PUB32: [0001:00006D50], Flags: 00000000, ?ClassName@LegoCarBuildAnimPresenter@@UBEPBDXZ +S_PUB32: [0001:000438A0], Flags: 00000000, ??_GTexture@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00009CC0], Flags: 00000000, ?IsA@MxWavePresenter@@UBEEPBD@Z +S_PUB32: [0001:000437C0], Flags: 00000000, ??_GTextureImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:000413B0], Flags: 00000000, ?ToQuaternion@Matrix4Impl@@UAEXPAVVector4Impl@@@Z +S_PUB32: [0001:0004F700], Flags: 00000000, __fseek_lk +S_PUB32: [0003:00000EE8], Flags: 00000000, ??_7Isle@@6B@ +S_PUB32: [0005:000004F4], Flags: 00000000, __imp__SetFilePointer@16 +S_PUB32: [0001:00020460], Flags: 00000000, ?IsSupportedMode@MxDirectDraw@@QAEHHHH@Z +S_PUB32: [0003:00005520], Flags: 00000000, ??_C@_05EDPF@1?$CDIND?$AA@ +S_PUB32: [0001:000356A0], Flags: 00000000, ??_G?$MxList@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:00033C60], Flags: 00000000, ?Enable@MxPresenter@@UAEXE@Z +S_PUB32: [0001:0002A750], Flags: 00000000, ??1MxDSSerialAction@@UAE@XZ +S_PUB32: [0003:00003598], Flags: 00000000, ??_7MxDiskStreamProvider@@6B@ +S_PUB32: [0001:00014F40], Flags: 00000000, ?Init@LegoPalettePresenter@@AAEXXZ +S_PUB32: [0001:00008C80], Flags: 00000000, ??1MxParam@@UAE@XZ +S_PUB32: [0001:00029850], Flags: 00000000, ??_EMxStringList@@UAEPAXI@Z +S_PUB32: [0001:00024130], Flags: 00000000, ??_EMxDisplaySurface@@UAEPAXI@Z +S_PUB32: [0001:0002AD20], Flags: 00000000, ?GetBuffer@MxDSSource@@UAEPAIXZ +S_PUB32: [0001:00024DB0], Flags: 00000000, ?Display@MxDisplaySurface@@UAEXHHHHHH@Z +S_PUB32: [0001:0003FD60], Flags: 00000000, ?DoneTickle@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:00031CD0], Flags: 00000000, ?_Inc@iterator@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@QAEXXZ +S_PUB32: [0001:0004F180], Flags: 00000000, _fread +S_PUB32: [0004:0000149C], Flags: 00000000, ?g_endOfVariables@@3PBDB +S_PUB32: [0001:00028880], Flags: 00000000, ?DeserializeDSObjectDispatch@@YAPAVMxDSObject@@PAPAEF@Z +S_PUB32: [0004:00004430], Flags: 00000000, ___badioinfo +S_PUB32: [0001:000039E0], Flags: 00000000, ??1HistoryBook@@UAE@XZ +S_PUB32: [0001:00000490], Flags: 00000000, ?Render@TglSurface@@UAENXZ +S_PUB32: [0001:0001E540], Flags: 00000000, ?Destroy@MxDirect3D@@UAEXXZ +S_PUB32: [0003:000008F8], Flags: 00000000, ??_7GasStation@@6B@ +S_PUB32: [0001:00016F70], Flags: 00000000, ?DoneTickle@LegoTexturePresenter@@UAEXXZ +S_PUB32: [0001:0001F7E0], Flags: 00000000, ?EnumDevicesCallback@MxDeviceEnumerate@@QAEJPAU_GUID@@PAD1PAU_D3DDeviceDesc@@2@Z +S_PUB32: [0001:0003BA50], Flags: 00000000, ?ToLowerCase@MxString@@QAEXXZ +S_PUB32: [0001:000429D0], Flags: 00000000, ?FUN_100016d0@Score@@QAEJAAVMxType17NotificationParam@@@Z +S_PUB32: [0001:000069D0], Flags: 00000000, ?LookAt@LegoCameraController@@QAEXAAVVector3Impl@@00@Z +S_PUB32: [0001:0004A890], Flags: 00000000, @_shi_sysRealloc@12 +S_PUB32: [0003:000055A0], Flags: 00000000, ??_C@_04EAGN@atan?$AA@ +S_PUB32: [0001:000063E0], Flags: 00000000, ?SetValue@LegoBackgroundColor@@UAEXPBD@Z +S_PUB32: [0001:00050040], Flags: 00000000, ?_set_new_mode@@YAHH@Z +S_PUB32: [0004:000011CC], Flags: 00000000, ??_C@_0BA@ONJN@lego?5white?5flat?$AA@ +S_PUB32: [0001:0003C7D0], Flags: 00000000, ?EndTransition@MxTransitionManager@@AAEXE@Z +S_PUB32: [0004:00000A8C], Flags: 00000000, ?g_zeroThreshold@@3MA +S_PUB32: [0001:000269E0], Flags: 00000000, ?ClassName@MxDSEvent@@UBEPBDXZ +S_PUB32: [0003:00005CE0], Flags: 00000000, ___dnames +S_PUB32: [0001:00031180], Flags: 00000000, ??_EMxStillPresenter@@UAEPAXI@Z +S_PUB32: [0003:000012D0], Flags: 00000000, ??_7LegoAnimPresenter@@6B@ +S_PUB32: [0001:00010440], Flags: 00000000, ?ClassName@LegoPartPresenter@@UBEPBDXZ +S_PUB32: [0001:00055F20], Flags: 00000000, __set_error_mode +S_PUB32: [0001:0002FCE0], Flags: 00000000, ?Tickle@MxNotificationManager@@UAEJXZ +S_PUB32: [0001:00001950], Flags: 00000000, ??0BuildingEntity@@QAE@XZ +S_PUB32: [0004:00000F7C], Flags: 00000000, ??_C@_0BM@DELL@?2lego?2scripts?2police?2police?$AA@ +S_PUB32: [0001:00016EB0], Flags: 00000000, ?id@?$ctype@G@@$E +S_PUB32: [0001:00041050], Flags: 00000000, ?ClassName@RadioState@@UBEPBDXZ +S_PUB32: [0001:000223A0], Flags: 00000000, ?VTable0x18@MxDiskStreamController@@UAEJII@Z +S_PUB32: [0001:0005D110], Flags: 00000000, __get_exp +S_PUB32: [0005:000003D4], Flags: 00000000, __imp__VirtualAlloc@16 +S_PUB32: [0001:00011C00], Flags: 00000000, ??1LegoJetskiRaceActor@@UAE@XZ +S_PUB32: [0001:0002DB10], Flags: 00000000, ?Destroy@MxLoopingSmkPresenter@@UAEXXZ +S_PUB32: [0004:00000FD8], Flags: 00000000, ??_C@_0BP@MJGM@?2lego?2scripts?2infocntr?2regbook?$AA@ +S_PUB32: [0001:0000A460], Flags: 00000000, ?GetDefaults@LegoNavController@@SAXPAHPAM11111111PAE@Z +S_PUB32: [0001:00016E90], Flags: 00000000, ?id@?$ctype@D@@$E +S_PUB32: [0003:00005A18], Flags: 00000000, ??_C@_03DOPE@enu?$AA@ +S_PUB32: [0001:00042020], Flags: 00000000, ?MullVectorImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0001:0005F140], Flags: 00000000, __setmode_lk +S_PUB32: [0003:00005924], Flags: 00000000, ??_C@_03LKFD@jpn?$AA@ +S_PUB32: [0001:00060860], Flags: 00000000, __ui64toa +S_PUB32: [0001:00003840], Flags: 00000000, ??0HistoryBook@@QAE@XZ +S_PUB32: [0001:00029520], Flags: 00000000, ??_G?$MxCollection@VMxString@@@@UAEPAXI@Z +S_PUB32: [0004:00003FF0], Flags: 00000000, __ldused +S_PUB32: [0001:0002CE30], Flags: 00000000, ?SetBuffer@MXIOINFO@@QAEGPADJJ@Z +S_PUB32: [0004:00000428], Flags: 00000000, ??_C@_0BE@MOFF@LegoAnimMMPresenter?$AA@ +S_PUB32: [0001:000434E0], Flags: 00000000, ?SetShadeCount@DeviceImpl@TglImpl@@UAE?AW4Result@Tgl@@K@Z +S_PUB32: [0001:000024E0], Flags: 00000000, ??1GasStation@@UAE@XZ +S_PUB32: [0001:00040DD0], Flags: 00000000, ?GetState@RaceState@@AAEPAURaceStateEntry@@E@Z +S_PUB32: [0001:00038B80], Flags: 00000000, ?LoadHeader@MxStillPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00014EC0], Flags: 00000000, ??_ELegoPalettePresenter@@UAEPAXI@Z +S_PUB32: [0001:00005BE0], Flags: 00000000, ??0LegoAnimMMPresenter@@QAE@XZ +S_PUB32: [0003:00005054], Flags: 00000000, ??_C@_08OBID@KERNEL32?$AA@ +S_PUB32: [0001:00007370], Flags: 00000000, ?VTable0x34@LegoEntity@@UAEXXZ +S_PUB32: [0001:0003B7A0], Flags: 00000000, ?VTable0x20@MxStreamProvider@@UAEXPAVMxDSAction@@@Z +S_PUB32: [0001:0005A110], Flags: 00000000, ___sbh_find_block +S_PUB32: [0001:0002E870], Flags: 00000000, ?StreamingTickle@MxMediaPresenter@@UAEXXZ +S_PUB32: [0004:00000368], Flags: 00000000, ??_C@_0O@MJON@HospitalState?$AA@ +S_PUB32: [0001:0003E980], Flags: 00000000, ?GetWidth@MxVideoPresenter@@UAEHXZ +S_PUB32: [0001:00054270], Flags: 00000000, __input +S_PUB32: [0003:0000567C], Flags: 00000000, ??_C@_05FBKI@spain?$AA@ +S_PUB32: [0001:000234E0], Flags: 00000000, ??_GMxStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:00041820], Flags: 00000000, ?MullVectorImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0004:00004344], Flags: 00000000, ___initenv +S_PUB32: [0001:00024FB0], Flags: 00000000, ?ReleaseDC@MxDisplaySurface@@UAEXPAX@Z +S_PUB32: [0003:00002CF0], Flags: 00000000, ??_7LegoPlantManager@@6B@ +S_PUB32: [0003:00003200], Flags: 00000000, ??_7Motorcycle@@6B@ +S_PUB32: [0001:00040800], Flags: 00000000, ??0PoliceState@@QAE@XZ +S_PUB32: [0001:00032B40], Flags: 00000000, ?SetCD@MxOmni@@SAXPBD@Z +S_PUB32: [0001:0001FCA0], Flags: 00000000, ?FUN_1009d210@MxDeviceEnumerate@@QAEJXZ +S_PUB32: [0001:00018FC0], Flags: 00000000, ??0LegoWorld@@QAE@XZ +S_PUB32: [0001:00013720], Flags: 00000000, ?ClassName@LegoOmni@@UBEPBDXZ +S_PUB32: [0001:00008A00], Flags: 00000000, ??_GLegoInputManager@@UAEPAXI@Z +S_PUB32: [0001:00059891], Flags: 00000000, __safe_fdivr +S_PUB32: [0001:0003E8B0], Flags: 00000000, ?CreateBitmap@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:000018E0], Flags: 00000000, ??_GBike@@UAEPAXI@Z +S_PUB32: [0003:00000090], Flags: 00000000, ??_7Act1State@@6B@ +S_PUB32: [0001:00032B00], Flags: 00000000, ?SetHD@MxOmni@@SAXPBD@Z +S_PUB32: [0003:00005068], Flags: 00000000, ??_C@_05OFLO@e?$CL000?$AA@ +S_PUB32: [0001:0004E610], Flags: 00000000, ?_CallMemberFunction2@@YGXPAX00H@Z +S_PUB32: [0001:000092A0], Flags: 00000000, ?GetJoystickId@LegoInputManager@@QAEJXZ +S_PUB32: [0001:00019E60], Flags: 00000000, ??_GLegoWorldPresenter@@UAEPAXI@Z +S_PUB32: [0001:00022810], Flags: 00000000, ?FUN_100c7ce0@MxDiskStreamController@@AAEXPAVMxDSBuffer@@@Z +S_PUB32: [0001:00060D40], Flags: 00000000, __stricmp +S_PUB32: [0001:00062760], Flags: 00000000, _RaiseException@16 +S_PUB32: [0001:00041BD0], Flags: 00000000, ?SubVectorImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0001:00044320], Flags: 00000000, ??1Renderer@Tgl@@UAE@XZ +S_PUB32: [0003:00003840], Flags: 00000000, ??_7MxDSMultiAction@@6B@ +S_PUB32: [0001:0001E5C0], Flags: 00000000, ?DestroyButNotDirectDraw@MxDirect3D@@UAEXXZ +S_PUB32: [0001:00058A80], Flags: 00000000, _isdigit +S_PUB32: [0001:000138B0], Flags: 00000000, ?Destroy@LegoOmni@@UAEXXZ +S_PUB32: [0001:0001CCE0], Flags: 00000000, ??1MxCompositeMediaPresenter@@UAE@XZ +S_PUB32: [0001:0002BCF0], Flags: 00000000, ?FUN_100b8250@MxDSSubscriber@@QAEPAVMxStreamChunk@@XZ +S_PUB32: [0001:00051AB0], Flags: 00000000, __output +S_PUB32: [0001:000260B0], Flags: 00000000, ?StartPresenterFromAction@MxDSBuffer@@QAEJPAVMxStreamController@@PAVMxDSAction@@1@Z +S_PUB32: [0001:00051850], Flags: 00000000, __c_exit +S_PUB32: [0001:000023A0], Flags: 00000000, ?ClassName@GasStation@@UBEPBDXZ +S_PUB32: [0001:00041B30], Flags: 00000000, ?EqualsCross@Vector3Impl@@UAEXPAMPAV1@@Z +S_PUB32: [0001:00028E60], Flags: 00000000, ?Clone@MxDSObjectAction@@UAEPAVMxDSAction@@XZ +S_PUB32: [0003:000034F8], Flags: 00000000, ??_7MxDirect3D@@6B@ +S_PUB32: [0004:000028D0], Flags: 00000000, ??_C@_0FH@MFFK@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:0000A1E0], Flags: 00000000, ??0LegoNavController@@QAE@XZ +S_PUB32: [0001:0005F1B0], Flags: 00000000, __alloca_probe +S_PUB32: [0003:00002B00], Flags: 00000000, ??_7LegoStream@@6B@ +S_PUB32: [0003:00005898], Flags: 00000000, ??_C@_03LKIP@rus?$AA@ +S_PUB32: [0001:00012090], Flags: 00000000, ??_EDoors@@UAEPAXI@Z +S_PUB32: [0001:00047900], Flags: 00000000, _realloc +S_PUB32: [0001:0002EF10], Flags: 00000000, ?Destroy@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0004:000003D4], Flags: 00000000, ??_C@_0O@GIID@JukeBoxEntity?$AA@ +S_PUB32: [0001:00039CE0], Flags: 00000000, ?VTable0x20@MxStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:0001E3C0], Flags: 00000000, ?SetDoMutex@MxCriticalSection@@SAXXZ +S_PUB32: [0003:0000540C], Flags: 00000000, ??_C@_03NAME@?4?4?4?$AA@ +S_PUB32: [0001:00031200], Flags: 00000000, ??_EMxLoopingMIDIPresenter@@UAEPAXI@Z +S_PUB32: [0001:00040240], Flags: 00000000, ?IsA@Pizza@@UBEEPBD@Z +S_PUB32: [0003:00002DE0], Flags: 00000000, ??_7ViewROI@@6B@ +S_PUB32: [0001:00035D70], Flags: 00000000, ??_G?$MxPtrListCursor@UMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:00047820], Flags: 00000000, ??3@YAXPAX@Z +S_PUB32: [0001:00053F10], Flags: 00000000, ___pxcptinfoptrs +S_PUB32: [0005:00000050], Flags: 00000000, __IMPORT_DESCRIPTOR_d3drm +S_PUB32: [0001:00016950], Flags: 00000000, ??0LegoMemoryStream@@QAE@PAD@Z +S_PUB32: [0004:00001DC0], Flags: 00000000, ??_C@_0CI@ENBM@The?5requested?5surface?5is?5not?5att@ +S_PUB32: [0001:0002C010], Flags: 00000000, ?ClassName@MxEntity@@UBEPBDXZ +S_PUB32: [0004:00003CB8], Flags: 00000000, _shi_deferFreePools +S_PUB32: [0004:00000760], Flags: 00000000, ??_C@_0L@MKPP@c_chljety1?$AA@ +S_PUB32: [0001:00039180], Flags: 00000000, ??1MxStreamChunk@@UAE@XZ +S_PUB32: [0001:0001FF20], Flags: 00000000, ??0MxDirectDraw@@QAE@XZ +S_PUB32: [0004:00004104], Flags: 00000000, __pwctype +S_PUB32: [0001:00039700], Flags: 00000000, ??_EMxStreamController@@UAEPAXI@Z +S_PUB32: [0001:00003C20], Flags: 00000000, ??_GHospital@@UAEPAXI@Z +S_PUB32: [0001:0005CD90], Flags: 00000000, __clrfp +S_PUB32: [0001:0003B9D0], Flags: 00000000, ??1MxString@@UAE@XZ +S_PUB32: [0001:0004E424], Flags: 00000000, __llseek@12 +S_PUB32: [0001:0002C1B0], Flags: 00000000, ??_EMxEventManager@@UAEPAXI@Z +S_PUB32: [0001:00038360], Flags: 00000000, ?Destroy@MxSoundManager@@AAEXE@Z +S_PUB32: [0003:00004820], Flags: 00000000, ??_7Radio@@6B@ +S_PUB32: [0001:00033690], Flags: 00000000, ?Destroy@MxPresenter@@UAEXXZ +S_PUB32: [0001:00062658], Flags: 00000000, _GetCommandLineA@0 +S_PUB32: [0003:00005980], Flags: 00000000, ??_C@_03FCHO@hun?$AA@ +S_PUB32: [0001:000417C0], Flags: 00000000, ?AddVectorImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0001:000077C0], Flags: 00000000, ?IsA@MxFlcPresenter@@UBEEPBD@Z +S_PUB32: [0001:00062742], Flags: 00000000, _GetExitCodeProcess@8 +S_PUB32: [0001:000420F0], Flags: 00000000, ?Clear@Vector3Impl@@UAEXXZ +S_PUB32: [0004:00003BAC], Flags: 00000000, ??_C@_0BG@ICJF@MxNextActionDataStart?$AA@ +S_PUB32: [0003:00005654], Flags: 00000000, ??_C@_03PMGP@tur?$AA@ +S_PUB32: [0001:00016AB0], Flags: 00000000, ??1LegoFileStream@@UAE@XZ +S_PUB32: [0005:000003FC], Flags: 00000000, __imp__OpenFileMappingA@12 +S_PUB32: [0003:000024A0], Flags: 00000000, ??_7LegoCarRaceActor@@6B@ +S_PUB32: [0001:0003C2E0], Flags: 00000000, ?GetClientTickleInterval@MxTickleManager@@UAEHPAVMxCore@@@Z +S_PUB32: [0001:00004A40], Flags: 00000000, ?HandleTransitionEnd@Isle@@QAEJXZ +S_PUB32: [0001:00045B10], Flags: 00000000, ??0ViewportAppData@@QAE@PAUIDirect3DRM2@@@Z +S_PUB32: [0001:00062682], Flags: 00000000, _GetCurrentThread@0 +S_PUB32: [0004:0000014C], Flags: 00000000, ??_C@_02HHGL@?3?$DL?$AA@ +S_PUB32: [0001:00019870], Flags: 00000000, ??_E?$MxPtrList@VMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:0004CF20], Flags: 00000000, _MemDefaultErrorHandler@4 +S_PUB32: [0001:00047BA0], Flags: 00000000, _shi_call_new_handler_msc +S_PUB32: [0001:000068D0], Flags: 00000000, ?ClassName@LegoCameraController@@UBEPBDXZ +S_PUB32: [0001:00026FE0], Flags: 00000000, ?Open@MxDSFile@@UAEJK@Z +S_PUB32: [0005:00000334], Flags: 00000000, DDRAW_NULL_THUNK_DATA +S_PUB32: [0001:00004C20], Flags: 00000000, ?VTable0x64@Isle@@UAEEXZ +S_PUB32: [0001:000147F0], Flags: 00000000, ?StartTimer@LegoOmni@@UAEXXZ +S_PUB32: [0001:00003C40], Flags: 00000000, ??1Hospital@@UAE@XZ +S_PUB32: [0004:0000B398], Flags: 00000000, ?_pnhHeap@@3P6AHI@ZA +S_PUB32: [0001:0003A920], Flags: 00000000, ?IsA@MxStreamer@@UBEEPBD@Z +S_PUB32: [0001:000175A0], Flags: 00000000, ?FUN_1003ef00@@YAXE@Z +S_PUB32: [0001:0001AC30], Flags: 00000000, ??_EMxType4NotificationParam@@UAEPAXI@Z +S_PUB32: [0001:0003BFA0], Flags: 00000000, ?Terminate@MxThread@@QAEXXZ +S_PUB32: [0003:000032F8], Flags: 00000000, ??_7MxEndActionNotificationParam@@6B@ +S_PUB32: [0004:00000E30], Flags: 00000000, ?g_hospitalScript@@3PAVMxAtomId@@A +S_PUB32: [0005:000003E0], Flags: 00000000, __imp__GetProcessHeap@0 +S_PUB32: [0001:00007580], Flags: 00000000, ??1LegoEntityPresenter@@UAE@XZ +S_PUB32: [0001:00026710], Flags: 00000000, ?AddRef@MxDSBuffer@@QAEXPAVMxDSChunk@@@Z +S_PUB32: [0001:00016790], Flags: 00000000, ?WriteVariable@LegoStream@@SGJPAV1@PAVMxVariableTable@@PBD@Z +S_PUB32: [0004:000007D8], Flags: 00000000, ??_C@_03GOO@?4GS?$AA@ +S_PUB32: [0001:0003C450], Flags: 00000000, ?Stop@MxTimer@@QAEXXZ +S_PUB32: [0004:00002160], Flags: 00000000, ??_C@_0EC@BCMK@DirectDraw?5does?5not?5have?5enough?5@ +S_PUB32: [0001:00013310], Flags: 00000000, ?UnregisterScripts@@YAXXZ +S_PUB32: [0001:00008660], Flags: 00000000, ?IsA@LegoHideAnimPresenter@@UBEEPBD@Z +S_PUB32: [0001:00042330], Flags: 00000000, ?Notify@RegistrationBook@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00046E60], Flags: 00000000, ?Create@ViewLODListManager@@QAEPAVViewLODList@@ABQBDH@Z +S_PUB32: [0001:00031370], Flags: 00000000, ?NotificationManager@@YAPAVMxNotificationManager@@XZ +S_PUB32: [0004:00000C54], Flags: 00000000, ??_C@_0BC@HCJA@PizzaMissionState?$AA@ +S_PUB32: [0001:000235C0], Flags: 00000000, ??_EMxDiskStreamProviderThread@@UAEPAXI@Z +S_PUB32: [0001:000430D0], Flags: 00000000, ?VTable0x64@Score@@UAEEXZ +S_PUB32: [0001:00006B40], Flags: 00000000, ?ClassName@LegoCarBuild@@UBEPBDXZ +S_PUB32: [0001:00005A90], Flags: 00000000, ?ClassName@LegoAnimationManager@@UBEPBDXZ +S_PUB32: [0001:00060880], Flags: 00000000, ___crtGetLocaleInfoW +S_PUB32: [0001:0005CD70], Flags: 00000000, __statfp +S_PUB32: [0001:000378B0], Flags: 00000000, ?CreateBitmap@MxSmkPresenter@@UAEXXZ +S_PUB32: [0001:0001E240], Flags: 00000000, ?ParseExtra@MxControlPresenter@@UAEXXZ +S_PUB32: [0001:00052570], Flags: 00000000, __mtinitlocks +S_PUB32: [0001:00019690], Flags: 00000000, ??_GMxPresenterList@@UAEPAXI@Z +S_PUB32: [0001:000075E0], Flags: 00000000, ?SetBackend@LegoEntityPresenter@@UAEIPAVLegoEntity@@@Z +S_PUB32: [0001:00047E80], Flags: 00000000, @_shi_initPageHeaders@4 +S_PUB32: [0004:00000E24], Flags: 00000000, ?g_infoscorScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00027230], Flags: 00000000, ?GetBufferSize@MxDSFile@@UAEKXZ +S_PUB32: [0001:00008860], Flags: 00000000, ??_ELegoLoopingAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00005130], Flags: 00000000, ??_EJukeBox@@UAEPAXI@Z +S_PUB32: [0001:00023130], Flags: 00000000, ?Tickle@MxDiskStreamController@@UAEJXZ +S_PUB32: [0003:000044C8], Flags: 00000000, ??_7MxStreamer@@6B@ +S_PUB32: [0003:00001470], Flags: 00000000, ??_7LegoCameraController@@6B@ +S_PUB32: [0001:0002B1D0], Flags: 00000000, ?Init@MxDSStreamingAction@@QAEJXZ +S_PUB32: [0001:00041760], Flags: 00000000, ?SetUserMaxLOD@RealtimeView@@SAXM@Z +S_PUB32: [0001:0002C9A0], Flags: 00000000, ?CreateBitmap@MxFlcPresenter@@UAEXXZ +S_PUB32: [0004:00003CC8], Flags: 00000000, __shi_poolTerminating +S_PUB32: [0001:00053160], Flags: 00000000, __lseek_lk +S_PUB32: [0001:0004E46C], Flags: 00000000, _HeapReAlloc@16 +S_PUB32: [0001:00043F60], Flags: 00000000, ??_EMesh@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00043E80], Flags: 00000000, ??_EMeshImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00028100], Flags: 00000000, ?GetSizeOnDisk@MxDSMultiAction@@UAEIXZ +S_PUB32: [0001:000350E0], Flags: 00000000, ??1?$MxPtrListCursor@UMxRegionTopBottom@@@@UAE@XZ +S_PUB32: [0001:00024080], Flags: 00000000, ?GetStreamBuffersNum@MxDiskStreamProvider@@UAEHXZ +S_PUB32: [0004:000010C8], Flags: 00000000, ??_C@_0BM@GDCP@?2lego?2scripts?2race?2carracer?$AA@ +S_PUB32: [0003:00005CB0], Flags: 00000000, ??_C@_06OOEM@Sunday?$AA@ +S_PUB32: [0001:000431A0], Flags: 00000000, ?ClassName@SkateBoard@@UBEPBDXZ +S_PUB32: [0003:00002E18], Flags: 00000000, ??_7OrientableROI@@6B@ +S_PUB32: [0001:000073F0], Flags: 00000000, ??0LegoEntityPresenter@@QAE@XZ +S_PUB32: [0001:000326C0], Flags: 00000000, ?DeleteObject@MxOmni@@UAEXAAVMxDSAction@@@Z +S_PUB32: [0001:00022490], Flags: 00000000, ?FUN_100c7970@MxDiskStreamController@@AAEXXZ +S_PUB32: [0001:0003E940], Flags: 00000000, ?Destroy@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:0004E550], Flags: 00000000, _ExtTextOutA@32 +S_PUB32: [0001:00045060], Flags: 00000000, ??_ELight@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044F80], Flags: 00000000, ??_ELightImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:000142B0], Flags: 00000000, ??_G?$MxList@PAVLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0004:00000E98], Flags: 00000000, ??_C@_0BG@HDKJ@?2lego?2scripts?2sndanim?$AA@ +S_PUB32: [0001:0002AD10], Flags: 00000000, ?GetLengthInDWords@MxDSSource@@UAEJXZ +S_PUB32: [0001:00016030], Flags: 00000000, ??1ROI@@UAE@XZ +S_PUB32: [0003:00005C3C], Flags: 00000000, ??_C@_07BPKJ@January?$AA@ +S_PUB32: [0001:00058CC0], Flags: 00000000, ___iscsym +S_PUB32: [0005:00000590], Flags: 00000000, __imp__midiOutSetVolume@8 +S_PUB32: [0001:00041A10], Flags: 00000000, ?Add@Vector2Impl@@UAEXPAV1@@Z +S_PUB32: [0001:00041B90], Flags: 00000000, ?AddScalarImpl@Vector4Impl@@UAEXM@Z +S_PUB32: [0001:0005CDF0], Flags: 00000000, __set_statfp +S_PUB32: [0001:000059B0], Flags: 00000000, ??_ELegoActor@@UAEPAXI@Z +S_PUB32: [0001:00000C40], Flags: 00000000, ?VTable0x60@LegoWorld@@UAEXXZ +S_PUB32: [0001:00044D80], Flags: 00000000, ??_ECamera@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044CA0], Flags: 00000000, ??_ECameraImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00037000], Flags: 00000000, ?Wait@MxSemaphore@@QAEXI@Z +S_PUB32: [0001:00027470], Flags: 00000000, ?CopyFrom@MxDSMediaAction@@QAEXAAV1@@Z +S_PUB32: [0001:0001E470], Flags: 00000000, ??1MxDirect3D@@UAE@XZ +S_PUB32: [0003:00005744], Flags: 00000000, ??_C@_07JJLD@ireland?$AA@ +S_PUB32: [0005:000003F0], Flags: 00000000, __imp__CreateFileA@28 +S_PUB32: [0001:0004CB50], Flags: 00000000, _MemPoolUnlock@4 +S_PUB32: [0001:0004E580], Flags: 00000000, _RealizePalette@4 +S_PUB32: [0001:000294C0], Flags: 00000000, ?Compare@?$MxCollection@VMxString@@@@UAECVMxString@@0@Z +S_PUB32: [0001:00025350], Flags: 00000000, ?CopyFrom@MxDSAction@@QAEXAAV1@@Z +S_PUB32: [0001:00025140], Flags: 00000000, ?SetAtomId@MxDSObject@@UAEXVMxAtomId@@@Z +S_PUB32: [0001:00027CA0], Flags: 00000000, ??4MxDSMultiAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00000650], Flags: 00000000, ??0Act1State@@QAE@XZ +S_PUB32: [0003:00003D68], Flags: 00000000, ??_7MxLoopingSmkPresenter@@6B@ +S_PUB32: [0001:00039D90], Flags: 00000000, ?VTable0x24@MxStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:000087A0], Flags: 00000000, ??_ELegoHideAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:000528A0], Flags: 00000000, __freebuf +S_PUB32: [0003:000033A0], Flags: 00000000, ??_7MxCompositeMediaPresenter@@6B@ +S_PUB32: [0001:0004ED10], Flags: 00000000, __onexit +S_PUB32: [0001:00014B40], Flags: 00000000, ?SetOmniUserMessage@@YAXP6AXPBDH@Z@Z +S_PUB32: [0001:00004A10], Flags: 00000000, ?HandleType17Notification@Isle@@QAEJAAVMxParam@@@Z +S_PUB32: [0001:0005F1B0], Flags: 00000000, __chkstk +S_PUB32: [0004:0000471C], Flags: 00000000, __XcptActTabCount +S_PUB32: [0001:00032360], Flags: 00000000, ??_G?$MxHashTable@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0001:00040D60], Flags: 00000000, ??_ERaceState@@UAEPAXI@Z +S_PUB32: [0001:000474C0], Flags: 00000000, ??_E?$LODList@VViewLOD@@@@UAEPAXI@Z +S_PUB32: [0001:00019970], Flags: 00000000, ??1LegoWorld@@UAE@XZ +S_PUB32: [0001:0004E412], Flags: 00000000, _OutputDebugStringA@4 +S_PUB32: [0001:000537D0], Flags: 00000000, __spawnve +S_PUB32: [0001:0001CB60], Flags: 00000000, ??0MxCompositeMediaPresenter@@QAE@XZ +S_PUB32: [0001:00027240], Flags: 00000000, ?GetStreamBuffersNum@MxDSFile@@UAEKXZ +S_PUB32: [0001:00024D90], Flags: 00000000, ?VTable0x30@MxDisplaySurface@@UAEEPAVMxBitmap@@HHHHHHE@Z +S_PUB32: [0003:00002D08], Flags: 00000000, ??_7LegoRace@@6B@ +S_PUB32: [0001:00038F00], Flags: 00000000, ?VTable0x88@MxStillPresenter@@UAEXHH@Z +S_PUB32: [0001:00056410], Flags: 00000000, __fptrap +S_PUB32: [0001:00056250], Flags: 00000000, __fpreset +S_PUB32: [0001:00038C70], Flags: 00000000, ?NextFrame@MxStillPresenter@@UAEXXZ +S_PUB32: [0004:000027BC], Flags: 00000000, ??_C@_0CN@CAME@No?5palette?5object?5attached?5to?5th@ +S_PUB32: [0001:00004A20], Flags: 00000000, ?HandleType19Notification@Isle@@QAEJAAVMxParam@@@Z +S_PUB32: [0001:00016010], Flags: 00000000, ??0ROI@@QAE@XZ +S_PUB32: [0004:00003C4C], Flags: 00000000, _MemDefaultPool +S_PUB32: [0001:0000A350], Flags: 00000000, ??1LegoNavController@@UAE@XZ +S_PUB32: [0001:00000F00], Flags: 00000000, ?ClassName@IslePathActor@@UBEPBDXZ +S_PUB32: [0001:00009ED0], Flags: 00000000, ?Init@LegoLoadCacheSoundPresenter@@AAEXXZ +S_PUB32: [0001:0003E820], Flags: 00000000, ??4MxVideoParam@@QAEAAV0@ABV0@@Z +S_PUB32: [0001:00018DD0], Flags: 00000000, ?SetSkyColor@LegoVideoManager@@QAEXMMM@Z +S_PUB32: [0001:00032160], Flags: 00000000, ?_Erase@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@IAEXPAU_Node@1@@Z +S_PUB32: [0001:0002DAA0], Flags: 00000000, ?AddToManager@MxLoopingSmkPresenter@@UAEJXZ +S_PUB32: [0001:00015FE0], Flags: 00000000, ??0Vector3Data@@QAE@XZ +S_PUB32: [0001:00041C10], Flags: 00000000, ?MullVectorImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0005:0000039C], Flags: 00000000, __imp__WaitForSingleObject@8 +S_PUB32: [0004:000000F4], Flags: 00000000, ??_C@_04BNEK@Bike?$AA@ +S_PUB32: [0001:0001D500], Flags: 00000000, ??1MxCompositePresenterList@@QAE@XZ +S_PUB32: [0001:00035130], Flags: 00000000, ??_G?$MxListCursor@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:000197C0], Flags: 00000000, ??_G?$MxList@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:0003D440], Flags: 00000000, ?SetVariable@MxVariableTable@@QAEXPBD0@Z +S_PUB32: [0001:00047BD0], Flags: 00000000, _MemPoolShrink@4 +S_PUB32: [0001:0004E532], Flags: 00000000, _MessageBoxA@16 +S_PUB32: [0004:00000EF8], Flags: 00000000, ??_C@_0BH@LDLK@?2lego?2scripts?2isle?2pz5?$AA@ +S_PUB32: [0001:00000BE0], Flags: 00000000, ??0Act3@@QAE@XZ +S_PUB32: [0001:0004FB6B], Flags: 00000000, _exp +S_PUB32: [0001:0005E5A0], Flags: 00000000, ___init_ctype +S_PUB32: [0004:00000F98], Flags: 00000000, ??_C@_0CA@PBFJ@?2lego?2scripts?2hospital?2hospital?$AA@ +S_PUB32: [0004:00002404], Flags: 00000000, ??_C@_0BP@GACL@Requested?5item?5was?5not?5found?4?$AA?$AA@ +S_PUB32: [0001:00043B70], Flags: 00000000, ?SetTexture@MeshImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVTexture@4@@Z +S_PUB32: [0001:00015BF0], Flags: 00000000, ?IsA@LegoRace@@UBEEPBD@Z +S_PUB32: [0001:0002C0A0], Flags: 00000000, ??_EMxEntity@@UAEPAXI@Z +S_PUB32: [0001:000094E0], Flags: 00000000, ?UnRegister@LegoInputManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:0002BE30], Flags: 00000000, ?FUN_100b8390@MxDSSubscriber@@QAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00048D00], Flags: 00000000, @_shi_allocBlock@12 +S_PUB32: [0001:00056E64], Flags: 00000000, __rtzeropop +S_PUB32: [0003:00002A38], Flags: 00000000, ??_7?$MxPtrList@VLegoWorld@@@@6B@ +S_PUB32: [0001:0005AFB0], Flags: 00000000, __strcats +S_PUB32: [0005:00000438], Flags: 00000000, __imp__CreateProcessA@40 +S_PUB32: [0004:00004EB0], Flags: 00000000, ___small_block_heap +S_PUB32: [0003:000039A0], Flags: 00000000, ??_7?$MxList@VMxString@@@@6B@ +S_PUB32: [0004:00001078], Flags: 00000000, ??_C@_0BI@DOK@?2lego?2scripts?2isle?2isle?$AA@ +S_PUB32: [0001:0002B2F0], Flags: 00000000, ??0MxDSSubscriber@@QAE@XZ +S_PUB32: [0004:00003CCC], Flags: 00000000, _MemDefaultPoolBlockSizeFS +S_PUB32: [0001:00030800], Flags: 00000000, ??_EMxObjectFactory@@UAEPAXI@Z +S_PUB32: [0003:00004110], Flags: 00000000, ??_7MxRAMStreamProvider@@6B@ +S_PUB32: [0001:0003E070], Flags: 00000000, ?VTable0x28@MxVideoManager@@UAEJAAVMxVideoParam@@PAUIDirectDraw@@PAUIDirect3D2@@PAUIDirectDrawSurface@@3PAUIDirectDrawClipper@@IE@Z +S_PUB32: [0001:0002D4B0], Flags: 00000000, ?PutData@MxLoopingMIDIPresenter@@UAEJXZ +S_PUB32: [0001:00027580], Flags: 00000000, ?GetSizeOnDisk@MxDSMediaAction@@UAEIXZ +S_PUB32: [0001:00058430], Flags: 00000000, __cenvarg +S_PUB32: [0003:000042B8], Flags: 00000000, ??_7MxRegionCursor@@6B@ +S_PUB32: [0005:000004DC], Flags: 00000000, __imp__TlsGetValue@4 +S_PUB32: [0001:00032B70], Flags: 00000000, ?IsSound3D@MxOmni@@SAEXZ +S_PUB32: [0001:00049BF0], Flags: 00000000, @shi_isBlockInUseSmall@8 +S_PUB32: [0003:00004418], Flags: 00000000, ??_7?$MxCollection@PAVMxRect32@@@@6B@ +S_PUB32: [0004:0000111C], Flags: 00000000, ??_C@_0BL@BMDL@?2lego?2scripts?2build?2jetski?$AA@ +S_PUB32: [0001:000513EC], Flags: 00000000, __fFATN2 +S_PUB32: [0005:0000034C], Flags: 00000000, __imp__CreatePalette@4 +S_PUB32: [0001:00018BE0], Flags: 00000000, ??1MxPresenterListCursor@@UAE@XZ +S_PUB32: [0001:00012900], Flags: 00000000, ?SoundManager@@YAPAVLegoSoundManager@@XZ +S_PUB32: [0002:000035C0], Flags: 00000000, _SmackRemapTables +S_PUB32: [0001:000423C0], Flags: 00000000, ?IsA@Score@@UBEEPBD@Z +S_PUB32: [0001:0001BEB0], Flags: 00000000, ?StopAction@MxBackgroundAudioManager@@QAEXAAVMxParam@@@Z +S_PUB32: [0004:000047AA], Flags: 00000000, __OP_LOG10jmptab +S_PUB32: [0001:00004D10], Flags: 00000000, ??0Jetski@@QAE@XZ +S_PUB32: [0001:00026DE0], Flags: 00000000, ??_GMxDSFile@@UAEPAXI@Z +S_PUB32: [0003:000042A0], Flags: 00000000, ??_7?$MxListCursor@PAUMxRegionLeftRight@@@@6B@ +S_PUB32: [0001:0003C4F0], Flags: 00000000, ?ClassName@MxTransitionManager@@UBEPBDXZ +S_PUB32: [0001:00045B40], Flags: 00000000, ??1ViewportAppData@@QAE@XZ +S_PUB32: [0001:0002C230], Flags: 00000000, ?Init@MxEventManager@@AAEXXZ +S_PUB32: [0004:0000118C], Flags: 00000000, ?g_partPresenterConfig2@@3HA +S_PUB32: [0005:0000037C], Flags: 00000000, __imp__StretchDIBits@52 +S_PUB32: [0001:00039670], Flags: 00000000, ?ClassName@MxStreamController@@UBEPBDXZ +S_PUB32: [0001:00033110], Flags: 00000000, ?Clone@MxPalette@@QAEPAV1@XZ +S_PUB32: [0001:0003D330], Flags: 00000000, ?GetValue@MxVariable@@UAEPAVMxString@@XZ +S_PUB32: [0001:0004C080], Flags: 00000000, _shi_isNT +S_PUB32: [0005:00000434], Flags: 00000000, __imp__LoadLibraryA@4 +S_PUB32: [0004:0000C640], Flags: 00000000, __nstream +S_PUB32: [0001:000068E0], Flags: 00000000, ?IsA@LegoCameraController@@UBEEPBD@Z +S_PUB32: [0001:00006B50], Flags: 00000000, ?IsA@LegoCarBuild@@UBEEPBD@Z +S_PUB32: [0001:00005AA0], Flags: 00000000, ?IsA@LegoAnimationManager@@UBEEPBD@Z +S_PUB32: [0004:00000F2C], Flags: 00000000, ??_C@_0BI@GGLL@?2lego?2scripts?2act3?2act3?$AA@ +S_PUB32: [0001:0002ACF0], Flags: 00000000, ?ReadToBuffer@MxDSSource@@UAEJPAVMxDSBuffer@@@Z +S_PUB32: [0001:0001F940], Flags: 00000000, ?EnumerateErrorToString@MxDeviceEnumerate@@QAEPBDJ@Z +S_PUB32: [0001:00059FD0], Flags: 00000000, ___sbh_release_region +S_PUB32: [0001:0003A910], Flags: 00000000, ?ClassName@MxStreamer@@UBEPBDXZ +S_PUB32: [0001:00047540], Flags: 00000000, ?IntrinsicImportance@ViewROI@@UBEMXZ +S_PUB32: [0001:000192D0], Flags: 00000000, ?Compare@?$MxCollection@PAVLegoPathController@@@@UAECPAVLegoPathController@@0@Z +S_PUB32: [0001:00015120], Flags: 00000000, ??_GLegoMemoryStream@@UAEPAXI@Z +S_PUB32: [0001:0003BD60], Flags: 00000000, ??_EMxTickleThread@@UAEPAXI@Z +S_PUB32: [0001:00012A20], Flags: 00000000, ?PlayMusic@@YAXI@Z +S_PUB32: [0005:00000414], Flags: 00000000, __imp__MapViewOfFile@20 +S_PUB32: [0001:0001E130], Flags: 00000000, ?VTable0x68@MxControlPresenter@@UAEXE@Z +S_PUB32: [0001:0001A720], Flags: 00000000, ??_GMxActionNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:000267B0], Flags: 00000000, ?FUN_100c6f80@MxDSBuffer@@QAEXI@Z +S_PUB32: [0003:00004400], Flags: 00000000, ??_7MxRectList@@6B@ +S_PUB32: [0001:00036FD0], Flags: 00000000, ?Init@MxSemaphore@@UAEJII@Z +S_PUB32: [0001:000080D0], Flags: 00000000, ?ROIHandlerFunction@@YAEPAD0I@Z +S_PUB32: [0001:000119F0], Flags: 00000000, ??_GLegoPartPresenter@@UAEPAXI@Z +S_PUB32: [0003:00005780], Flags: 00000000, ??_C@_06FLIB@greece?$AA@ +S_PUB32: [0001:000013C0], Flags: 00000000, ?ClassName@AmbulanceMissionState@@UBEPBDXZ +S_PUB32: [0001:000016A0], Flags: 00000000, ?VTable0x1c@AnimState@@UAEJPAVLegoFileStream@@@Z +S_PUB32: [0001:00036FC0], Flags: 00000000, ??0MxSemaphore@@QAE@XZ +S_PUB32: [0001:000409B0], Flags: 00000000, ??0RaceCar@@QAE@XZ +S_PUB32: [0001:0003AB60], Flags: 00000000, ??1MxStreamer@@UAE@XZ +S_PUB32: [0001:00019A70], Flags: 00000000, ?VTable0x54@LegoWorld@@UAEXXZ +S_PUB32: [0001:00004CB0], Flags: 00000000, ?Create@IslePathActor@@UAEJAAVMxDSObject@@@Z +S_PUB32: [0001:00015290], Flags: 00000000, ??_ELegoPathActor@@UAEPAXI@Z +S_PUB32: [0004:00001188], Flags: 00000000, ?g_partPresenterConfig1@@3HA +S_PUB32: [0003:00005038], Flags: 00000000, ??_C@_0BK@JEGK@IsProcessorFeaturePresent?$AA@ +S_PUB32: [0001:000588D0], Flags: 00000000, __mbtowc_lk +S_PUB32: [0001:00057510], Flags: 00000000, __wctomb_lk +S_PUB32: [0001:0004B670], Flags: 00000000, @_shi_sysSizePage@4 +S_PUB32: [0001:00026960], Flags: 00000000, ?ReturnE@MxDSChunk@@SAIXZ +S_PUB32: [0001:00015E10], Flags: 00000000, ??0LegoROI@@QAE@PAVRenderer@Tgl@@PAVViewLODList@@H@Z +S_PUB32: [0004:0000629C], Flags: 00000000, ___lconv_static_null +S_PUB32: [0001:000455F0], Flags: 00000000, ?SetTextureDefaultColorCount@RendererImpl@TglImpl@@UAE?AW4Result@Tgl@@K@Z +S_PUB32: [0001:00039900], Flags: 00000000, ??1MxStreamController@@UAE@XZ +S_PUB32: [0005:00000528], Flags: 00000000, __imp__FreeEnvironmentStringsA@4 +S_PUB32: [0001:0002C680], Flags: 00000000, ?ReadyTickle@MxEventPresenter@@UAEXXZ +S_PUB32: [0001:00048590], Flags: 00000000, _MemAllocFS@4 +S_PUB32: [0004:000009DC], Flags: 00000000, ??_C@_01PCFE@?2?$AA@ +S_PUB32: [0001:0002EB90], Flags: 00000000, ??0MxMIDIPresenter@@QAE@XZ +S_PUB32: [0001:00018390], Flags: 00000000, ??_G?$MxList@PAVMxUnknown100d7c88@@@@UAEPAXI@Z +S_PUB32: [0003:000057D4], Flags: 00000000, ??_C@_05NMPB@china?$AA@ +S_PUB32: [0001:0000C550], Flags: 00000000, ?IsA@MxObjectFactory@@UBEEPBD@Z +S_PUB32: [0001:000355E0], Flags: 00000000, ??1?$MxPtrList@UMxRegionLeftRight@@@@UAE@XZ +S_PUB32: [0004:000002F4], Flags: 00000000, ?g_strACTION@@3PBDB +S_PUB32: [0001:00033610], Flags: 00000000, ??1MxPresenter@@UAE@XZ +S_PUB32: [0001:0004FFF0], Flags: 00000000, ?_query_new_handler@@YAP6AHI@ZXZ +S_PUB32: [0004:0000B5C7], Flags: 00000000, ??_B?1???id@?$ctype@D@@$D@@9@9 +S_PUB32: [0001:00019700], Flags: 00000000, ??1?$MxPtrList@VMxPresenter@@@@UAE@XZ +S_PUB32: [0004:0000B5C5], Flags: 00000000, ??_B?1???id@?$ctype@G@@$D@@9@9 +S_PUB32: [0001:0003E4D0], Flags: 00000000, ?InvalidateRect@MxVideoManager@@QAEXAAVMxRect32@@@Z +S_PUB32: [0003:000000D8], Flags: 00000000, ??_7Act2Brick@@6B@ +S_PUB32: [0001:000290F0], Flags: 00000000, ?CopyFrom@MxDSParallelAction@@QAEXAAV1@@Z +S_PUB32: [0003:00005690], Flags: 00000000, ??_C@_0M@HNHN@south?5korea?$AA@ +S_PUB32: [0004:00001D90], Flags: 00000000, ??_C@_0CO@JGCA@Height?5requested?5by?5DirectDraw?5i@ +S_PUB32: [0004:000014C0], Flags: 00000000, ??_C@_03EHIM@run?$AA@ +S_PUB32: [0001:00004B90], Flags: 00000000, ?VTable0x6c@Isle@@UAEXPAVIslePathActor@@@Z +S_PUB32: [0005:000003C4], Flags: 00000000, __imp__CreateSemaphoreA@16 +S_PUB32: [0001:000109C0], Flags: 00000000, ?ClassName@ScoreState@@UBEPBDXZ +S_PUB32: [0001:00040BD0], Flags: 00000000, ??1RaceCar@@UAE@XZ +S_PUB32: [0001:0003D010], Flags: 00000000, ?SetWaitIndicator@MxTransitionManager@@QAEXPAVMxVideoPresenter@@@Z +S_PUB32: [0001:00051150], Flags: 00000000, __cftof +S_PUB32: [0001:00039340], Flags: 00000000, ?IntoTime@MxStreamChunk@@SAPAJPAE@Z +S_PUB32: [0001:00051280], Flags: 00000000, __cftog +S_PUB32: [0001:000235A0], Flags: 00000000, ??1MxSemaphore@@QAE@XZ +S_PUB32: [0004:0000058C], Flags: 00000000, ??_C@_0L@ILJD@c_chseaty0?$AA@ +S_PUB32: [0001:00050FE0], Flags: 00000000, __cftoe +S_PUB32: [0001:00030200], Flags: 00000000, ?Register@MxNotificationManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:00040420], Flags: 00000000, ?GetState@PizzaMissionState@@AAEPAUPizzaMissionStateEntry@@E@Z +S_PUB32: [0004:00003CFC], Flags: 00000000, __imp___heapwalk +S_PUB32: [0001:0004E4E4], Flags: 00000000, _SetTimer@16 +S_PUB32: [0001:00020CE0], Flags: 00000000, ?CreateTextSurfaces@MxDirectDraw@@QAEHXZ +S_PUB32: [0003:00004F40], Flags: 00000000, _IID_IDirect3DRMWinDevice +S_PUB32: [0001:000273E0], Flags: 00000000, ??_GMxDSMediaAction@@UAEPAXI@Z +S_PUB32: [0001:0004E3B2], Flags: 00000000, _timeGetTime@0 +S_PUB32: [0003:00005A90], Flags: 00000000, ??_C@_03MCKK@eng?$AA@ +S_PUB32: [0004:00001640], Flags: 00000000, ??_C@_0BJ@JIIL@Create?5D3D?5device?5failed?$AA@ +S_PUB32: [0001:000473E0], Flags: 00000000, ??_GViewLODList@@MAEPAXI@Z +S_PUB32: [0001:000372E0], Flags: 00000000, ?Destroy@MxSmack@@SAXPAU1@@Z +S_PUB32: [0001:0002BE00], Flags: 00000000, ?FUN_100b8360@MxDSSubscriber@@QAEPAVMxStreamChunk@@XZ +S_PUB32: [0001:00039320], Flags: 00000000, ?IntoFlags@MxStreamChunk@@SAPAGPAE@Z +S_PUB32: [0001:0004E4BA], Flags: 00000000, _GetCurrentProcessId@0 +S_PUB32: [0001:00041110], Flags: 00000000, ??_GRadioState@@UAEPAXI@Z +S_PUB32: [0001:00018E50], Flags: 00000000, ?OverrideSkyColor@LegoVideoManager@@QAEXE@Z +S_PUB32: [0001:00044910], Flags: 00000000, ??_GView@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044830], Flags: 00000000, ??_GViewImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0004:00002F8C], Flags: 00000000, ??_C@_0DE@LCDA@DirectDraw?5does?5not?5support?5the?5@ +S_PUB32: [0001:00032260], Flags: 00000000, ?Compare@?$MxCollection@PAVMxVariable@@@@UAECPAVMxVariable@@0@Z +S_PUB32: [0001:00062772], Flags: 00000000, _IsValidCodePage@4 +S_PUB32: [0001:00006F60], Flags: 00000000, ??0LegoControlManager@@QAE@XZ +S_PUB32: [0001:000274D0], Flags: 00000000, ??4MxDSMediaAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0005:000003F4], Flags: 00000000, __imp__MapViewOfFileEx@24 +S_PUB32: [0001:0002ED70], Flags: 00000000, ??1MxMIDIPresenter@@UAE@XZ +S_PUB32: [0003:00001440], Flags: 00000000, ??_7LegoBuildingManager@@6B@ +S_PUB32: [0005:000003C0], Flags: 00000000, __imp__GetFileSize@8 +S_PUB32: [0001:00040EB0], Flags: 00000000, ?IsA@Radio@@UBEEPBD@Z +S_PUB32: [0001:00025260], Flags: 00000000, ??_GMxDSAction@@UAEPAXI@Z +S_PUB32: [0001:0005A5C0], Flags: 00000000, ___sbh_resize_block +S_PUB32: [0001:00033F70], Flags: 00000000, ?VTable0x20@MxRAMStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0003:00005148], Flags: 00000000, ??_C@_02PIMC@?$AN?6?$AA@ +S_PUB32: [0001:00000100], Flags: 00000000, ??1MxStopWatch@@QAE@XZ +S_PUB32: [0001:000016B0], Flags: 00000000, ?SetFlag@AnimState@@UAEEXZ +S_PUB32: [0001:000624D0], Flags: 00000000, _strlen +S_PUB32: [0003:00004C50], Flags: 00000000, ??_7Group@Tgl@@6B@ +S_PUB32: [0003:00004C88], Flags: 00000000, ??_7GroupImpl@TglImpl@@6B@ +S_PUB32: [0001:00023760], Flags: 00000000, ??1MxDiskStreamProvider@@UAE@XZ +S_PUB32: [0003:00001E80], Flags: 00000000, ??_7LegoJetski@@6B@ +S_PUB32: [0001:00015310], Flags: 00000000, ?VTable0x88@LegoPathActor@@UAEXXZ +S_PUB32: [0001:00050E00], Flags: 00000000, __setdefaultprecision +S_PUB32: [0003:000057CC], Flags: 00000000, ??_C@_03ELPA@cze?$AA@ +S_PUB32: [0001:00050D30], Flags: 00000000, __freeptd +S_PUB32: [0001:0004E38E], Flags: 00000000, _joyGetPosEx@8 +S_PUB32: [0001:00032CF0], Flags: 00000000, ??0MxOmniCreateFlags@@QAE@XZ +S_PUB32: [0003:00005848], Flags: 00000000, ??_C@_05DEAI@swiss?$AA@ +S_PUB32: [0001:0004D2D0], Flags: 00000000, @_shi_sysReportError@16 +S_PUB32: [0004:0000361C], Flags: 00000000, ??_C@_08PENO@MxDSFile?$AA@ +S_PUB32: [0001:00039B70], Flags: 00000000, ?Open@MxStreamController@@UAEJPBD@Z +S_PUB32: [0001:00039680], Flags: 00000000, ?IsA@MxStreamController@@UBEEPBD@Z +S_PUB32: [0001:00014070], Flags: 00000000, ??_EGifManager@@UAEPAXI@Z +S_PUB32: [0001:00029080], Flags: 00000000, ??_EMxDSParallelAction@@UAEPAXI@Z +S_PUB32: [0001:0003E950], Flags: 00000000, ?VTable0x78@MxVideoPresenter@@UAEPAUIDirectDrawSurface@@XZ +S_PUB32: [0001:0003D990], Flags: 00000000, ?GetVariable@MxVariableTable@@QAEPBDPBD@Z +S_PUB32: [0001:00038010], Flags: 00000000, ??_G?$MxPtrListCursor@VMxRect32@@@@UAEPAXI@Z +S_PUB32: [0001:00034BC0], Flags: 00000000, ?VTable0x18@MxRegion@@UAEXAAVMxRect32@@@Z +S_PUB32: [0001:00034350], Flags: 00000000, ?GetFileSize@MxRAMStreamProvider@@UAEIXZ +S_PUB32: [0001:000125E0], Flags: 00000000, ??_GPoliceEntity@@UAEPAXI@Z +S_PUB32: [0001:000193B0], Flags: 00000000, ??_E?$MxCollection@PAVLegoPathController@@@@UAEPAXI@Z +S_PUB32: [0001:0001B6C0], Flags: 00000000, ?Destroy@MxAudioManager@@UAEXXZ +S_PUB32: [0001:0002F4D0], Flags: 00000000, ?IsA@MxMusicPresenter@@UBEEPBD@Z +S_PUB32: [0004:00000BAC], Flags: 00000000, ??_C@_0BB@IKCH@BeachHouseEntity?$AA@ +S_PUB32: [0005:000003D8], Flags: 00000000, __imp__VirtualFree@12 +S_PUB32: [0001:00000930], Flags: 00000000, ?VTable0x54@LegoActor@@UAEXM@Z +S_PUB32: [0001:0002C700], Flags: 00000000, ?PutData@MxEventPresenter@@UAEJXZ +S_PUB32: [0001:0002B5C0], Flags: 00000000, ??_E?$MxList@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0003:00003408], Flags: 00000000, ??_7MxCompositePresenter@@6B@ +S_PUB32: [0001:0000FDC0], Flags: 00000000, ??_ELegoActionControlPresenter@@UAEPAXI@Z +S_PUB32: [0001:000062B0], Flags: 00000000, ??0LegoBackgroundColor@@QAE@PBD0@Z +S_PUB32: [0001:00003D30], Flags: 00000000, ?ClassName@HospitalState@@UBEPBDXZ +S_PUB32: [0001:000055F0], Flags: 00000000, ??1Lego3DView@@UAE@XZ +S_PUB32: [0001:0003F890], Flags: 00000000, ?Destroy@MxWavePresenter@@IAEXE@Z +S_PUB32: [0001:00037D70], Flags: 00000000, ??_E?$MxList@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0003:00003008], Flags: 00000000, ??_7?$MxListCursor@PAVMxPresenter@@@@6B@ +S_PUB32: [0003:00005BF4], Flags: 00000000, ??_C@_07IAMM@October?$AA@ +S_PUB32: [0001:0001EE10], Flags: 00000000, ??1?$List@UMxDevice@@@@QAE@XZ +S_PUB32: [0003:00003510], Flags: 00000000, ??_7MxDirectDraw@@6B@ +S_PUB32: [0001:00042FB0], Flags: 00000000, ?FillArea@Score@@QAEXIIF@Z +S_PUB32: [0001:0002C020], Flags: 00000000, ?IsA@MxEntity@@UBEEPBD@Z +S_PUB32: [0001:00010CB0], Flags: 00000000, ?IsA@Doors@@UBEEPBD@Z +S_PUB32: [0001:000422E0], Flags: 00000000, ??1RegistrationBook@@UAE@XZ +S_PUB32: [0004:000010E4], Flags: 00000000, ??_C@_0BL@FBHO@?2lego?2scripts?2race?2carrace?$AA@ +S_PUB32: [0005:0000055C], Flags: 00000000, __imp__ReleaseDC@8 +S_PUB32: [0001:000157B0], Flags: 00000000, ?Destroy@LegoPathPresenter@@IAEXE@Z +S_PUB32: [0004:00000F44], Flags: 00000000, ??_C@_0BM@NJEF@?2lego?2scripts?2act2?2act2main?$AA@ +S_PUB32: [0001:000023B0], Flags: 00000000, ?IsA@GasStation@@UBEEPBD@Z +S_PUB32: [0004:00002468], Flags: 00000000, ??_C@_0GH@JAAN@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:0001C2D0], Flags: 00000000, ?VTable0x28@MxBitmap@@UAEHH@Z +S_PUB32: [0001:0004AD30], Flags: 00000000, @_shi_sysAllocNamedShared@32 +S_PUB32: [0001:00020BA0], Flags: 00000000, ?TextToTextSurface@MxDirectDraw@@QAEHPBDPAUIDirectDrawSurface@@AAUtagSIZE@@@Z +S_PUB32: [0003:00003E20], Flags: 00000000, ??_7MxMIDIPresenter@@6B@ +S_PUB32: [0003:000059F4], Flags: 00000000, ??_C@_03LBAN@frb?$AA@ +S_PUB32: [0001:00019750], Flags: 00000000, ??_E?$MxCollection@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:00010F30], Flags: 00000000, ?ClassName@BumpBouy@@UBEPBDXZ +S_PUB32: [0003:000057E0], Flags: 00000000, ??_C@_06CJAO@canada?$AA@ +S_PUB32: [0001:00011960], Flags: 00000000, ??_GLegoTexturePresenter@@UAEPAXI@Z +S_PUB32: [0004:00004090], Flags: 00000000, __OP_ATANjmptab +S_PUB32: [0004:00001828], Flags: 00000000, ??_C@_0CE@ENAO@Error?5getting?5a?5surface?5descript@ +S_PUB32: [0004:00001594], Flags: 00000000, ??_C@_0BN@LEIL@Creation?5of?5IDirect3D?5failed?$AA@ +S_PUB32: [0001:0006277E], Flags: 00000000, _GetLocaleInfoA@16 +S_PUB32: [0001:00057210], Flags: 00000000, ___crtGetStringTypeA +S_PUB32: [0001:0003AE50], Flags: 00000000, ??_GMxRAMStreamController@@UAEPAXI@Z +S_PUB32: [0001:00011B40], Flags: 00000000, ??1LegoCarRaceActor@@UAE@XZ +S_PUB32: [0001:00056F06], Flags: 00000000, __rtindfpop +S_PUB32: [0001:00026720], Flags: 00000000, ?CalcBytesRemaining@MxDSBuffer@@QAEJPAE@Z +S_PUB32: [0001:000192F0], Flags: 00000000, ??_ELegoPathControllerList@@UAEPAXI@Z +S_PUB32: [0001:0004E3B8], Flags: 00000000, _D3DRMCreateColorRGBA@16 +S_PUB32: [0004:00000AFC], Flags: 00000000, ??_C@_0BK@NGDG@MxCompositeMediaPresenter?$AA@ +S_PUB32: [0001:0002F2E0], Flags: 00000000, ?SetVolume@MxMusicManager@@UAEXH@Z +S_PUB32: [0001:00007E50], Flags: 00000000, ?SetSavePath@LegoGameState@@QAEXPAD@Z +S_PUB32: [0001:00008A30], Flags: 00000000, ??1LegoInputManager@@UAE@XZ +S_PUB32: [0001:000271D0], Flags: 00000000, ?Read@MxDSFile@@UAEJPAEK@Z +S_PUB32: [0001:0002C530], Flags: 00000000, ??_GMxEventPresenter@@UAEPAXI@Z +S_PUB32: [0001:00039810], Flags: 00000000, ??1?$MxStreamList@PAVMxNextActionDataStart@@@@QAE@XZ +S_PUB32: [0001:000456B0], Flags: 00000000, ??0TglD3DRMIMAGE@TglImpl@@QAE@HHHPAXHHPAUPaletteEntry@Tgl@@@Z +S_PUB32: [0004:00000CF4], Flags: 00000000, ??_C@_0BF@GPNE@LegoPalettePresenter?$AA@ +S_PUB32: [0004:00004678], Flags: 00000000, __adbgmsg +S_PUB32: [0003:00000790], Flags: 00000000, ??_7DuneBuggy@@6B@ +S_PUB32: [0004:0000434C], Flags: 00000000, ___winitenv +S_PUB32: [0001:0001A370], Flags: 00000000, ??0Motorcycle@@QAE@XZ +S_PUB32: [0001:00034120], Flags: 00000000, ?DeserializeObject@MxRAMStreamController@@AAEJAAVMxDSStreamingAction@@@Z +S_PUB32: [0004:00005964], Flags: 00000000, __fmode +S_PUB32: [0004:00003C6C], Flags: 00000000, __shi_compactPoolFn +S_PUB32: [0001:000552AE], Flags: 00000000, __ffexpm1 +S_PUB32: [0004:00000384], Flags: 00000000, ??_C@_0P@LPPM@InfocenterDoor?$AA@ +S_PUB32: [0003:000036F0], Flags: 00000000, ??_7MxDSEvent@@6B@ +S_PUB32: [0001:0002C5B0], Flags: 00000000, ?Init@MxEventPresenter@@AAEXXZ +S_PUB32: [0001:00050000], Flags: 00000000, __callnewh +S_PUB32: [0001:0002B000], Flags: 00000000, ??0MxDSStreamingAction@@QAE@AAVMxDSAction@@I@Z +S_PUB32: [0001:0000F4B0], Flags: 00000000, ??0Vector2Impl@@QAE@PAM@Z +S_PUB32: [0003:00005370], Flags: 00000000, ??_C@_0CK@OIBL@R6008?$AN?6?9?5not?5enough?5space?5for?5ar@ +S_PUB32: [0004:00004360], Flags: 00000000, __C_Exit_Done +S_PUB32: [0005:00000534], Flags: 00000000, __imp__MessageBeep@4 +S_PUB32: [0003:0000515C], Flags: 00000000, ??_C@_0N@OMLL@SING?5error?$AN?6?$AA@ +S_PUB32: [0003:000057D0], Flags: 00000000, ??_C@_03KHAN@chn?$AA@ +S_PUB32: [0001:000554C0], Flags: 00000000, __heap_term +S_PUB32: [0004:00002BE8], Flags: 00000000, ??_C@_0CM@OMAB@Surface?5doesn?8t?5currently?5have?5a@ +S_PUB32: [0001:00018F30], Flags: 00000000, ??1?$MxList@PAVMxUnknown100d7c88@@@@UAE@XZ +S_PUB32: [0001:0002FBA0], Flags: 00000000, ?Send@MxNotificationManager@@QAEJPAVMxCore@@PAVMxNotificationParam@@@Z +S_PUB32: [0001:0003C890], Flags: 00000000, ?TransitionNone@MxTransitionManager@@AAEXXZ +S_PUB32: [0001:00047A50], Flags: 00000000, __heapused +S_PUB32: [0001:000438A0], Flags: 00000000, ??_ETexture@Tgl@@UAEPAXI@Z +S_PUB32: [0003:000054E4], Flags: 00000000, ??_C@_0L@CFLC@LC_COLLATE?$AA@ +S_PUB32: [0001:000437C0], Flags: 00000000, ??_ETextureImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00012910], Flags: 00000000, ?VideoManager@@YAPAVLegoVideoManager@@XZ +S_PUB32: [0001:0004FB50], Flags: 00000000, _pow +S_PUB32: [0001:000081B0], Flags: 00000000, ?GetState@LegoGameState@@QAEPAVLegoState@@PBD@Z +S_PUB32: [0001:000356A0], Flags: 00000000, ??_E?$MxList@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0004:000065A8], Flags: 00000000, __dstbias +S_PUB32: [0001:00019960], Flags: 00000000, ?VTable0x64@LegoWorld@@UAEEXZ +S_PUB32: [0004:000009BC], Flags: 00000000, ??_C@_04CDJO@c_?$CFs?$AA@ +S_PUB32: [0003:00003300], Flags: 00000000, ??_7MxStartActionNotificationParam@@6B@ +S_PUB32: [0004:00000E48], Flags: 00000000, ?g_pz5Script@@3PAVMxAtomId@@A +S_PUB32: [0001:0002AF70], Flags: 00000000, ?Clone@MxDSStill@@UAEPAVMxDSAction@@XZ +S_PUB32: [0001:00043A40], Flags: 00000000, ?SetTransformation@LightImpl@TglImpl@@UAE?AW4Result@Tgl@@ABVFloatMatrix4@4@@Z +S_PUB32: [0001:000420B0], Flags: 00000000, ?DotImpl@Vector3Impl@@UBEMPAM0@Z +S_PUB32: [0001:00056820], Flags: 00000000, __ld12cvt +S_PUB32: [0001:00029850], Flags: 00000000, ??_GMxStringList@@UAEPAXI@Z +S_PUB32: [0001:0004B500], Flags: 00000000, @_shi_sysFreePool@8 +S_PUB32: [0001:00024130], Flags: 00000000, ??_GMxDisplaySurface@@UAEPAXI@Z +S_PUB32: [0001:00034080], Flags: 00000000, ?VTable0x24@MxRAMStreamController@@UAEJPAVMxDSAction@@@Z +S_PUB32: [0001:00052EE0], Flags: 00000000, __write_lk +S_PUB32: [0005:00000078], Flags: 00000000, __IMPORT_DESCRIPTOR_USER32 +S_PUB32: [0004:00001738], Flags: 00000000, ??_C@_0BH@NMBF@?$CFd?50x?$CFx?50x?$CFx?50x?$CFx?50x?$CFx?$AA@ +S_PUB32: [0001:000042C0], Flags: 00000000, ??0InfocenterState@@QAE@XZ +S_PUB32: [0001:000591B7], Flags: 00000000, __adj_fdiv_r +S_PUB32: [0004:0000C758], Flags: 00000000, ___onexitbegin +S_PUB32: [0001:000626C4], Flags: 00000000, _GetModuleFileNameA@12 +S_PUB32: [0001:00043620], Flags: 00000000, ?SetColor@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@MMMM@Z +S_PUB32: [0004:0000433C], Flags: 00000000, ___wargv +S_PUB32: [0001:00023300], Flags: 00000000, ?StartWithTarget@MxDiskStreamProviderThread@@QAEJPAVMxDiskStreamProvider@@@Z +S_PUB32: [0003:00003B68], Flags: 00000000, ??_7MxDSSubscriber@@6B@ +S_PUB32: [0001:00015320], Flags: 00000000, ?VTable0x84@LegoPathActor@@UAEXXZ +S_PUB32: [0004:00002384], Flags: 00000000, ??_C@_0HN@FFJN@Surface?5was?5not?5locked?4?5?5An?5atte@ +S_PUB32: [0001:00006010], Flags: 00000000, ?IsA@MxVideoPresenter@@UBEEPBD@Z +S_PUB32: [0003:00002C68], Flags: 00000000, ??_7LegoPhonemePresenter@@6B@ +S_PUB32: [0001:0005B700], Flags: 00000000, ___shr_12 +S_PUB32: [0003:00003358], Flags: 00000000, ??_7MxBitmap@@6B@ +S_PUB32: [0003:00005660], Flags: 00000000, ??_C@_0M@EKGN@switzerland?$AA@ +S_PUB32: [0003:00001140], Flags: 00000000, ??_7Lego3DManager@@6B@ +S_PUB32: [0005:00000014], Flags: 00000000, __IMPORT_DESCRIPTOR_DSOUND +S_PUB32: [0004:00000BCC], Flags: 00000000, ??_C@_09MEPG@Act3Actor?$AA@ +S_PUB32: [0001:0000FCE0], Flags: 00000000, ?IsA@LegoActionControlPresenter@@UBEEPBD@Z +S_PUB32: [0003:00001610], Flags: 00000000, ??_7LegoFlcTexturePresenter@@6B@ +S_PUB32: [0003:00005A08], Flags: 00000000, ??_C@_03KNMC@esp?$AA@ +S_PUB32: [0001:00000940], Flags: 00000000, ?VTable0x58@LegoActor@@UAEXM@Z +S_PUB32: [0001:00008A20], Flags: 00000000, ?Tickle@LegoInputManager@@UAEJXZ +S_PUB32: [0004:00000D54], Flags: 00000000, ??_C@_0BL@DCKP@LegoActionControlPresenter?$AA@ +S_PUB32: [0001:00031180], Flags: 00000000, ??_GMxStillPresenter@@UAEPAXI@Z +S_PUB32: [0001:00015E00], Flags: 00000000, ?configureLegoROI@LegoROI@@SAXH@Z +S_PUB32: [0001:00039310], Flags: 00000000, ?SetBuffer@MxStreamChunk@@QAEXPAVMxDSBuffer@@@Z +S_PUB32: [0001:000065A0], Flags: 00000000, ?configureLegoBuildingManager@LegoBuildingManager@@SAXH@Z +S_PUB32: [0001:0003BAC0], Flags: 00000000, ??4MxString@@QAEABV0@PBD@Z +S_PUB32: [0003:000011C8], Flags: 00000000, ??_7LegoAnimationManager@@6B@ +S_PUB32: [0001:00025520], Flags: 00000000, ?GetElapsedTime@MxDSAction@@UAEJXZ +S_PUB32: [0001:00043690], Flags: 00000000, ?SetTexture@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVTexture@4@@Z +S_PUB32: [0001:0004BD50], Flags: 00000000, __shi_enterCriticalSection@0 +S_PUB32: [0001:0001D200], Flags: 00000000, ?PutData@MxCompositeMediaPresenter@@UAEJXZ +S_PUB32: [0004:00003058], Flags: 00000000, ??_C@_0EP@JFNC@This?5surface?5can?5not?5be?5restored@ +S_PUB32: [0001:00036410], Flags: 00000000, ?DeleteEntry@?$MxList@PAUMxRegionLeftRight@@@@IAEXPAV?$MxListEntry@PAUMxRegionLeftRight@@@@@Z +S_PUB32: [0004:000003E4], Flags: 00000000, ??_C@_08GHHG@Pizzeria?$AA@ +S_PUB32: [0003:00005A94], Flags: 00000000, ??_C@_03GIPG@enc?$AA@ +S_PUB32: [0004:00002CAC], Flags: 00000000, ??_C@_0BI@FOAO@No?5cliplist?5available?4?$AA?$AA@ +S_PUB32: [0003:00000700], Flags: 00000000, ??_7CarRace@@6B@ +S_PUB32: [0005:0000035C], Flags: 00000000, __imp__GetTextExtentPointA@16 +S_PUB32: [0003:00005724], Flags: 00000000, ??_C@_03HEJJ@mex?$AA@ +S_PUB32: [0001:00029520], Flags: 00000000, ??_E?$MxCollection@VMxString@@@@UAEPAXI@Z +S_PUB32: [0004:00001E90], Flags: 00000000, ??_C@_0DM@FHGC@Access?5to?5surface?5refused?5becaus@ +S_PUB32: [0001:00002B30], Flags: 00000000, ?GetState@Helicopter@@AAEXXZ +S_PUB32: [0003:00005658], Flags: 00000000, ??_C@_06OBJC@taiwan?$AA@ +S_PUB32: [0003:0000587C], Flags: 00000000, ??_C@_07EFLC@spanish?$AA@ +S_PUB32: [0001:00043A20], Flags: 00000000, ?Unknown@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@XZ +S_PUB32: [0004:000030A8], Flags: 00000000, ??_C@_0GO@OLEA@HWND?5used?5by?5DirectDraw?5Cooperat@ +S_PUB32: [0001:0002AB70], Flags: 00000000, ??1MxDSSound@@UAE@XZ +S_PUB32: [0004:00003C20], Flags: 00000000, ?g_userMaxLod@@3MA +S_PUB32: [0001:00004420], Flags: 00000000, ??1InfocenterState@@UAE@XZ +S_PUB32: [0001:000277A0], Flags: 00000000, ??1?$MxCollection@PAVMxDSAction@@@@UAE@XZ +S_PUB32: [0001:000150F0], Flags: 00000000, ??1LegoStream@@UAE@XZ +S_PUB32: [0001:0001E920], Flags: 00000000, ?SetDevice@MxDirect3D@@QAEHAAVMxDeviceEnumerate@@PAUMxDriver@@PAUMxDevice@@@Z +S_PUB32: [0005:0000040C], Flags: 00000000, __imp__VirtualQueryEx@16 +S_PUB32: [0001:000417A0], Flags: 00000000, ?UpdateMaxLOD@RealtimeView@@SAXXZ +S_PUB32: [0004:000012C8], Flags: 00000000, ?g_roiColorAliases@@3PAUROIColorAlias@@A +S_PUB32: [0001:00000200], Flags: 00000000, ?Destroy@TglSurface@@UAEXXZ +S_PUB32: [0001:00014EC0], Flags: 00000000, ??_GLegoPalettePresenter@@UAEPAXI@Z +S_PUB32: [0003:00001838], Flags: 00000000, ??_7?$MxList@VLegoEventNotificationParam@@@@6B@ +S_PUB32: [0004:00003C84], Flags: 00000000, __shi_mutexMovLockCount +S_PUB32: [0004:00001DE8], Flags: 00000000, ??_C@_0KG@HAEB@Access?5to?5this?5surface?5is?5being?5@ +S_PUB32: [0003:00004518], Flags: 00000000, ??_7MxStreamerNotification@@6B@ +S_PUB32: [0001:0004E460], Flags: 00000000, _HeapAlloc@12 +S_PUB32: [0001:00016BD0], Flags: 00000000, ?Seek@LegoFileStream@@UAEJI@Z +S_PUB32: [0001:00015A40], Flags: 00000000, ?ClassName@LegoPlantManager@@UBEPBDXZ +S_PUB32: [0001:00019590], Flags: 00000000, ?Compare@MxPresenterList@@UAECPAVMxPresenter@@0@Z +S_PUB32: [0001:00056230], Flags: 00000000, __controlfp +S_PUB32: [0001:00007620], Flags: 00000000, ?Destroy@LegoEntityPresenter@@UAEXXZ +S_PUB32: [0001:0003B450], Flags: 00000000, ?FUN_100b9b30@MxStreamer@@QAEEAAVMxDSObject@@@Z +S_PUB32: [0001:00034AF0], Flags: 00000000, ?VTable0x20@MxRegion@@UAEEXZ +S_PUB32: [0001:0003FA70], Flags: 00000000, ?ReadyTickle@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:00000180], Flags: 00000000, ??1TglSurface@@UAE@XZ +S_PUB32: [0001:000234E0], Flags: 00000000, ??_EMxStreamProvider@@UAEPAXI@Z +S_PUB32: [0001:0002E8F0], Flags: 00000000, ?RepeatingTickle@MxMediaPresenter@@UAEXXZ +S_PUB32: [0001:0001BFA0], Flags: 00000000, ?PlayMusic@MxBackgroundAudioManager@@QAEJAAVMxDSAction@@II@Z +S_PUB32: [0001:0002F670], Flags: 00000000, ?Destroy@MxMusicPresenter@@AAEXE@Z +S_PUB32: [0004:00000454], Flags: 00000000, ??_C@_0M@PMFK@MxPresenter?$AA@ +S_PUB32: [0001:00036190], Flags: 00000000, ??1?$MxList@PAUMxRegionLeftRight@@@@UAE@XZ +S_PUB32: [0001:00008A00], Flags: 00000000, ??_ELegoInputManager@@UAEPAXI@Z +S_PUB32: [0001:00060680], Flags: 00000000, _localeconv +S_PUB32: [0001:000573C0], Flags: 00000000, ___initstdio +S_PUB32: [0001:000018E0], Flags: 00000000, ??_EBike@@UAEPAXI@Z +S_PUB32: [0001:00028C20], Flags: 00000000, ??0MxDSObjectAction@@QAE@XZ +S_PUB32: [0003:00001F50], Flags: 00000000, ??_7Act3State@@6B@ +S_PUB32: [0001:000107F0], Flags: 00000000, ?IsA@IsleActor@@UBEEPBD@Z +S_PUB32: [0001:000313B0], Flags: 00000000, ?Streamer@@YAPAVMxStreamer@@XZ +S_PUB32: [0001:00019E60], Flags: 00000000, ??_ELegoWorldPresenter@@UAEPAXI@Z +S_PUB32: [0001:00019B70], Flags: 00000000, ?FUN_10072980@LegoWorld@@QAEEIAAVVector3Data@@00@Z +S_PUB32: [0001:0003AD90], Flags: 00000000, ?ClassName@MxRAMStreamController@@UBEPBDXZ +S_PUB32: [0001:000346C0], Flags: 00000000, ??0MxRegion@@QAE@XZ +S_PUB32: [0001:00043100], Flags: 00000000, ?SetFlag@ScoreState@@UAEEXZ +S_PUB32: [0001:000241C0], Flags: 00000000, ?Init@MxDisplaySurface@@AAEXXZ +S_PUB32: [0001:0004E4D2], Flags: 00000000, _SetEvent@4 +S_PUB32: [0001:000243A0], Flags: 00000000, ?Create@MxDisplaySurface@@UAEJAAVMxVideoParam@@@Z +S_PUB32: [0001:0002ADA0], Flags: 00000000, ?ClassName@MxDSStill@@UBEPBDXZ +S_PUB32: [0001:0004E5F0], Flags: 00000000, ?_CallMemberFunction0@@YGXPAX0@Z +S_PUB32: [0003:0000598C], Flags: 00000000, ??_C@_0N@NBPL@german?9swiss?$AA@ +S_PUB32: [0001:00032B30], Flags: 00000000, ?GetCD@MxOmni@@SAPBDXZ +S_PUB32: [0001:0001D7F0], Flags: 00000000, ?EndAction@MxCompositePresenter@@UAEXXZ +S_PUB32: [0001:0001B1E0], Flags: 00000000, ?_Insert@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@IAE?AViterator@1@PAU_Node@1@0ABQAVMxAtomIdCounter@@@Z +S_PUB32: [0001:0001BE20], Flags: 00000000, ?Notify@MxBackgroundAudioManager@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00012090], Flags: 00000000, ??_GDoors@@UAEPAXI@Z +S_PUB32: [0001:0004E600], Flags: 00000000, ?_CallMemberFunction1@@YGXPAX00@Z +S_PUB32: [0003:00003A90], Flags: 00000000, ??_7MxDSStill@@6B@ +S_PUB32: [0001:00032AF0], Flags: 00000000, ?GetHD@MxOmni@@SAPBDXZ +S_PUB32: [0003:000052C4], Flags: 00000000, ??_C@_0CN@FPEG@R6017?$AN?6?9?5unexpected?5multithread?5@ +S_PUB32: [0001:00060E10], Flags: 00000000, ___tzset +S_PUB32: [0003:00005B8C], Flags: 00000000, ??_C@_08HENB@american?$AA@ +S_PUB32: [0001:000141F0], Flags: 00000000, ??1?$MxPtrList@VLegoWorld@@@@UAE@XZ +S_PUB32: [0001:00031200], Flags: 00000000, ??_GMxLoopingMIDIPresenter@@UAEPAXI@Z +S_PUB32: [0001:0004BD10], Flags: 00000000, @shi_enterPoolMutexShr@4 +S_PUB32: [0003:000038B0], Flags: 00000000, ??_7MxDSObjectAction@@6B@ +S_PUB32: [0004:0000073C], Flags: 00000000, ??_C@_0L@EJHM@c_chmotry0?$AA@ +S_PUB32: [0001:00042810], Flags: 00000000, ?FUN_10001510@Score@@QAEJAAVMxEndActionNotificationParam@@@Z +S_PUB32: [0001:0003C660], Flags: 00000000, ?Tickle@MxTransitionManager@@UAEJXZ +S_PUB32: [0001:00035D70], Flags: 00000000, ??_E?$MxPtrListCursor@UMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0003:00003A00], Flags: 00000000, ??_7MxDSSerialAction@@6B@ +S_PUB32: [0003:000031D8], Flags: 00000000, ??_7MxDSActionListCursor@@6B@ +S_PUB32: [0001:00009250], Flags: 00000000, ?ReleaseDX@LegoInputManager@@QAEXXZ +S_PUB32: [0001:00012980], Flags: 00000000, ?GetCurrentVehicle@@YAPAVIslePathActor@@XZ +S_PUB32: [0004:000033F4], Flags: 00000000, ??_C@_0CG@BCBM@Windows?5can?5not?5create?5any?5more?5@ +S_PUB32: [0001:0001AED0], Flags: 00000000, ??4MxAtomId@@QAEAAV0@ABV0@@Z +S_PUB32: [0004:00000E5C], Flags: 00000000, ?g_creditsScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0001A150], Flags: 00000000, ??1?$MxListCursor@PAVMxDSAction@@@@UAE@XZ +S_PUB32: [0004:00000BA0], Flags: 00000000, ??_C@_08CCJB@BumpBouy?$AA@ +S_PUB32: [0003:000009D8], Flags: 00000000, ??_7Helicopter@@6B@ +S_PUB32: [0001:00004CE0], Flags: 00000000, ?VTable0xe4@IslePathActor@@UAEXXZ +S_PUB32: [0001:00028F70], Flags: 00000000, ?IsA@MxDSParallelAction@@UBEEPBD@Z +S_PUB32: [0003:00000E50], Flags: 00000000, ??_7InfocenterDoor@@6B@ +S_PUB32: [0001:0001A260], Flags: 00000000, ?ReadyTickle@LegoWorldPresenter@@UAEXXZ +S_PUB32: [0001:000479B0], Flags: 00000000, __heapadd +S_PUB32: [0001:000175D0], Flags: 00000000, ?FUN_1003ef60@@YAEXZ +S_PUB32: [0003:00003528], Flags: 00000000, ??_7MxDiskStreamController@@6B@ +S_PUB32: [0001:00039700], Flags: 00000000, ??_GMxStreamController@@UAEPAXI@Z +S_PUB32: [0001:00003C20], Flags: 00000000, ??_EHospital@@UAEPAXI@Z +S_PUB32: [0001:0002C1B0], Flags: 00000000, ??_GMxEventManager@@UAEPAXI@Z +S_PUB32: [0004:000026B8], Flags: 00000000, ??_C@_0GA@DDDK@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:00057BB0], Flags: 00000000, __sopen +S_PUB32: [0001:00008230], Flags: 00000000, ?RegisterState@LegoGameState@@AAEXPAVLegoState@@@Z +S_PUB32: [0003:00005678], Flags: 00000000, ??_C@_03COKO@svk?$AA@ +S_PUB32: [0003:00005C28], Flags: 00000000, ??_C@_05FGPD@March?$AA@ +S_PUB32: [0001:00050150], Flags: 00000000, ___InternalCxxFrameHandler +S_PUB32: [0001:0003BFF0], Flags: 00000000, ??1MxTickleManager@@UAE@XZ +S_PUB32: [0004:00001CB8], Flags: 00000000, ??_C@_0DH@OHPK@FOURCC?5format?5requested?5is?5unsup@ +S_PUB32: [0005:00000510], Flags: 00000000, __imp__UnhandledExceptionFilter@4 +S_PUB32: [0001:000025E0], Flags: 00000000, ?ClassName@GasStationState@@UBEPBDXZ +S_PUB32: [0001:0004EF90], Flags: 00000000, _strstr +S_PUB32: [0001:0002A9C0], Flags: 00000000, ??0MxDSSound@@QAE@XZ +S_PUB32: [0005:00000458], Flags: 00000000, __imp__IsBadReadPtr@8 +S_PUB32: [0001:00001570], Flags: 00000000, ?ClassName@AnimState@@UBEPBDXZ +S_PUB32: [0001:0004E42A], Flags: 00000000, __hread@12 +S_PUB32: [0001:00013730], Flags: 00000000, ?IsA@LegoOmni@@UBEEPBD@Z +S_PUB32: [0001:00015360], Flags: 00000000, ?VTable0x98@LegoPathActor@@UAEXXZ +S_PUB32: [0001:00036D20], Flags: 00000000, ?FUN_100c4a20@MxRegionCursor@@AAEXAAVMxRect32@@@Z +S_PUB32: [0004:00003FF8], Flags: 00000000, __adjust_fdiv +S_PUB32: [0001:00019870], Flags: 00000000, ??_G?$MxPtrList@VMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0004:00002E48], Flags: 00000000, ??_C@_0CM@MBGD@The?5pixel?5format?5was?5invalid?5as?5@ +S_PUB32: [0001:00045CA0], Flags: 00000000, ?ViewportDestroyCallback@@YAXPAUIDirect3DRMObject@@PAX@Z +S_PUB32: [0001:0006269A], Flags: 00000000, _WriteFile@20 +S_PUB32: [0001:00015300], Flags: 00000000, ?VTable0x80@LegoPathActor@@UAEXXZ +S_PUB32: [0001:0005D0D0], Flags: 00000000, __set_exp +S_PUB32: [0001:0004BEA0], Flags: 00000000, _shi_enterPoolInitMutexReader +S_PUB32: [0001:00024DA0], Flags: 00000000, ?VTable0x34@MxDisplaySurface@@UAEIIIIIII@Z +S_PUB32: [0004:000009E0], Flags: 00000000, ??_C@_0BJ@IPCL@LegoLoopingAnimPresenter?$AA@ +S_PUB32: [0004:00000A98], Flags: 00000000, ?g_movementMaxAccel@@3MA +S_PUB32: [0003:00000630], Flags: 00000000, ??_7LegoEntity@@6B@ +S_PUB32: [0001:000290A0], Flags: 00000000, ??1MxDSParallelAction@@UAE@XZ +S_PUB32: [0001:0001DE90], Flags: 00000000, ?Enable@MxCompositePresenter@@UAEXE@Z +S_PUB32: [0001:000154D0], Flags: 00000000, ??1LegoPathController@@UAE@XZ +S_PUB32: [0001:0001AC30], Flags: 00000000, ??_GMxType4NotificationParam@@UAEPAXI@Z +S_PUB32: [0001:00056670], Flags: 00000000, __RoundMan +S_PUB32: [0001:0001F700], Flags: 00000000, ?DisplayModesEnumerateCallback@MxDeviceEnumerate@@SGJPAU_DDSURFACEDESC@@PAX@Z +S_PUB32: [0001:00004070], Flags: 00000000, ?Stop@Infocenter@@UAEXXZ +S_PUB32: [0004:00003CD4], Flags: 00000000, _SmartHeap_malloc +S_PUB32: [0001:0001F670], Flags: 00000000, ?insert@?$list@UMxDisplayMode@@V?$allocator@UMxDisplayMode@@@@@@QAE?AViterator@1@V21@ABUMxDisplayMode@@@Z +S_PUB32: [0003:00005CCC], Flags: 00000000, ??_C@_03PIEP@Mon?$AA@ +S_PUB32: [0001:0004EF68], Flags: 00000000, __ftol +S_PUB32: [0001:0003BCF0], Flags: 00000000, ??0MxTickleThread@@QAE@PAVMxCore@@H@Z +S_PUB32: [0001:000551DA], Flags: 00000000, __fFLN +S_PUB32: [0001:0004E3FA], Flags: 00000000, _EnterCriticalSection@4 +S_PUB32: [0001:00041060], Flags: 00000000, ?IsA@RadioState@@UBEEPBD@Z +S_PUB32: [0001:00015350], Flags: 00000000, ?VTable0x70@LegoPathActor@@UAEXM@Z +S_PUB32: [0001:000238F0], Flags: 00000000, ?SetResourceToGet@MxDiskStreamProvider@@UAEJPAVMxStreamController@@@Z +S_PUB32: [0005:00000360], Flags: 00000000, __imp__SelectObject@8 +S_PUB32: [0001:0004AAB0], Flags: 00000000, @_shi_sysFreeNear@4 +S_PUB32: [0001:000058C0], Flags: 00000000, ?ClassName@LegoActor@@UBEPBDXZ +S_PUB32: [0001:0003FE00], Flags: 00000000, ?PutData@MxWavePresenter@@UAEJXZ +S_PUB32: [0001:000235C0], Flags: 00000000, ??_GMxDiskStreamProviderThread@@UAEPAXI@Z +S_PUB32: [0001:0001B9E0], Flags: 00000000, ?OpenMusic@MxBackgroundAudioManager@@AAEJAAVMxAtomId@@@Z +S_PUB32: [0003:000059D8], Flags: 00000000, ??_C@_0P@CJNO@french?9belgian?$AA@ +S_PUB32: [0001:00045610], Flags: 00000000, ?ImplementationDataPtr@RendererImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0004:00000AAC], Flags: 00000000, ?g_turnDecel@@3MA +S_PUB32: [0001:00015430], Flags: 00000000, ?IsA@LegoPathController@@UBEEPBD@Z +S_PUB32: [0001:0001FE60], Flags: 00000000, ?FUN_1009d3d0@MxDeviceEnumerate@@QAEEAAUMxDevice@@@Z +S_PUB32: [0004:00006660], Flags: 00000000, __lpdays +S_PUB32: [0001:00019690], Flags: 00000000, ??_EMxPresenterList@@UAEPAXI@Z +S_PUB32: [0003:00005CC0], Flags: 00000000, ??_C@_03HIKC@Thu?$AA@ +S_PUB32: [0001:0002F030], Flags: 00000000, ??0MxMusicManager@@QAE@XZ +S_PUB32: [0001:00025C10], Flags: 00000000, ?ClassName@MxDSBuffer@@UBEPBDXZ +S_PUB32: [0001:00008860], Flags: 00000000, ??_GLegoLoopingAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00005130], Flags: 00000000, ??_GJukeBox@@UAEPAXI@Z +S_PUB32: [0001:00035E80], Flags: 00000000, ??4?$MxListCursor@PAUMxRegionLeftRight@@@@QAEAAV0@ABV0@@Z +S_PUB32: [0001:00047AA0], Flags: 00000000, __msize +S_PUB32: [0005:0000041C], Flags: 00000000, __imp__GetLastError@0 +S_PUB32: [0001:00053430], Flags: 00000000, __dosmaperr +S_PUB32: [0001:0004FC30], Flags: 00000000, ?__ArrayUnwind@@YGXPAXIHP6EX0@Z@Z +S_PUB32: [0005:00000380], Flags: 00000000, __imp__DeleteObject@4 +S_PUB32: [0004:00000D70], Flags: 00000000, ??_C@_0O@KJFG@LegoAct2State?$AA@ +S_PUB32: [0001:00043F60], Flags: 00000000, ??_GMesh@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00043E80], Flags: 00000000, ??_GMeshImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00031350], Flags: 00000000, ?IsTimerRunning@MxOmni@@UAEEXZ +S_PUB32: [0001:0000F5D0], Flags: 00000000, ?IsA@LegoPathActor@@UBEEPBD@Z +S_PUB32: [0001:0004E520], Flags: 00000000, _RedrawWindow@16 +S_PUB32: [0001:00002540], Flags: 00000000, ?Tickle@GasStation@@UAEJXZ +S_PUB32: [0005:00000330], Flags: 00000000, __imp__DirectDrawCreate@12 +S_PUB32: [0001:000551CA], Flags: 00000000, __rtinfnpopse +S_PUB32: [0001:00045060], Flags: 00000000, ??_GLight@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044F80], Flags: 00000000, ??_GLightImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:000142B0], Flags: 00000000, ??_E?$MxList@PAVLegoWorld@@@@UAEPAXI@Z +S_PUB32: [0001:000314F0], Flags: 00000000, ?FindWorld@MxOmni@@UAEPAVMxEntity@@PBDHPAVMxPresenter@@@Z +S_PUB32: [0001:000109D0], Flags: 00000000, ?IsA@ScoreState@@UBEEPBD@Z +S_PUB32: [0001:00005020], Flags: 00000000, ?IsA@JukeBox@@UBEEPBD@Z +S_PUB32: [0001:000624A0], Flags: 00000000, __strdup +S_PUB32: [0001:00040450], Flags: 00000000, ??0PizzeriaState@@QAE@XZ +S_PUB32: [0003:00003B98], Flags: 00000000, ??_7?$MxListCursor@PAVMxStreamChunk@@@@6B@ +S_PUB32: [0003:000055B0], Flags: 00000000, ??_C@_04ELFI@asin?$AA@ +S_PUB32: [0001:00039F50], Flags: 00000000, ?ClassName@MxNextActionDataStart@@UBEPBDXZ +S_PUB32: [0004:0000234C], Flags: 00000000, ??_C@_0DI@NFLD@The?5surface?5being?5used?5is?5not?5a?5@ +S_PUB32: [0004:00000A90], Flags: 00000000, ?g_movementMaxSpeed@@3MA +S_PUB32: [0001:000059B0], Flags: 00000000, ??_GLegoActor@@UAEPAXI@Z +S_PUB32: [0001:00047710], Flags: 00000000, ??0?$Array@M$03@Tgl@@QAE@XZ +S_PUB32: [0001:00044D80], Flags: 00000000, ??_GCamera@Tgl@@UAEPAXI@Z +S_PUB32: [0003:00003B80], Flags: 00000000, ??_7MxStreamChunkListCursor@@6B@ +S_PUB32: [0001:00044CA0], Flags: 00000000, ??_GCameraImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0004:00004038], Flags: 00000000, __cfltcvt_tab +S_PUB32: [0001:0004ABF0], Flags: 00000000, @shi_sysAllocRegion@16 +S_PUB32: [0003:000057E8], Flags: 00000000, ??_C@_03EPD@can?$AA@ +S_PUB32: [0004:00003704], Flags: 00000000, ??_C@_0P@PEG@MxSmkPresenter?$AA@ +S_PUB32: [0001:00025C40], Flags: 00000000, ??1MxDSBuffer@@UAE@XZ +S_PUB32: [0001:00015770], Flags: 00000000, ?Init@LegoPathPresenter@@AAEXXZ +S_PUB32: [0004:00000A14], Flags: 00000000, ??_C@_0BB@PPAL@MxAudioPresenter?$AA@ +S_PUB32: [0004:000005BC], Flags: 00000000, ??_C@_0L@DEDB@c_rcwhl1y0?$AA@ +S_PUB32: [0001:000431B0], Flags: 00000000, ?IsA@SkateBoard@@UBEEPBD@Z +S_PUB32: [0001:000087A0], Flags: 00000000, ??_GLegoHideAnimPresenter@@UAEPAXI@Z +S_PUB32: [0003:00005460], Flags: 00000000, ??_C@_0BD@NJFP@GetLastActivePopup?$AA@ +S_PUB32: [0004:0000265C], Flags: 00000000, ??_C@_0FJ@IKND@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:00010F40], Flags: 00000000, ?IsA@BumpBouy@@UBEEPBD@Z +S_PUB32: [0004:00004680], Flags: 00000000, __stdbuf +S_PUB32: [0001:0002F4C0], Flags: 00000000, ?ClassName@MxMusicPresenter@@UBEPBDXZ +S_PUB32: [0001:00058D10], Flags: 00000000, _ungetc +S_PUB32: [0001:00025A60], Flags: 00000000, ??1MxDSAnim@@UAE@XZ +S_PUB32: [0005:000003A4], Flags: 00000000, __imp__ReleaseMutex@4 +S_PUB32: [0001:000575B0], Flags: 00000000, __aulldiv +S_PUB32: [0001:00000770], Flags: 00000000, ?IsA@Act1State@@UBEEPBD@Z +S_PUB32: [0004:00001514], Flags: 00000000, ??_C@_09KLMH@CameraROI?$AA@ +S_PUB32: [0001:00015890], Flags: 00000000, ??0LegoPhonemePresenter@@QAE@XZ +S_PUB32: [0004:00000B58], Flags: 00000000, ??_C@_0BB@GFMD@InfoCenterEntity?$AA@ +S_PUB32: [0001:00032360], Flags: 00000000, ??_E?$MxHashTable@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0001:000080C0], Flags: 00000000, ?SetROIHandlerFunction@LegoGameState@@AAEXXZ +S_PUB32: [0001:00010B80], Flags: 00000000, ?IsA@Act3State@@UBEEPBD@Z +S_PUB32: [0001:00040D60], Flags: 00000000, ??_GRaceState@@UAEPAXI@Z +S_PUB32: [0001:00002870], Flags: 00000000, ??0Vector3Impl@@QAE@PAM@Z +S_PUB32: [0001:000474C0], Flags: 00000000, ??_G?$LODList@VViewLOD@@@@UAEPAXI@Z +S_PUB32: [0004:00001138], Flags: 00000000, ??_C@_0BM@BNKJ@?2lego?2scripts?2build?2dunecar?$AA@ +S_PUB32: [0001:00008AA0], Flags: 00000000, ?Create@LegoInputManager@@QAEJPAX@Z +S_PUB32: [0001:000170D0], Flags: 00000000, ?InvokeAction@@YAXW4ExtraActionType@@AAVMxAtomId@@HPAVLegoEntity@@@Z +S_PUB32: [0001:00028F60], Flags: 00000000, ?ClassName@MxDSParallelAction@@UBEPBDXZ +S_PUB32: [0001:00009E40], Flags: 00000000, ?ClassName@LegoLoadCacheSoundPresenter@@UBEPBDXZ +S_PUB32: [0001:0000FCD0], Flags: 00000000, ?ClassName@LegoActionControlPresenter@@UBEPBDXZ +S_PUB32: [0001:00043BE0], Flags: 00000000, ?SetShadingModel@MeshImpl@TglImpl@@UAE?AW4Result@Tgl@@W4ShadingModel@4@@Z +S_PUB32: [0001:00025460], Flags: 00000000, ??4MxDSAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00004CD0], Flags: 00000000, ?VTable0xe0@IslePathActor@@UAEXXZ +S_PUB32: [0001:00047720], Flags: 00000000, ??1?$Array@M$03@Tgl@@QAE@XZ +S_PUB32: [0001:00015420], Flags: 00000000, ?ClassName@LegoPathController@@UBEPBDXZ +S_PUB32: [0001:000433B0], Flags: 00000000, ?SetTransformation@CameraImpl@TglImpl@@UAE?AW4Result@Tgl@@ABVFloatMatrix4@4@@Z +S_PUB32: [0001:00043AA0], Flags: 00000000, ?SetColor@LightImpl@TglImpl@@UAE?AW4Result@Tgl@@MMM@Z +S_PUB32: [0004:000004B0], Flags: 00000000, ?g_set@@3PBDB +S_PUB32: [0003:000053EC], Flags: 00000000, ??_C@_02JJJH@?6?6?$AA@ +S_PUB32: [0001:00014810], Flags: 00000000, ?Start@@YAJPAVMxDSAction@@@Z +S_PUB32: [0004:00000CCC], Flags: 00000000, ??_C@_0BC@PLMO@LegoPathPresenter?$AA@ +S_PUB32: [0001:0001C120], Flags: 00000000, ?Stop@MxBackgroundAudioManager@@QAEXXZ +S_PUB32: [0001:0005E850], Flags: 00000000, ___init_collate +S_PUB32: [0001:0001C7E0], Flags: 00000000, ?VTable0x30@MxBitmap@@UAEXHHHHHHH@Z +S_PUB32: [0001:00041880], Flags: 00000000, ?DotImpl@Vector2Impl@@UBEMPAM0@Z +S_PUB32: [0003:00000430], Flags: 00000000, ??_7AnimState@@6B@ +S_PUB32: [0001:00035130], Flags: 00000000, ??_E?$MxListCursor@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:000197C0], Flags: 00000000, ??_E?$MxList@PAVMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:0004A940], Flags: 00000000, @_shi_sysResize@12 +S_PUB32: [0001:0002C380], Flags: 00000000, ??0MxEventPresenter@@QAE@XZ +S_PUB32: [0005:00000560], Flags: 00000000, __imp__PostMessageA@16 +S_PUB32: [0003:00005CA0], Flags: 00000000, ??_C@_07BMBC@Tuesday?$AA@ +S_PUB32: [0001:00047570], Flags: 00000000, ?UpdateWorldData@ViewROI@@MAEXABVMatrix4Data@@@Z +S_PUB32: [0001:00036A80], Flags: 00000000, ?VTable0x2c@MxRegionCursor@@UAEPAVMxRect32@@AAV2@@Z +S_PUB32: [0004:00001B8C], Flags: 00000000, ??_C@_0EO@BJGI@This?5surface?5can?5not?5be?5restored@ +S_PUB32: [0004:00002AF8], Flags: 00000000, ??_C@_0CK@CDKH@No?5DC?5was?5ever?5created?5for?5this?5@ +S_PUB32: [0001:0003E4C0], Flags: 00000000, ?Destroy@MxVideoManager@@UAEXXZ +S_PUB32: [0004:0000126C], Flags: 00000000, ??_C@_0BA@MDJJ@lego?5brown?5flat?$AA@ +S_PUB32: [0001:0001FBC0], Flags: 00000000, ?FUN_1009d0d0@MxDeviceEnumerate@@QAEHXZ +S_PUB32: [0001:00062694], Flags: 00000000, _FatalAppExitA@8 +S_PUB32: [0001:0003C430], Flags: 00000000, ?Start@MxTimer@@QAEXXZ +S_PUB32: [0005:00000358], Flags: 00000000, __imp__CreateFontA@56 +S_PUB32: [0001:000021A0], Flags: 00000000, ?ClassName@ElevatorBottom@@UBEPBDXZ +S_PUB32: [0004:00000B38], Flags: 00000000, ??_C@_0O@FGEO@PizzeriaState?$AA@ +S_PUB32: [0001:00008510], Flags: 00000000, ?IsA@LegoLoopingAnimPresenter@@UBEEPBD@Z +S_PUB32: [0004:000003C8], Flags: 00000000, ??_C@_0L@GMBN@Motorcycle?$AA@ +S_PUB32: [0001:000301B0], Flags: 00000000, ??1MxNotificationPtrList@@QAE@XZ +S_PUB32: [0001:00059020], Flags: 00000000, __d_inttype +S_PUB32: [0001:0004A830], Flags: 00000000, @_shi_sysFree@4 +S_PUB32: [0001:00003A30], Flags: 00000000, ?Notify@HistoryBook@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00005370], Flags: 00000000, ??1JukeBoxEntity@@UAE@XZ +S_PUB32: [0001:00039FE0], Flags: 00000000, ??_EMxNextActionDataStart@@UAEPAXI@Z +S_PUB32: [0001:00048760], Flags: 00000000, _MemFreeFS@4 +S_PUB32: [0001:00016F60], Flags: 00000000, ?PutData@LegoTexturePresenter@@UAEJXZ +S_PUB32: [0004:00003CD8], Flags: 00000000, __imp__malloc +S_PUB32: [0004:000004AC], Flags: 00000000, ?g_delimiter@@3PBDB +S_PUB32: [0001:00045A40], Flags: 00000000, ?Clone@UnkImpl@TglImpl@@UAEPAVUnk@Tgl@@XZ +S_PUB32: [0003:00001D80], Flags: 00000000, ??_7LegoActorPresenter@@6B@ +S_PUB32: [0001:00038DF0], Flags: 00000000, ?RealizePalette@MxStillPresenter@@UAEXXZ +S_PUB32: [0004:00000E08], Flags: 00000000, ?g_carracerScript@@3PAVMxAtomId@@A +S_PUB32: [0001:00032210], Flags: 00000000, ??1?$MxCollection@PAVMxVariable@@@@UAE@XZ +S_PUB32: [0004:00003C7C], Flags: 00000000, __shi_mutexGlobalInit +S_PUB32: [0003:0000554C], Flags: 00000000, ??_C@_06GGHF@_hypot?$AA@ +S_PUB32: [0001:00032280], Flags: 00000000, ??_GMxVariableTable@@UAEPAXI@Z +S_PUB32: [0001:0004F1C0], Flags: 00000000, __fread_lk +S_PUB32: [0001:00000B40], Flags: 00000000, ??_GAct2Brick@@UAEPAXI@Z +S_PUB32: [0001:0003DD00], Flags: 00000000, ??1MxVideoManager@@UAE@XZ +S_PUB32: [0004:000006B8], Flags: 00000000, ??_C@_0L@EKGN@c_dbfrxly0?$AA@ +S_PUB32: [0001:00056F08], Flags: 00000000, __rtindfnpop +S_PUB32: [0001:00015DD0], Flags: 00000000, ?WrappedSetLocalTransform@LegoROI@@QAEXAAVMatrix4Impl@@@Z +S_PUB32: [0001:00035CB0], Flags: 00000000, ??1?$MxPtrListCursor@UMxRegionLeftRight@@@@UAE@XZ +S_PUB32: [0003:00002760], Flags: 00000000, ??_7LegoRaceCar@@6B@ +S_PUB32: [0001:00007220], Flags: 00000000, ?SetWorld@LegoEntity@@IAEXXZ +S_PUB32: [0004:00000694], Flags: 00000000, ??_C@_0L@LIHH@c_jsdashy0?$AA@ +S_PUB32: [0001:00005600], Flags: 00000000, ?Create@Lego3DView@@QAEHAAUCreateStruct@TglSurface@@PAVRenderer@Tgl@@@Z +S_PUB32: [0003:00005A68], Flags: 00000000, ??_C@_0M@FLHK@english?9aus?$AA@ +S_PUB32: [0001:00011170], Flags: 00000000, ?ClassName@GasStationEntity@@UBEPBDXZ +S_PUB32: [0001:0003D2C0], Flags: 00000000, ??1MxUnknown100d7c88@@QAE@XZ +S_PUB32: [0003:00000888], Flags: 00000000, ??_7ElevatorBottom@@6B@ +S_PUB32: [0001:0002F660], Flags: 00000000, ?Init@MxMusicPresenter@@AAEXXZ +S_PUB32: [0001:00037E20], Flags: 00000000, ??_E?$MxPtrList@VMxRect32@@@@UAEPAXI@Z +S_PUB32: [0003:00002570], Flags: 00000000, ??_7HospitalEntity@@6B@ +S_PUB32: [0001:0002C8D0], Flags: 00000000, ??_EMxFlcPresenter@@UAEPAXI@Z +S_PUB32: [0001:000021B0], Flags: 00000000, ?IsA@ElevatorBottom@@UBEEPBD@Z +S_PUB32: [0004:000062D0], Flags: 00000000, ___lconv +S_PUB32: [0001:0004E44E], Flags: 00000000, _VirtualLock@8 +S_PUB32: [0001:0005B000], Flags: 00000000, ___lc_strtolc +S_PUB32: [0001:0004F9D0], Flags: 00000000, __beginthreadex +S_PUB32: [0001:00009120], Flags: 00000000, ??_E?$MxQueue@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0001:00037BD0], Flags: 00000000, ??1?$MxCollection@PAVMxRect32@@@@UAE@XZ +S_PUB32: [0001:00041AA0], Flags: 00000000, ?EqualsCrossImpl@Vector3Impl@@UAEXPAM0@Z +S_PUB32: [0001:00000A60], Flags: 00000000, ?IsA@Act2Brick@@UBEEPBD@Z +S_PUB32: [0001:00005F00], Flags: 00000000, ??_GMxPresenter@@UAEPAXI@Z +S_PUB32: [0001:000347F0], Flags: 00000000, ??1?$MxCollection@PAUMxRegionTopBottom@@@@UAE@XZ +S_PUB32: [0004:00001100], Flags: 00000000, ??_C@_0BM@DOJG@?2lego?2scripts?2build?2racecar?$AA@ +S_PUB32: [0001:0005CEF0], Flags: 00000000, __chsize +S_PUB32: [0001:00001A30], Flags: 00000000, ?IsA@LegoEntity@@UBEEPBD@Z +S_PUB32: [0001:00006860], Flags: 00000000, ?Init@LegoCacheSound@@AAEXXZ +S_PUB32: [0001:00018B20], Flags: 00000000, ??_G?$MxPtrListCursor@VMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:00027DB0], Flags: 00000000, ?MergeFrom@MxDSMultiAction@@UAEXAAVMxDSAction@@@Z +S_PUB32: [0001:00005690], Flags: 00000000, ?RepeatingTickle@LegoActionControlPresenter@@UAEXXZ +S_PUB32: [0001:000478A0], Flags: 00000000, _calloc +S_PUB32: [0001:000121C0], Flags: 00000000, ??_GBumpBouy@@UAEPAXI@Z +S_PUB32: [0004:00003C3C], Flags: 00000000, ?_Nil@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@1PAU_Node@1@A +S_PUB32: [0001:00004090], Flags: 00000000, ?Tickle@Infocenter@@UAEJXZ +S_PUB32: [0004:00004358], Flags: 00000000, __exitflag +S_PUB32: [0003:00005530], Flags: 00000000, ??_C@_03GAFO@_yn?$AA@ +S_PUB32: [0005:00000500], Flags: 00000000, __imp__GetStdHandle@4 +S_PUB32: [0001:0001A360], Flags: 00000000, ?ParseExtra@LegoWorldPresenter@@UAEXXZ +S_PUB32: [0001:00005A20], Flags: 00000000, ?configureLegoAnimationManager@LegoAnimationManager@@SAXH@Z +S_PUB32: [0001:0001D620], Flags: 00000000, ?StartAction@MxCompositePresenter@@UAEJPAVMxStreamController@@PAVMxDSAction@@@Z +S_PUB32: [0001:0005D7C0], Flags: 00000000, __finite +S_PUB32: [0001:00014830], Flags: 00000000, ?FUN_100b6e10@@YAEHHHHPAH00000@Z +S_PUB32: [0001:0001D2C0], Flags: 00000000, ??0MxCompositePresenter@@QAE@XZ +S_PUB32: [0001:00056DC7], Flags: 00000000, __trandisp2 +S_PUB32: [0001:000123D0], Flags: 00000000, ??_EPizzeria@@UAEPAXI@Z +S_PUB32: [0001:00056D60], Flags: 00000000, __trandisp1 +S_PUB32: [0001:000008B0], Flags: 00000000, ??0Act2Brick@@QAE@XZ +S_PUB32: [0001:00014440], Flags: 00000000, ??_GMxTickleManager@@UAEPAXI@Z +S_PUB32: [0004:000016A0], Flags: 00000000, ??_C@_0BN@HONF@D3D?5enum?5devices?5failed?3?5?$CFs?6?$AA@ +S_PUB32: [0001:000349B0], Flags: 00000000, ??_E?$MxList@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:000459D0], Flags: 00000000, ?SetMeshData@UnkImpl@TglImpl@@UAE?AW4Result@Tgl@@KKPAY02$$CBM0PAY01$$CBMKPAK@Z +S_PUB32: [0001:0004CFA0], Flags: 00000000, _MemSetErrorHandler@4 +S_PUB32: [0001:0001B8E0], Flags: 00000000, ??1MxBackgroundAudioManager@@UAE@XZ +S_PUB32: [0001:0004C130], Flags: 00000000, _MemPoolInitNamedShared@12 +S_PUB32: [0001:00058010], Flags: 00000000, __access +S_PUB32: [0005:0000046C], Flags: 00000000, __imp__FreeEnvironmentStringsW@4 +S_PUB32: [0001:000154B0], Flags: 00000000, ??_GLegoPathController@@UAEPAXI@Z +S_PUB32: [0001:00019A90], Flags: 00000000, ?GetCurrPathInfo@LegoWorld@@QAEHPAPAVLegoPathBoundary@@AAH@Z +S_PUB32: [0005:00000484], Flags: 00000000, __imp__LCMapStringW@24 +S_PUB32: [0004:00000E44], Flags: 00000000, ?g_jukeboxScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0002F1B0], Flags: 00000000, ?SetMIDIVolume@MxMusicManager@@AAEXXZ +S_PUB32: [0001:00033060], Flags: 00000000, ?CreateNativePalette@MxPalette@@QAEPAUIDirectDrawPalette@@XZ +S_PUB32: [0001:00057AE0], Flags: 00000000, __commit +S_PUB32: [0004:00000DF8], Flags: 00000000, ?g_dunecarScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0003D770], Flags: 00000000, ??_G?$MxHashTableCursor@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0001:0001B500], Flags: 00000000, ?Inc@MxAtomIdCounter@@QAEXXZ +S_PUB32: [0001:00034A60], Flags: 00000000, ??_E?$MxPtrList@UMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:00045620], Flags: 00000000, ?SetImage@TextureImpl@TglImpl@@SA?AW4Result@Tgl@@PAUIDirect3DRMTexture@@PAVTglD3DRMIMAGE@2@@Z +S_PUB32: [0001:00056060], Flags: 00000000, _memmove +S_PUB32: [0001:00019AD0], Flags: 00000000, ?Tickle@LegoWorld@@UAEJXZ +S_PUB32: [0001:0004E620], Flags: 00000000, ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z +S_PUB32: [0001:000291C0], Flags: 00000000, ?GetDuration@MxDSParallelAction@@UAEJXZ +S_PUB32: [0001:000347E0], Flags: 00000000, ?Destroy@?$MxCollection@PAUMxRegionTopBottom@@@@SAXPAUMxRegionTopBottom@@@Z +S_PUB32: [0004:0000004C], Flags: 00000000, ??_C@_06BFJB@MxCore?$AA@ +S_PUB32: [0001:00011A60], Flags: 00000000, ??_GLego3DWavePresenter@@UAEPAXI@Z +S_PUB32: [0001:00006CF0], Flags: 00000000, ??0LegoCarBuildAnimPresenter@@QAE@XZ +S_PUB32: [0001:00035D00], Flags: 00000000, ??_G?$MxListCursor@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0004:000003AC], Flags: 00000000, ??_C@_07OKEK@RaceCar?$AA@ +S_PUB32: [0004:0000491C], Flags: 00000000, ___mbcodepage +S_PUB32: [0004:00001A78], Flags: 00000000, ??_C@_0BO@NJEK@Restore?5of?5back?5buffer?5failed?$AA@ +S_PUB32: [0003:00004560], Flags: 00000000, ??_7MxTransitionManager@@6B@ +S_PUB32: [0001:00061B50], Flags: 00000000, ___wtomb_environ +S_PUB32: [0001:00043960], Flags: 00000000, ?Add@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVMesh@4@@Z +S_PUB32: [0004:00001860], Flags: 00000000, ??_C@_0BH@EADG@Clipper?5SetHWnd?5failed?$AA@ +S_PUB32: [0001:0004E49C], Flags: 00000000, _OpenProcess@12 +S_PUB32: [0003:000055B8], Flags: 00000000, ??_C@_04LFAD@tanh?$AA@ +S_PUB32: [0003:00005984], Flags: 00000000, ??_C@_05DOKD@greek?$AA@ +S_PUB32: [0001:000177B0], Flags: 00000000, ?IsA@LegoVehicleBuildState@@UBEEPBD@Z +S_PUB32: [0001:00015AE0], Flags: 00000000, ?VTable0x78@LegoRace@@UAEII@Z +S_PUB32: [0001:000022E0], Flags: 00000000, ??1ElevatorBottom@@UAE@XZ +S_PUB32: [0001:00035210], Flags: 00000000, ??1?$MxListCursor@PAUMxRegionTopBottom@@@@UAE@XZ +S_PUB32: [0003:00005B34], Flags: 00000000, ??_C@_07NGFN@chinese?$AA@ +S_PUB32: [0001:00040110], Flags: 00000000, ?Resume@MxWavePresenter@@UAEXXZ +S_PUB32: [0001:000536E0], Flags: 00000000, __getstream +S_PUB32: [0004:00000C18], Flags: 00000000, ??_C@_05FMBE@Score?$AA@ +S_PUB32: [0003:00001D20], Flags: 00000000, ??_7LegoPartPresenter@@6B@ +S_PUB32: [0001:00038080], Flags: 00000000, ??1?$MxListCursor@PAVMxRect32@@@@UAE@XZ +S_PUB32: [0001:00037FA0], Flags: 00000000, ??_G?$MxListCursor@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0004:00005990], Flags: 00000000, __d_mzero +S_PUB32: [0001:0003DCD0], Flags: 00000000, ??_EMxVideoManager@@UAEPAXI@Z +S_PUB32: [0001:00037EE0], Flags: 00000000, ??_EMxRectListCursor@@UAEPAXI@Z +S_PUB32: [0001:000527A0], Flags: 00000000, __close +S_PUB32: [0003:000032F0], Flags: 00000000, ??_7MxActionNotificationParam@@6B@ +S_PUB32: [0004:0000284C], Flags: 00000000, ??_C@_0IC@PNEC@Returned?5when?5GetOverlayPosition@ +S_PUB32: [0003:000056A0], Flags: 00000000, ??_C@_09EOGO@singapore?$AA@ +S_PUB32: [0001:00016650], Flags: 00000000, ?VTable0x14@LegoState@@UAEEXZ +S_PUB32: [0001:00040940], Flags: 00000000, ??_EPoliceState@@UAEPAXI@Z +S_PUB32: [0005:00000488], Flags: 00000000, __imp__RaiseException@16 +S_PUB32: [0001:00042C80], Flags: 00000000, ?VTable0x68@Score@@UAEXE@Z +S_PUB32: [0003:000044E0], Flags: 00000000, ??_7MxRAMStreamController@@6B@ +S_PUB32: [0004:00001154], Flags: 00000000, ??_C@_0BL@IOAJ@?2lego?2scripts?2build?2copter?$AA@ +S_PUB32: [0001:00043520], Flags: 00000000, ?InitFromD3DDevice@DeviceImpl@TglImpl@@UAEXPAVDevice@Tgl@@@Z +S_PUB32: [0001:0004E472], Flags: 00000000, _HeapFree@12 +S_PUB32: [0004:000003FC], Flags: 00000000, ??_C@_05PIGB@Pizza?$AA@ +S_PUB32: [0001:0001B5A0], Flags: 00000000, ??_GMxAudioManager@@UAEPAXI@Z +S_PUB32: [0001:00015600], Flags: 00000000, ?ClassName@LegoPathPresenter@@UBEPBDXZ +S_PUB32: [0005:00000444], Flags: 00000000, __imp__FlushFileBuffers@4 +S_PUB32: [0004:00004320], Flags: 00000000, __umaskval +S_PUB32: [0003:00005554], Flags: 00000000, ??_C@_05JNMC@_cabs?$AA@ +S_PUB32: [0001:0001C5A0], Flags: 00000000, ?ImportBitmap@MxBitmap@@UAEJPAV1@@Z +S_PUB32: [0001:0004E526], Flags: 00000000, _DrawMenuBar@4 +S_PUB32: [0004:00000DEC], Flags: 00000000, ??_C@_07HLIN@current?$AA@ +S_PUB32: [0001:0004FB86], Flags: 00000000, __CIlog10 +S_PUB32: [0005:000003BC], Flags: 00000000, __imp___hwrite@12 +S_PUB32: [0001:00033320], Flags: 00000000, ?SetSkyColor@MxPalette@@QAEJPAUtagPALETTEENTRY@@@Z +S_PUB32: [0004:00003C74], Flags: 00000000, _MemDefaultPoolFlags +S_PUB32: [0001:00047450], Flags: 00000000, ??1?$LODList@VViewLOD@@@@UAE@XZ +S_PUB32: [0001:00049810], Flags: 00000000, @_shi_poolCount@4 +S_PUB32: [0001:00010130], Flags: 00000000, ?ClassName@LegoJetski@@UBEPBDXZ +S_PUB32: [0001:000020D0], Flags: 00000000, ??_GDuneBuggy@@UAEPAXI@Z +S_PUB32: [0001:0003C160], Flags: 00000000, ?RegisterClient@MxTickleManager@@UAEXPAVMxCore@@H@Z +S_PUB32: [0001:00061730], Flags: 00000000, _wcstombs +S_PUB32: [0001:00009060], Flags: 00000000, ??_ELegoEventQueue@@UAEPAXI@Z +S_PUB32: [0001:00008DE0], Flags: 00000000, ?Compare@?$MxCollection@VLegoEventNotificationParam@@@@UAECVLegoEventNotificationParam@@0@Z +S_PUB32: [0004:000065A0], Flags: 00000000, __timezone +S_PUB32: [0001:0001C2A0], Flags: 00000000, ?Enable@MxBackgroundAudioManager@@QAEXE@Z +S_PUB32: [0001:00045D00], Flags: 00000000, ?ImplementationDataPtr@ViewImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:000016D0], Flags: 00000000, ??0Bike@@QAE@XZ +S_PUB32: [0001:00026B00], Flags: 00000000, ??_GMxDSEvent@@UAEPAXI@Z +S_PUB32: [0003:00005C80], Flags: 00000000, ??_C@_06ONCK@Friday?$AA@ +S_PUB32: [0001:0002F0A0], Flags: 00000000, ??_GMxMusicManager@@UAEPAXI@Z +S_PUB32: [0001:0005CE50], Flags: 00000000, __fcloseall +S_PUB32: [0004:00003C80], Flags: 00000000, __shi_mutexMovInit +S_PUB32: [0001:00043330], Flags: 00000000, ??_ESkateBoard@@UAEPAXI@Z +S_PUB32: [0001:000275D0], Flags: 00000000, ?Deserialize@MxDSMediaAction@@UAEXPAPAEF@Z +S_PUB32: [0003:000056B8], Flags: 00000000, ??_C@_08EJOH@pr?9china?$AA@ +S_PUB32: [0004:00004720], Flags: 00000000, __infinity +S_PUB32: [0001:000285C0], Flags: 00000000, ??_EMxDSObject@@UAEPAXI@Z +S_PUB32: [0004:00001214], Flags: 00000000, ??_C@_0N@DBIO@lego?5lt?5grey?$AA@ +S_PUB32: [0001:000285E0], Flags: 00000000, ??1MxDSObject@@UAE@XZ +S_PUB32: [0001:00037820], Flags: 00000000, ?Init@MxSmkPresenter@@AAEXXZ +S_PUB32: [0004:00004018], Flags: 00000000, __wenvptr +S_PUB32: [0001:0001DDA0], Flags: 00000000, ?VTable0x60@MxCompositePresenter@@UAEXPAVMxPresenter@@@Z +S_PUB32: [0001:00045F60], Flags: 00000000, ?Render@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVLight@4@@Z +S_PUB32: [0004:00004020], Flags: 00000000, ___error_mode +S_PUB32: [0003:000050B0], Flags: 00000000, ??_C@_06ONKE@?$CInull?$CJ?$AA@ +S_PUB32: [0001:0001B530], Flags: 00000000, ??0MxAudioManager@@QAE@XZ +S_PUB32: [0001:000352B0], Flags: 00000000, ?VTable0x1c@MxRegion@@UAEEAAVMxRect32@@@Z +S_PUB32: [0001:00039280], Flags: 00000000, ?SendChunk@MxStreamChunk@@QAEJAAVMxStreamListMxDSSubscriber@@EF@Z +S_PUB32: [0001:000051A0], Flags: 00000000, ??0JukeBoxEntity@@QAE@XZ +S_PUB32: [0003:00005C74], Flags: 00000000, ??_C@_08FAKH@Saturday?$AA@ +S_PUB32: [0001:00006120], Flags: 00000000, ?IsA@LegoAnimPresenter@@UBEEPBD@Z +S_PUB32: [0004:000031EC], Flags: 00000000, ??_C@_0FI@OPNG@An?5attempt?5was?5made?5to?5set?5the?5c@ +S_PUB32: [0001:00037C20], Flags: 00000000, ?Compare@?$MxCollection@PAVMxRect32@@@@UAECPAVMxRect32@@0@Z +S_PUB32: [0001:000626D0], Flags: 00000000, _HeapDestroy@4 +S_PUB32: [0001:0001C400], Flags: 00000000, ?SetSize@MxBitmap@@UAEJHHPAVMxPalette@@E@Z +S_PUB32: [0001:00016570], Flags: 00000000, ?Create@LegoSoundManager@@UAEJIE@Z +S_PUB32: [0001:00044370], Flags: 00000000, ??_GRenderer@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044280], Flags: 00000000, ??_GRendererImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:0004F120], Flags: 00000000, __fclose_lk +S_PUB32: [0001:00014EE0], Flags: 00000000, ??1LegoPalettePresenter@@UAE@XZ +S_PUB32: [0003:00003940], Flags: 00000000, ??_7MxDSSelectAction@@6B@ +S_PUB32: [0001:0002DB20], Flags: 00000000, ??0MxMediaManager@@QAE@XZ +S_PUB32: [0001:00057B90], Flags: 00000000, __open +S_PUB32: [0001:00004CF0], Flags: 00000000, ?VTable0xe8@IslePathActor@@UAEXIEE@Z +S_PUB32: [0004:00002C14], Flags: 00000000, ??_C@_0GI@BDAL@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:00056B40], Flags: 00000000, __atoflt +S_PUB32: [0001:00035400], Flags: 00000000, ??0MxRegionTopBottom@@QAE@HH@Z +S_PUB32: [0001:00038AA0], Flags: 00000000, ?Destroy@MxSoundPresenter@@IAEXE@Z +S_PUB32: [0003:0000589C], Flags: 00000000, ??_C@_03LCE@ptg?$AA@ +S_PUB32: [0001:00006F10], Flags: 00000000, ??1LegoCarBuildAnimPresenter@@UAE@XZ +S_PUB32: [0001:00041540], Flags: 00000000, ?GetWorldBoundingSphere@OrientableROI@@UBEABVBoundingSphere@@XZ +S_PUB32: [0001:00044B70], Flags: 00000000, ??_GGroup@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044A90], Flags: 00000000, ??_GGroupImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00046130], Flags: 00000000, ??0TowTrack@@QAE@XZ +S_PUB32: [0001:00057050], Flags: 00000000, ___crtGetStringTypeW +S_PUB32: [0001:0004EA58], Flags: 00000000, _atan2 +S_PUB32: [0001:0005E8A0], Flags: 00000000, _strpbrk +S_PUB32: [0001:0002DBA0], Flags: 00000000, ??_GMxMediaManager@@UAEPAXI@Z +S_PUB32: [0001:000176C0], Flags: 00000000, ??0UnkStruct@LegoVehicleBuildState@@QAE@XZ +S_PUB32: [0001:00010900], Flags: 00000000, ?ClassName@PizzaMissionState@@UBEPBDXZ +S_PUB32: [0001:00052960], Flags: 00000000, __flush +S_PUB32: [0001:000025F0], Flags: 00000000, ?IsA@GasStationState@@UBEEPBD@Z +S_PUB32: [0001:00045220], Flags: 00000000, ??1Unk@Tgl@@UAE@XZ +S_PUB32: [0001:00005F20], Flags: 00000000, ?ClassName@MxMediaPresenter@@UBEPBDXZ +S_PUB32: [0001:00000BC0], Flags: 00000000, ?Notify@Act2Brick@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0003F870], Flags: 00000000, ?AddToManager@MxWavePresenter@@UAEJXZ +S_PUB32: [0003:00003770], Flags: 00000000, ??_7MxDSSource@@6B@ +S_PUB32: [0001:00017A00], Flags: 00000000, ??_GLegoVideoManager@@UAEPAXI@Z +S_PUB32: [0004:00001170], Flags: 00000000, ??_C@_08KMEJ@LegoOmni?$AA@ +S_PUB32: [0001:0004FFC0], Flags: 00000000, ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z +S_PUB32: [0003:00004388], Flags: 00000000, ??_7?$MxPtrListCursor@VMxRect32@@@@6B@ +S_PUB32: [0001:0001D9C0], Flags: 00000000, ?Notify@MxCompositePresenter@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00024FF0], Flags: 00000000, ?VTable0x24@MxDisplaySurface@@UAEXPAU_DDSURFACEDESC@@PAVMxBitmap@@IIIIII@Z +S_PUB32: [0004:00004D30], Flags: 00000000, __commode +S_PUB32: [0001:000175E0], Flags: 00000000, ?WriteSaveData3@LegoUnkSaveDataWriter@@AAEJPAVLegoStream@@@Z +S_PUB32: [0001:00012730], Flags: 00000000, ??_GJukeBoxState@@UAEPAXI@Z +S_PUB32: [0001:0002A510], Flags: 00000000, ??0MxDSSerialAction@@QAE@XZ +S_PUB32: [0003:00002EA0], Flags: 00000000, ??_7LegoFileStream@@6B@ +S_PUB32: [0001:00028530], Flags: 00000000, ?ClassName@MxDSObject@@UBEPBDXZ +S_PUB32: [0001:0001E0F0], Flags: 00000000, ??_GMxControlPresenter@@UAEPAXI@Z +S_PUB32: [0001:000099E0], Flags: 00000000, ?ClassName@MxAudioPresenter@@UBEPBDXZ +S_PUB32: [0001:00011ED0], Flags: 00000000, ??_ELegoAct2State@@UAEPAXI@Z +S_PUB32: [0001:0004E556], Flags: 00000000, _GetTextExtentPoint32A@16 +S_PUB32: [0004:000035F4], Flags: 00000000, ??_C@_0O@JLHJ@MxStreamChunk?$AA@ +S_PUB32: [0004:00002E74], Flags: 00000000, ??_C@_0EF@ODHN@One?5or?5more?5of?5the?5parameters?5pa@ +S_PUB32: [0001:000039C0], Flags: 00000000, ??_GHistoryBook@@UAEPAXI@Z +S_PUB32: [0001:00056E66], Flags: 00000000, __rtzeronpop +S_PUB32: [0001:00004A30], Flags: 00000000, ?VTable0x68@Isle@@UAEXE@Z +S_PUB32: [0001:00017900], Flags: 00000000, ??0LegoVideoManager@@QAE@XZ +S_PUB32: [0001:00005350], Flags: 00000000, ??_EJukeBoxEntity@@UAEPAXI@Z +S_PUB32: [0001:00036E60], Flags: 00000000, ?FUN_100c4b50@MxRegionCursor@@AAEXAAVMxRect32@@@Z +S_PUB32: [0001:00027800], Flags: 00000000, ??_EMxDSActionList@@UAEPAXI@Z +S_PUB32: [0004:00002EBC], Flags: 00000000, ??_C@_0EG@NLJ@DirectDraw?5received?5a?5pointer?5th@ +S_PUB32: [0001:00016600], Flags: 00000000, ??1LegoState@@UAE@XZ +S_PUB32: [0004:00000E2C], Flags: 00000000, ?g_histbookScript@@3PAVMxAtomId@@A +S_PUB32: [0003:00005B98], Flags: 00000000, ??_C@_03DGJE@OCP?$AA@ +S_PUB32: [0004:00003194], Flags: 00000000, ??_C@_0ED@MID@Height?5of?5rectangle?5provided?5is?5@ +S_PUB32: [0004:0000C760], Flags: 00000000, __pRawDllMain +S_PUB32: [0001:00017310], Flags: 00000000, ?CheckIfEntityExists@@YAEEPBDH@Z +S_PUB32: [0001:00000B60], Flags: 00000000, ??1Act2Brick@@UAE@XZ +S_PUB32: [0001:00018EB0], Flags: 00000000, ?EnableRMDevice@LegoVideoManager@@QAEHXZ +S_PUB32: [0001:0005C5E0], Flags: 00000000, __raise_exc +S_PUB32: [0001:00038BD0], Flags: 00000000, ?CreateBitmap@MxStillPresenter@@UAEXXZ +S_PUB32: [0001:000348F0], Flags: 00000000, ??1?$MxPtrList@UMxRegionTopBottom@@@@UAE@XZ +S_PUB32: [0004:00000628], Flags: 00000000, ??_C@_0L@OPON@lego?5green?$AA@ +S_PUB32: [0001:0002CE80], Flags: 00000000, ?Flush@MXIOINFO@@QAEGG@Z +S_PUB32: [0001:00019BA0], Flags: 00000000, ??1?$MxList@PAVLegoPathController@@@@UAE@XZ +S_PUB32: [0001:00005560], Flags: 00000000, ?Destroy@Lego3DManager@@AAEXXZ +S_PUB32: [0001:0004F890], Flags: 00000000, _vsprintf +S_PUB32: [0004:000007FC], Flags: 00000000, ?g_playersGSI@@3PBDB +S_PUB32: [0002:00001990], Flags: 00000000, _SmackDoFrameToVESA +S_PUB32: [0001:00055480], Flags: 00000000, __heap_init +S_PUB32: [0001:000129A0], Flags: 00000000, ?PlantManager@@YAPAVLegoPlantManager@@XZ +S_PUB32: [0001:0002C7E0], Flags: 00000000, ??0MxFlcPresenter@@QAE@XZ +S_PUB32: [0001:000551C8], Flags: 00000000, __rtinfpopse +S_PUB32: [0001:00004DA0], Flags: 00000000, ?IsA@Jetski@@UBEEPBD@Z +S_PUB32: [0001:00038AF0], Flags: 00000000, ?AddToManager@MxSoundPresenter@@UAEJXZ +S_PUB32: [0004:00003CF8], Flags: 00000000, __imp___heapset +S_PUB32: [0004:00004364], Flags: 00000000, ___nullstring +S_PUB32: [0001:00000990], Flags: 00000000, ?VTable0x7c@LegoPathActor@@UAEEXZ +S_PUB32: [0004:000021F4], Flags: 00000000, ??_C@_0HP@OBII@Overlay?5surfaces?5could?5not?5be?5z?5@ +S_PUB32: [0001:00014040], Flags: 00000000, ??1GifManagerBase@@UAE@XZ +S_PUB32: [0001:000067F0], Flags: 00000000, ??_ELegoCacheSound@@UAEPAXI@Z +S_PUB32: [0001:00047960], Flags: 00000000, _free +S_PUB32: [0004:000002F0], Flags: 00000000, ?g_strOBJECT@@3PBDB +S_PUB32: [0001:00002340], Flags: 00000000, ??0GasStation@@QAE@XZ +S_PUB32: [0003:00005CC4], Flags: 00000000, ??_C@_03HECK@Wed?$AA@ +S_PUB32: [0001:00000820], Flags: 00000000, ??_EAct1State@@UAEPAXI@Z +S_PUB32: [0001:00010C30], Flags: 00000000, ??_GAct3State@@UAEPAXI@Z +S_PUB32: [0001:00001B10], Flags: 00000000, ?IsA@BuildingEntity@@UBEEPBD@Z +S_PUB32: [0001:00026620], Flags: 00000000, ?SkipToData@MxDSBuffer@@QAEPAEXZ +S_PUB32: [0001:0005143C], Flags: 00000000, __rtpiby2 +S_PUB32: [0001:00033590], Flags: 00000000, ?StreamingTickle@MxPresenter@@UAEXXZ +S_PUB32: [0004:00003FDC], Flags: 00000000, __NLG_Destination +S_PUB32: [0001:00045F40], Flags: 00000000, ?Clear@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@XZ +S_PUB32: [0001:0001F920], Flags: 00000000, ?DirectDrawEnumerateCallback@MxDeviceEnumerate@@SGHPAU_GUID@@PAD1PAX@Z +S_PUB32: [0003:00003340], Flags: 00000000, ??_7MxBackgroundAudioManager@@6B@ +S_PUB32: [0001:00010B70], Flags: 00000000, ?ClassName@Act3State@@UBEPBDXZ +S_PUB32: [0001:00033E50], Flags: 00000000, ?IsEnabled@MxPresenter@@QAEEXZ +S_PUB32: [0004:0000B5CA], Flags: 00000000, ??_B?1???id@?$numpunct@D@@$D@@9@9 +S_PUB32: [0001:0001E2A0], Flags: 00000000, ??_GMxCore@@UAEPAXI@Z +S_PUB32: [0001:00005010], Flags: 00000000, ?ClassName@JukeBox@@UBEPBDXZ +S_PUB32: [0001:00025430], Flags: 00000000, ?GetSizeOnDisk@MxDSAction@@UAEIXZ +S_PUB32: [0001:00038A30], Flags: 00000000, ??1MxSoundPresenter@@UAE@XZ +S_PUB32: [0003:00001C50], Flags: 00000000, ??_7Doors@@6B@ +S_PUB32: [0003:000059C8], Flags: 00000000, ??_C@_0BA@NABK@french?9canadian?$AA@ +S_PUB32: [0004:000009B4], Flags: 00000000, ??_C@_01PLJA@0?$AA@ +S_PUB32: [0001:0001F1F0], Flags: 00000000, ??0MxDeviceEnumerate@@QAE@XZ +S_PUB32: [0001:0002AEC0], Flags: 00000000, ??_GMxDSStill@@UAEPAXI@Z +S_PUB32: [0004:0000191C], Flags: 00000000, ??_C@_0DG@DBHJ@CreateSurface?5for?5front?1back?5ful@ +S_PUB32: [0001:0004E3EE], Flags: 00000000, _CreateMutexA@12 +S_PUB32: [0001:00025C20], Flags: 00000000, ??_GMxDSBuffer@@UAEPAXI@Z +S_PUB32: [0004:000000FC], Flags: 00000000, ??_C@_0P@CHOB@BuildingEntity?$AA@ +S_PUB32: [0001:0003E7B0], Flags: 00000000, ?SetDeviceName@MxVideoParam@@QAEXPAD@Z +S_PUB32: [0004:00002788], Flags: 00000000, ??_C@_0DD@DCCL@No?5hardware?5support?5for?516?5or?525@ +S_PUB32: [0001:00043460], Flags: 00000000, ?SetColorModel@DeviceImpl@TglImpl@@UAE?AW4Result@Tgl@@W4ColorModel@4@@Z +S_PUB32: [0004:0000B5C9], Flags: 00000000, ??_B?1???id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@@@@@@$D@@9@9 +S_PUB32: [0001:000437A0], Flags: 00000000, ??_GObject@Tgl@@UAEPAXI@Z +S_PUB32: [0004:00003BE8], Flags: 00000000, ?g_lastTimeCalculated@MxTimer@@0JA +S_PUB32: [0001:00027200], Flags: 00000000, ?Seek@MxDSFile@@UAEJJH@Z +S_PUB32: [0004:000004D0], Flags: 00000000, ??_C@_0P@GKAC@LegoCacheSound?$AA@ +S_PUB32: [0003:00004548], Flags: 00000000, ??_7MxTimer@@6B@ +S_PUB32: [0001:00045270], Flags: 00000000, ??_EUnk@Tgl@@UAEPAXI@Z +S_PUB32: [0005:00000594], Flags: 00000000, WINMM_NULL_THUNK_DATA +S_PUB32: [0001:00045190], Flags: 00000000, ??_EUnkImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:000626B8], Flags: 00000000, _GetStartupInfoA@4 +S_PUB32: [0001:00009AD0], Flags: 00000000, ??_GMxAudioPresenter@@UAEPAXI@Z +S_PUB32: [0001:0002EEC0], Flags: 00000000, ?StreamingTickle@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0003:00005508], Flags: 00000000, ??_C@_01PJCK@?4?$AA@ +S_PUB32: [0001:00031D10], Flags: 00000000, ?erase@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@QAE?AViterator@1@V21@@Z +S_PUB32: [0001:0004E466], Flags: 00000000, _GetProcessHeap@0 +S_PUB32: [0001:00045D70], Flags: 00000000, ?SetCamera@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVCamera@4@@Z +S_PUB32: [0001:00001C10], Flags: 00000000, ??1BuildingEntity@@UAE@XZ +S_PUB32: [0001:00026EE0], Flags: 00000000, ?ClassName@MxDSSource@@UBEPBDXZ +S_PUB32: [0005:0000003C], Flags: 00000000, __IMPORT_DESCRIPTOR_WINMM +S_PUB32: [0001:00059814], Flags: 00000000, __adj_fdivr_m16i +S_PUB32: [0001:0002F5E0], Flags: 00000000, ??_GMxMusicPresenter@@UAEPAXI@Z +S_PUB32: [0004:000011DC], Flags: 00000000, ??_C@_0O@IAJI@lego?5red?5flat?$AA@ +S_PUB32: [0003:00002DA8], Flags: 00000000, ??_7LegoROI@@6B@ +S_PUB32: [0004:00000A28], Flags: 00000000, ??_C@_0BB@ENGM@MxSoundPresenter?$AA@ +S_PUB32: [0001:00029B30], Flags: 00000000, ?Append@?$MxList@VMxString@@@@QAEXVMxString@@@Z +S_PUB32: [0001:00040F30], Flags: 00000000, ??_ERadio@@UAEPAXI@Z +S_PUB32: [0005:00000524], Flags: 00000000, __imp__GetOEMCP@0 +S_PUB32: [0001:00026B20], Flags: 00000000, ??1MxDSEvent@@UAE@XZ +S_PUB32: [0001:00027190], Flags: 00000000, ?Close@MxDSFile@@UAEJXZ +S_PUB32: [0001:000180F0], Flags: 00000000, ??1MxDeviceEnumerate@@QAE@XZ +S_PUB32: [0001:0001C6C0], Flags: 00000000, ?LoadFile@MxBitmap@@UAEJPAX@Z +S_PUB32: [0001:000126C0], Flags: 00000000, ??_GRaceStandsEntity@@UAEPAXI@Z +S_PUB32: [0001:00040FD0], Flags: 00000000, ??0RadioState@@QAE@XZ +S_PUB32: [0001:00026540], Flags: 00000000, ?ClassName@MxStreamChunk@@UBEPBDXZ +S_PUB32: [0001:0002E270], Flags: 00000000, ?Destroy@MxMediaPresenter@@UAEXXZ +S_PUB32: [0001:00023630], Flags: 00000000, ??1MxDiskStreamProviderThread@@UAE@XZ +S_PUB32: [0001:000450D0], Flags: 00000000, ?CreateUnk@RendererImpl@TglImpl@@UAEPAVUnk@Tgl@@XZ +S_PUB32: [0001:00045460], Flags: 00000000, ?CreateTexture@RendererImpl@TglImpl@@UAEPAVTexture@Tgl@@XZ +S_PUB32: [0001:00047790], Flags: 00000000, ?shi_New@@YAPAXKIPAU_SHI_Pool@@@Z +S_PUB32: [0004:0000B5CB], Flags: 00000000, ??_B?1???id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@@@@@@$D@@9@9 +S_PUB32: [0001:00059D64], Flags: 00000000, __adj_fprem1 +S_PUB32: [0001:00041250], Flags: 00000000, ?SetIdentity@Matrix4Impl@@UAEXXZ +S_PUB32: [0001:000203B0], Flags: 00000000, ?FUN_1009d920@MxDirectDraw@@QAEXXZ +S_PUB32: [0005:00000394], Flags: 00000000, __imp__DeleteCriticalSection@4 +S_PUB32: [0004:000036D8], Flags: 00000000, ??_C@_0BB@GHMN@MxEventPresenter?$AA@ +S_PUB32: [0001:00037F50], Flags: 00000000, ??1?$MxPtrListCursor@VMxRect32@@@@UAE@XZ +S_PUB32: [0001:000076D0], Flags: 00000000, ?RepeatingTickle@LegoEntityPresenter@@UAEXXZ +S_PUB32: [0001:0004E4CC], Flags: 00000000, _CreateEventA@16 +S_PUB32: [0001:000491C0], Flags: 00000000, @_shi_resizeAny@16 +S_PUB32: [0003:000056F0], Flags: 00000000, ??_C@_06BAPG@norway?$AA@ +S_PUB32: [0001:00016560], Flags: 00000000, ?Destroy@LegoSoundManager@@AAEXE@Z +S_PUB32: [0001:00026CD0], Flags: 00000000, ??1MxDSSource@@UAE@XZ +S_PUB32: [0001:00005440], Flags: 00000000, ??_GLego3DManager@@UAEPAXI@Z +S_PUB32: [0001:00001B00], Flags: 00000000, ?ClassName@BuildingEntity@@UBEPBDXZ +S_PUB32: [0004:00000C7C], Flags: 00000000, ??_C@_0BD@CHJE@LegoWorldPresenter?$AA@ +S_PUB32: [0001:00047530], Flags: 00000000, ?RemoveAll@ViewManager@@QAEXPAVViewROI@@@Z +S_PUB32: [0001:0001F280], Flags: 00000000, ?EnumDirectDrawCallback@MxDeviceEnumerate@@QAEHPAU_GUID@@PAD1@Z +S_PUB32: [0003:00004E7C], Flags: 00000000, ??_7ViewLODList@@6B@ +S_PUB32: [0001:00048ED0], Flags: 00000000, _MemFreePtr@4 +S_PUB32: [0001:0002F8E0], Flags: 00000000, ??1?$List@I@@QAE@XZ +S_PUB32: [0001:0004E58C], Flags: 00000000, _CreatePalette@4 +S_PUB32: [0001:00000760], Flags: 00000000, ?ClassName@Act1State@@UBEPBDXZ +S_PUB32: [0004:0000475A], Flags: 00000000, __OP_POWjmptab +S_PUB32: [0001:0001FFC0], Flags: 00000000, ??1MxDirectDraw@@UAE@XZ +S_PUB32: [0001:00031C00], Flags: 00000000, ??1?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@QAE@XZ +S_PUB32: [0001:00001F50], Flags: 00000000, ?IsA@DuneBuggy@@UBEEPBD@Z +S_PUB32: [0001:0003B7B0], Flags: 00000000, ??0MxString@@QAE@XZ +S_PUB32: [0001:0002D780], Flags: 00000000, ?VTable0x88@MxLoopingSmkPresenter@@UAEXXZ +S_PUB32: [0001:0004E478], Flags: 00000000, _IsBadCodePtr@4 +S_PUB32: [0001:000329B0], Flags: 00000000, ?DestroyInstance@MxOmni@@SAXXZ +S_PUB32: [0001:00006230], Flags: 00000000, ??_ELegoAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00062646], Flags: 00000000, _CreateThread@24 +S_PUB32: [0001:0001FF00], Flags: 00000000, ??_GMxDevice@@QAEPAXI@Z +S_PUB32: [0001:00026850], Flags: 00000000, ?IsA@MxDSChunk@@UBEEPBD@Z +S_PUB32: [0001:0002B0A0], Flags: 00000000, ?HasId@MxDSStreamingAction@@UAEEI@Z +S_PUB32: [0004:000000B8], Flags: 00000000, ??_C@_09POFG@LegoActor?$AA@ +S_PUB32: [0001:00000230], Flags: 00000000, ?GetBitsPerPixel@@YAHPAUIDirectDrawSurface@@@Z +S_PUB32: [0001:00005BB0], Flags: 00000000, ?Notify@LegoAnimationManager@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0004C030], Flags: 00000000, _shi_termPoolInitMutex +S_PUB32: [0001:00050DF0], Flags: 00000000, ___threadhandle +S_PUB32: [0001:0001CBD0], Flags: 00000000, ?ClassName@MxCompositeMediaPresenter@@UBEPBDXZ +S_PUB32: [0001:000463D0], Flags: 00000000, ??0TowTrackMissionState@@QAE@XZ +S_PUB32: [0005:00000474], Flags: 00000000, __imp__CloseHandle@4 +S_PUB32: [0003:00005B9C], Flags: 00000000, ??_C@_03EKFG@ACP?$AA@ +S_PUB32: [0001:0005B740], Flags: 00000000, ___mtold12 +S_PUB32: [0001:00008C90], Flags: 00000000, ??_GMxParam@@UAEPAXI@Z +S_PUB32: [0003:00005974], Flags: 00000000, ??_C@_09IBNG@hungarian?$AA@ +S_PUB32: [0001:000313A0], Flags: 00000000, ?AtomIdCounterSet@@YAPAVMxAtomIdCounterSet@@XZ +S_PUB32: [0001:000459E0], Flags: 00000000, ?GetBoundingBox@UnkImpl@TglImpl@@UAE?AW4Result@Tgl@@QAM0@Z +S_PUB32: [0001:00020AB0], Flags: 00000000, ?FUN_1009e020@MxDirectDraw@@QAEXXZ +S_PUB32: [0001:00005FE0], Flags: 00000000, ??_GMxMediaPresenter@@UAEPAXI@Z +S_PUB32: [0001:00032900], Flags: 00000000, ??1MxStartActionNotificationParam@@UAE@XZ +S_PUB32: [0003:00005834], Flags: 00000000, ??_C@_02PILH@us?$AA@ +S_PUB32: [0004:00000CA8], Flags: 00000000, ??_C@_0M@CMNH@LegoRaceCar?$AA@ +S_PUB32: [0003:000015A0], Flags: 00000000, ??_7LegoEntityPresenter@@6B@ +S_PUB32: [0004:00001298], Flags: 00000000, ??_C@_0P@HAFN@lego?5blue?5flat?$AA@ +S_PUB32: [0001:0003FFA0], Flags: 00000000, ?SetVolume@MxWavePresenter@@UAEXH@Z +S_PUB32: [0005:00000548], Flags: 00000000, __imp__GetMenu@4 +S_PUB32: [0004:000018EC], Flags: 00000000, ??_C@_0CN@GDAE@GetAttachedSurface?5failed?5to?5get@ +S_PUB32: [0004:00004AA8], Flags: 00000000, __iob +S_PUB32: [0001:0005A870], Flags: 00000000, _wcslen +S_PUB32: [0001:00004C30], Flags: 00000000, ??0IslePathActor@@QAE@XZ +S_PUB32: [0001:00047090], Flags: 00000000, ??_GLODListBase@@UAEPAXI@Z +S_PUB32: [0004:000014A0], Flags: 00000000, ??_C@_01PEAM@t?$AA@ +S_PUB32: [0001:00015D20], Flags: 00000000, ?VTable0x70@LegoRace@@UAEII@Z +S_PUB32: [0001:00009E50], Flags: 00000000, ??_ELegoLoadCacheSoundPresenter@@UAEPAXI@Z +S_PUB32: [0003:00005274], Flags: 00000000, ??_C@_0CJ@GGOE@R6019?$AN?6?9?5unable?5to?5open?5console?5@ +S_PUB32: [0003:00005CB8], Flags: 00000000, ??_C@_03MPKK@Sat?$AA@ +S_PUB32: [0001:00056590], Flags: 00000000, __ZeroTail +S_PUB32: [0001:00038830], Flags: 00000000, ?Pause@MxSoundManager@@UAEXXZ +S_PUB32: [0001:000178D0], Flags: 00000000, ??_H@YGXPAXIHP6EX0@Z@Z +S_PUB32: [0001:0003B830], Flags: 00000000, ??_GMxString@@UAEPAXI@Z +S_PUB32: [0005:000004F0], Flags: 00000000, __imp__WriteFile@20 +S_PUB32: [0004:000061E0], Flags: 00000000, ___lc_time_c +S_PUB32: [0001:00043C50], Flags: 00000000, ?DeepClone@MeshImpl@TglImpl@@UAEPAVMesh@Tgl@@PAVUnk@4@@Z +S_PUB32: [0003:000051DC], Flags: 00000000, ??_C@_0DF@FKAC@R6026?$AN?6?9?5not?5enough?5space?5for?5st@ +S_PUB32: [0004:00005980], Flags: 00000000, __d_max +S_PUB32: [0003:00004CE0], Flags: 00000000, ??_7Light@Tgl@@6B@ +S_PUB32: [0003:00004CF0], Flags: 00000000, ??_7LightImpl@TglImpl@@6B@ +S_PUB32: [0001:0003BEB0], Flags: 00000000, ??_EMxThread@@UAEPAXI@Z +S_PUB32: [0004:00000DFC], Flags: 00000000, ?g_jetskiScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0002B080], Flags: 00000000, ??_EMxDSStreamingAction@@UAEPAXI@Z +S_PUB32: [0001:00009F00], Flags: 00000000, ??0LegoLocomotionAnimPresenter@@QAE@XZ +S_PUB32: [0004:00003B80], Flags: 00000000, ??_C@_0BE@LNME@MxRAMStreamProvider?$AA@ +S_PUB32: [0001:00024300], Flags: 00000000, ?CountTotalBitsSetTo1@MxDisplaySurface@@AAEEI@Z +S_PUB32: [0001:0002BA60], Flags: 00000000, ??_G?$MxListCursor@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0001:00015190], Flags: 00000000, ?ReadyTickle@LegoPalettePresenter@@UAEXXZ +S_PUB32: [0003:00001158], Flags: 00000000, ??_7LegoActor@@6B@ +S_PUB32: [0001:00056720], Flags: 00000000, __CopyMan +S_PUB32: [0001:00000950], Flags: 00000000, ?VTable0x5c@LegoActor@@UAEMXZ +S_PUB32: [0001:0001EE60], Flags: 00000000, ??1?$List@UMxDisplayMode@@@@QAE@XZ +S_PUB32: [0001:00024320], Flags: 00000000, ?CountContiguousBitsSetTo1@MxDisplaySurface@@AAEEI@Z +S_PUB32: [0004:00002F38], Flags: 00000000, ??_C@_0FC@OPDP@The?5GUID?5passed?5to?5DirectDrawCre@ +S_PUB32: [0001:0004EF00], Flags: 00000000, _sprintf +S_PUB32: [0001:00027660], Flags: 00000000, ??0MxDSMultiAction@@QAE@XZ +S_PUB32: [0001:0002C960], Flags: 00000000, ?LoadHeader@MxFlcPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0005:00000544], Flags: 00000000, __imp__SetRect@20 +S_PUB32: [0001:000377A0], Flags: 00000000, ??_GMxSmkPresenter@@UAEPAXI@Z +S_PUB32: [0004:00000AA0], Flags: 00000000, ?g_movementMinAccel@@3MA +S_PUB32: [0001:0002F2D0], Flags: 00000000, ?Destroy@MxMusicManager@@UAEXXZ +S_PUB32: [0001:000099F0], Flags: 00000000, ?IsA@MxAudioPresenter@@UBEEPBD@Z +S_PUB32: [0001:0001CCC0], Flags: 00000000, ??_EMxCompositeMediaPresenter@@UAEPAXI@Z +S_PUB32: [0001:00009EE0], Flags: 00000000, ?Destroy@LegoLoadCacheSoundPresenter@@AAEXE@Z +S_PUB32: [0004:00001B44], Flags: 00000000, ??_C@_0EH@KEBA@Rectangle?5provided?5was?5not?5horiz@ +S_PUB32: [0004:000006DC], Flags: 00000000, ??_C@_0L@LFKA@c_dbflagy0?$AA@ +S_PUB32: [0003:000016B0], Flags: 00000000, ??_7LegoHideAnimPresenter@@6B@ +S_PUB32: [0001:0002D6B0], Flags: 00000000, ??_EMxLoopingSmkPresenter@@UAEPAXI@Z +S_PUB32: [0001:00026970], Flags: 00000000, ??0MxDSEvent@@QAE@XZ +S_PUB32: [0005:00000354], Flags: 00000000, __imp__RealizePalette@4 +S_PUB32: [0004:00005940], Flags: 00000000, __matherr_flag +S_PUB32: [0001:00049850], Flags: 00000000, _MemPoolWalk@8 +S_PUB32: [0004:00003BA4], Flags: 00000000, ??_C@_05LLOB@FALSE?$AA@ +S_PUB32: [0001:00056E53], Flags: 00000000, __rttospopde +S_PUB32: [0001:00009510], Flags: 00000000, ?SetWorld@LegoInputManager@@QAEXPAVLegoWorld@@@Z +S_PUB32: [0004:000047EA], Flags: 00000000, __OP_EXPjmptab +S_PUB32: [0001:00016A20], Flags: 00000000, ??0LegoFileStream@@QAE@XZ +S_PUB32: [0003:00005AE4], Flags: 00000000, ??_C@_0BE@FPEJ@chinese?9traditional?$AA@ +S_PUB32: [0001:0004C910], Flags: 00000000, _MemPoolFree@4 +S_PUB32: [0001:0004E544], Flags: 00000000, _StretchDIBits@52 +S_PUB32: [0003:00004800], Flags: 00000000, ??_7RaceState@@6B@ +S_PUB32: [0001:00019540], Flags: 00000000, ??1LegoPathControllerList@@UAE@XZ +S_PUB32: [0003:000053F0], Flags: 00000000, ??_C@_0BK@DEOK@Runtime?5Error?$CB?6?6Program?3?5?$AA@ +S_PUB32: [0003:000026F0], Flags: 00000000, ??_7HelicopterState@@6B@ +S_PUB32: [0003:00005C94], Flags: 00000000, ??_C@_09PBIN@Wednesday?$AA@ +S_PUB32: [0003:00005C4C], Flags: 00000000, ??_C@_03BLHK@Oct?$AA@ +S_PUB32: [0003:00004FBC], Flags: 00000000, ??_C@_05EODD@IsTNT?$AA@ +S_PUB32: [0001:00046360], Flags: 00000000, ??_ETowTrack@@UAEPAXI@Z +S_PUB32: [0004:00000640], Flags: 00000000, ??_C@_0L@DNIO@c_jswnshy5?$AA@ +S_PUB32: [0001:00041220], Flags: 00000000, ?Element@Matrix4Impl@@UAEPAMHH@Z +S_PUB32: [0001:00001C60], Flags: 00000000, ??0CarRace@@QAE@XZ +S_PUB32: [0001:00003A40], Flags: 00000000, ??0Hospital@@QAE@XZ +S_PUB32: [0004:00000AB8], Flags: 00000000, ??_C@_0BC@HJHM@LegoNavController?$AA@ +S_PUB32: [0001:0003F4A0], Flags: 00000000, ?StreamingTickle@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:00061710], Flags: 00000000, _is_wctype +S_PUB32: [0001:00027AA0], Flags: 00000000, ??1MxDSMultiAction@@UAE@XZ +S_PUB32: [0001:00000C60], Flags: 00000000, ?IsA@Act3@@UBEEPBD@Z +S_PUB32: [0004:00000DD4], Flags: 00000000, ??_C@_09IGGC@IsleActor?$AA@ +S_PUB32: [0001:00056E5D], Flags: 00000000, __rtnospopde +S_PUB32: [0001:00049780], Flags: 00000000, _MemPoolCount@4 +S_PUB32: [0005:000003C8], Flags: 00000000, __imp__ReleaseSemaphore@12 +S_PUB32: [0001:00001630], Flags: 00000000, ??_GAnimState@@UAEPAXI@Z +S_PUB32: [0001:0001AB60], Flags: 00000000, ?Clone@MxType4NotificationParam@@UAEPAVMxNotificationParam@@XZ +S_PUB32: [0001:00062748], Flags: 00000000, _CreateProcessA@40 +S_PUB32: [0001:00011290], Flags: 00000000, ?ClassName@HospitalEntity@@UBEPBDXZ +S_PUB32: [0001:000049F0], Flags: 00000000, ?StopAction@Isle@@QAEJAAVMxParam@@@Z +S_PUB32: [0001:00055161], Flags: 00000000, __fFEXP +S_PUB32: [0004:000006D0], Flags: 00000000, ??_C@_0M@CIPN@lego?5yellow?$AA@ +S_PUB32: [0003:000056F8], Flags: 00000000, ??_C@_0M@MMKA@new?9zealand?$AA@ +S_PUB32: [0005:00000064], Flags: 00000000, __IMPORT_DESCRIPTOR_KERNEL32 +S_PUB32: [0001:00041550], Flags: 00000000, ?CalcLocalTransform@@YAXABVVector3Impl@@00AAVMatrix4Impl@@@Z +S_PUB32: [0004:0000165C], Flags: 00000000, ??_C@_0ED@OAKO@Failed?5to?5place?5vital?5surfaces?5i@ +S_PUB32: [0001:0000F4D0], Flags: 00000000, ?ClassName@LegoWorld@@UBEPBDXZ +S_PUB32: [0001:000526E0], Flags: 00000000, __lock_file2 +S_PUB32: [0003:00005914], Flags: 00000000, ??_C@_03IJLK@nlb?$AA@ +S_PUB32: [0001:0004FEC0], Flags: 00000000, __DllMainCRTStartup@12 +S_PUB32: [0001:0001B6D0], Flags: 00000000, ?SetVolume@MxAudioManager@@UAEXH@Z +S_PUB32: [0001:0003EBC0], Flags: 00000000, ?IsHit@AlphaMask@MxVideoPresenter@@QAEHII@Z +S_PUB32: [0001:00012650], Flags: 00000000, ??_EBeachHouseEntity@@UAEPAXI@Z +S_PUB32: [0001:000436C0], Flags: 00000000, ?GetTexture@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@AAPAVTexture@4@@Z +S_PUB32: [0001:000321A0], Flags: 00000000, ??1?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@QAE@XZ +S_PUB32: [0004:00003528], Flags: 00000000, ??_C@_0BH@EJHP@MxDiskStreamController?$AA@ +S_PUB32: [0001:00005700], Flags: 00000000, ?ParseExtra@LegoActionControlPresenter@@UAEXXZ +S_PUB32: [0001:0003C330], Flags: 00000000, ??0MxTimer@@QAE@XZ +S_PUB32: [0001:0001E600], Flags: 00000000, ?CreateIDirect3D@MxDirect3D@@QAEHXZ +S_PUB32: [0001:0002FA20], Flags: 00000000, ??1?$List@PAVMxNotification@@@@QAE@XZ +S_PUB32: [0004:00001B28], Flags: 00000000, ??_C@_0BL@ICEC@Unrecognized?5error?5value?4?$AA?$AA@ +S_PUB32: [0001:00045FE0], Flags: 00000000, ?ForceUpdate@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@KKKK@Z +S_PUB32: [0001:000122A0], Flags: 00000000, ??_EJetskiRaceState@@UAEPAXI@Z +S_PUB32: [0001:000060F0], Flags: 00000000, ??_EMxVideoPresenter@@UAEPAXI@Z +S_PUB32: [0001:000383D0], Flags: 00000000, ?Create@MxSoundManager@@UAEJIE@Z +S_PUB32: [0001:0000A2A0], Flags: 00000000, ?ClassName@LegoNavController@@UBEPBDXZ +S_PUB32: [0001:000091E0], Flags: 00000000, ?CreateAndAcquireKeyboard@LegoInputManager@@QAEXPAX@Z +S_PUB32: [0001:00000EA0], Flags: 00000000, ??1IslePathActor@@UAE@XZ +S_PUB32: [0004:00003714], Flags: 00000000, ??_C@_0BG@DLHP@MxLoopingSmkPresenter?$AA@ +S_PUB32: [0001:00036220], Flags: 00000000, ?InsertEntry@?$MxList@PAUMxRegionLeftRight@@@@IAEPAV?$MxListEntry@PAUMxRegionLeftRight@@@@PAUMxRegionLeftRight@@PAV2@1@Z +S_PUB32: [0001:00028820], Flags: 00000000, ?Deserialize@MxDSObject@@UAEXPAPAEF@Z +S_PUB32: [0003:000057B0], Flags: 00000000, ??_C@_07IMFA@finland?$AA@ +S_PUB32: [0001:0000A560], Flags: 00000000, ?SetTargets@LegoNavController@@QAEXHHE@Z +S_PUB32: [0001:0003E8A0], Flags: 00000000, ?LoadHeader@MxVideoPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00025AF0], Flags: 00000000, ?Clone@MxDSAnim@@UAEPAVMxDSAction@@XZ +S_PUB32: [0001:0002F120], Flags: 00000000, ?Init@MxMusicManager@@IAEXXZ +S_PUB32: [0001:00043110], Flags: 00000000, ??0SkateBoard@@QAE@XZ +S_PUB32: [0001:00019CC0], Flags: 00000000, ?configureLegoWorldPresenter@LegoWorldPresenter@@SAXH@Z +S_PUB32: [0003:000001B0], Flags: 00000000, ??_7Act3@@6B@ +S_PUB32: [0001:00046D90], Flags: 00000000, ??_GViewLODListManager@@UAEPAXI@Z +S_PUB32: [0001:00029BC0], Flags: 00000000, ??_EMxStringListCursor@@UAEPAXI@Z +S_PUB32: [0001:0004CBB0], Flags: 00000000, @_shi_invokeErrorHandler1@8 +S_PUB32: [0001:0002A2C0], Flags: 00000000, ??1?$MxList@VMxString@@@@UAE@XZ +S_PUB32: [0001:0003EB20], Flags: 00000000, ??_EAlphaMask@MxVideoPresenter@@UAEPAXI@Z +S_PUB32: [0001:0003CD10], Flags: 00000000, ?TransitionWipe@MxTransitionManager@@AAEXXZ +S_PUB32: [0001:00011090], Flags: 00000000, ?IsA@CarRaceState@@UBEEPBD@Z +S_PUB32: [0001:00008CB0], Flags: 00000000, ??_EMxNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:000040A0], Flags: 00000000, ?VTable0x5c@Infocenter@@UAEEXZ +S_PUB32: [0003:000019D8], Flags: 00000000, ??_7MxWavePresenter@@6B@ +S_PUB32: [0001:00005650], Flags: 00000000, ?FUN_100ab100@Lego3DView@@QAEXPAVLegoROI@@@Z +S_PUB32: [0001:0001E3D0], Flags: 00000000, ??0MxDirect3D@@QAE@XZ +S_PUB32: [0001:00027870], Flags: 00000000, ??_E?$MxCollection@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:00007050], Flags: 00000000, ??_ELegoControlManager@@UAEPAXI@Z +S_PUB32: [0001:00041390], Flags: 00000000, ?EqualsMxProduct@Matrix4Impl@@UAEXPBV1@0@Z +S_PUB32: [0001:00018CA0], Flags: 00000000, ?EnableFullScreenMovie@LegoVideoManager@@QAEXEE@Z +S_PUB32: [0001:0002ABC0], Flags: 00000000, ?CopyFrom@MxDSSound@@QAEXAAV1@@Z +S_PUB32: [0001:00040780], Flags: 00000000, ??_GPolice@@UAEPAXI@Z +S_PUB32: [0003:00005AD0], Flags: 00000000, ??_C@_05BMOA@czech?$AA@ +S_PUB32: [0001:00015DC0], Flags: 00000000, ?VTable0x68@LegoRace@@UAEXE@Z +S_PUB32: [0001:00020150], Flags: 00000000, ?CacheOriginalPaletteEntries@MxDirectDraw@@QAEHXZ +S_PUB32: [0001:00015D30], Flags: 00000000, ?VTable0x74@LegoRace@@UAEII@Z +S_PUB32: [0003:00005584], Flags: 00000000, ??_C@_03JLPI@tan?$AA@ +S_PUB32: [0004:00003CF0], Flags: 00000000, __imp___heapadd +S_PUB32: [0001:00016070], Flags: 00000000, ??_EOrientableROI@@UAEPAXI@Z +S_PUB32: [0001:00041CD0], Flags: 00000000, ?DotImpl@Vector4Impl@@UBEMPAM0@Z +S_PUB32: [0001:00008D20], Flags: 00000000, ??_ELegoEventNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:00031500], Flags: 00000000, ?NotifyCurrentEntity@MxOmni@@UAEXPAVMxNotificationParam@@@Z +S_PUB32: [0001:0001B4F0], Flags: 00000000, ?Clear@MxAtomId@@QAEXXZ +S_PUB32: [0004:00000C20], Flags: 00000000, ??_C@_0L@JCNK@ScoreState?$AA@ +S_PUB32: [0001:000179F0], Flags: 00000000, ?VTable0x3c@LegoVideoManager@@UAEPAVMxUnknown100d9d00@@XZ +S_PUB32: [0003:000022F8], Flags: 00000000, ??_7LegoAct2@@6B@ +S_PUB32: [0001:00012AF0], Flags: 00000000, ?FUN_1001a700@@YAXXZ +S_PUB32: [0004:000006AC], Flags: 00000000, ??_C@_0L@PDLP@c_dbhndly0?$AA@ +S_PUB32: [0003:000041E0], Flags: 00000000, ??_7MxRegionTopBottomListCursor@@6B@ +S_PUB32: [0001:00003640], Flags: 00000000, ?FUN_100040a0@HelicopterSubclass@@QAEJAAVVector4Impl@@M@Z +S_PUB32: [0001:0001B700], Flags: 00000000, ?GetVolume@MxAudioPresenter@@UAEHXZ +S_PUB32: [0001:00024640], Flags: 00000000, ?Destroy@MxDisplaySurface@@UAEXXZ +S_PUB32: [0001:00016C00], Flags: 00000000, ?Open@LegoFileStream@@QAEJPBDW4OpenFlags@LegoStream@@@Z +S_PUB32: [0004:000062E0], Flags: 00000000, __pow10pos +S_PUB32: [0003:00002B20], Flags: 00000000, ??_7LegoPathActor@@6B@ +S_PUB32: [0001:00011080], Flags: 00000000, ?ClassName@CarRaceState@@UBEPBDXZ +S_PUB32: [0001:0001CFA0], Flags: 00000000, ?StartingTickle@MxCompositeMediaPresenter@@UAEXXZ +S_PUB32: [0001:0002DC30], Flags: 00000000, ?Init@MxMediaManager@@QAEJXZ +S_PUB32: [0001:00039350], Flags: 00000000, ?IntoLength@MxStreamChunk@@SAPAIPAE@Z +S_PUB32: [0001:0002B670], Flags: 00000000, ??1MxStreamChunkList@@UAE@XZ +S_PUB32: [0001:00032950], Flags: 00000000, ??1MxType4NotificationParam@@UAE@XZ +S_PUB32: [0003:00005A88], Flags: 00000000, ??_C@_07ELCN@english?$AA@ +S_PUB32: [0003:00005C58], Flags: 00000000, ??_C@_03OBKI@Jul?$AA@ +S_PUB32: [0001:00039FE0], Flags: 00000000, ??_GMxNextActionDataStart@@UAEPAXI@Z +S_PUB32: [0004:00003CE0], Flags: 00000000, __imp__realloc +S_PUB32: [0004:0000B5C8], Flags: 00000000, ??_B?1???id@?$numpunct@G@@$D@@9@9 +S_PUB32: [0001:000147A0], Flags: 00000000, ?Notify@LegoOmni@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0000A6B0], Flags: 00000000, ?CalculateNewAccel@LegoNavController@@QAEMHHMH@Z +S_PUB32: [0001:0000A7A0], Flags: 00000000, ??0LegoObjectFactory@@QAE@XZ +S_PUB32: [0001:000531F0], Flags: 00000000, __ioinit +S_PUB32: [0001:00050E70], Flags: 00000000, __ms_p5_mp_test_fdiv +S_PUB32: [0001:000076E0], Flags: 00000000, ?SetBackendLocation@LegoEntityPresenter@@QAEXAAVVector3Data@@00@Z +S_PUB32: [0004:00004024], Flags: 00000000, ___app_type +S_PUB32: [0001:00027400], Flags: 00000000, ??1MxDSMediaAction@@UAE@XZ +S_PUB32: [0001:00006CE0], Flags: 00000000, ?Notify@LegoCarBuild@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00045F10], Flags: 00000000, ?GetBackgroundColor@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@PAM00@Z +S_PUB32: [0003:000059F8], Flags: 00000000, ??_C@_03EOLE@fra?$AA@ +S_PUB32: [0001:0003DD80], Flags: 00000000, ?Init@MxVideoManager@@QAEJXZ +S_PUB32: [0004:00000350], Flags: 00000000, ??_C@_0M@NCNK@HistoryBook?$AA@ +S_PUB32: [0001:00032280], Flags: 00000000, ??_EMxVariableTable@@UAEPAXI@Z +S_PUB32: [0001:00004A00], Flags: 00000000, ?Stop@Isle@@UAEXXZ +S_PUB32: [0001:00000B40], Flags: 00000000, ??_EAct2Brick@@UAEPAXI@Z +S_PUB32: [0004:000035D8], Flags: 00000000, ??_C@_0BA@DPBH@MxDSMediaAction?$AA@ +S_PUB32: [0004:00000700], Flags: 00000000, ??_C@_0L@HICJ@c_chtaily0?$AA@ +S_PUB32: [0001:00056420], Flags: 00000000, __tolower +S_PUB32: [0001:0001EF60], Flags: 00000000, ?Init@MxDriver@@QAEXPAU_GUID@@PAD1@Z +S_PUB32: [0001:00000D90], Flags: 00000000, ??1Act3@@UAE@XZ +S_PUB32: [0001:00037E20], Flags: 00000000, ??_G?$MxPtrList@VMxRect32@@@@UAEPAXI@Z +S_PUB32: [0001:0002C8D0], Flags: 00000000, ??_GMxFlcPresenter@@UAEPAXI@Z +S_PUB32: [0001:00035260], Flags: 00000000, ??1MxRegionTopBottomListCursor@@UAE@XZ +S_PUB32: [0001:0002B290], Flags: 00000000, ?SetInternalAction@MxDSStreamingAction@@QAEXPAVMxDSAction@@@Z +S_PUB32: [0003:00004B70], Flags: 00000000, ??_7Device@Tgl@@6B@ +S_PUB32: [0001:00012170], Flags: 00000000, ??1LegoAnimActor@@UAE@XZ +S_PUB32: [0003:00004BA0], Flags: 00000000, ??_7DeviceImpl@TglImpl@@6B@ +S_PUB32: [0001:00003CA0], Flags: 00000000, ??0HospitalState@@QAE@XZ +S_PUB32: [0004:00000E40], Flags: 00000000, ?g_act3Script@@3PAVMxAtomId@@A +S_PUB32: [0001:0003D720], Flags: 00000000, ??1?$MxHashTableCursor@PAVMxVariable@@@@UAE@XZ +S_PUB32: [0001:00037890], Flags: 00000000, ?LoadHeader@MxSmkPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0004:00000A94], Flags: 00000000, ?g_turnMaxSpeed@@3MA +S_PUB32: [0001:000413E0], Flags: 00000000, ??4Matrix4Data@@UAEXABV0@@Z +S_PUB32: [0001:000073B0], Flags: 00000000, ?VTable0x44@LegoEntity@@UAEXXZ +S_PUB32: [0001:00006FC0], Flags: 00000000, ?ClassName@LegoControlManager@@UBEPBDXZ +S_PUB32: [0001:00009120], Flags: 00000000, ??_G?$MxQueue@VLegoEventNotificationParam@@@@UAEPAXI@Z +S_PUB32: [0004:000014E8], Flags: 00000000, ??_C@_07OCFF@openram?$AA@ +S_PUB32: [0001:00026EF0], Flags: 00000000, ?IsA@MxDSSource@@UBEEPBD@Z +S_PUB32: [0004:000020A8], Flags: 00000000, ??_C@_0EB@MNHN@Returned?5when?5GetOverlayPosition@ +S_PUB32: [0001:0002B770], Flags: 00000000, ??1MxDSSubscriber@@UAE@XZ +S_PUB32: [0001:00005F00], Flags: 00000000, ??_EMxPresenter@@UAEPAXI@Z +S_PUB32: [0003:00005C88], Flags: 00000000, ??_C@_08CCFO@Thursday?$AA@ +S_PUB32: [0001:0001C8B0], Flags: 00000000, ?ImportPalette@MxBitmap@@UAEXPAVMxPalette@@@Z +S_PUB32: [0001:00018B20], Flags: 00000000, ??_E?$MxPtrListCursor@VMxPresenter@@@@UAEPAXI@Z +S_PUB32: [0001:00009380], Flags: 00000000, ?GetJoystickState@LegoInputManager@@QAEJPAI0PAK0@Z +S_PUB32: [0001:00023450], Flags: 00000000, ?ClassName@MxStreamProvider@@UBEPBDXZ +S_PUB32: [0003:00005C44], Flags: 00000000, ??_C@_03PGJO@Dec?$AA@ +S_PUB32: [0001:000121C0], Flags: 00000000, ??_EBumpBouy@@UAEPAXI@Z +S_PUB32: [0001:0001F4A0], Flags: 00000000, ??0MxDriver@@QAE@ABU0@@Z +S_PUB32: [0001:00004550], Flags: 00000000, ?ClassName@Isle@@UBEPBDXZ +S_PUB32: [0004:00001CF0], Flags: 00000000, ??_C@_0BH@OIBG@Action?5not?5supported?4?$AA?$AA@ +S_PUB32: [0004:000019FC], Flags: 00000000, ??_C@_0BH@NAOI@000x000x00?5?$CIRAMP?$CJ?50000?$AA@ +S_PUB32: [0001:00027250], Flags: 00000000, ??0MxDSMediaAction@@QAE@XZ +S_PUB32: [0004:000005E0], Flags: 00000000, ??_C@_0L@JNAI@c_rcstery0?$AA@ +S_PUB32: [0001:00028020], Flags: 00000000, ?VTable0x14@MxDSMultiAction@@UAEIXZ +S_PUB32: [0003:000056D0], Flags: 00000000, ??_C@_08GGAN@portugal?$AA@ +S_PUB32: [0001:0004F350], Flags: 00000000, __fwrite_lk +S_PUB32: [0001:0003E960], Flags: 00000000, ?VTable0x7c@MxVideoPresenter@@UAEEXZ +S_PUB32: [0001:000123D0], Flags: 00000000, ??_GPizzeria@@UAEPAXI@Z +S_PUB32: [0001:000516F0], Flags: 00000000, __isctype +S_PUB32: [0001:00006FD0], Flags: 00000000, ?IsA@LegoControlManager@@UBEEPBD@Z +S_PUB32: [0003:00002A04], Flags: 00000000, ??_7GifManagerBase@@6B@ +S_PUB32: [0001:00014440], Flags: 00000000, ??_EMxTickleManager@@UAEPAXI@Z +S_PUB32: [0001:00056040], Flags: 00000000, ?_ValidateExecute@@YAHP6GHXZ@Z +S_PUB32: [0001:0002B6C0], Flags: 00000000, ?ClassName@MxDSSubscriber@@UBEPBDXZ +S_PUB32: [0004:00000AA8], Flags: 00000000, ?g_movementDecel@@3MA +S_PUB32: [0001:0002EEF0], Flags: 00000000, ?DoneTickle@MxMIDIPresenter@@UAEXXZ +S_PUB32: [0001:000349B0], Flags: 00000000, ??_G?$MxList@PAUMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:00041FF0], Flags: 00000000, ?SubVectorImpl@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0004:00004314], Flags: 00000000, ___decimal_point_length +S_PUB32: [0001:00035EA0], Flags: 00000000, ?Clone@MxRegionTopBottom@@QAEPAU1@XZ +S_PUB32: [0001:000154B0], Flags: 00000000, ??_ELegoPathController@@UAEPAXI@Z +S_PUB32: [0003:00005AB0], Flags: 00000000, ??_C@_05NPEI@dutch?$AA@ +S_PUB32: [0001:00042120], Flags: 00000000, ?EqualsScalar@Vector3Impl@@UAEXPAM@Z +S_PUB32: [0001:00007070], Flags: 00000000, ??1LegoControlManager@@UAE@XZ +S_PUB32: [0001:0004EA62], Flags: 00000000, __CIasin +S_PUB32: [0005:0000052C], Flags: 00000000, __imp__MultiByteToWideChar@24 +S_PUB32: [0001:00046DB0], Flags: 00000000, ??1?$Map@PBDPAVViewLODList@@UROINameComparator@@@@QAE@XZ +S_PUB32: [0001:00041E20], Flags: 00000000, ?EqualsScalar@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0001:00045D40], Flags: 00000000, ?Remove@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@PBVLight@4@@Z +S_PUB32: [0001:000065B0], Flags: 00000000, ??0LegoBuildingManager@@QAE@XZ +S_PUB32: [0004:00000BF0], Flags: 00000000, ??_C@_05NHGB@Doors?$AA@ +S_PUB32: [0001:00019680], Flags: 00000000, ?Compare@?$MxCollection@PAVMxPresenter@@@@UAECPAVMxPresenter@@0@Z +S_PUB32: [0001:000435C0], Flags: 00000000, ?SetTransformation@GroupImpl@TglImpl@@UAE?AW4Result@Tgl@@ABVFloatMatrix4@4@@Z +S_PUB32: [0001:00016590], Flags: 00000000, ?Destroy@LegoSoundManager@@UAEXXZ +S_PUB32: [0001:0003D770], Flags: 00000000, ??_E?$MxHashTableCursor@PAVMxVariable@@@@UAEPAXI@Z +S_PUB32: [0001:0003C640], Flags: 00000000, ?GetDDrawSurfaceFromVideoManager@MxTransitionManager@@UAEJXZ +S_PUB32: [0001:00034A60], Flags: 00000000, ??_G?$MxPtrList@UMxRegionTopBottom@@@@UAEPAXI@Z +S_PUB32: [0001:00055400], Flags: 00000000, ?_inconsistency@@YAXXZ +S_PUB32: [0001:00038930], Flags: 00000000, ?Resume@MxSoundManager@@UAEXXZ +S_PUB32: [0005:0000059C], Flags: 00000000, __imp__D3DRMCreateColorRGBA@16 +S_PUB32: [0001:00011180], Flags: 00000000, ?IsA@GasStationEntity@@UBEEPBD@Z +S_PUB32: [0001:0005D370], Flags: 00000000, __scalb +S_PUB32: [0001:00011A60], Flags: 00000000, ??_ELego3DWavePresenter@@UAEPAXI@Z +S_PUB32: [0004:00004928], Flags: 00000000, ___mbulinfo +S_PUB32: [0001:00035D00], Flags: 00000000, ??_E?$MxListCursor@PAUMxRegionLeftRight@@@@UAEPAXI@Z +S_PUB32: [0001:0004CAF0], Flags: 00000000, _MemPoolLock@4 +S_PUB32: [0005:0000049C], Flags: 00000000, __imp__GetLocaleInfoA@16 +S_PUB32: [0004:0000160C], Flags: 00000000, ??_C@_0DE@DNIB@This?5device?5cannot?5support?5the?5c@ +S_PUB32: [0001:0003A7F0], Flags: 00000000, ??0MxStreamer@@QAE@XZ +S_PUB32: [0001:0003D320], Flags: 00000000, ?VTable0x00@MxUnknown100d7c88@@UAEIXZ +S_PUB32: [0001:000589E0], Flags: 00000000, _isalpha +S_PUB32: [0001:00056C10], Flags: 00000000, __fltout2 +S_PUB32: [0004:00004A70], Flags: 00000000, __indefinite +S_PUB32: [0001:00008320], Flags: 00000000, ?FUN_1003ccf0@ScoreStruct@LegoGameState@@QAEXAAVLegoFileStream@@@Z +S_PUB32: [0001:0004FB10], Flags: 00000000, __endthreadex +S_PUB32: [0004:00000DE0], Flags: 00000000, ??_C@_09JHLJ@RaceState?$AA@ +S_PUB32: [0004:000007A8], Flags: 00000000, ??_C@_0L@NHEA@lego?5white?$AA@ +S_PUB32: [0004:00004014], Flags: 00000000, __aenvptr +S_PUB32: [0001:00056F30], Flags: 00000000, __87except +S_PUB32: [0004:00000A9C], Flags: 00000000, ?g_turnMaxAccel@@3MA +S_PUB32: [0001:00062688], Flags: 00000000, _ExitProcess@4 +S_PUB32: [0001:000448C0], Flags: 00000000, ??1View@Tgl@@UAE@XZ +S_PUB32: [0001:00039390], Flags: 00000000, ??0MxStreamController@@QAE@XZ +S_PUB32: [0003:000059B4], Flags: 00000000, ??_C@_03LCOK@frs?$AA@ +S_PUB32: [0001:00004D90], Flags: 00000000, ?ClassName@Jetski@@UBEPBDXZ +S_PUB32: [0001:00010DF0], Flags: 00000000, ?ClassName@Act3Actor@@UBEPBDXZ +S_PUB32: [0001:00037FA0], Flags: 00000000, ??_E?$MxListCursor@PAVMxRect32@@@@UAEPAXI@Z +S_PUB32: [0001:0003DCD0], Flags: 00000000, ??_GMxVideoManager@@UAEPAXI@Z +S_PUB32: [0001:00006690], Flags: 00000000, ??1LegoBuildingManager@@UAE@XZ +S_PUB32: [0001:00037EE0], Flags: 00000000, ??_GMxRectListCursor@@UAEPAXI@Z +S_PUB32: [0001:000071C0], Flags: 00000000, ?SetWorldTransform@LegoEntity@@UAEXAAVVector3Impl@@00@Z +S_PUB32: [0005:000003DC], Flags: 00000000, __imp__HeapAlloc@12 +S_PUB32: [0005:000004A0], Flags: 00000000, __imp__GetLocaleInfoW@16 +S_PUB32: [0001:0004E54A], Flags: 00000000, _GetSystemPaletteEntries@16 +S_PUB32: [0004:00000EB0], Flags: 00000000, ??_C@_0BM@LHPB@?2lego?2scripts?2isle?2jukeboxw?$AA@ +S_PUB32: [0001:0003BF90], Flags: 00000000, ?Sleep@MxThread@@QAEXH@Z +S_PUB32: [0004:00000DF4], Flags: 00000000, ?g_copterScript@@3PAVMxAtomId@@A +S_PUB32: [0004:00002718], Flags: 00000000, ??_C@_0GN@LFJM@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0004:00000150], Flags: 00000000, ?g_mxcoreCount@@3PAHA +S_PUB32: [0001:00018530], Flags: 00000000, ?Tickle@LegoVideoManager@@UAEJXZ +S_PUB32: [0004:00000C90], Flags: 00000000, ??_C@_0BF@DDHF@LegoTexturePresenter?$AA@ +S_PUB32: [0001:0004B3E0], Flags: 00000000, @_shi_sysResizePool@16 +S_PUB32: [0001:00040940], Flags: 00000000, ??_GPoliceState@@UAEPAXI@Z +S_PUB32: [0001:0001A400], Flags: 00000000, ?ClassName@Motorcycle@@UBEPBDXZ +S_PUB32: [0001:00045EC0], Flags: 00000000, ?SetBackgroundColor@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@MMM@Z +S_PUB32: [0003:000056EC], Flags: 00000000, ??_C@_02OCJK@nz?$AA@ +S_PUB32: [0001:00041DE0], Flags: 00000000, ?Clear@Vector4Impl@@UAEXXZ +S_PUB32: [0001:00060E50], Flags: 00000000, __tzset +S_PUB32: [0005:00000430], Flags: 00000000, __imp__LCMapStringA@24 +S_PUB32: [0001:000413D0], Flags: 00000000, ??4Matrix4Impl@@UAEXABV0@@Z +S_PUB32: [0004:00000040], Flags: 00000000, ??_C@_09DAGH@LegoState?$AA@ +S_PUB32: [0003:000039E8], Flags: 00000000, ??_7?$MxListCursor@VMxString@@@@6B@ +S_PUB32: [0004:00000488], Flags: 00000000, ??_C@_0BC@NOEF@LegoAnimPresenter?$AA@ +S_PUB32: [0001:000055C0], Flags: 00000000, ??0Lego3DView@@QAE@XZ +S_PUB32: [0001:0001B5A0], Flags: 00000000, ??_EMxAudioManager@@UAEPAXI@Z +S_PUB32: [0001:00062712], Flags: 00000000, _SetUnhandledExceptionFilter@4 +S_PUB32: [0001:0004E3E2], Flags: 00000000, _ReadFile@20 +S_PUB32: [0001:00021EC0], Flags: 00000000, ??1MxStreamListMxDSAction@@QAE@XZ +S_PUB32: [0001:00028670], Flags: 00000000, ?CopyFrom@MxDSObject@@QAEXAAV1@@Z +S_PUB32: [0004:0000472A], Flags: 00000000, __minfinity +S_PUB32: [0001:00042140], Flags: 00000000, ??0RegistrationBook@@QAE@XZ +S_PUB32: [0004:000002E4], Flags: 00000000, ?g_parseExtraTokens@@3PBDB +S_PUB32: [0004:000002F8], Flags: 00000000, ?g_strVISIBILITY@@3PBDB +S_PUB32: [0001:0003EF30], Flags: 00000000, ?PutFrame@MxVideoPresenter@@UAEXXZ +S_PUB32: [0001:00057980], Flags: 00000000, __open_osfhandle +S_PUB32: [0001:0003C8B0], Flags: 00000000, ?TransitionDissolve@MxTransitionManager@@AAEXXZ +S_PUB32: [0001:00062560], Flags: 00000000, _strcat +S_PUB32: [0001:000020D0], Flags: 00000000, ??_EDuneBuggy@@UAEPAXI@Z +S_PUB32: [0001:000080A0], Flags: 00000000, ?FUN_1003a720@LegoGameState@@QAEXI@Z +S_PUB32: [0004:00004350], Flags: 00000000, __pgmptr +S_PUB32: [0001:0006268E], Flags: 00000000, _TerminateProcess@8 +S_PUB32: [0005:0000008C], Flags: 00000000, __IMPORT_DESCRIPTOR_GDI32 +S_PUB32: [0003:00005674], Flags: 00000000, ??_C@_03JDMO@swe?$AA@ +S_PUB32: [0001:00009060], Flags: 00000000, ??_GLegoEventQueue@@UAEPAXI@Z +S_PUB32: [0004:000036C8], Flags: 00000000, ??_C@_0P@HJPD@MxDSSubscriber?$AA@ +S_PUB32: [0004:000005F8], Flags: 00000000, ??_C@_0L@IEKI@c_rcmotry0?$AA@ +S_PUB32: [0004:0000150C], Flags: 00000000, ??_C@_07LPED@?1script?$AA@ +S_PUB32: [0004:0000179C], Flags: 00000000, ??_C@_0BF@OBEE@CreatePalette?5failed?$AA@ +S_PUB32: [0003:00000558], Flags: 00000000, ??_7BuildingEntity@@6B@ +S_PUB32: [0004:0000351C], Flags: 00000000, ??_C@_0L@FHPB@No?5error?4?$AA?$AA@ +S_PUB32: [0001:00018EC0], Flags: 00000000, ?DisableRMDevice@LegoVideoManager@@QAEHXZ +S_PUB32: [0001:00026B00], Flags: 00000000, ??_EMxDSEvent@@UAEPAXI@Z +S_PUB32: [0001:00041940], Flags: 00000000, ?Dot@Vector2Impl@@UBEMPAMPAV1@@Z +S_PUB32: [0001:0001DA50], Flags: 00000000, ?VTable0x58@MxCompositePresenter@@UAEXAAVMxEndActionNotificationParam@@@Z +S_PUB32: [0001:0002F0A0], Flags: 00000000, ??_EMxMusicManager@@UAEPAXI@Z +S_PUB32: [0003:00005C50], Flags: 00000000, ??_C@_03DPFM@Sep?$AA@ +S_PUB32: [0004:00000E1C], Flags: 00000000, ?g_infodoorScript@@3PAVMxAtomId@@A +S_PUB32: [0001:0001FB20], Flags: 00000000, ?GetDevice@MxDeviceEnumerate@@QAEJHAAPAUMxDriver@@AAPAUMxDevice@@@Z +S_PUB32: [0001:00043330], Flags: 00000000, ??_GSkateBoard@@UAEPAXI@Z +S_PUB32: [0003:00005818], Flags: 00000000, ??_C@_09MKKB@australia?$AA@ +S_PUB32: [0003:000020F8], Flags: 00000000, ??_7LegoJetskiRaceActor@@6B@ +S_PUB32: [0001:0005EDA0], Flags: 00000000, ___ld12mul +S_PUB32: [0001:00023320], Flags: 00000000, ??0MxDiskStreamProvider@@QAE@XZ +S_PUB32: [0001:000285C0], Flags: 00000000, ??_GMxDSObject@@UAEPAXI@Z +S_PUB32: [0004:0000401C], Flags: 00000000, __aexit_rtn +S_PUB32: [0001:0003BE40], Flags: 00000000, ??0MxThread@@IAE@XZ +S_PUB32: [0001:00021FB0], Flags: 00000000, ??1?$List@PAVMxDSAction@@@@QAE@XZ +S_PUB32: [0001:0002AC10], Flags: 00000000, ?Clone@MxDSSound@@UAEPAVMxDSAction@@XZ +S_PUB32: [0005:000003A0], Flags: 00000000, __imp__LeaveCriticalSection@4 +S_PUB32: [0001:000073A0], Flags: 00000000, ?VTable0x40@LegoEntity@@UAEXXZ +S_PUB32: [0001:000281F0], Flags: 00000000, ?Deserialize@MxDSMultiAction@@UAEXPAPAEF@Z +S_PUB32: [0004:00000D94], Flags: 00000000, ??_C@_0BE@EOCF@Lego3DWavePresenter?$AA@ +S_PUB32: [0004:00001580], Flags: 00000000, ??_C@_0BA@MHAG@C?3?2DEADLOCK?4TXT?$AA@ +S_PUB32: [0003:00004FC4], Flags: 00000000, ??_C@_0N@IDOE@kernel32?4dll?$AA@ +S_PUB32: [0001:000176E0], Flags: 00000000, ??0LegoVehicleBuildState@@QAE@PAD@Z +S_PUB32: [0001:0004B8C0], Flags: 00000000, @_shi_unregisterShared@8 +S_PUB32: [0001:0000F940], Flags: 00000000, ?IsA@LegoRaceActor@@UBEEPBD@Z +S_PUB32: [0005:00000564], Flags: 00000000, __imp__KillTimer@8 +S_PUB32: [0001:0000C740], Flags: 00000000, ??1LegoObjectFactory@@UAE@XZ +S_PUB32: [0003:00000078], Flags: 00000000, ??_7TglSurface@@6B@ +S_PUB32: [0001:00044370], Flags: 00000000, ??_ERenderer@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00044280], Flags: 00000000, ??_ERendererImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0004:0000070C], Flags: 00000000, ??_C@_0L@OJIK@c_chstuty0?$AA@ +S_PUB32: [0001:00004870], Flags: 00000000, ?Notify@Isle@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:00028540], Flags: 00000000, ?IsA@MxDSObject@@UBEEPBD@Z +S_PUB32: [0001:00052920], Flags: 00000000, __fflush_lk +S_PUB32: [0001:0002A810], Flags: 00000000, ?Clone@MxDSSerialAction@@UAEPAVMxDSAction@@XZ +S_PUB32: [0003:00003810], Flags: 00000000, ??_7?$MxList@PAVMxDSAction@@@@6B@ +S_PUB32: [0001:00044B70], Flags: 00000000, ??_EGroup@Tgl@@UAEPAXI@Z +S_PUB32: [0004:000036A8], Flags: 00000000, ??_C@_07BALO@RANDOM_?$AA@ +S_PUB32: [0001:00044A90], Flags: 00000000, ??_EGroupImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0003:00004158], Flags: 00000000, ??_7MxRegion@@6B@ +S_PUB32: [0001:0004EA51], Flags: 00000000, _atan +S_PUB32: [0001:00007C30], Flags: 00000000, ??1LegoGameState@@QAE@XZ +S_PUB32: [0001:00025490], Flags: 00000000, ?Clone@MxDSAction@@UAEPAV1@XZ +S_PUB32: [0001:0002DBA0], Flags: 00000000, ??_EMxMediaManager@@UAEPAXI@Z +S_PUB32: [0001:00001320], Flags: 00000000, ??0AmbulanceMissionState@@QAE@XZ +S_PUB32: [0003:00004708], Flags: 00000000, ??_7RaceCar@@6B@ +S_PUB32: [0001:00001130], Flags: 00000000, ?IsA@Ambulance@@UBEEPBD@Z +S_PUB32: [0005:00000420], Flags: 00000000, __imp__GetCurrentThreadId@0 +S_PUB32: [0004:000059C0], Flags: 00000000, ___lc_id +S_PUB32: [0001:000198E0], Flags: 00000000, ??1MxPresenterList@@UAE@XZ +S_PUB32: [0001:0003EC30], Flags: 00000000, ?Init@MxVideoPresenter@@AAEXXZ +S_PUB32: [0001:0004D35C], Flags: 00000000, _DirectSoundCreate@12 +S_PUB32: [0003:0000583C], Flags: 00000000, ??_C@_07BNFK@turkish?$AA@ +S_PUB32: [0001:00041FC0], Flags: 00000000, ?AddScalarImpl@Vector3Impl@@UAEXM@Z +S_PUB32: [0001:0002B6D0], Flags: 00000000, ?IsA@MxDSSubscriber@@UBEEPBD@Z +S_PUB32: [0001:00014FA0], Flags: 00000000, ?ParsePallete@LegoPalettePresenter@@QAEJPAVMxStreamChunk@@@Z +S_PUB32: [0003:000011E0], Flags: 00000000, ??_7LegoAnimMMPresenter@@6B@ +S_PUB32: [0003:000016A0], Flags: 00000000, ??_7LegoFullScreenMovie@@6B@ +S_PUB32: [0001:00017A00], Flags: 00000000, ??_ELegoVideoManager@@UAEPAXI@Z +S_PUB32: [0004:000025F0], Flags: 00000000, ??_C@_0GL@MKDM@DirectDrawSurface?5is?5not?5in?54?5bi@ +S_PUB32: [0001:00041200], Flags: 00000000, ?Element@Matrix4Impl@@UBEPBMHH@Z +S_PUB32: [0001:0004FF80], Flags: 00000000, __amsg_exit +S_PUB32: [0004:00000DA8], Flags: 00000000, ??_C@_0L@GIIH@RadioState?$AA@ +S_PUB32: [0003:000056B4], Flags: 00000000, ??_C@_03CKBC@prt?$AA@ +S_PUB32: [0001:0002E280], Flags: 00000000, ?Init@MxMediaPresenter@@IAEXXZ +S_PUB32: [0003:00003660], Flags: 00000000, ??_7MxDSAnim@@6B@ +S_PUB32: [0001:0002E9D0], Flags: 00000000, ?DoneTickle@MxMediaPresenter@@UAEXXZ +S_PUB32: [0001:000516AE], Flags: 00000000, __fload +S_PUB32: [0001:00037850], Flags: 00000000, ?Destroy@MxSmkPresenter@@AAEXE@Z +S_PUB32: [0001:0001A8E0], Flags: 00000000, ??1MxActionNotificationParam@@UAE@XZ +S_PUB32: [0001:00049F30], Flags: 00000000, _MemPoolInfo@12 +S_PUB32: [0001:00012730], Flags: 00000000, ??_EJukeBoxState@@UAEPAXI@Z +S_PUB32: [0003:00005608], Flags: 00000000, ??_C@_0O@GLHB@united?9states?$AA@ +S_PUB32: [0001:00019250], Flags: 00000000, ?Compare@LegoPathControllerList@@UAECPAVLegoPathController@@0@Z +S_PUB32: [0003:00005A5C], Flags: 00000000, ??_C@_0M@DCFH@english?9can?$AA@ +S_PUB32: [0001:0001E0F0], Flags: 00000000, ??_EMxControlPresenter@@UAEPAXI@Z +S_PUB32: [0001:00014600], Flags: 00000000, ?FindWorld@LegoOmni@@UAEPAVMxEntity@@PBDHPAVMxPresenter@@@Z +S_PUB32: [0001:00011ED0], Flags: 00000000, ??_GLegoAct2State@@UAEPAXI@Z +S_PUB32: [0004:00002FC0], Flags: 00000000, ??_C@_0EE@IPJK@One?5or?5more?5of?5the?5caps?5bits?5pas@ +S_PUB32: [0001:00022F90], Flags: 00000000, ?InsertToList74@MxDiskStreamController@@QAEXPAVMxDSBuffer@@@Z +S_PUB32: [0004:000003F0], Flags: 00000000, ??_C@_08OKJG@TowTrack?$AA@ +S_PUB32: [0001:000039C0], Flags: 00000000, ??_EHistoryBook@@UAEPAXI@Z +S_PUB32: [0001:00005350], Flags: 00000000, ??_GJukeBoxEntity@@UAEPAXI@Z +S_PUB32: [0001:00045880], Flags: 00000000, ?FillRowsOfTexture@TextureImpl@TglImpl@@UAEXHHPAX@Z +S_PUB32: [0001:0000C540], Flags: 00000000, ?ClassName@MxObjectFactory@@UBEPBDXZ +S_PUB32: [0001:0001ACF0], Flags: 00000000, ?Destroy@MxAtomId@@AAEXXZ +S_PUB32: [0001:00027800], Flags: 00000000, ??_GMxDSActionList@@UAEPAXI@Z +S_PUB32: [0001:00055500], Flags: 00000000, __setenvp +S_PUB32: [0001:00007AD0], Flags: 00000000, ??0LegoGameState@@QAE@XZ +S_PUB32: [0001:0003C410], Flags: 00000000, ?GetRealTime@MxTimer@@QAEJXZ +S_PUB32: [0004:000007E8], Flags: 00000000, ??_C@_0M@NDAJ@History?4gsi?$AA@ +S_PUB32: [0004:00003C1C], Flags: 00000000, ?g_userMaxBase@@3MA +S_PUB32: [0003:0000569C], Flags: 00000000, ??_C@_03FANM@sgp?$AA@ +S_PUB32: [0003:00002F98], Flags: 00000000, ??_7MxDeviceEnumerate100d9cc8@@6B@ +S_PUB32: [0001:0004F310], Flags: 00000000, _fwrite +S_PUB32: [0003:00004240], Flags: 00000000, ??_7?$MxPtrList@UMxRegionLeftRight@@@@6B@ +S_PUB32: [0005:0000043C], Flags: 00000000, __imp__GetExitCodeProcess@8 +S_PUB32: [0004:00003498], Flags: 00000000, ??_C@_0FK@LIIM@Return?5if?5a?5clipper?5object?5is?5at@ +S_PUB32: [0004:00003C50], Flags: 00000000, __pnhHeap +S_PUB32: [0001:000088E0], Flags: 00000000, ??0LegoInputManager@@QAE@XZ +S_PUB32: [0001:0004C020], Flags: 00000000, _shi_leavePoolInitMutexWriter +S_PUB32: [0001:0003C500], Flags: 00000000, ?IsA@MxTransitionManager@@UBEEPBD@Z +S_PUB32: [0001:00021280], Flags: 00000000, ?FlipToGDISurface@MxDirectDraw@@QAEHXZ +S_PUB32: [0003:00000DE0], Flags: 00000000, ??_7Infocenter@@6B@ +S_PUB32: [0004:0000012C], Flags: 00000000, ??_C@_06LHNJ@ACTION?$AA@ +S_PUB32: [0004:00000588], Flags: 00000000, ?g_strDisable@@3PBDB +S_PUB32: [0004:00000318], Flags: 00000000, ??_C@_0L@JMMA@GasStation?$AA@ +S_PUB32: [0003:00005618], Flags: 00000000, ??_C@_0P@IIKK@united?9kingdom?$AA@ +S_PUB32: [0001:0002F700], Flags: 00000000, ??0MxNotification@@QAE@PAVMxCore@@PAVMxNotificationParam@@@Z +S_PUB32: [0001:0003D120], Flags: 00000000, ?SetupCopyRect@MxTransitionManager@@AAEXPAU_DDSURFACEDESC@@@Z +S_PUB32: [0001:00037040], Flags: 00000000, ?LoadHeader@MxSmack@@SAJPAEPAU1@@Z +S_PUB32: [0001:00039380], Flags: 00000000, ?VTable0x28@MxStreamController@@UAEPAVMxDSStreamingAction@@XZ +S_PUB32: [0001:0005B650], Flags: 00000000, ___add_12 +S_PUB32: [0001:000397C0], Flags: 00000000, ??1?$MxStreamList@PAVMxDSSubscriber@@@@QAE@XZ +S_PUB32: [0001:0005CD20], Flags: 00000000, __errcode +S_PUB32: [0005:0000048C], Flags: 00000000, __imp__SetEndOfFile@4 +S_PUB32: [0005:00000598], Flags: 00000000, __imp__Direct3DRMCreate@4 +S_PUB32: [0001:00043500], Flags: 00000000, ?SetDither@DeviceImpl@TglImpl@@UAE?AW4Result@Tgl@@H@Z +S_PUB32: [0001:000335B0], Flags: 00000000, ?RepeatingTickle@MxPresenter@@UAEXXZ +S_PUB32: [0001:00041E50], Flags: 00000000, ?NormalizeQuaternion@Vector4Impl@@UAEHXZ +S_PUB32: [0001:00036970], Flags: 00000000, ?VTable0x1c@MxRegionCursor@@UAEPAVMxRect32@@AAV2@@Z +S_PUB32: [0001:000067F0], Flags: 00000000, ??_GLegoCacheSound@@UAEPAXI@Z +S_PUB32: [0001:00045770], Flags: 00000000, ?FillRowsOfTexture@TglD3DRMIMAGE@TglImpl@@QAEXHHPAD@Z +S_PUB32: [0001:00012960], Flags: 00000000, ?AnimationManager@@YAPAVLegoAnimationManager@@XZ +S_PUB32: [0001:0002AA30], Flags: 00000000, ?ClassName@MxDSSound@@UBEPBDXZ +S_PUB32: [0001:000413F0], Flags: 00000000, ?VTable0x1c@OrientableROI@@UAEXXZ +S_PUB32: [0001:00016450], Flags: 00000000, ?UpdateWorldBoundingVolumes@LegoROI@@UAEXXZ +S_PUB32: [0001:00010C30], Flags: 00000000, ??_EAct3State@@UAEPAXI@Z +S_PUB32: [0001:00000820], Flags: 00000000, ??_GAct1State@@UAEPAXI@Z +S_PUB32: [0005:000003B8], Flags: 00000000, __imp___hread@12 +S_PUB32: [0001:000014F0], Flags: 00000000, ??0AnimState@@QAE@XZ +S_PUB32: [0001:0001E640], Flags: 00000000, ?D3DSetMode@MxDirect3D@@QAEHXZ +S_PUB32: [0004:00003C00], Flags: 00000000, ??_C@_0BE@FCDB@MxTransitionManager?$AA@ +S_PUB32: [0001:00061690], Flags: 00000000, _iswctype +S_PUB32: [0001:0004E4A2], Flags: 00000000, _GetCurrentProcess@0 +S_PUB32: [0001:0001B620], Flags: 00000000, ?Init@MxAudioManager@@IAEXXZ +S_PUB32: [0001:00045730], Flags: 00000000, ?Destroy@TglD3DRMIMAGE@TglImpl@@QAEXXZ +S_PUB32: [0004:0000AB58], Flags: 00000000, ?g_hdPath@@3PADA +S_PUB32: [0004:0000B5C4], Flags: 00000000, ??_B?1???id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@@@@@@$D@@9@9 +S_PUB32: [0001:0001E2A0], Flags: 00000000, ??_EMxCore@@UAEPAXI@Z +S_PUB32: [0003:00005684], Flags: 00000000, ??_C@_0M@BDFM@south?9korea?$AA@ +S_PUB32: [0001:00000000], Flags: 00000000, ??0TglSurface@@QAE@XZ +S_PUB32: [0003:00005590], Flags: 00000000, ??_C@_04LMBE@sqrt?$AA@ +S_PUB32: [0005:000004D4], Flags: 00000000, __imp__TlsFree@4 +S_PUB32: [0001:0002AEC0], Flags: 00000000, ??_EMxDSStill@@UAEPAXI@Z +S_PUB32: [0001:00009CB0], Flags: 00000000, ?ClassName@MxWavePresenter@@UBEPBDXZ +S_PUB32: [0001:00059E19], Flags: 00000000, __safe_fprem +S_PUB32: [0001:00025C20], Flags: 00000000, ??_EMxDSBuffer@@UAEPAXI@Z +S_PUB32: [0004:000021A4], Flags: 00000000, ??_C@_0EN@OPCP@The?5hardware?5needed?5for?5the?5requ@ +S_PUB32: [0001:000315D0], Flags: 00000000, ?SetInstance@MxOmni@@SAXPAV1@@Z +S_PUB32: [0004:00001BDC], Flags: 00000000, ??_C@_0HC@IMEL@Informs?5DirectDraw?5that?5the?5prev@ +S_PUB32: [0001:0001E250], Flags: 00000000, ?Enable@MxControlPresenter@@UAEXE@Z +S_PUB32: [0001:00056000], Flags: 00000000, ?_ValidateRead@@YAHPBXI@Z +S_PUB32: [0001:00058D40], Flags: 00000000, __ungetc_lk +S_PUB32: [0001:00043430], Flags: 00000000, ?ImplementationDataPtr@DeviceImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:0004E47E], Flags: 00000000, _UnmapViewOfFile@4 +S_PUB32: [0001:000437A0], Flags: 00000000, ??_EObject@Tgl@@UAEPAXI@Z +S_PUB32: [0001:0002ACD0], Flags: 00000000, ?GetSizeOnDisk@MxDSSound@@UAEIXZ +S_PUB32: [0001:0002BEF0], Flags: 00000000, ??1?$MxList@PAVMxStreamChunk@@@@UAE@XZ +S_PUB32: [0005:000005A0], Flags: 00000000, d3drm_NULL_THUNK_DATA +S_PUB32: [0001:000057F0], Flags: 00000000, ??0LegoActor@@QAE@XZ +S_PUB32: [0004:000002FC], Flags: 00000000, ??_C@_09BBCB@DuneBuggy?$AA@ +S_PUB32: [0001:00045270], Flags: 00000000, ??_GUnk@Tgl@@UAEPAXI@Z +S_PUB32: [0001:00045190], Flags: 00000000, ??_GUnkImpl@TglImpl@@UAEPAXI@Z +S_PUB32: [0001:00009AD0], Flags: 00000000, ??_EMxAudioPresenter@@UAEPAXI@Z +S_PUB32: [0001:00059E1F], Flags: 00000000, __safe_fprem1 +S_PUB32: [0004:00003C58], Flags: 00000000, __shi_freeFns +S_PUB32: [0001:00038120], Flags: 00000000, ?VTable0x88@MxSmkPresenter@@UAEXXZ +S_PUB32: [0004:00000B7C], Flags: 00000000, ??_C@_0BB@HIEB@GasStationEntity?$AA@ +S_PUB32: [0003:00005B78], Flags: 00000000, ??_C@_0BB@DAGO@american?5english?$AA@ +S_PUB32: [0001:0004AA80], Flags: 00000000, @_shi_sysReAllocNear@8 +S_PUB32: [0001:0005F640], Flags: 00000000, __Gettnames +S_PUB32: [0004:000033A0], Flags: 00000000, ??_C@_0FB@FKBN@Can?8t?5duplicate?5primary?5?$CG?53D?5sur@ +S_PUB32: [0001:0004D356], Flags: 00000000, _DirectDrawEnumerateA@8 +S_PUB32: [0004:000056CC], Flags: 00000000, ___sbh_threshold +S_PUB32: [0001:0002F5E0], Flags: 00000000, ??_EMxMusicPresenter@@UAEPAXI@Z +S_PUB32: [0001:00007240], Flags: 00000000, ?SetROI@LegoEntity@@UAEXPAVLegoROI@@EE@Z +S_PUB32: [0003:00005954], Flags: 00000000, ??_C@_03CCLJ@isl?$AA@ +S_PUB32: [0001:00040F30], Flags: 00000000, ??_GRadio@@UAEPAXI@Z +S_PUB32: [0001:0001A9C0], Flags: 00000000, ?Clone@MxStartActionNotificationParam@@UAEPAVMxNotificationParam@@XZ +S_PUB32: [0004:00003C44], Flags: 00000000, ?_new_handler@@3P6AXXZA +S_PUB32: [0001:0002E7F0], Flags: 00000000, ?Tickle@MxMediaPresenter@@UAEJXZ +S_PUB32: [0004:00000974], Flags: 00000000, ??_C@_07ILED@fsmovie?$AA@ +S_PUB32: [0001:00045830], Flags: 00000000, ?SetTexels@TextureImpl@TglImpl@@UAE?AW4Result@Tgl@@HHHPAX@Z +S_PUB32: [0001:000126C0], Flags: 00000000, ??_ERaceStandsEntity@@UAEPAXI@Z +S_PUB32: [0001:000404D0], Flags: 00000000, ?ClassName@PizzeriaState@@UBEPBDXZ +S_PUB32: [0001:00018220], Flags: 00000000, ?Destroy@MxUnknown100d9d00@@SAXPAVMxUnknown100d7c88@@@Z +S_PUB32: [0001:00051330], Flags: 00000000, __cfltcvt +S_PUB32: [0003:0000590C], Flags: 00000000, ??_C@_03EMKB@non?$AA@ +S_PUB32: [0001:00024090], Flags: 00000000, ?GetLengthInDWords@MxDiskStreamProvider@@UAEIXZ +S_PUB32: [0001:00000270], Flags: 00000000, ?Create@TglSurface@@UAEHABUCreateStruct@1@PAVRenderer@Tgl@@PAVGroup@4@@Z +S_PUB32: [0001:00043470], Flags: 00000000, ?SetShadingModel@DeviceImpl@TglImpl@@UAE?AW4Result@Tgl@@W4ShadingModel@4@@Z +S_PUB32: [0001:0001A410], Flags: 00000000, ?IsA@Motorcycle@@UBEEPBD@Z +S_PUB32: [0001:00041800], Flags: 00000000, ?SubVectorImpl@Vector2Impl@@UAEXPAM@Z +S_PUB32: [0001:00005440], Flags: 00000000, ??_ELego3DManager@@UAEPAXI@Z +S_PUB32: [0001:000169F0], Flags: 00000000, ?Write@LegoMemoryStream@@UAEJPBXI@Z +S_PUB32: [0004:0000043C], Flags: 00000000, ??_C@_0BF@MMDH@MxCompositePresenter?$AA@ +S_PUB32: [0004:000016C0], Flags: 00000000, ??_C@_0BJ@PCA@D3D?5creation?5failed?3?5?$CFs?6?$AA@ +S_PUB32: [0001:00050630], Flags: 00000000, ___FrameUnwindToState +S_PUB32: [0001:0004E4B4], Flags: 00000000, _MapViewOfFile@20 +S_PUB32: [0001:00032B90], Flags: 00000000, ?DoesEntityExist@MxOmni@@UAEEAAVMxDSAction@@@Z +S_PUB32: [0001:00010140], Flags: 00000000, ?IsA@LegoJetski@@UBEEPBD@Z +S_PUB32: [0001:00006230], Flags: 00000000, ??_GLegoAnimPresenter@@UAEPAXI@Z +S_PUB32: [0001:00020510], Flags: 00000000, ?DDSetMode@MxDirectDraw@@QAEHHHH@Z +S_PUB32: [0001:000129B0], Flags: 00000000, ?BuildingManager@@YAPAVLegoBuildingManager@@XZ +S_PUB32: [0004:000009C4], Flags: 00000000, ??_C@_08OMNK@INDIR?9G?9?$AA@ +S_PUB32: [0004:00000A88], Flags: 00000000, ?g_mouseDeadzone@@3HA +S_PUB32: [0004:0000B640], Flags: 00000000, __bufin +S_PUB32: [0001:000626A0], Flags: 00000000, _SetFilePointer@16 +S_PUB32: [0003:00005CBC], Flags: 00000000, ??_C@_03FINJ@Fri?$AA@ +S_PUB32: [0004:00000E18], Flags: 00000000, ?g_elevbottScript@@3PAVMxAtomId@@A +S_PUB32: [0004:00003B94], Flags: 00000000, ??_C@_09HGGD@BMP_ISMAP?$AA@ +S_PUB32: [0001:00031410], Flags: 00000000, ?DeleteObject@@YAXAAVMxDSAction@@@Z +S_PUB32: [0004:0000200C], Flags: 00000000, ??_C@_0DF@MFPM@This?5process?5already?5has?5created@ +S_PUB32: [0004:0000B358], Flags: 00000000, ?g_use3dSound@@3EA +S_PUB32: [0004:000014A4], Flags: 00000000, ??_C@_01KCAO@b?$AA@ +S_PUB32: [0001:0002D880], Flags: 00000000, ?RepeatingTickle@MxLoopingSmkPresenter@@UAEXXZ +S_PUB32: [0001:00028DD0], Flags: 00000000, ??1MxDSObjectAction@@UAE@XZ +S_PUB32: [0003:000052A0], Flags: 00000000, ??_C@_0CB@LBOB@R6018?$AN?6?9?5unexpected?5heap?5error?$AN?6@ +S_PUB32: [0001:00009530], Flags: 00000000, ?QueueEvent@LegoInputManager@@QAEXW4NotificationId@@EJJE@Z +S_PUB32: [0001:00008C90], Flags: 00000000, ??_EMxParam@@UAEPAXI@Z +S_PUB32: [0001:0002C240], Flags: 00000000, ?Destroy@MxEventManager@@AAEXE@Z +S_PUB32: [0004:00001538], Flags: 00000000, ?_Nil@?$_Tree@PAVMxAtomIdCounter@@PAV1@U_Kfn@?$set@PAVMxAtomIdCounter@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@UMxAtomIdCounterCompare@@V?$allocator@PAVMxAtomIdCounter@@@@@@1PAU_Node@1@A +S_PUB32: [0001:0003DCF0], Flags: 00000000, ?VTable0x34@MxVideoManager@@UAEXIIII@Z +S_PUB32: [0001:00056F19], Flags: 00000000, __rttosnpopde +S_PUB32: [0001:00034B00], Flags: 00000000, ??1MxRegion@@UAE@XZ +S_PUB32: [0001:00005FE0], Flags: 00000000, ??_EMxMediaPresenter@@UAEPAXI@Z +S_PUB32: [0004:00000CB4], Flags: 00000000, ??_C@_0BF@IFBD@LegoPhonemePresenter?$AA@ +S_PUB32: [0003:000040A0], Flags: 00000000, ??_7?$MxCollection@PAVMxVariable@@@@6B@ +S_PUB32: [0001:000533D0], Flags: 00000000, __ioterm +S_PUB32: [0001:00029D40], Flags: 00000000, ??4MxDSSelectAction@@QAEAAV0@AAV0@@Z +S_PUB32: [0001:00045E30], Flags: 00000000, ?SetFrustrum@ViewImpl@TglImpl@@UAE?AW4Result@Tgl@@MMM@Z +S_PUB32: [0004:0000B5C6], Flags: 00000000, ??_B?1???id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@@@@@@$D@@9@9 +S_PUB32: [0001:0000A1C0], Flags: 00000000, ?ReadyTickle@LegoModelPresenter@@UAEXXZ +S_PUB32: [0004:00002A70], Flags: 00000000, ??_C@_0GH@BMAJ@A?5hardware?9only?5DirectDraw?5objec@ +S_PUB32: [0001:00051840], Flags: 00000000, __cexit +S_PUB32: [0001:0004C0D0], Flags: 00000000, _MemPoolInitFS@12 +S_PUB32: [0001:00047130], Flags: 00000000, ?_Insert@?$_Tree@PBDU?$pair@QBDPAVViewLODList@@@@U_Kfn@?$map@PBDPAVViewLODList@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@UROINameComparator@@V?$allocator@PAVViewLODList@@@@@@IAE?AViterator@1@PAU_Node@1@0ABU?$pair@QBDPAVViewLODList@@@@@Z +S_PUB32: [0004:000062A0], Flags: 00000000, ___lconv_c +S_PUB32: [0001:00047090], Flags: 00000000, ??_ELODListBase@@UAEPAXI@Z +S_PUB32: [0001:00056740], Flags: 00000000, __FillZeroMan +S_PUB32: [0001:0002AEE0], Flags: 00000000, ??1MxDSStill@@UAE@XZ +S_PUB32: [0001:00009E50], Flags: 00000000, ??_GLegoLoadCacheSoundPresenter@@UAEPAXI@Z +S_PUB32: [0001:00041B50], Flags: 00000000, ?AddVectorImpl@Vector4Impl@@UAEXPAM@Z +S_PUB32: [0004:00003604], Flags: 00000000, ??_C@_09DFFF@MxDSChunk?$AA@ +S_PUB32: [0004:00000AB0], Flags: 00000000, ?g_turnSensitivity@@3MA +S_PUB32: [0001:00040410], Flags: 00000000, ?Tickle@Pizza@@UAEJXZ +S_PUB32: [0003:00005574], Flags: 00000000, ??_C@_05MFBN@floor?$AA@ +S_PUB32: [0001:0003B830], Flags: 00000000, ??_EMxString@@UAEPAXI@Z +S_PUB32: [0004:0000B5D0], Flags: 00000000, __shi_mutexMov +S_PUB32: [0001:0006270C], Flags: 00000000, _WideCharToMultiByte@32 +S_PUB32: [0001:00062A10], Flags: 00000000, _strupr +S_PUB32: [0001:00037350], Flags: 00000000, ?LoadFrame@MxSmack@@SAJPAUMxBITMAPINFO@@PAEPAU1@1EPAVMxRectList@@@Z +S_PUB32: [0004:0000628C], Flags: 00000000, ___lc_time_curr +S_PUB32: [0001:0003BEB0], Flags: 00000000, ??_GMxThread@@UAEPAXI@Z +S_PUB32: [0001:00005F30], Flags: 00000000, ?IsA@MxMediaPresenter@@UBEEPBD@Z +S_PUB32: [0001:00012930], Flags: 00000000, ?InputManager@@YAPAVLegoInputManager@@XZ +S_PUB32: [0001:00012880], Flags: 00000000, ??1LegoActor@@UAE@XZ +S_PUB32: [0005:000003A8], Flags: 00000000, __imp__OutputDebugStringA@4 +S_PUB32: [0001:0002B080], Flags: 00000000, ??_GMxDSStreamingAction@@UAEPAXI@Z +S_PUB32: [0005:000004D0], Flags: 00000000, __imp__TlsAlloc@0 +S_PUB32: [0001:0002BA60], Flags: 00000000, ??_E?$MxListCursor@PAVMxStreamChunk@@@@UAEPAXI@Z +S_PUB32: [0001:00016ED0], Flags: 00000000, ??1LegoTexturePresenter@@UAE@XZ +S_PUB32: [0001:00008090], Flags: 00000000, ?SerializePlayersInfo@LegoGameState@@QAEXF@Z +S_PUB32: [0001:00023C90], Flags: 00000000, ?WaitForWorkToComplete@MxDiskStreamProvider@@QAEJXZ +S_PUB32: [0001:000326E0], Flags: 00000000, ?CreatePresenter@MxOmni@@UAEJPAVMxStreamController@@AAVMxDSAction@@@Z +S_PUB32: [0003:00005920], Flags: 00000000, ??_C@_03BHJ@kor?$AA@ +S_PUB32: [0001:0001F720], Flags: 00000000, ?DevicesEnumerateCallback@MxDeviceEnumerate@@SGJPAU_GUID@@PAD1PAU_D3DDeviceDesc@@2PAX@Z +S_PUB32: [0003:00002FD0], Flags: 00000000, ??_7MxDeviceEnumerate@@6B@ +S_PUB32: [0003:0000514C], Flags: 00000000, ??_C@_0O@DELO@TLOSS?5error?$AN?6?$AA@ +S_PUB32: [0001:00048120], Flags: 00000000, @shi_freePageHeader@8 +S_PUB32: [0001:0002F0C0], Flags: 00000000, ??1MxMusicManager@@UAE@XZ +S_PUB32: [0004:0000064C], Flags: 00000000, ??_C@_0L@EKPI@c_jsskiby0?$AA@ +S_PUB32: [0001:00034390], Flags: 00000000, ??1MxRAMStreamProvider@@UAE@XZ +S_PUB32: [0001:000296F0], Flags: 00000000, ?IsA@MxDSSelectAction@@UBEEPBD@Z +S_PUB32: [0001:00020830], Flags: 00000000, ?GetDDSurfaceDesc@MxDirectDraw@@QAEHPAU_DDSURFACEDESC@@PAUIDirectDrawSurface@@@Z +S_PUB32: [0001:0004E3CA], Flags: 00000000, _QueryPerformanceCounter@4 +S_PUB32: [0001:00058DD0], Flags: 00000000, __powhlp +S_PUB32: [0001:00000A20], Flags: 00000000, ?VTable0xc0@LegoPathActor@@UAEXM@Z +S_PUB32: [0001:0004EE00], Flags: 00000000, _strncpy +S_PUB32: [0003:00001148], Flags: 00000000, ??_7Lego3DView@@6B@ +S_PUB32: [0003:00005ADC], Flags: 00000000, ??_C@_03POL@cht?$AA@ +S_PUB32: [0001:000377A0], Flags: 00000000, ??_EMxSmkPresenter@@UAEPAXI@Z +S_PUB32: [0003:00005638], Flags: 00000000, ??_C@_0P@KBEK@united?5kingdom?$AA@ +S_PUB32: [0004:00002AD8], Flags: 00000000, ??_C@_0BN@GPP@No?5DirectDraw?5ROP?5hardware?4?$AA?$AA@ +S_PUB32: [0001:0001CCC0], Flags: 00000000, ??_GMxCompositeMediaPresenter@@UAEPAXI@Z +S_PUB32: [0001:00060D40], Flags: 00000000, __strcmpi +S_PUB32: [0001:0002D6B0], Flags: 00000000, ??_GMxLoopingSmkPresenter@@UAEPAXI@Z +S_PUB32: [0001:00062550], Flags: 00000000, _strcpy +S_PUB32: [0001:0003E8C0], Flags: 00000000, ?LoadFrame@MxVideoPresenter@@UAEXPAVMxStreamChunk@@@Z +S_PUB32: [0001:00056F23], Flags: 00000000, __rtchsifneg +S_PUB32: [0001:00014C30], Flags: 00000000, ??1?$MxList@PAVLegoWorld@@@@UAE@XZ +S_PUB32: [0001:000459B0], Flags: 00000000, ?ImplementationDataPtr@TextureImpl@TglImpl@@UAEPAXXZ +S_PUB32: [0001:00035050], Flags: 00000000, ??0?$MxListEntry@PAUMxRegionTopBottom@@@@QAE@PAUMxRegionTopBottom@@PAV0@1@Z +S_PUB32: [0001:00033570], Flags: 00000000, ?StartingTickle@MxPresenter@@UAEXXZ +S_PUB32: [0003:000040B8], Flags: 00000000, ??_7?$MxHashTable@PAVMxVariable@@@@6B@ +S_PUB32: [0005:00000000], Flags: 00000000, __IMPORT_DESCRIPTOR_DDRAW +S_PUB32: [0001:0002CAA0], Flags: 00000000, ?Open@MXIOINFO@@QAEGPBDK@Z +S_PUB32: [0001:000073C0], Flags: 00000000, ?VTable0x48@LegoEntity@@UAEXXZ +S_PUB32: [0004:00000C2C], Flags: 00000000, ??_C@_0BB@LBFE@RegistrationBook?$AA@ +S_PUB32: [0001:00015DB0], Flags: 00000000, ?Notify@LegoRace@@UAEJAAVMxParam@@@Z +S_PUB32: [0001:0004E4A8], Flags: 00000000, _VirtualQueryEx@16 +S_PUB32: [0004:000004F8], Flags: 00000000, ??_C@_0N@IMFN@LegoCarBuild?$AA@ +S_PUB32: [0003:00002710], Flags: 00000000, ??_7GasStationEntity@@6B@ +S_PUB32: [0001:00008500], Flags: 00000000, ?ClassName@LegoLoopingAnimPresenter@@UBEPBDXZ +S_PUB32: [0004:00003CB0], Flags: 00000000, _shi_mutexMovShrName +S_PUB32: [0001:000070F0], Flags: 00000000, ??1LegoEntity@@UAE@XZ +S_PUB32: [0001:000341E0], Flags: 00000000, ??0MxRAMStreamProvider@@QAE@XZ +S_PUB32: [0001:000609B0], Flags: 00000000, ___crtGetLocaleInfoA +S_PUB32: [0005:0000050C], Flags: 00000000, __imp__GetModuleFileNameA@12 +S_PUB32: [0001:0001A350], Flags: 00000000, ?VTable0x60@LegoWorldPresenter@@UAEXPAVMxPresenter@@@Z +S_PUB32: [0001:00024FD0], Flags: 00000000, ?VTable0x44@MxDisplaySurface@@UAEPAUIDirectDrawSurface@@PAVMxBitmap@@PAIII@Z +S_PUB32: [0001:0003A6C0], Flags: 00000000, ?FindNextActionDataStartFromStreamingAction@MxStreamController@@QAEPAVMxNextActionDataStart@@PAVMxDSStreamingAction@@@Z +S_PUB32: [0001:00050F90], Flags: 00000000, __fassign +S_PUB32: [0001:000094D0], Flags: 00000000, ?Register@LegoInputManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:00001650], Flags: 00000000, ??1AnimState@@UAE@XZ +S_PUB32: [0001:000534B0], Flags: 00000000, __errno +S_PUB32: [0001:00046360], Flags: 00000000, ??_GTowTrack@@UAEPAXI@Z +S_PUB32: [0005:000004D8], Flags: 00000000, __imp__SetLastError@4 +S_PUB32: [0001:00028EF0], Flags: 00000000, ??0MxDSParallelAction@@QAE@XZ +S_PUB32: [0001:0003B590], Flags: 00000000, ?Find@MxStreamListMxDSSubscriber@@QAEPAVMxDSSubscriber@@PAVMxDSObject@@@Z +S_PUB32: [0001:000153C0], Flags: 00000000, ??0LegoPathController@@QAE@XZ +S_PUB32: [0001:00041320], Flags: 00000000, ?EqualsDataProduct@Matrix4Impl@@UAEXABVMatrix4@@0@Z +S_PUB32: [0003:00005544], Flags: 00000000, ??_C@_04JKCH@fmod?$AA@ +S_PUB32: [0001:0001E210], Flags: 00000000, ?ReadyTickle@MxControlPresenter@@UAEXXZ +S_PUB32: [0001:0003B600], Flags: 00000000, ?Find@MxStreamListMxDSAction@@QAEPAVMxDSAction@@PAV2@E@Z +S_PUB32: [0001:00059848], Flags: 00000000, __adj_fdivr_m32i +S_PUB32: [0004:000035C8], Flags: 00000000, ??_C@_03BJCF@XXX?$AA@ +S_PUB32: [0004:00000E0C], Flags: 00000000, ?g_jetraceScript@@3PAVMxAtomId@@A +S_PUB32: [0003:00003038], Flags: 00000000, ??_7?$MxList@PAVMxPresenter@@@@6B@ +S_PUB32: [0001:0003F540], Flags: 00000000, ?RepeatingTickle@MxVideoPresenter@@UAEXXZ +S_PUB32: [0003:0000553C], Flags: 00000000, ??_C@_05PAK@frexp?$AA@ +S_PUB32: [0001:00001630], Flags: 00000000, ??_EAnimState@@UAEPAXI@Z +S_PUB32: [0001:00031400], Flags: 00000000, ?EventManager@@YAPAVMxEventManager@@XZ +S_PUB32: [0003:000041F8], Flags: 00000000, ??_7?$MxListCursor@PAUMxRegionTopBottom@@@@6B@ +S_PUB32: [0004:00006298], Flags: 00000000, ___lconv_static_decimal +S_PUB32: [0001:00015370], Flags: 00000000, ?VTable0x6c@LegoPathActor@@UAEXXZ +S_PUB32: [0001:000070D0], Flags: 00000000, ?Unregister@LegoControlManager@@QAEXPAVMxCore@@@Z +S_PUB32: [0001:00050BE5], Flags: 00000000, __NLG_Return +S_PUB32: [0001:0004E4F6], Flags: 00000000, _ReleaseDC@8 +S_PUB32: [0001:0004A5F0], Flags: 00000000, _MemCheckPtr@8 +S_PUB32: [0004:00003C88], Flags: 00000000, _shi_initPoolReaders +S_PUB32: [0001:00015940], Flags: 00000000, ??1LegoPhonemePresenter@@UAE@XZ +S_PUB32: [0001:00058C70], Flags: 00000000, ___iscsymf +S_PUB32: [0003:00004F08], Flags: 00000000, _szLibName +S_PUB32: [0001:0003B1D0], Flags: 00000000, ?GetOpenStream@MxStreamer@@QAEPAVMxStreamController@@PBD@Z +S_PUB32: [0003:00000968], Flags: 00000000, ??_7GasStationState@@6B@ +S_PUB32: [0001:0002CC70], Flags: 00000000, ?Seek@MXIOINFO@@QAEJJJ@Z +S_PUB32: [0001:0004E9A2], Flags: 00000000, __NLG_Notify +S_PUB32: [0001:00047B60], Flags: 00000000, _MemFreeDefaultPool@0 +S_PUB32: [0004:0000127C], Flags: 00000000, ??_C@_0P@DMLN@lego?5brown?5flt?$AA@ +S_PUB32: [0004:000020EC], Flags: 00000000, ??_C@_0DO@LOID@Can?5only?5have?5ony?5color?5key?5acti@ +S_PUB32: [0001:0005CCC0], Flags: 00000000, __set_errno +S_PUB32: [0003:000058D0], Flags: 00000000, ??_C@_03CKDN@plk?$AA@ +S_PUB32: [0004:00000574], Flags: 00000000, ??_C@_07BJMH@disable?$AA@ +S_PUB32: [0001:000417E0], Flags: 00000000, ?AddScalarImpl@Vector2Impl@@UAEXM@Z +S_PUB32: [0001:00036BB0], Flags: 00000000, ?FUN_100c46c0@MxRegionCursor@@AAEXAAVMxRegionLeftRightList@@@Z +S_PUB32: [0004:00004818], Flags: 00000000, __mbctype +S_PUB32: [0005:0000058C], Flags: 00000000, __imp__midiStreamClose@4 +S_PUB32: [0001:00001A20], Flags: 00000000, ?ClassName@LegoEntity@@UBEPBDXZ +S_PUB32: [0001:0004E966], Flags: 00000000, __NLG_Return2 +S_PUB32: [0001:00012650], Flags: 00000000, ??_GBeachHouseEntity@@UAEPAXI@Z +S_PUB32: [0003:00002E48], Flags: 00000000, ??_7ROI@@6B@ +S_PUB32: [0001:000452E0], Flags: 00000000, ?CreateTexture@RendererImpl@TglImpl@@UAEPAVTexture@Tgl@@HHHPBXHHPBUPaletteEntry@4@@Z +S_PUB32: [0001:00058B50], Flags: 00000000, _isalnum +S_PUB32: [0001:00019AC0], Flags: 00000000, ?VTable0x68@LegoWorld@@UAEXE@Z +S_PUB32: [0001:0001E340], Flags: 00000000, ?Enter@MxCriticalSection@@QAEXXZ +S_PUB32: [0003:00004878], Flags: 00000000, ??_7RegistrationBook@@6B@ +S_PUB32: [0001:0000FC10], Flags: 00000000, ?ClassName@LegoAct2State@@UBEPBDXZ +S_PUB32: [0001:0004E999], Flags: 00000000, __NLG_Notify1 +S_PUB32: [0001:0004ABD0], Flags: 00000000, @_shi_sysValidateFunction@4 +S_PUB32: [0001:000122A0], Flags: 00000000, ??_GJetskiRaceState@@UAEPAXI@Z +S_PUB32: [0001:000060F0], Flags: 00000000, ??_GMxVideoPresenter@@UAEPAXI@Z +S_PUB32: [0001:0003AC50], Flags: 00000000, ?Open@MxStreamer@@QAEPAVMxStreamController@@PBDG@Z +S_PUB32: [0004:000056E8], Flags: 00000000, ___lc_codepage +S_PUB32: [0001:0002AD30], Flags: 00000000, ??0MxDSStill@@QAE@XZ +S_PUB32: [0001:00002B70], Flags: 00000000, ?VTable0xe4@Helicopter@@UAEXXZ +S_PUB32: [0001:00016FA0], Flags: 00000000, ?MatchActionString@@YA?AW4ExtraActionType@@PBD@Z +S_PUB32: [0001:0005D390], Flags: 00000000, __logb +S_PUB32: [0005:0000033C], Flags: 00000000, DINPUT_NULL_THUNK_DATA +S_PUB32: [0003:00004E50], Flags: 00000000, ??_7TowTrackMissionState@@6B@ +S_PUB32: [0004:00000BF8], Flags: 00000000, ??_C@_09KMH@Act3State?$AA@ +S_PUB32: [0004:00001AE0], Flags: 00000000, ??_C@_0CN@CHJA@CreateSurface?5for?5fullScreen?5Z?9b@ +S_PUB32: [0001:000335F0], Flags: 00000000, ?DoneTickle@MxPresenter@@MAEXXZ +S_PUB32: [0001:0005F9A0], Flags: 00000000, _strftime +S_PUB32: [0004:000022D4], Flags: 00000000, ??_C@_0HF@PPAF@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0004:0000B630], Flags: 00000000, ___piob +S_PUB32: [0004:0000356C], Flags: 00000000, ??_C@_0BF@OKNL@MxDiskStreamProvider?$AA@ +S_PUB32: [0001:0005A690], Flags: 00000000, ___sbh_heap_check +S_PUB32: [0001:00046D90], Flags: 00000000, ??_EViewLODListManager@@UAEPAXI@Z +S_PUB32: [0003:00005214], Flags: 00000000, ??_C@_0CG@DPMN@R6025?$AN?6?9?5pure?5virtual?5function?5c@ +S_PUB32: [0001:00029BC0], Flags: 00000000, ??_GMxStringListCursor@@UAEPAXI@Z +S_PUB32: [0001:0003EB20], Flags: 00000000, ??_GAlphaMask@MxVideoPresenter@@UAEPAXI@Z +S_PUB32: [0004:0000155C], Flags: 00000000, ?g_bitmapSignature@@3GA +S_PUB32: [0005:000000A0], Flags: 00000000, __NULL_IMPORT_DESCRIPTOR +S_PUB32: [0003:000057B8], Flags: 00000000, ??_C@_07LGIB@england?$AA@ +S_PUB32: [0001:00008CB0], Flags: 00000000, ??_GMxNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:00048910], Flags: 00000000, _MemAllocPtr@12 +S_PUB32: [0001:00027870], Flags: 00000000, ??_G?$MxCollection@PAVMxDSAction@@@@UAEPAXI@Z +S_PUB32: [0001:00007050], Flags: 00000000, ??_GLegoControlManager@@UAEPAXI@Z +S_PUB32: [0001:00025B80], Flags: 00000000, ??0MxDSBuffer@@QAE@XZ +S_PUB32: [0001:000296E0], Flags: 00000000, ?ClassName@MxDSSelectAction@@UBEPBDXZ +S_PUB32: [0001:00040780], Flags: 00000000, ??_EPolice@@UAEPAXI@Z +S_PUB32: [0001:00040CB0], Flags: 00000000, ?IsA@RaceState@@UBEEPBD@Z +S_PUB32: [0001:0002D380], Flags: 00000000, ?Init@MxLoopingFlcPresenter@@AAEXXZ +S_PUB32: [0001:000112A0], Flags: 00000000, ?IsA@HospitalEntity@@UBEEPBD@Z +S_PUB32: [0001:0001E200], Flags: 00000000, ?FUN_10044540@MxControlPresenter@@AAEXG@Z +S_PUB32: [0001:00005660], Flags: 00000000, ?FUN_100ab1b0@Lego3DView@@QAEXPAVLegoROI@@@Z +S_PUB32: [0001:00051820], Flags: 00000000, __exit +S_PUB32: [0003:0000512C], Flags: 00000000, ??_C@_04LFKF@?4cmd?$AA@ +S_PUB32: [0001:000078D0], Flags: 00000000, ?ClassName@LegoFlcTexturePresenter@@UBEPBDXZ +S_PUB32: [0001:000386F0], Flags: 00000000, ?FUN_100aebd0@MxSoundManager@@AAEPAVMxPresenter@@ABVMxAtomId@@I@Z +S_PUB32: [0003:00005458], Flags: 00000000, ??_C@_01A@?$AA?$AA@ +S_PUB32: [0001:00041A50], Flags: 00000000, ?Mul@Vector2Impl@@UAEXPAV1@@Z +S_PUB32: [0001:00004560], Flags: 00000000, ?IsA@Isle@@UBEEPBD@Z +S_PUB32: [0001:00016070], Flags: 00000000, ??_GOrientableROI@@UAEPAXI@Z +S_PUB32: [0001:00008D20], Flags: 00000000, ??_GLegoEventNotificationParam@@UAEPAXI@Z +S_PUB32: [0001:000321F0], Flags: 00000000, ?Destroy@MxVariableTable@@SAXPAVMxVariable@@@Z +S_PUB32: [0001:000258B0], Flags: 00000000, ??0MxDSAnim@@QAE@XZ +S_PUB32: [0001:00041A30], Flags: 00000000, ?Sub@Vector2Impl@@UAEXPAV1@@Z +S_PUB32: [0001:00023460], Flags: 00000000, ?IsA@MxStreamProvider@@UBEEPBD@Z +S_PUB32: [0001:00009520], Flags: 00000000, ?ClearWorld@LegoInputManager@@QAEXXZ +S_PUB32: [0003:00005BB0], Flags: 00000000, ??_C@_07CJME@H?3mm?3ss?$AA@ +S_PUB32: [0004:00002274], Flags: 00000000, ??_C@_0FP@PCHK@Operation?5could?5not?5be?5carried?5o@ +S_PUB32: [0001:000129E0], Flags: 00000000, ?FindEntityByAtomIdOrEntityId@@YAPAVLegoEntity@@ABVMxAtomId@@H@Z +S_PUB32: [0001:00045760], Flags: 00000000, ?CreateBuffer@TglD3DRMIMAGE@TglImpl@@QAE?AW4Result@Tgl@@HHHPAXH@Z + + +*** TYPES + +*** Converting 16-bit types to 32-bit equivalents + +0x1000 : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'XLAT_SERVER' + list[1] = LF_ENUMERATE, public, value = 2, name = 'XLAT_CLIENT' + +0x1001 : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1000 + enum name = XLAT_SIDE, UDT(0x00001001) + +0x1002 : Length = 26, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Ramp' + list[1] = LF_ENUMERATE, public, value = 1, name = 'RGB' + +0x1003 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1002 + enum name = Tgl::ColorModel, UDT(0x00001003) + +0x1004 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Wireframe' + list[1] = LF_ENUMERATE, public, value = 1, name = 'UnlitFlat' + list[2] = LF_ENUMERATE, public, value = 2, name = 'Flat' + list[3] = LF_ENUMERATE, public, value = 3, name = 'Gouraud' + list[4] = LF_ENUMERATE, public, value = 4, name = 'Phong' + +0x1005 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1004 + enum name = Tgl::ShadingModel, UDT(0x00001005) + +0x1006 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Ambient' + list[1] = LF_ENUMERATE, public, value = 1, name = 'Point' + list[2] = LF_ENUMERATE, public, value = 2, name = 'Spot' + list[3] = LF_ENUMERATE, public, value = 3, name = 'Directional' + list[4] = LF_ENUMERATE, public, value = 4, name = 'ParallelPoint' + +0x1007 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1006 + enum name = Tgl::LightType, UDT(0x00001007) + +0x1008 : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Perspective' + list[1] = LF_ENUMERATE, public, value = 1, name = 'Orthographic' + +0x1009 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1008 + enum name = Tgl::ProjectionType, UDT(0x00001009) + +0x100a : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Linear' + list[1] = LF_ENUMERATE, public, value = 1, name = 'PerspectiveCorrect' + +0x100b : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x100a + enum name = Tgl::TextureMappingMode, UDT(0x0000100b) + +0x100c : Length = 30, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'Error' + list[1] = LF_ENUMERATE, public, value = 1, name = 'Success' + +0x100d : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x100c + enum name = Tgl::Result, UDT(0x0000100d) + +0x100e : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'MEM_NO_ERROR' + list[1] = LF_ENUMERATE, public, value = 1, name = 'MEM_INTERNAL_ERROR' + list[2] = LF_ENUMERATE, public, value = 2, name = 'MEM_OUT_OF_MEMORY' + list[3] = LF_ENUMERATE, public, value = 3, name = 'MEM_BLOCK_TOO_BIG' + list[4] = LF_ENUMERATE, public, value = 4, name = 'MEM_ALLOC_ZERO' + list[5] = LF_ENUMERATE, public, value = 5, name = 'MEM_RESIZE_FAILED' + list[6] = LF_ENUMERATE, public, value = 6, name = 'MEM_LOCK_ERROR' + list[7] = LF_ENUMERATE, public, value = 7, name = 'MEM_EXCEEDED_CEILING' + list[8] = LF_ENUMERATE, public, value = 8, name = 'MEM_TOO_MANY_PAGES' + list[9] = LF_ENUMERATE, public, value = 9, name = 'MEM_TOO_MANY_TASKS' + list[10] = LF_ENUMERATE, public, value = 10, name = 'MEM_BAD_MEM_POOL' + list[11] = LF_ENUMERATE, public, value = 11, name = 'MEM_BAD_BLOCK' + list[12] = LF_ENUMERATE, public, value = 12, name = 'MEM_BAD_FREE_BLOCK' + list[13] = LF_ENUMERATE, public, value = 13, name = 'MEM_BAD_HANDLE' + list[14] = LF_ENUMERATE, public, value = 14, name = 'MEM_BAD_POINTER' + list[15] = LF_ENUMERATE, public, value = 15, name = 'MEM_WRONG_TASK' + list[16] = LF_ENUMERATE, public, value = 16, name = 'MEM_NOT_FIXED_SIZE' + list[17] = LF_ENUMERATE, public, value = 17, name = 'MEM_BAD_FLAGS' + list[18] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'MEM_ERROR_CODE_INT_MAX' + +0x100f : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 19, type = T_INT4(0074) field list type 0x100e + enum name = MEM_ERROR_CODE, UDT(0x0000100f) + +0x1010 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'MEM_FS_BLOCK' + list[1] = LF_ENUMERATE, public, value = 2, name = 'MEM_VAR_MOVEABLE_BLOCK' + list[2] = LF_ENUMERATE, public, value = 4, name = 'MEM_VAR_FIXED_BLOCK' + list[3] = LF_ENUMERATE, public, value = 8, name = 'MEM_EXTERNAL_BLOCK' + list[4] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'MEM_BLOCK_TYPE_INT_MAX' + +0x1011 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1010 + enum name = MEM_BLOCK_TYPE, UDT(0x00001011) + +0x1012 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'MEM_POOL_OK' + list[1] = LF_ENUMERATE, public, value = (LF_CHAR) -1(0xFF), name = 'MEM_POOL_CORRUPT' + list[2] = LF_ENUMERATE, public, value = (LF_CHAR) -2(0xFE), name = 'MEM_POOL_CORRUPT_FATAL' + list[3] = LF_ENUMERATE, public, value = 0, name = 'MEM_POOL_END' + list[4] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'MEM_POOL_STATUS_INT_MAX' + +0x1013 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1012 + enum name = MEM_POOL_STATUS, UDT(0x00001013) + +0x1014 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'MEM_POINTER_OK' + list[1] = LF_ENUMERATE, public, value = 0, name = 'MEM_POINTER_WILD' + list[2] = LF_ENUMERATE, public, value = (LF_CHAR) -1(0xFF), name = 'MEM_POINTER_FREE' + list[3] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'MEM_POINTER_STATUS_INT_MAX' + +0x1015 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x1014 + enum name = MEM_POINTER_STATUS, UDT(0x00001015) + +0x1016 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'STUB_UNMARSHAL' + list[1] = LF_ENUMERATE, public, value = 1, name = 'STUB_CALL_SERVER' + list[2] = LF_ENUMERATE, public, value = 2, name = 'STUB_MARSHAL' + list[3] = LF_ENUMERATE, public, value = 3, name = 'STUB_CALL_SERVER_NO_HRESULT' + +0x1017 : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x1016 + enum name = STUB_PHASE, UDT(0x00001017) + +0x1018 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'PROXY_CALCSIZE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'PROXY_GETBUFFER' + list[2] = LF_ENUMERATE, public, value = 2, name = 'PROXY_MARSHAL' + list[3] = LF_ENUMERATE, public, value = 3, name = 'PROXY_SENDRECEIVE' + list[4] = LF_ENUMERATE, public, value = 4, name = 'PROXY_UNMARSHAL' + +0x1019 : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1018 + enum name = PROXY_PHASE, UDT(0x00001019) + +0x101a : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'MEM_PATCH_ALL' + list[1] = LF_ENUMERATE, public, value = 1, name = 'MEM_SKIP_PATCHING_THIS_DLL' + list[2] = LF_ENUMERATE, public, value = 2, name = 'MEM_DISABLE_SYSTEM_HEAP_PATCHING' + list[3] = LF_ENUMERATE, public, value = 7, name = 'MEM_DISABLE_ALL_PATCHING' + list[4] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'MEM_PATCHING_INT_MAX' + +0x101b : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x101a + enum name = MEM_PATCHING, UDT(0x0000101b) + +0x101c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_REAL32(0040) + +0x101d : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DLIGHT_POINT' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DLIGHT_SPOT' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DLIGHT_DIRECTIONAL' + list[3] = LF_ENUMERATE, public, value = 4, name = 'D3DLIGHT_PARALLELPOINT' + list[4] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DLIGHT_FORCE_DWORD' + +0x101e : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x101d + enum name = _D3DLIGHTTYPE, UDT(0x0000101e) + +0x101f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000027ab) + +0x1020 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewROI, UDT(0x000043a6) + +0x1021 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1020 + +0x1022 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1021 + +0x1023 : Length = 6, Leaf = 0x1201 LF_ARGLIST argument count = 0 + +0x1024 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1020, This type = 0x1022, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1025 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Group, UDT(0x0000300c) + +0x1026 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1025 + +0x1027 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1026 + +0x1028 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1027, Class type = 0x1020, This type = 0x1022, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1029 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1025 + +0x102a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1020 + +0x102b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1029, Class type = 0x1020, This type = 0x102A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x102c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Matrix4Data, UDT(0x00001135) + +0x102d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x102C + +0x102e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x102D + +0x102f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x102E + +0x1030 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1020, This type = 0x102A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x102f, This adjust = 0 + +0x1031 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_REAL32(0040) + Index type = T_SHORT(0011) + length = 16 + Name = + +0x1032 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1031 + Index type = T_SHORT(0011) + length = 64 + Name = + +0x1033 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Matrix4, UDT(0x0000103d) + +0x1034 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1033 + +0x1035 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1033, This type = 0x1034, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1036 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_LONG(0012) + +0x1037 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x1033, This type = 0x1034, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1038 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1033 + +0x1039 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1038 + +0x103a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x1033, This type = 0x1039, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x103b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1037, + list[1] = public, VANILLA, 0x103A, + +0x103c : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1032, offset = 0 + member name = 'rows' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1035, name = 'Matrix4' + list[2] = LF_METHOD, count = 2, list = 0x103B, name = 'operator[]' + +0x103d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x103c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = Matrix4, UDT(0x0000103d) + +0x103e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewManager, UDT(0x0000207d) + +0x103f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x103E + +0x1040 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1020 + +0x1041 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1040 + +0x1042 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x103E, This type = 0x103F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1041, This adjust = 0 + +0x1043 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TowTrackMissionState, UDT(0x00004cd0) + +0x1044 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1043 + +0x1045 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1043, This type = 0x1044, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1046 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1043 + +0x1047 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1046 + +0x1048 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1043, This type = 0x1047, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1049 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PRCHAR(0470) + +0x104a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1043, This type = 0x1047, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x104b : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'LookupMode_Exact' + list[1] = LF_ENUMERATE, public, value = 1, name = 'LookupMode_LowerCase' + list[2] = LF_ENUMERATE, public, value = 2, name = 'LookupMode_UpperCase' + list[3] = LF_ENUMERATE, public, value = 3, name = 'LookupMode_LowerCase2' + +0x104c : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x104b + enum name = LookupMode, UDT(0x0000104c) + +0x104d : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'MxDSType_Object' + list[1] = LF_ENUMERATE, public, value = 1, name = 'MxDSType_Action' + list[2] = LF_ENUMERATE, public, value = 2, name = 'MxDSType_MediaAction' + list[3] = LF_ENUMERATE, public, value = 3, name = 'MxDSType_Anim' + list[4] = LF_ENUMERATE, public, value = 4, name = 'MxDSType_Sound' + list[5] = LF_ENUMERATE, public, value = 5, name = 'MxDSType_MultiAction' + list[6] = LF_ENUMERATE, public, value = 6, name = 'MxDSType_SerialAction' + list[7] = LF_ENUMERATE, public, value = 7, name = 'MxDSType_ParallelAction' + list[8] = LF_ENUMERATE, public, value = 8, name = 'MxDSType_Event' + list[9] = LF_ENUMERATE, public, value = 9, name = 'MxDSType_SelectAction' + list[10] = LF_ENUMERATE, public, value = 10, name = 'MxDSType_Still' + list[11] = LF_ENUMERATE, public, value = 11, name = 'MxDSType_ObjectAction' + +0x104e : Length = 26, Leaf = 0x1507 LF_ENUM + # members = 12, type = T_INT4(0074) field list type 0x104d + enum name = MxDSType, UDT(0x0000104e) + +0x104f : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'ExtraActionType_none' + list[1] = LF_ENUMERATE, public, value = 1, name = 'ExtraActionType_opendisk' + list[2] = LF_ENUMERATE, public, value = 2, name = 'ExtraActionType_openram' + list[3] = LF_ENUMERATE, public, value = 3, name = 'ExtraActionType_close' + list[4] = LF_ENUMERATE, public, value = 4, name = 'ExtraActionType_start' + list[5] = LF_ENUMERATE, public, value = 5, name = 'ExtraActionType_stop' + list[6] = LF_ENUMERATE, public, value = 6, name = 'ExtraActionType_run' + list[7] = LF_ENUMERATE, public, value = 7, name = 'ExtraActionType_exit' + list[8] = LF_ENUMERATE, public, value = 8, name = 'ExtraActionType_enable' + list[9] = LF_ENUMERATE, public, value = 9, name = 'ExtraActionType_disable' + list[10] = LF_ENUMERATE, public, value = 10, name = 'ExtraActionType_notify' + list[11] = LF_ENUMERATE, public, value = 11, name = 'ExtraActionType_unknown' + +0x1050 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 12, type = T_INT4(0074) field list type 0x104f + enum name = ExtraActionType, UDT(0x00001050) + +0x1051 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TowTrack, UDT(0x00003476) + +0x1052 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1051 + +0x1053 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1051, This type = 0x1052, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1054 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1051 + +0x1055 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1054 + +0x1056 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1051, This type = 0x1055, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1057 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1051, This type = 0x1055, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1058 : Length = 598, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'PARAM_NONE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'c_notificationStartAction' + list[2] = LF_ENUMERATE, public, value = 2, name = 'c_notificationEndAction' + list[3] = LF_ENUMERATE, public, value = 4, name = 'TYPE4' + list[4] = LF_ENUMERATE, public, value = 5, name = 'MXPRESENTER_NOTIFICATION' + list[5] = LF_ENUMERATE, public, value = 6, name = 'MXSTREAMER_DELETE_NOTIFY' + list[6] = LF_ENUMERATE, public, value = 7, name = 'c_notificationKeyPress' + list[7] = LF_ENUMERATE, public, value = 8, name = 'c_notificationButtonUp' + list[8] = LF_ENUMERATE, public, value = 9, name = 'c_notificationButtonDown' + list[9] = LF_ENUMERATE, public, value = 10, name = 'c_notificationMouseMove' + list[10] = LF_ENUMERATE, public, value = 11, name = 'TYPE11' + list[11] = LF_ENUMERATE, public, value = 12, name = 'c_notificationDragEnd' + list[12] = LF_ENUMERATE, public, value = 13, name = 'c_notificationDragStart' + list[13] = LF_ENUMERATE, public, value = 14, name = 'c_notificationDrag' + list[14] = LF_ENUMERATE, public, value = 15, name = 'c_notificationTimer' + list[15] = LF_ENUMERATE, public, value = 17, name = 'TYPE17' + list[16] = LF_ENUMERATE, public, value = 18, name = 'TYPE18' + list[17] = LF_ENUMERATE, public, value = 19, name = 'TYPE19' + list[18] = LF_ENUMERATE, public, value = 20, name = 'TYPE20' + list[19] = LF_ENUMERATE, public, value = 21, name = 'c_notificationNewPresenter' + list[20] = LF_ENUMERATE, public, value = 22, name = 'TYPE22' + list[21] = LF_ENUMERATE, public, value = 23, name = 'TYPE23' + list[22] = LF_ENUMERATE, public, value = 24, name = 'MXTRANSITIONMANAGER_TRANSITIONENDED' + +0x1059 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 23, type = T_INT4(0074) field list type 0x1058 + enum name = NotificationId, UDT(0x00001059) + +0x105a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = SkateBoard, UDT(0x00003dde) + +0x105b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x105A + +0x105c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x105A, This type = 0x105B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x105d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x105A + +0x105e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x105D + +0x105f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x105A, This type = 0x105E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1060 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x105A, This type = 0x105E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1061 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ScoreState, UDT(0x00003ddc) + +0x1062 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1061 + +0x1063 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1061, This type = 0x1062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1064 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAtomId, UDT(0x00004e96) + +0x1065 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1064 + +0x1066 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMLIGHT_AMBIENT' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMLIGHT_POINT' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMLIGHT_SPOT' + list[3] = LF_ENUMERATE, public, value = 3, name = 'D3DRMLIGHT_DIRECTIONAL' + list[4] = LF_ENUMERATE, public, value = 4, name = 'D3DRMLIGHT_PARALLELPOINT' + +0x1067 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1066 + enum name = _D3DRMLIGHTTYPE, UDT(0x00001067) + +0x1068 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMTEXTURE_NEAREST' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMTEXTURE_LINEAR' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMTEXTURE_MIPNEAREST' + list[3] = LF_ENUMERATE, public, value = 3, name = 'D3DRMTEXTURE_MIPLINEAR' + list[4] = LF_ENUMERATE, public, value = 4, name = 'D3DRMTEXTURE_LINEARMIPNEAREST' + list[5] = LF_ENUMERATE, public, value = 5, name = 'D3DRMTEXTURE_LINEARMIPLINEAR' + +0x1069 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 6, type = T_INT4(0074) field list type 0x1068 + enum name = _D3DRMTEXTUREQUALITY, UDT(0x00001069) + +0x106a : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMCOMBINE_REPLACE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMCOMBINE_BEFORE' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMCOMBINE_AFTER' + +0x106b : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x106a + enum name = _D3DRMCOMBINETYPE, UDT(0x0000106b) + +0x106c : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMPROJECT_PERSPECTIVE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMPROJECT_ORTHOGRAPHIC' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMPROJECT_RIGHTHANDPERSPECTIVE' + list[3] = LF_ENUMERATE, public, value = 3, name = 'D3DRMPROJECT_RIGHTHANDORTHOGRAPHIC' + +0x106d : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x106c + enum name = _D3DRMPROJECTIONTYPE, UDT(0x0000106d) + +0x106e : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMCONSTRAIN_Z' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMCONSTRAIN_Y' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMCONSTRAIN_X' + +0x106f : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x106e + enum name = _D3DRMFRAMECONSTRAINT, UDT(0x0000106f) + +0x1070 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMMATERIAL_FROMMESH' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMMATERIAL_FROMPARENT' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMMATERIAL_FROMFRAME' + +0x1071 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x1070 + enum name = _D3DRMMATERIALMODE, UDT(0x00001071) + +0x1072 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMFOG_LINEAR' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMFOG_EXPONENTIAL' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMFOG_EXPONENTIALSQUARED' + +0x1073 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x1072 + enum name = _D3DRMFOGMODE, UDT(0x00001073) + +0x1074 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMZBUFFER_FROMPARENT' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMZBUFFER_ENABLE' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMZBUFFER_DISABLE' + +0x1075 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x1074 + enum name = _D3DRMZBUFFERMODE, UDT(0x00001075) + +0x1076 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMSORT_FROMPARENT' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMSORT_NONE' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMSORT_FRONTTOBACK' + list[3] = LF_ENUMERATE, public, value = 3, name = 'D3DRMSORT_BACKTOFRONT' + +0x1077 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x1076 + enum name = _D3DRMSORTMODE, UDT(0x00001077) + +0x1078 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMUSERVISUAL_CANSEE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMUSERVISUAL_RENDER' + +0x1079 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1078 + enum name = _D3DRMUSERVISUALREASON, UDT(0x00001079) + +0x107a : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Score, UDT(0x000032d8) + +0x107b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x107A + +0x107c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x107d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x107A + +0x107e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x107D + +0x107f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x107A, This type = 0x107E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1080 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x107A, This type = 0x107E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1081 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1082 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSObject, UDT(0x00003506) + +0x1083 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1082 + +0x1084 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1083 + +0x1085 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1086 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1061 + +0x1087 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoGameState, UDT(0x00003453) + +0x1088 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1087 + +0x1089 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Looping' + list[1] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[2] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[3] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[4] = LF_ENUMERATE, public, value = 32, name = 'Flag_Enabled' + list[5] = LF_ENUMERATE, public, value = 64, name = 'Flag_Bit7' + list[6] = LF_ENUMERATE, public, value = 128, name = 'Flag_World' + list[7] = LF_ENUMERATE, public, value = 512, name = 'Flag_Bit9' + list[8] = LF_ENUMERATE, public, value = 1024, name = 'Flag_Bit10' + +0x108a : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 9, type = T_INT4(0074) field list type 0x1089 +NESTED, enum name = MxDSAction::__unnamed + +0x108b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSAction, UDT(0x00003cf2) + +0x108c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x108B + +0x108d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x108e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x108B + +0x108f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x108E + +0x1090 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x1091 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x108E, Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x1092 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x108B + +0x1093 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1092 + +0x1094 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1095 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1096 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1097 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : T_32PRCHAR(0470) + +0x1098 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1097 + list[1] = T_SHORT(0011) + +0x1099 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x109a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x109b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x109c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x108B + +0x109d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x109e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_UINT4(0075) + +0x109f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x10a0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_USHORT(0021) + list[1] = T_32PRCHAR(0470) + +0x10a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10a0, This adjust = 0 + +0x10a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x10a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10a7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_INT4(0074) + +0x10a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x10a9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector3Data, UDT(0x0000339d) + +0x10aa : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10A9 + +0x10ab : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10AA + +0x10ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AB, Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10ad : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCore, UDT(0x00001b42) + +0x10ae : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10AD + +0x10af : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10AE + +0x10b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x10b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x108B, This type = 0x1093, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10b3 : Length = 1018, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnkTimingField' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnkTimingField' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown8c' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown8c' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[34] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[36] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[37] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[38] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[40] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[41] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[42] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk84' + list[43] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk88' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_unk8c' + list[45] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unkTimingField' + +0x10b4 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 17 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR + +0x10b5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 46, field list type 0x10b3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x10b6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxParam, UDT(0x00001b54) + +0x10b7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10B6 + +0x10b8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10B7 + +0x10b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x10ba : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxEndActionNotificationParam, UDT(0x00002315) + +0x10bb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10BA + +0x10bc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10BB + +0x10bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10bc, This adjust = 0 + +0x10be : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxType17NotificationParam, UDT(0x000032c6) + +0x10bf : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10BE + +0x10c0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10BF + +0x10c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c0, This adjust = 0 + +0x10c2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoInputManager, UDT(0x00001e93) + +0x10c3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10C2 + +0x10c4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_UCHAR(0020) + +0x10c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x10c6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GifManager, UDT(0x000032e2) + +0x10c7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10C6 + +0x10c8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RaceState, UDT(0x000032d0) + +0x10c9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10C8 + +0x10ca : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = AmbulanceMissionState, UDT(0x00003470) + +0x10cb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10CA + +0x10cc : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1043 + +0x10cd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = PizzaMissionState, UDT(0x00003dcf) + +0x10ce : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10CD + +0x10cf : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDCOLORKEY, UDT(0x0000177f) + +0x10d0 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDPIXELFORMAT, UDT(0x00001de8) + +0x10d1 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDSCAPS, UDT(0x00001776) + +0x10d2 : Length = 454, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwHeight' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwWidth' + list[4] = LF_MEMBER, public, type = T_LONG(0012), offset = 16 + member name = 'lPitch' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwLinearSize' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwBackBufferCount' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwMipMapCount' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwZBufferBitDepth' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwRefreshRate' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwAlphaBitDepth' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwReserved' + list[12] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 36 + member name = 'lpSurface' + list[13] = LF_MEMBER, public, type = 0x10CF, offset = 40 + member name = 'ddckCKDestOverlay' + list[14] = LF_MEMBER, public, type = 0x10CF, offset = 48 + member name = 'ddckCKDestBlt' + list[15] = LF_MEMBER, public, type = 0x10CF, offset = 56 + member name = 'ddckCKSrcOverlay' + list[16] = LF_MEMBER, public, type = 0x10CF, offset = 64 + member name = 'ddckCKSrcBlt' + list[17] = LF_MEMBER, public, type = 0x10D0, offset = 72 + member name = 'ddpfPixelFormat' + list[18] = LF_MEMBER, public, type = 0x10D1, offset = 104 + member name = 'ddsCaps' + +0x10d3 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 19, field list type 0x10d2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 108, class name = _DDSURFACEDESC, UDT(0x000010d3) + +0x10d4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_SHORT(0011) + +0x10d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x107A, This type = 0x107B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x10d4, This adjust = 0 + +0x10d6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 96 + Name = + +0x10d7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RegistrationBook, UDT(0x000027b1) + +0x10d8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10D7 + +0x10d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10D7, This type = 0x10D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10da : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10D7 + +0x10db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10DA + +0x10dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x10D7, This type = 0x10DB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10D7, This type = 0x10DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x10de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10D7, This type = 0x10D8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x10df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector2Impl, UDT(0x000033c2) + +0x10e0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10DF + +0x10e1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PREAL32(0440) + +0x10e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x10e3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_REAL32(0040) + +0x10e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x10e5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10DF + +0x10e6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10E5 + +0x10e7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PREAL32(0440) + list[1] = T_32PREAL32(0440) + +0x10e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x10e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10ec : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10DF + +0x10ed : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10EC + list[1] = 0x10EC + +0x10ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10ed, This adjust = 0 + +0x10ef : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PREAL32(0440) + list[1] = 0x10EC + +0x10f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10ef, This adjust = 0 + +0x10f1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10EC + list[1] = T_32PREAL32(0440) + +0x10f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10f1, This adjust = 0 + +0x10f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x10f5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10EC + +0x10f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10f5, This adjust = 0 + +0x10f7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector3Impl, UDT(0x000033a5) + +0x10f8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10F7 + +0x10f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x10fa : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10F7 + +0x10fb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10FA + list[1] = 0x10FA + +0x10fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10fb, This adjust = 0 + +0x10fd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10FA + list[1] = T_32PREAL32(0440) + +0x10fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10fd, This adjust = 0 + +0x10ff : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PREAL32(0440) + list[1] = 0x10FA + +0x1100 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10ff, This adjust = 0 + +0x1101 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector4Impl, UDT(0x0000345a) + +0x1102 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1101 + +0x1103 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x1104 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x1105 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1101 + +0x1106 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1105 + +0x1107 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1101, This type = 0x1106, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x1108 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x1109 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1101 + +0x110a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1109 + list[1] = T_32PREAL32(0440) + +0x110b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x110a, This adjust = 0 + +0x110c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x110d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1101, This type = 0x1106, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x110e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x110f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1109 + list[1] = 0x1109 + +0x1110 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x110f, This adjust = 0 + +0x1111 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x1112 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x1113 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10F7 + +0x1114 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1113 + +0x1115 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10F7, This type = 0x1114, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x1116 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1117 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x10F7, This type = 0x1114, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1118 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RealtimeView, UDT(0x000027af) + +0x1119 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1118, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x111a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1118, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x111b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1118, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x111c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1113 + +0x111d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Matrix4Impl, UDT(0x000033d8) + +0x111e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x111D + +0x111f : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x111C + list[1] = 0x111C + list[2] = 0x111C + list[3] = 0x111E + +0x1120 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 4, Arg list type = 0x111f + +0x1121 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_REAL32(0040) + Index type = T_SHORT(0011) + length = 12 + Name = + +0x1122 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = OrientableROI, UDT(0x000033ee) + +0x1123 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1122 + +0x1124 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1122, This type = 0x1123, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1125 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x111D + +0x1126 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1125 + +0x1127 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1126 + +0x1128 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1122, This type = 0x1123, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1127, This adjust = 0 + +0x1129 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1122, This type = 0x1123, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x102f, This adjust = 0 + +0x112a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x102C + +0x112b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x102C + +0x112c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x112B + +0x112d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x102C, This type = 0x112A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x112c, This adjust = 0 + +0x112e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x102C, This type = 0x112A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x112f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x112D, + list[1] = public, VANILLA, 0x112E, + +0x1130 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1033 + +0x1131 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1130, Class type = 0x102C, This type = 0x112A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1132 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x102C, This type = 0x112A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x102f, This adjust = 0 + +0x1133 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x111D, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x112F, name = 'Matrix4Data' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1131, name = 'GetMatrix' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1132, + vfptr offset = 72, name = 'operator=' + list[4] = LF_MEMBER, public, type = 0x1033, offset = 8 + member name = 'm_matrix' + +0x1134 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 19 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR + +0x1135 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1133, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1134 + Size = 72, class name = Matrix4Data, UDT(0x00001135) + +0x1136 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002799) + +0x1137 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000114e) + +0x1138 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1137 + +0x1139 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000279b) + +0x113a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1139 + +0x113b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x113A + +0x113c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1137, This type = 0x1138, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x113b, This adjust = 0 + +0x113d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1137, This type = 0x1138, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x113e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x113C, + list[1] = public, VANILLA, 0x113D, + +0x113f : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ROI, UDT(0x00003778) + +0x1140 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x113F + +0x1141 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1140 + +0x1142 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1137 + +0x1143 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1142 + +0x1144 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1141, Class type = 0x1137, This type = 0x1143, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1145 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x1137, This type = 0x1138, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1146 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1137 + +0x1147 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1146, Class type = 0x1137, This type = 0x1138, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1148 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1145, + list[1] = public, VANILLA, 0x1147, + +0x1149 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1142 + +0x114a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1149 + +0x114b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1137, This type = 0x1143, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x114a, This adjust = 0 + +0x114c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x113A, Class type = 0x1137, This type = 0x1143, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x114d : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1136, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x113E, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1144, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x1148, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x1148, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x114B, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x114C, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x113A, offset = 0 + member name = '_Ptr' + +0x114e : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x114d, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000114e) + +0x114f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector3, UDT(0x00001c01) + +0x1150 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x114F + +0x1151 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1150 + +0x1152 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1122 + +0x1153 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1152 + +0x1154 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1151, Class type = 0x1122, This type = 0x1153, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1155 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = BoundingBox, UDT(0x000032d4) + +0x1156 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1155 + +0x1157 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1156 + +0x1158 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1157, Class type = 0x1122, This type = 0x1153, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1159 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = BoundingSphere, UDT(0x0000277c) + +0x115a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1159 + +0x115b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x115A + +0x115c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x115B, Class type = 0x1122, This type = 0x1153, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x115d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x111D + +0x115e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1038 + +0x115f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x115E + +0x1160 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x115f, This adjust = 0 + +0x1161 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1125 + +0x1162 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1161 + +0x1163 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1162, This adjust = 0 + +0x1164 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1130 + +0x1165 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1164, This adjust = 0 + +0x1166 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1038 + +0x1167 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1125 + +0x1168 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1166, Class type = 0x111D, This type = 0x1167, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1169 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1033 + +0x116a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1169, Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x116b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + +0x116c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x111D, This type = 0x1167, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x116d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL32(0440), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x116e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x116f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x111D + +0x1170 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x116F, Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x115f, This adjust = 0 + +0x1171 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PREAL32(0440) + list[1] = T_32PREAL32(0440) + list[2] = T_32PREAL32(0440) + +0x1172 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x1173 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x115E + list[1] = 0x115E + +0x1174 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1173, This adjust = 0 + +0x1175 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1161 + list[1] = 0x1161 + +0x1176 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1175, This adjust = 0 + +0x1177 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1109 + +0x1178 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1177, This adjust = 0 + +0x1179 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1113 + +0x117a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1179 + +0x117b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x117a, This adjust = 0 + +0x117c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1127, This adjust = 0 + +0x117d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RadioState, UDT(0x000033ff) + +0x117e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x117D + +0x117f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x117D, This type = 0x117E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1180 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x117D + +0x1181 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1180 + +0x1182 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x117D, This type = 0x1181, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1183 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x117D, This type = 0x1181, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1184 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Radio, UDT(0x00003402) + +0x1185 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1184 + +0x1186 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1184, This type = 0x1185, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1187 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1184 + +0x1188 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1187 + +0x1189 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1184, This type = 0x1188, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x118a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1184, This type = 0x1188, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x118b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10C8 + +0x118c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C8, This type = 0x118B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x118d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10C8 + +0x118e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x118D + +0x118f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x10C8, This type = 0x118E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1190 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10C8, This type = 0x118E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1191 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RaceStateEntry, UDT(0x000032d2) + +0x1192 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1191 + +0x1193 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1192, Class type = 0x10C8, This type = 0x118B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1194 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RaceCar, UDT(0x000032ce) + +0x1195 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1194 + +0x1196 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1194, This type = 0x1195, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1197 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1194 + +0x1198 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1197 + +0x1199 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1194, This type = 0x1198, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x119a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1194, This type = 0x1198, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x119b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = PoliceState, UDT(0x00003dd9) + +0x119c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x119B + +0x119d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x119B, This type = 0x119C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x119e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x119B + +0x119f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x119E + +0x11a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x119B, This type = 0x119F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x119B, This type = 0x119F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x11a2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Police, UDT(0x00002759) + +0x11a3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11A2 + +0x11a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11A2, This type = 0x11A3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11a5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11A2 + +0x11a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11A5 + +0x11a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11A2, This type = 0x11A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11A2, This type = 0x11A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x11a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11A2, This type = 0x11A3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x11aa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = PizzeriaState, UDT(0x00003dd4) + +0x11ab : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11AA + +0x11ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11AA, This type = 0x11AB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11ad : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11AA + +0x11ae : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11AD + +0x11af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11AA, This type = 0x11AE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11AA, This type = 0x11AE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x11b1 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = PizzaMissionStateEntry, UDT(0x000032cc) + +0x11b2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11B1 + +0x11b3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10CD + +0x11b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11B2, Class type = 0x10CD, This type = 0x11B3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x11b5 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Pizza, UDT(0x000032c8) + +0x11b6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11B5 + +0x11b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11B5, This type = 0x11B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11b8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IsleActor, UDT(0x00001eb6) + +0x11b9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11B8 + +0x11ba : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11B9 + +0x11bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11B8, This type = 0x11BA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11B8, This type = 0x11BA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x11bd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11B5 + +0x11be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11BD + +0x11bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11B5, This type = 0x11BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11B5, This type = 0x11BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x11c1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11B8 + +0x11c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11B8, This type = 0x11C1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11B5, This type = 0x11B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxWavePresenter, UDT(0x0000329e) + +0x11c5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11C4 + +0x11c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x11ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11cb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = T_UINT4(0075) + +0x11cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11cb, This adjust = 0 + +0x11cd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamChunk, UDT(0x000044a2) + +0x11ce : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11CD + +0x11cf : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'wFormatTag' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'nChannels' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'nSamplesPerSec' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'nAvgBytesPerSec' + list[4] = LF_MEMBER, public, type = T_USHORT(0021), offset = 12 + member name = 'nBlockAlign' + list[5] = LF_MEMBER, public, type = T_USHORT(0021), offset = 14 + member name = 'wBitsPerSample' + list[6] = LF_MEMBER, public, type = T_USHORT(0021), offset = 16 + member name = 'cbSize' + +0x11d0 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x11cf, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 18, class name = tWAVEFORMATEX, UDT(0x000011d0) + +0x11d1 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tWAVEFORMATEX, UDT(0x000011d0) + +0x11d2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11D1 + +0x11d3 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwBufferBytes' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwReserved' + list[4] = LF_MEMBER, public, type = 0x11D2, offset = 16 + member name = 'lpwfxFormat' + +0x11d4 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x11d3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _DSBUFFERDESC, UDT(0x000011d4) + +0x11d5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11CE + +0x11d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x11d7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAutoLocker, UDT(0x000011df) + +0x11d8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11D7 + +0x11d9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCriticalSection, UDT(0x00001ca8) + +0x11da : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11D9 + +0x11db : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11DA + +0x11dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11D7, This type = 0x11D8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11db, This adjust = 0 + +0x11dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11D7, This type = 0x11D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11de : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x11DC, name = 'MxAutoLocker' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11DD, name = '~MxAutoLocker' + list[2] = LF_MEMBER, private, type = 0x11DA, offset = 0 + member name = 'm_criticalSection' + +0x11df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x11de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = MxAutoLocker, UDT(0x000011df) + +0x11e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11C4, This type = 0x11C5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x11e1 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 512 + Name = + +0x11e2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x11e3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11E2 + +0x11e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x11e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11e6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectDrawSurface, UDT(0x00001d96) + +0x11e7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11E6 + +0x11e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11E7, Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11eb : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVideoPresenter::AlphaMask, UDT(0x00001fd1) + +0x11ec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11EB + +0x11ed : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxBitmap, UDT(0x00003f56) + +0x11ee : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11ED + +0x11ef : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11EE + +0x11f0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11EF + +0x11f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11EB, This type = 0x11EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11f0, This adjust = 0 + +0x11f2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11EB + +0x11f3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11F2 + +0x11f4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11F3 + +0x11f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11EB, This type = 0x11EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11f4, This adjust = 0 + +0x11f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11EB, This type = 0x11EC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x11f7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + +0x11f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11EB, This type = 0x11EC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x11f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x11fa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRect32, UDT(0x00003f36) + +0x11fb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11FA + +0x11fc : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11FA + +0x11fd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11FC + +0x11fe : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11FD + list[1] = 0x11FD + +0x11ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11fe, This adjust = 0 + +0x1200 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPoint32, UDT(0x00003f38) + +0x1201 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1200 + +0x1202 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1201 + +0x1203 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSize32, UDT(0x00003f3a) + +0x1204 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1203 + +0x1205 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1204 + +0x1206 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1202 + list[1] = 0x1205 + +0x1207 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1206, This adjust = 0 + +0x1208 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + +0x1209 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1208, This adjust = 0 + +0x120a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x120b : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x11FF, + list[1] = public, VANILLA, 0x1207, + list[2] = public, VANILLA, 0x1209, + list[3] = public, VANILLA, 0x120A, + +0x120c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1202 + +0x120d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x120c, This adjust = 0 + +0x120e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1205 + +0x120f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x120e, This adjust = 0 + +0x1210 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1211 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11FD + +0x1212 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1211, This adjust = 0 + +0x1213 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1211, This adjust = 0 + +0x1214 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1215 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1200, Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1216 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1203, Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1217 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1218 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11FA, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1219 : Length = 442, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[18] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[19] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[20] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x121a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x1219, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x121b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x121c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x121d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x121e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x121D + +0x121f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x121D, This type = 0x121E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1220 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVideoParam, UDT(0x000043a4) + +0x1221 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1220 + +0x1222 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1223 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11FA + +0x1224 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPalette, UDT(0x00003f54) + +0x1225 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1224 + +0x1226 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x121D + +0x1227 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1223 + list[1] = 0x1225 + list[2] = T_ULONG(0022) + list[3] = 0x1226 + +0x1228 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1227, This adjust = 0 + +0x1229 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1220 + +0x122a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1229 + +0x122b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x122a, This adjust = 0 + +0x122c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x122d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1220 + +0x122e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x122D + +0x122f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x122E + +0x1230 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1229, Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x122f, This adjust = 0 + +0x1231 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVideoManager, UDT(0x00004d0e) + +0x1232 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1231 + +0x1233 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1234 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + +0x1235 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1234, This adjust = 0 + +0x1236 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1237 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1238 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x0000270c) + +0x1239 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChildChild, UDT(0x00002709) + +0x123a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1239 + +0x123b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003709) + +0x123c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x123B + +0x123d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x123C + +0x123e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1239, This type = 0x123A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x123d, This adjust = 0 + +0x123f : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1238, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x123E, name = 'MxListCursorChildChild' + +0x1240 : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 5 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR + +0x1241 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x123f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x00002709) + +0x1242 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPresenter, UDT(0x00003cfc) + +0x1243 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1242 + +0x1244 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectDraw, UDT(0x00001e35) + +0x1245 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1244 + +0x1246 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectDrawClipper, UDT(0x00001e0a) + +0x1247 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1246 + +0x1248 : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1229 + list[1] = 0x1245 + list[2] = 0x11E7 + list[3] = 0x11E7 + list[4] = 0x11E7 + list[5] = 0x1247 + list[6] = T_UINT4(0075) + list[7] = T_UCHAR(0020) + +0x1249 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x1248, This adjust = 0 + +0x124a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1229 + list[1] = T_UINT4(0075) + list[2] = T_UCHAR(0020) + +0x124b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x124a, This adjust = 0 + +0x124c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1223 + +0x124d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x124e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1225 + +0x124f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124e, This adjust = 0 + +0x1250 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagPALETTEENTRY, UDT(0x00001850) + +0x1251 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1250 + Index type = T_SHORT(0011) + length = 1024 + Name = + +0x1252 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVariableTable, UDT(0x00001b58) + +0x1253 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1252 + +0x1254 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxVariable, UDT(0x00001e5b) + +0x1255 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1254 + +0x1256 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1255 + list[1] = 0x1255 + +0x1257 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1256, This adjust = 0 + +0x1258 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1255 + +0x1259 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x125a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_32PRCHAR(0470) + +0x125b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x125a, This adjust = 0 + +0x125c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxHashTableCursor, UDT(0x0000126a) + +0x125d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x125C + +0x125e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxHashTable, UDT(0x00003338) + +0x125f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x125E + +0x1260 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x125F + +0x1261 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x125C, This type = 0x125D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1260, This adjust = 0 + +0x1262 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x125C, This type = 0x125D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x1263 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1255 + +0x1264 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1263 + +0x1265 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x125C, This type = 0x125D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1264, This adjust = 0 + +0x1266 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x125C, This type = 0x125D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1267 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxHashTableNode, UDT(0x0000205d) + +0x1268 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1267 + +0x1269 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1261, name = 'MxHashTableCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1262, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1265, name = 'Current' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1266, name = 'DeleteMatch' + list[5] = LF_MEMBER, private, type = 0x125F, offset = 8 + member name = 'm_table' + list[6] = LF_MEMBER, private, type = 0x1268, offset = 12 + member name = 'm_match' + +0x126a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1269, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxHashTableCursor, UDT(0x0000126a) + +0x126b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x126c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x126d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x125E + +0x126e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x125E, This type = 0x126D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x126f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1268 + +0x1270 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1268 + +0x1271 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x125E, This type = 0x126D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1270, This adjust = 0 + +0x1272 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxString, UDT(0x00004427) + +0x1273 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1272 + +0x1274 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1254 + +0x1275 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1273, Class type = 0x1254, This type = 0x1274, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1276 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1254, This type = 0x1274, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1277 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1254, This type = 0x1274, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1278 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_LONG(0012), offset = 0 + member name = 'left' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'top' + list[2] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'right' + list[3] = LF_MEMBER, public, type = T_LONG(0012), offset = 12 + member name = 'bottom' + +0x1279 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x1278, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = tagRECT, UDT(0x00001279) + +0x127a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxTransitionManager, UDT(0x00004e4a) + +0x127b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x127A + +0x127c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x127d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x127A + +0x127e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x127D + +0x127f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x127A, This type = 0x127E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1280 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x127A, This type = 0x127E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1281 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1282 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'NOT_TRANSITIONING' + list[1] = LF_ENUMERATE, public, value = 1, name = 'NO_ANIMATION' + list[2] = LF_ENUMERATE, public, value = 2, name = 'DISSOLVE' + list[3] = LF_ENUMERATE, public, value = 3, name = 'PIXELATION' + list[4] = LF_ENUMERATE, public, value = 4, name = 'SCREEN_WIPE' + list[5] = LF_ENUMERATE, public, value = 5, name = 'WINDOWS' + list[6] = LF_ENUMERATE, public, value = 6, name = 'BROKEN' + +0x1283 : Length = 50, Leaf = 0x1507 LF_ENUM + # members = 7, type = T_INT4(0074) field list type 0x1282 +NESTED, enum name = MxTransitionManager::TransitionType, UDT(0x00001283) + +0x1284 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1283 + list[1] = T_INT4(0074) + list[2] = T_UCHAR(0020) + list[3] = T_UCHAR(0020) + +0x1285 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1284, This adjust = 0 + +0x1286 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxTickleManager, UDT(0x0000374f) + +0x1287 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1286 + +0x1288 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1289 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoWorld, UDT(0x00003f05) + +0x128a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1289 + +0x128b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11E2 + +0x128c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x128B + +0x128d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x128c, This adjust = 0 + +0x128e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoVideoManager, UDT(0x00004e93) + +0x128f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x128E + +0x1290 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDSURFACEDESC, UDT(0x000010d3) + +0x1291 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1290 + +0x1292 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1291 + +0x1293 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1292, This adjust = 0 + +0x1294 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDisplaySurface, UDT(0x00004e57) + +0x1295 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1294 + +0x1296 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxTimer, UDT(0x00003350) + +0x1297 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1296 + +0x1298 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1296, This type = 0x1297, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1299 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1296, This type = 0x1297, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x129a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxTickleClient, UDT(0x00003c40) + +0x129b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x129A + +0x129c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10AE + list[1] = T_INT4(0074) + +0x129d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x129A, This type = 0x129B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x129c, This adjust = 0 + +0x129e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1286 + +0x129f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1286, This type = 0x129E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12a0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x129A + +0x12a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1286, This type = 0x129E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12a2 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00001f03) + +0x12a3 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x000012b8) + +0x12a4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12A3 + +0x12a5 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00001f00) + +0x12a6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12A5 + +0x12a7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12A6 + +0x12a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12A3, This type = 0x12A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12a7, This adjust = 0 + +0x12a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12A3, This type = 0x12A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12aa : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12A8, + list[1] = public, VANILLA, 0x12A9, + +0x12ab : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12A0 + +0x12ac : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x12A3 + +0x12ad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12AC + +0x12ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x12A3, This type = 0x12AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x12A3, This type = 0x12A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x12b0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12A3 + +0x12b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12B0, Class type = 0x12A3, This type = 0x12A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12b2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12AF, + list[1] = public, VANILLA, 0x12B1, + +0x12b3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12AC + +0x12b4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12B3 + +0x12b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x12A3, This type = 0x12AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12b4, This adjust = 0 + +0x12b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A6, Class type = 0x12A3, This type = 0x12AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12b7 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12A2, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x12AA, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x12AE, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x12B2, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x12B2, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x12B5, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x12B6, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x12A6, offset = 0 + member name = '_Ptr' + +0x12b8 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x12b7, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x000012b8) + +0x12b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1286, This type = 0x129E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x129c, This adjust = 0 + +0x12ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1286, This type = 0x129E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x12bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1286, This type = 0x129E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x12bc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxTickleThread, UDT(0x0000200f) + +0x12bd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12BC + +0x12be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12BC, This type = 0x12BD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x129c, This adjust = 0 + +0x12bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12BC, This type = 0x12BD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12c0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1296 + +0x12c1 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxThread, UDT(0x00003c79) + +0x12c2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12C1 + +0x12c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12C1, This type = 0x12C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12C1, This type = 0x12C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x12c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12C1, This type = 0x12C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x12c6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PVOID(0403) + +0x12c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x12C1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x12c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12C1, This type = 0x12C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12c9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1272 + +0x12ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12cb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1272 + +0x12cc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12CB + +0x12cd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12CC + +0x12ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12cd, This adjust = 0 + +0x12cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x12d0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1272 + +0x12d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12D0, Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12cd, This adjust = 0 + +0x12d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12CC, Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x12d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1272, Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x12d4 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12CF, + list[1] = public, VANILLA, 0x12CA, + list[2] = public, VANILLA, 0x12CE, + +0x12d5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12D1, + list[1] = public, VANILLA, 0x12D2, + +0x12d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12D0, Class type = 0x1272, This type = 0x12C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x12d7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12CB + +0x12d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1272, This type = 0x12D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12cd, This adjust = 0 + +0x12d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1272, This type = 0x12D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12da : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x12D4, name = 'MxString' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x12CA, name = '~MxString' + list[3] = LF_METHOD, count = 2, list = 0x12D5, name = 'operator=' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x12CA, name = 'ToUpperCase' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x12CA, name = 'ToLowerCase' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x12D3, name = 'operator+' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x12D6, name = 'operator+=' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x12D8, name = 'Compare' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x12D9, name = 'GetData' + list[10] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_data' + list[11] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_length' + +0x12db : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x12da, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxString, UDT(0x00004427) + +0x12dc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamProvider, UDT(0x00003738) + +0x12dd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12DC + +0x12de : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamController, UDT(0x00003cb8) + +0x12df : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12DE + +0x12e0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12DF + +0x12e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12e0, This adjust = 0 + +0x12e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x12e3 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x12e4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12E3 + +0x12e5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x109C + list[1] = T_UCHAR(0020) + +0x12e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x12e5, This adjust = 0 + +0x12e7 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x0000232e) + +0x12e8 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x000012fd) + +0x12e9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12E8 + +0x12ea : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000232b) + +0x12eb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12EA + +0x12ec : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12EB + +0x12ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12E8, This type = 0x12E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12ec, This adjust = 0 + +0x12ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12E8, This type = 0x12E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12ef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12ED, + list[1] = public, VANILLA, 0x12EE, + +0x12f0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x109C + +0x12f1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x12E8 + +0x12f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12F1 + +0x12f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12F0, Class type = 0x12E8, This type = 0x12F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x12E8, This type = 0x12E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x12f5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12E8 + +0x12f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12F5, Class type = 0x12E8, This type = 0x12E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12f7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x12F4, + list[1] = public, VANILLA, 0x12F6, + +0x12f8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12F1 + +0x12f9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12F8 + +0x12fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x12E8, This type = 0x12F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12f9, This adjust = 0 + +0x12fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12EB, Class type = 0x12E8, This type = 0x12F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x12fc : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12E7, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x12EF, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x12F3, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x12F7, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x12F7, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x12FA, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x12FB, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x12EB, offset = 0 + member name = '_Ptr' + +0x12fd : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x12fc, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x000012fd) + +0x12fe : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxNextActionDataStart, UDT(0x00003c81) + +0x12ff : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12FE + +0x1300 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x1301 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1300 + +0x1302 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_SHORT(0011) + +0x1303 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12FF, Class type = 0x1300, This type = 0x1301, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1302, This adjust = 0 + +0x1304 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x000023d0) + +0x1305 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000131a) + +0x1306 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1305 + +0x1307 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x000023cd) + +0x1308 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1307 + +0x1309 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1308 + +0x130a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1305, This type = 0x1306, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1309, This adjust = 0 + +0x130b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1305, This type = 0x1306, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x130c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x130A, + list[1] = public, VANILLA, 0x130B, + +0x130d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12FF + +0x130e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1305 + +0x130f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x130E + +0x1310 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x130D, Class type = 0x1305, This type = 0x130F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1311 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x1305, This type = 0x1306, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1312 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1305 + +0x1313 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1312, Class type = 0x1305, This type = 0x1306, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1314 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1311, + list[1] = public, VANILLA, 0x1313, + +0x1315 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x130E + +0x1316 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1315 + +0x1317 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1305, This type = 0x130F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1316, This adjust = 0 + +0x1318 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1308, Class type = 0x1305, This type = 0x130F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1319 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1304, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x130C, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1310, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x1314, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x1314, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1317, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1318, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x1308, offset = 0 + member name = '_Ptr' + +0x131a : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1319, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000131a) + +0x131b : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'MxDSBufferType_Chunk' + list[1] = LF_ENUMERATE, public, value = 1, name = 'MxDSBufferType_Allocate' + list[2] = LF_ENUMERATE, public, value = 2, name = 'MxDSBufferType_Preallocated' + list[3] = LF_ENUMERATE, public, value = 3, name = 'MxDSBufferType_Unknown' + +0x131c : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x131b + enum name = MxDSBufferType, UDT(0x0000131c) + +0x131d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamer, UDT(0x00003727) + +0x131e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x131D + +0x131f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1320 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x1321 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1320 + +0x1322 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1320, This type = 0x1321, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1323 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x131D + +0x1324 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1323 + +0x1325 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x131D, This type = 0x1324, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1326 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x131D, This type = 0x1324, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1327 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000257d) + +0x1328 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1327 + +0x1329 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x132a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000025c4) + +0x132b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x132A + +0x132c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x132A, This type = 0x132B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x132d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamerSubClass2, UDT(0x0000251e) + +0x132e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x132D + +0x132f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x132D, This type = 0x132E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1330 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamerSubClass3, UDT(0x00002520) + +0x1331 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1330 + +0x1332 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1330, This type = 0x1331, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1333 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1334 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_USHORT(0021) + +0x1335 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12DF, Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1334, This adjust = 0 + +0x1336 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRAMStreamController, UDT(0x000033ec) + +0x1337 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1336 + +0x1338 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1337 + +0x1339 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1336, This type = 0x1338, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x133a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1336, This type = 0x1338, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x133b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1336 + +0x133c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x133d : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002525) + +0x133e : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00001353) + +0x133f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x133E + +0x1340 : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00002522) + +0x1341 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1340 + +0x1342 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1341 + +0x1343 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x133E, This type = 0x133F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1342, This adjust = 0 + +0x1344 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x133E, This type = 0x133F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1345 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1343, + list[1] = public, VANILLA, 0x1344, + +0x1346 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12DF + +0x1347 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x133E + +0x1348 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1347 + +0x1349 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1346, Class type = 0x133E, This type = 0x1348, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x134a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x133E, This type = 0x133F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x134b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x133E + +0x134c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x134B, Class type = 0x133E, This type = 0x133F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x134d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x134A, + list[1] = public, VANILLA, 0x134C, + +0x134e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1347 + +0x134f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x134E + +0x1350 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x133E, This type = 0x1348, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x134f, This adjust = 0 + +0x1351 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1341, Class type = 0x133E, This type = 0x1348, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1352 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x133D, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1345, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1349, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x134D, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x134D, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1350, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1351, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x1341, offset = 0 + member name = '_Ptr' + +0x1353 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1352, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00001353) + +0x1354 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxNotificationParam, UDT(0x00001cd6) + +0x1355 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamerNotification, UDT(0x0000135f) + +0x1356 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1355 + +0x1357 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1059 + list[1] = 0x10AE + list[2] = 0x12DF + +0x1358 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1355, This type = 0x1356, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1357, This adjust = 0 + +0x1359 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1355, This type = 0x1356, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x135a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1354 + +0x135b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x1355, This type = 0x1356, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x135c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12DF, Class type = 0x1355, This type = 0x1356, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x135d : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1358, name = 'MxStreamerNotification' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1359, name = '~MxStreamerNotification' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x135B, name = 'Clone' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x135C, name = 'GetController' + list[5] = LF_MEMBER, private, type = 0x12DF, offset = 12 + member name = 'm_controller' + +0x135e : Length = 6, Leaf = 0x000a LF_VTSHAPE + Number of entries : 2 + [0]: NEAR32 + [1]: NEAR32 + +0x135f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x135d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 16, class name = MxStreamerNotification, UDT(0x0000135f) + +0x1360 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12DF, Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1361 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1064 + +0x1362 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12e0, This adjust = 0 + +0x1363 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x109C + +0x1364 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x1365 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1366 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1367 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12DE + +0x1368 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x1369 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x136a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x136b : Length = 86, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00002426) + +0x136c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x136B + +0x136d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x136e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1308 + list[1] = 0x1308 + +0x136f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1308, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x136e, This adjust = 0 + +0x1370 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x000024c8) + +0x1371 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1370 + +0x1372 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1373 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000246f) + +0x1374 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1373 + +0x1375 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1374 + list[1] = 0x1374 + +0x1376 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1374, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1375, This adjust = 0 + +0x1377 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x12DE + +0x1378 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1377 + +0x1379 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x12DE, This type = 0x1378, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x137a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12DE, This type = 0x1378, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x137b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x137c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x137B + +0x137d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x137e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1300, This type = 0x1301, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x137f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamList, UDT(0x00003767) + +0x1380 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x137F + +0x1381 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x137F, This type = 0x1380, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1382 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamList, UDT(0x0000376c) + +0x1383 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1382 + +0x1384 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1382, This type = 0x1383, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1385 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00002510) + +0x1386 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1385 + +0x1387 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1385, This type = 0x1386, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1388 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x0000246d) + +0x1389 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1388 + +0x138a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1388, This type = 0x1389, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x138b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x138c : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 256 + Name = + +0x138d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x138e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12DC + +0x138f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1390 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x109C + list[1] = T_UINT4(0075) + +0x1391 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1390, This adjust = 0 + +0x1392 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x12FE + +0x1393 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1392 + +0x1394 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x12FE, This type = 0x1393, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1395 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12FE, This type = 0x1393, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1396 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x12FE + +0x1397 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1398 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamChunkList, UDT(0x00001ed8) + +0x1399 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1398 + +0x139a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11CE + list[1] = 0x11CE + +0x139b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1398, This type = 0x1399, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x139a, This adjust = 0 + +0x139c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1398, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x139d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStillPresenter, UDT(0x00002d9f) + +0x139e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x139D + +0x139f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x13a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x13a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x13a3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x139D + +0x13a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13A3, Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13a5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSoundPresenter, UDT(0x00002139) + +0x13a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13A5 + +0x13a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13A5, This type = 0x13A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13A5, This type = 0x13A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x13a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x13A5, This type = 0x13A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13aa : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 404 + Name = + +0x13ab : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSoundManager, UDT(0x00003264) + +0x13ac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13AB + +0x13ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x13af : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_UCHAR(0020) + +0x13b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x13b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x13b2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1064 + +0x13b3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x13B2 + +0x13b4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13B3 + list[1] = T_UINT4(0075) + +0x13b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1243, Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13b4, This adjust = 0 + +0x13b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x13b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSmkPresenter, UDT(0x000036ce) + +0x13b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13B7 + +0x13b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13ba : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x13B7 + +0x13bb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13BA + +0x13bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x13B7, This type = 0x13BB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x13be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x13bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13c0 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x13c1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13C0 + +0x13c2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x13C1 + +0x13c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13c2, This adjust = 0 + +0x13c4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSemaphore, UDT(0x00002008) + +0x13c5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13C4 + +0x13c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13C4, This type = 0x13C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x13C4, This type = 0x13C5, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x13c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13C4, This type = 0x13C5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x13c9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxScheduler, UDT(0x00002741) + +0x13ca : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13C9 + +0x13cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13CA, Class type = 0x13C9, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13cc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13C9 + +0x13cd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_ULONG(0022) + +0x13ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13C9, This type = 0x13CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x13cf : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionList, UDT(0x000035ff) + +0x13d0 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionTopBottom, UDT(0x00003eb9) + +0x13d1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13D0 + +0x13d2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x13D1 + +0x13d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13CF, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x13d4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionLeftRightList, UDT(0x0000360c) + +0x13d5 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionLeftRight, UDT(0x00003ebc) + +0x13d6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13D5 + +0x13d7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x13D6 + +0x13d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D4, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x13d9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegion, UDT(0x00003e7c) + +0x13da : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13D9 + +0x13db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D9, This type = 0x13DA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13dc : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x00003602) + +0x13dd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13DC + +0x13de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13DC, This type = 0x13DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13DC, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x13e0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13D1 + list[1] = 0x13D1 + +0x13e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x13DC, This type = 0x13DD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13e0, This adjust = 0 + +0x13e2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13CF + +0x13e3 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x0000360a) + +0x13e4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13E3 + +0x13e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E3, This type = 0x13E4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13e6 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x0000370f) + +0x13e7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13E6 + +0x13e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13D9, This type = 0x13DA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D9, This type = 0x13DA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x13ea : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x00002726) + +0x13eb : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChildChild, UDT(0x000013f1) + +0x13ec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13EB + +0x13ed : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13E6 + +0x13ee : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x13ED + +0x13ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13EB, This type = 0x13EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x13f0 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13EA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13EF, name = 'MxListCursorChildChild' + +0x13f1 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x13f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x000013f1) + +0x13f2 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e89) + +0x13f3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13F2 + +0x13f4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13EA + +0x13f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13EA, This type = 0x13F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13D9, This type = 0x13DA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x13f8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13D0 + +0x13f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x13fa : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000360f) + +0x13fb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13FA + +0x13fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13FA, This type = 0x13FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x13fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13FA, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x13fe : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13D6 + list[1] = 0x13D6 + +0x13ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x13FA, This type = 0x13FB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13fe, This adjust = 0 + +0x1400 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13D4 + +0x1401 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x00003614) + +0x1402 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1401 + +0x1403 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1401, This type = 0x1402, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1404 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003711) + +0x1405 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1404 + +0x1406 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x1407 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x00002737) + +0x1408 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChildChild, UDT(0x0000140e) + +0x1409 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1408 + +0x140a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1404 + +0x140b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x140A + +0x140c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1408, This type = 0x1409, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x140b, This adjust = 0 + +0x140d : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1407, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x140C, name = 'MxListCursorChildChild' + +0x140e : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x140d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x0000140e) + +0x140f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e8c) + +0x1410 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x140F + +0x1411 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x140b, This adjust = 0 + +0x1412 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1407 + +0x1413 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1414 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1407, This type = 0x1412, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1415 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x140F + +0x1416 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x140F + +0x1417 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1416 + +0x1418 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1417 + +0x1419 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1415, Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1418, This adjust = 0 + +0x141a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13D1, Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x141b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x141c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x141d : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x0000204c) + +0x141e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x141D + +0x141f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x13D1 + list[1] = 0x141E + list[2] = 0x141E + +0x1420 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x141E, Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x141f, This adjust = 0 + +0x1421 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1422 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00002058) + +0x1423 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1422 + +0x1424 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x13D6 + list[1] = 0x1423 + list[2] = 0x1423 + +0x1425 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1423, Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1424, This adjust = 0 + +0x1426 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x141D + +0x1427 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x141f, This adjust = 0 + +0x1428 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1423 + +0x1429 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1428, This adjust = 0 + +0x142a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRAMStreamProvider, UDT(0x000036ed) + +0x142b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x142A + +0x142c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x142A, This type = 0x142B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x142d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x142A + +0x142e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x142D + +0x142f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x142A, This type = 0x142E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1430 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x142A, This type = 0x142E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1431 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x142A, This type = 0x142B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1432 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x142A, This type = 0x142B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1433 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x142A, This type = 0x142B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12e0, This adjust = 0 + +0x1434 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1336, This type = 0x133B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1435 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1336, This type = 0x133B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x1436 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1336, This type = 0x133B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1437 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUINT4(0475) + list[1] = T_UINT4(0075) + +0x1438 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_32PUCHAR(0420), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1437 + +0x1439 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPresenterList, UDT(0x000035f4) + +0x143a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1439 + +0x143b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1243 + list[1] = 0x1243 + +0x143c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1439, This type = 0x143A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x143b, This adjust = 0 + +0x143d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1242 + +0x143e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x143f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1440 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'TickleState_Idle' + list[1] = LF_ENUMERATE, public, value = 1, name = 'TickleState_Ready' + list[2] = LF_ENUMERATE, public, value = 2, name = 'TickleState_Starting' + list[3] = LF_ENUMERATE, public, value = 3, name = 'TickleState_Streaming' + list[4] = LF_ENUMERATE, public, value = 4, name = 'TickleState_Repeating' + list[5] = LF_ENUMERATE, public, value = 5, name = 'TickleState_unk5' + list[6] = LF_ENUMERATE, public, value = 6, name = 'TickleState_Done' + +0x1441 : Length = 42, Leaf = 0x1507 LF_ENUM + # members = 7, type = T_INT4(0074) field list type 0x1440 +NESTED, enum name = MxPresenter::TickleState, UDT(0x00001441) + +0x1442 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1441 + +0x1443 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1442, This adjust = 0 + +0x1444 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1442, This adjust = 0 + +0x1445 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1446 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12DF + list[1] = 0x109C + +0x1447 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x1448 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxOmni, UDT(0x000034bd) + +0x1449 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1448 + +0x144a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1449 + +0x144b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x144a, This adjust = 0 + +0x144c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x144d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1092 + +0x144e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x144D + +0x144f : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_32PRCHAR(0470), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x144e + +0x1450 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1451 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1224 + +0x1452 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1453 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagRGBQUAD, UDT(0x00001fd3) + +0x1454 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1453 + +0x1455 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1454 + +0x1456 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1455 + +0x1457 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1456, This adjust = 0 + +0x1458 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectDrawPalette, UDT(0x00001da1) + +0x1459 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1458 + +0x145a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1459, Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x145b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1225, Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x145c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1250 + +0x145d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x145C + +0x145e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x145d, This adjust = 0 + +0x145f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1224 + +0x1460 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x145F + +0x1461 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1460, This adjust = 0 + +0x1462 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x145d, This adjust = 0 + +0x1463 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1464 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxOmniCreateParam, UDT(0x00001cc8) + +0x1465 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1464 + +0x1466 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HWND__ + +0x1467 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1466 + +0x1468 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxOmniCreateFlags, UDT(0x00001478) + +0x1469 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PRCHAR(0470) + list[1] = 0x1467 + list[2] = 0x1229 + list[3] = 0x1468 + +0x146a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1464, This type = 0x1465, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1469, This adjust = 0 + +0x146b : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_CreateObjectFactory' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_CreateVariableTable' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_CreateTickleManager' + list[3] = LF_ENUMERATE, public, value = 8, name = 'Flag_CreateNotificationManager' + list[4] = LF_ENUMERATE, public, value = 16, name = 'Flag_CreateVideoManager' + list[5] = LF_ENUMERATE, public, value = 32, name = 'Flag_CreateSoundManager' + list[6] = LF_ENUMERATE, public, value = 64, name = 'Flag_CreateMusicManager' + list[7] = LF_ENUMERATE, public, value = 128, name = 'Flag_CreateEventManager' + +0x146c : Length = 42, Leaf = 0x1507 LF_ENUM + # members = 8, type = T_INT4(0074) field list type 0x146b +NESTED, enum name = MxOmniCreateFlags::LowFlags, UDT(0x0000146c) + +0x146d : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 2, name = 'Flag_CreateTimer' + list[1] = LF_ENUMERATE, public, value = 4, name = 'Flag_CreateStreamer' + +0x146e : Length = 46, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x146d +NESTED, enum name = MxOmniCreateFlags::HighFlags, UDT(0x0000146e) + +0x146f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1468 + +0x1470 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1468, This type = 0x146F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1471 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1468, This type = 0x146F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1472 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_UCHAR(0020) + +0x1473 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1468 + +0x1474 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1473 + +0x1475 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1472, Class type = 0x1468, This type = 0x1474, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1476 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1471, + list[1] = public, VANILLA, 0x1475, + +0x1477 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x146C, LowFlags + list[1] = LF_NESTTYPE, type = 0x146E, HighFlags + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1470, name = 'MxOmniCreateFlags' + list[3] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateObjectFactory' + list[4] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateVariableTable' + list[5] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateTickleManager' + list[6] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateNotificationManager' + list[7] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateVideoManager' + list[8] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateSoundManager' + list[9] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateMusicManager' + list[10] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateEventManager' + list[11] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateTimer' + list[12] = LF_METHOD, count = 2, list = 0x1476, name = 'CreateStreamer' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 0 + member name = 'm_flags1' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1 + member name = 'm_flags2' + +0x1478 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x1477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxOmniCreateFlags, UDT(0x00001478) + +0x1479 : Length = 206, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Node, UDT(0x00001b63) + +0x147a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1479 + +0x147b : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 1024 + Name = + +0x147c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1065 + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + +0x147d : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x147c + +0x147e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1448 + +0x147f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1480 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxObjectFactory, UDT(0x00001cd8) + +0x1481 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1480 + +0x1482 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1481, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1483 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxNotificationManager, UDT(0x0000374c) + +0x1484 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1483 + +0x1485 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1484, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1486 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1287, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1487 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x12C0, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1488 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAtomIdCounterSet, UDT(0x00003752) + +0x1489 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1488 + +0x148a : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1489, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x148b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x131D + +0x148c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x148B, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x148d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13AB + +0x148e : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x148D, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x148f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1231 + +0x1490 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x148F, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1491 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1252 + +0x1492 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1491, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1493 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxMusicManager, UDT(0x0000334c) + +0x1494 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1493 + +0x1495 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1494, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1496 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxEventManager, UDT(0x00001d06) + +0x1497 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1496 + +0x1498 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1497, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1499 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x108f + +0x149a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x149b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxEntity, UDT(0x00001bf5) + +0x149c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x149B + +0x149d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_INT4(0074) + list[2] = 0x1243 + +0x149e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x149C, Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x149d, This adjust = 0 + +0x149f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x135A + +0x14a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x149f, This adjust = 0 + +0x14a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x144a, This adjust = 0 + +0x14a2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1464 + +0x14a3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14A2 + +0x14a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14a3, This adjust = 0 + +0x14a5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Lockit, UDT(0x00001b38) + +0x14a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14A5 + +0x14a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A5, This type = 0x14A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14a8 : Length = 198, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >, UDT(0x00001baa) + +0x14a9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14A8 + +0x14aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ab : Length = 210, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator, UDT(0x000014c3) + +0x14ac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14AB + +0x14ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14AB, This type = 0x14AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ae : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14AB + +0x14af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14ae, This adjust = 0 + +0x14b0 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00001b66) + +0x14b1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x147A + +0x14b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14AB, This type = 0x14AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x14b3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x14B2, + list[1] = public, VANILLA, 0x14AD, + +0x14b4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAtomIdCounter, UDT(0x00001b5d) + +0x14b5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x14B4 + +0x14b6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14B5 + +0x14b7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x14AB + +0x14b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14B7 + +0x14b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B6, Class type = 0x14AB, This type = 0x14B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14AB, This type = 0x14AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x14bb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14AB + +0x14bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14BB, Class type = 0x14AB, This type = 0x14AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14bd : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x14BA, + list[1] = public, VANILLA, 0x14BC, + +0x14be : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14B7 + +0x14bf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14BE + +0x14c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x14AB, This type = 0x14B8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14bf, This adjust = 0 + +0x14c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x147A, Class type = 0x14AB, This type = 0x14B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14c2 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x14B0, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x14B3, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x14B9, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x14BD, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x14BD, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x14C0, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x14AD, name = '_Dec' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x14AD, name = '_Inc' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x14C1, name = '_Mynode' + list[9] = LF_MEMBER, protected, type = 0x147A, offset = 0 + member name = '_Ptr' + +0x14c3 : Length = 210, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x14c2, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator, UDT(0x000014c3) + +0x14c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x14c5 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = set >, UDT(0x00001bd8) + +0x14c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14C5 + +0x14c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1252, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x14c9 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x000035fd) + +0x14ca : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14C9 + +0x14cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C9, This type = 0x14CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C9, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x14cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x14C9, This type = 0x14CA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1256, This adjust = 0 + +0x14ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x125E, This type = 0x126D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x14cf : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Set, UDT(0x00001bdf) + +0x14d0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14CF + +0x14d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14CF, This type = 0x14D0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14d2 : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator, UDT(0x000014e5) + +0x14d3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14D2 + +0x14d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14D2, This type = 0x14D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14bf, This adjust = 0 + +0x14d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14D2, This type = 0x14D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x14d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14D2, This type = 0x14D3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14d7 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x14D4, + list[1] = public, VANILLA, 0x14D5, + list[2] = public, VANILLA, 0x14D6, + +0x14d8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14B4 + +0x14d9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14D8 + +0x14da : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x14D2 + +0x14db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14DA + +0x14dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x14D2, This type = 0x14DB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14D2, This type = 0x14D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x14de : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14D2 + +0x14df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14DE, Class type = 0x14D2, This type = 0x14D3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14e0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x14DD, + list[1] = public, VANILLA, 0x14DF, + +0x14e1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14DA + +0x14e2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14E1 + +0x14e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x14D2, This type = 0x14DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14e2, This adjust = 0 + +0x14e4 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x14AB, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x14D7, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x14DC, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x14E0, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x14E0, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x14E3, name = 'operator==' + +0x14e5 : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x14e4, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator, UDT(0x000014e5) + +0x14e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x14e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x14e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1449, Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x14eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x14ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x14ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x14f0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxNotificationPtrList, UDT(0x00003758) + +0x14f1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x14F0 + +0x14f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1480 + +0x14f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1480, This type = 0x14F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x1480, This type = 0x14F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x14f5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1064 + +0x14f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1064, This type = 0x14F5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14f7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = 0x104C + +0x14f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1064, This type = 0x14F5, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x14f7, This adjust = 0 + +0x14f9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x14F6, + list[1] = public, VANILLA, 0x14F8, + +0x14fa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x13B3 + +0x14fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1361, Class type = 0x1064, This type = 0x14F5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14fa, This adjust = 0 + +0x14fc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13B2 + +0x14fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1064, This type = 0x14FC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14fa, This adjust = 0 + +0x14fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1064, This type = 0x14FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x14ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B5, Class type = 0x1064, This type = 0x14F5, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x14f7, This adjust = 0 + +0x1500 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x14F9, name = 'MxAtomId' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14FB, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x14F6, name = '~MxAtomId' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x14FD, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x14F6, name = 'Clear' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x14FE, name = 'GetInternal' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x14FF, name = 'GetCounter' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x14F6, name = 'Destroy' + list[8] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_internal' + +0x1501 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1500, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = MxAtomId, UDT(0x00004e96) + +0x1502 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxLoopingMIDIPresenter, UDT(0x000026f6) + +0x1503 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1502 + +0x1504 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1503 + +0x1505 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1502, This type = 0x1504, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1506 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1502, This type = 0x1504, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1507 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x139D + +0x1508 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1507 + +0x1509 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x139D, This type = 0x1508, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x150a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x139D, This type = 0x1508, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x150b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1502 + +0x150c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1480, This type = 0x14F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x150d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1354 + +0x150e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x1354, This type = 0x150D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x150f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxNotification, UDT(0x0000218b) + +0x1510 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x150F + +0x1511 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x10AE + list[1] = 0x135A + +0x1512 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x150F, This type = 0x1510, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1511, This adjust = 0 + +0x1513 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x150F, This type = 0x1510, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1514 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1483 + +0x1515 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1516 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x000021e6) + +0x1517 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1516 + +0x1518 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1519 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxIdList, UDT(0x0000375b) + +0x151a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1519 + +0x151b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1519, This type = 0x151A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x151c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x0000222d) + +0x151d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x151C + +0x151e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151C, This type = 0x151D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x151f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000022c9) + +0x1520 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x151F + +0x1521 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151F, This type = 0x1520, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1522 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00002282) + +0x1523 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1522 + +0x1524 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1525 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x1526 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1511, This adjust = 0 + +0x1527 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002190) + +0x1528 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000153d) + +0x1529 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1528 + +0x152a : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000218d) + +0x152b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x152A + +0x152c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x152B + +0x152d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1528, This type = 0x1529, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x152c, This adjust = 0 + +0x152e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1528, This type = 0x1529, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x152f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x152D, + list[1] = public, VANILLA, 0x152E, + +0x1530 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_UINT4(0075) + +0x1531 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1528 + +0x1532 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1531 + +0x1533 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x1528, This type = 0x1532, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1534 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x1528, This type = 0x1529, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1535 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1528 + +0x1536 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1535, Class type = 0x1528, This type = 0x1529, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1537 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1534, + list[1] = public, VANILLA, 0x1536, + +0x1538 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1531 + +0x1539 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1538 + +0x153a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1528, This type = 0x1532, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1539, This adjust = 0 + +0x153b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x152B, Class type = 0x1528, This type = 0x1532, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x153c : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1527, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x152F, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1533, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x1537, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x1537, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x153A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x153B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x152B, offset = 0 + member name = '_Ptr' + +0x153d : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x153c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000153d) + +0x153e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x153f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x150F + +0x1540 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x1541 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x14F0 + +0x1542 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14F0, This type = 0x1541, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1543 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x151F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1542, name = 'MxNotificationPtrList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1542, name = '~MxNotificationPtrList' + +0x1544 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1543, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxNotificationPtrList, UDT(0x00003758) + +0x1545 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002232) + +0x1546 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000155b) + +0x1547 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1546 + +0x1548 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000222f) + +0x1549 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1548 + +0x154a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1549 + +0x154b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1546, This type = 0x1547, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x154a, This adjust = 0 + +0x154c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1546, This type = 0x1547, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x154d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x154B, + list[1] = public, VANILLA, 0x154C, + +0x154e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x153F + +0x154f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1546 + +0x1550 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x154F + +0x1551 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x1546, This type = 0x1550, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1552 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x1546, This type = 0x1547, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1553 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1546 + +0x1554 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1553, Class type = 0x1546, This type = 0x1547, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1555 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1552, + list[1] = public, VANILLA, 0x1554, + +0x1556 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x154F + +0x1557 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1556 + +0x1558 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1546, This type = 0x1550, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1557, This adjust = 0 + +0x1559 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1549, Class type = 0x1546, This type = 0x1550, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x155a : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1545, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x154D, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1551, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x1555, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x1555, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1558, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1559, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x1549, offset = 0 + member name = '_Ptr' + +0x155b : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x155a, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000155b) + +0x155c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x155d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1510 + +0x155e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1546 + list[1] = 0x155D + +0x155f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x155e, This adjust = 0 + +0x1560 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1546 + +0x1561 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1560, This adjust = 0 + +0x1562 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1549 + list[1] = 0x1549 + +0x1563 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1549, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1562, This adjust = 0 + +0x1564 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxMusicPresenter, UDT(0x000026f1) + +0x1565 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1564 + +0x1566 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1564, This type = 0x1565, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1567 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1564 + +0x1568 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1567 + +0x1569 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1564, This type = 0x1568, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x156a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1564, This type = 0x1568, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x156b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1564, This type = 0x1565, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x156c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1564, This type = 0x1565, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x156d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1493 + +0x156e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x156f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1570 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x1571 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1572 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1573 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUCHAR(0420) + list[1] = T_INT4(0074) + +0x1574 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1573, This adjust = 0 + +0x1575 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxMIDIPresenter, UDT(0x000026f4) + +0x1576 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1575 + +0x1577 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1575, This type = 0x1576, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1578 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1575 + +0x1579 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1578 + +0x157a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1575, This type = 0x1579, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x157b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1575, This type = 0x1579, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x157c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1575, This type = 0x1576, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x157d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1575, This type = 0x1576, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x157e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1575, This type = 0x1576, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x157f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxMediaPresenter, UDT(0x00003372) + +0x1580 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x157F + +0x1581 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1582 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1583 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e86) + +0x1584 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x00001fb3) + +0x1585 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1584 + +0x1586 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x0000370d) + +0x1587 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1586 + +0x1588 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1587 + +0x1589 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1584, This type = 0x1585, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1588, This adjust = 0 + +0x158a : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1583, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1589, name = 'MxListCursorChild' + +0x158b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x158a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00001fb3) + +0x158c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1583 + +0x158d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x158e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11CE, Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x158f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x1590 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x000035f7) + +0x1591 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1590 + +0x1592 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1590, This type = 0x1591, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1593 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1590, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x1594 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1590, This type = 0x1591, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x139a, This adjust = 0 + +0x1595 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1586 + +0x1596 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10BA + +0x1597 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10BA, This type = 0x1596, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1598 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1599 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x157F, This type = 0x1580, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x159a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11CD + +0x159b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x159A + +0x159c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11CD, This type = 0x159B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x159d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11CD, This type = 0x159B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x159e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11CD + +0x159f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15a0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxMediaManager, UDT(0x00002076) + +0x15a1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15A0 + +0x15a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15A0, This type = 0x15A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15A0, This type = 0x15A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15a4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e83) + +0x15a5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15A4 + +0x15a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1238 + +0x15a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1238, This type = 0x15A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15a9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1242 + +0x15aa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x15A9 + +0x15ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15A0, This type = 0x15A1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x15aa, This adjust = 0 + +0x15ac : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +0x15ad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15AC + +0x15ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15AC, This type = 0x15AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13B7, This type = 0x13BB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x15b0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15AC + +0x15b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15B0 + +0x15b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x15AC, This type = 0x15B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15AC, This type = 0x15AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x15b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1502, This type = 0x150B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1502, This type = 0x150B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15b6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxLoopingFlcPresenter, UDT(0x000032c2) + +0x15b7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15B6 + +0x15b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15B6, This type = 0x15B7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15b9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15B6 + +0x15ba : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15B9 + +0x15bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x15B6, This type = 0x15BA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15B6, This type = 0x15B7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x15bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MXIOINFO, UDT(0x000022e2) + +0x15be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15BD + +0x15bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15c0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_ULONG(0022) + +0x15c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15c0, This adjust = 0 + +0x15c2 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 128 + Name = + +0x15c3 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'cBytes' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'fFixedDisk' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'nErrCode' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'Reserved1' + list[4] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'Reserved2' + list[5] = LF_MEMBER, public, type = 0x15C2, offset = 8 + member name = 'szPathName' + +0x15c4 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x15c3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 136, class name = _OFSTRUCT, UDT(0x000015c4) + +0x15c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x15c6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = T_LONG(0012) + +0x15c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15c6, This adjust = 0 + +0x15c8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = T_LONG(0012) + +0x15c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15c8, This adjust = 0 + +0x15ca : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_LONG(0012) + list[2] = T_LONG(0012) + +0x15cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x15ca, This adjust = 0 + +0x15cc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_USHORT(0021) + +0x15cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x15ce : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _MMCKINFO, UDT(0x000015d5) + +0x15cf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x15CE + +0x15d0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15CE + +0x15d1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x15D0 + +0x15d2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x15CF + list[1] = 0x15D1 + list[2] = T_USHORT(0021) + +0x15d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x15BD, This type = 0x15BE, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x15d2, This adjust = 0 + +0x15d4 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'ckid' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'cksize' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'fccType' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwDataOffset' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwFlags' + +0x15d5 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x15d4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _MMCKINFO, UDT(0x000015d5) + +0x15d6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxFlcPresenter, UDT(0x00002d9d) + +0x15d7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15D6 + +0x15d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15D6, This type = 0x15D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15d9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15D6 + +0x15da : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15D9 + +0x15db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x15D6, This type = 0x15DA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15D6, This type = 0x15D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x15dd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxEventPresenter, UDT(0x000026ec) + +0x15de : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15DD + +0x15df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15DD, This type = 0x15DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15e0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15DD + +0x15e1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15E0 + +0x15e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x15DD, This type = 0x15E1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15DD, This type = 0x15E1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x15e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15DD, This type = 0x15DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15DD, This type = 0x15DE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x15e6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1496 + +0x15e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1496, This type = 0x15E6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1496, This type = 0x15E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x15e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1496, This type = 0x15E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x15ea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x149B + +0x15eb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = 0x13B3 + +0x15ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x149B, This type = 0x15EA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15eb, This adjust = 0 + +0x15ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x149B, This type = 0x15EA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15ee : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x149B + +0x15ef : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15EE + +0x15f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x149B, This type = 0x15EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x149B, This type = 0x15EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x15f2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSSubscriber, UDT(0x00003c44) + +0x15f3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15F2 + +0x15f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15f5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x15F2 + +0x15f6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15F5 + +0x15f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x15F2, This type = 0x15F6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15F2, This type = 0x15F6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x15f9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12DF + list[1] = T_UINT4(0075) + list[2] = T_SHORT(0011) + +0x15fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x15f9, This adjust = 0 + +0x15fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11CE, Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x15fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x15fd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x15fe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x15FD + +0x15ff : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x108E + list[1] = T_UINT4(0075) + +0x1600 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15ff, This adjust = 0 + +0x1601 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1602 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x15FD + +0x1603 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1602 + +0x1604 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1603, This adjust = 0 + +0x1605 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1606 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1607 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x15FD + +0x1608 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1607, Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1603, This adjust = 0 + +0x1609 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x160a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSStill, UDT(0x000026cc) + +0x160b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x160A + +0x160c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x160A, This type = 0x160B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x160d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x160A + +0x160e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x160D + +0x160f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x160A, This type = 0x160E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1610 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x160A, This type = 0x160E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1611 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x160A + +0x1612 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1611 + +0x1613 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x160A, This type = 0x160B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1612, This adjust = 0 + +0x1614 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1611, Class type = 0x160A, This type = 0x160B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1612, This adjust = 0 + +0x1615 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x160A, This type = 0x160B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1616 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSSource, UDT(0x00003c7c) + +0x1617 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1616 + +0x1618 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSBuffer, UDT(0x00003c95) + +0x1619 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1618 + +0x161a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1619 + +0x161b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x161a, This adjust = 0 + +0x161c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x161d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x161e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSSound, UDT(0x0000350a) + +0x161f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x161E + +0x1620 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1621 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x161E + +0x1622 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1621 + +0x1623 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x161E, This type = 0x1622, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1624 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x161E, This type = 0x1622, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1625 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x161E + +0x1626 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1625 + +0x1627 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1626, This adjust = 0 + +0x1628 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1625, Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1626, This adjust = 0 + +0x1629 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x162a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x162b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x162c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSSerialAction, UDT(0x00002d28) + +0x162d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x162C + +0x162e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x162f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x162C + +0x1630 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x162F + +0x1631 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x162C, This type = 0x1630, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1632 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x162C, This type = 0x1630, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1633 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1634 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x162C + +0x1635 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1634 + +0x1636 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1635, This adjust = 0 + +0x1637 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1634, Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1635, This adjust = 0 + +0x1638 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1639 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x162C, This type = 0x162D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x163a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e7d) + +0x163b : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x0000167f) + +0x163c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x163B + +0x163d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003717) + +0x163e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x163D + +0x163f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x163E + +0x1640 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163B, This type = 0x163C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x163f, This adjust = 0 + +0x1641 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163B, This type = 0x163C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1642 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x163A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1640, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1641, name = '~MxListCursorChild' + +0x1643 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1642, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x0000167f) + +0x1644 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSSelectAction, UDT(0x0000350e) + +0x1645 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1644 + +0x1646 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1647 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x00003623) + +0x1648 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1647 + +0x1649 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1647, This type = 0x1648, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x164a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1272 + +0x164b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1647, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x164c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1272 + list[1] = 0x1272 + +0x164d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1647, This type = 0x1648, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x164c, This adjust = 0 + +0x164e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003719) + +0x164f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x164E + +0x1650 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1644 + +0x1651 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1650 + +0x1652 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1644, This type = 0x1651, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1653 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1644, This type = 0x1651, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1654 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStringList, UDT(0x000026dc) + +0x1655 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1654 + +0x1656 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1644 + +0x1657 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1656 + +0x1658 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1657, This adjust = 0 + +0x1659 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e80) + +0x165a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x00001660) + +0x165b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x165A + +0x165c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x164E + +0x165d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x165C + +0x165e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x165A, This type = 0x165B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x165d, This adjust = 0 + +0x165f : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1659, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x165E, name = 'MxListCursorChild' + +0x1660 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x165f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00001660) + +0x1661 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x1662 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1659 + +0x1663 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1664 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1656, Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1657, This adjust = 0 + +0x1665 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1666 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1667 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x1668 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 10 + Name = + +0x1669 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x166a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x000026d9) + +0x166b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x166A + +0x166c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1272 + list[1] = 0x166B + list[2] = 0x166B + +0x166d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x166B, Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x166c, This adjust = 0 + +0x166e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x166A + +0x166f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x166c, This adjust = 0 + +0x1670 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1272, Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1671 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSParallelAction, UDT(0x000026b9) + +0x1672 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1671 + +0x1673 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1671, This type = 0x1672, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1674 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1671 + +0x1675 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1674 + +0x1676 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1671, This type = 0x1675, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1677 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1671, This type = 0x1675, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1678 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1671 + +0x1679 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1678 + +0x167a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1671, This type = 0x1672, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1679, This adjust = 0 + +0x167b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1678, Class type = 0x1671, This type = 0x1672, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1679, This adjust = 0 + +0x167c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1671, This type = 0x1672, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x167d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1671, This type = 0x1672, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x167e : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x163A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1640, name = 'MxListCursorChild' + +0x167f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x167e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x0000167f) + +0x1680 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSObjectAction, UDT(0x000026b7) + +0x1681 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1680 + +0x1682 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1680, This type = 0x1681, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1683 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1680 + +0x1684 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1683 + +0x1685 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1680, This type = 0x1684, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1686 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1680, This type = 0x1684, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1687 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1680 + +0x1688 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1687 + +0x1689 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1680, This type = 0x1681, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1688, This adjust = 0 + +0x168a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1687, Class type = 0x1680, This type = 0x1681, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1688, This adjust = 0 + +0x168b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1680, This type = 0x1681, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x168c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1082 + +0x168d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x168e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1082 + +0x168f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x168E + +0x1690 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1082, This type = 0x168F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1691 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1082, This type = 0x168F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1692 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1693 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1083, Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1694 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1695 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1696 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x1697 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1082 + +0x1698 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1697, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1098 + +0x1699 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSMultiAction, UDT(0x0000350c) + +0x169a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1699 + +0x169b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x169c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000361e) + +0x169d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x169C + +0x169e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x169C, This type = 0x169D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x169f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x169C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x16a0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x109C + list[1] = 0x109C + +0x16a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x169C, This type = 0x169D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16a0, This adjust = 0 + +0x16a2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSActionList, UDT(0x000032be) + +0x16a3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16A2 + +0x16a4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x163D + +0x16a5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1699 + +0x16a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16A5 + +0x16a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1699, This type = 0x16A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1699, This type = 0x16A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16a9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1699 + +0x16aa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x16A9 + +0x16ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16aa, This adjust = 0 + +0x16ac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x163A + +0x16ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x16A9, Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16aa, This adjust = 0 + +0x16af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x16b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x16b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x16b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x16b5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1064 + +0x16b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16b5, This adjust = 0 + +0x16b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16b8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSMediaAction, UDT(0x000036b7) + +0x16b9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16B8 + +0x16ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16bb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x16B8 + +0x16bc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16BB + +0x16bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x16B8, This type = 0x16BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x16B8, This type = 0x16BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16bf : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x16B8 + +0x16c0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x16BF + +0x16c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16c0, This adjust = 0 + +0x16c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x16BF, Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16c0, This adjust = 0 + +0x16c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1098, This adjust = 0 + +0x16c6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSFile, UDT(0x000033e8) + +0x16c7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16C6 + +0x16c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16ca : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x16C6 + +0x16cb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16CA + +0x16cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x16C6, This type = 0x16CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x16C6, This type = 0x16CB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15c0, This adjust = 0 + +0x16cf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1616 + +0x16d0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16CF + +0x16d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1616, This type = 0x16D0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1616, This type = 0x16D0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x16d4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x15BD + +0x16d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16d6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 80 + Name = + +0x16d7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUCHAR(0420) + list[1] = T_ULONG(0022) + +0x16d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16d7, This adjust = 0 + +0x16d9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = T_INT4(0074) + +0x16da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16d9, This adjust = 0 + +0x16db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16dc : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSEvent, UDT(0x000026b2) + +0x16dd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16DC + +0x16de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16DC, This type = 0x16DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16df : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x16DC + +0x16e0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16DF + +0x16e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x16DC, This type = 0x16E0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x16DC, This type = 0x16E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16e3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x16DC + +0x16e4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x16E3 + +0x16e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16DC, This type = 0x16DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16e4, This adjust = 0 + +0x16e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x16E3, Class type = 0x16DC, This type = 0x16DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16e4, This adjust = 0 + +0x16e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x16DC, This type = 0x16DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16e8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSChunk, UDT(0x000044ae) + +0x16e9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16E8 + +0x16ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16eb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x16E8 + +0x16ec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16EB + +0x16ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x16E8, This type = 0x16EC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x16E8, This type = 0x16EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16ef : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1618 + +0x16f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16f1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1618 + +0x16f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16F1 + +0x16f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1618, This type = 0x16F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16f4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x131C + +0x16f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16f4, This adjust = 0 + +0x16f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1437, This adjust = 0 + +0x16f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x16f8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSAnim, UDT(0x000026b0) + +0x16f9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16F8 + +0x16fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16F8, This type = 0x16F9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16fb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x16F8 + +0x16fc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x16FB + +0x16fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x16F8, This type = 0x16FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x16fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x16F8, This type = 0x16FC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x16ff : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x16F8 + +0x1700 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x16FF + +0x1701 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16F8, This type = 0x16F9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1700, This adjust = 0 + +0x1702 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x16FF, Class type = 0x16F8, This type = 0x16F9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1700, This adjust = 0 + +0x1703 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x16F8, This type = 0x16F9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1704 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x16A2, This type = 0x16A3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16a0, This adjust = 0 + +0x1705 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16A2, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x1706 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x16b5, This adjust = 0 + +0x1707 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1294 + +0x1708 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1709 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1229 + list[1] = 0x11E7 + list[2] = 0x11E7 + list[3] = 0x1247 + +0x170a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1709, This adjust = 0 + +0x170b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x122a, This adjust = 0 + +0x170c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124e, This adjust = 0 + +0x170d : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + list[4] = T_UINT4(0075) + list[5] = T_UINT4(0075) + list[6] = T_UINT4(0075) + +0x170e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x170d, This adjust = 0 + +0x170f : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + list[4] = T_UINT4(0075) + list[5] = T_UINT4(0075) + list[6] = T_UINT4(0075) + list[7] = T_UCHAR(0020) + +0x1710 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x170f, This adjust = 0 + +0x1711 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + list[4] = T_UINT4(0075) + list[5] = T_UINT4(0075) + +0x1712 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x1711, This adjust = 0 + +0x1713 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x1711, This adjust = 0 + +0x1714 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : T_32PVOID(0403) + +0x1715 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1714 + +0x1716 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1715, This adjust = 0 + +0x1717 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x1718 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11ED + +0x1719 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1718 + list[1] = T_32PUINT4(0475) + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + +0x171a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11E7, Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1719, This adjust = 0 + +0x171b : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1291 + list[1] = 0x1718 + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + list[4] = T_UINT4(0075) + list[5] = T_UINT4(0075) + list[6] = T_UINT4(0075) + list[7] = T_UINT4(0075) + +0x171c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x171b, This adjust = 0 + +0x171d : Length = 42, Leaf = 0x1201 LF_ARGLIST argument count = 9 + list[0] = 0x1291 + list[1] = 0x1718 + list[2] = T_UINT4(0075) + list[3] = T_UINT4(0075) + list[4] = T_UINT4(0075) + list[5] = T_UINT4(0075) + list[6] = T_UINT4(0075) + list[7] = T_UINT4(0075) + list[8] = T_UCHAR(0020) + +0x171e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 9, Arg list type = 0x171d, This adjust = 0 + +0x171f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDiskStreamProviderThread, UDT(0x00002685) + +0x1720 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x171F + +0x1721 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x171F, This type = 0x1720, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1722 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x1723 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1722 + +0x1724 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1723 + +0x1725 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x171F, This type = 0x1720, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1724, This adjust = 0 + +0x1726 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1722 + +0x1727 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1728 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x12DC + +0x1729 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1728 + +0x172a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x12DC, This type = 0x1729, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x172b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12DC, This type = 0x1729, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x172c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x172d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x171F, This type = 0x1720, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x172e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1722 + +0x172f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x172E + +0x1730 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1722, This type = 0x172F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1731 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1722, This type = 0x172F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1732 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12e0, This adjust = 0 + +0x1733 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1734 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1735 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1736 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1737 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDiskStreamController, UDT(0x00003e15) + +0x1738 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1737 + +0x1739 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x173a : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00002384) + +0x173b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x173A + +0x173c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x173d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12EB + list[1] = 0x12EB + +0x173e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12EB, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x173d, This adjust = 0 + +0x173f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1737 + +0x1740 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x173F + +0x1741 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1737, This type = 0x1740, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1742 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1737, This type = 0x1740, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1743 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000263b) + +0x1744 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1743 + +0x1745 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1746 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x000025e2) + +0x1747 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1746 + +0x1748 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1747 + list[1] = 0x1747 + +0x1749 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1747, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1748, This adjust = 0 + +0x174a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x174b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00002683) + +0x174c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x174B + +0x174d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x174B, This type = 0x174C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x174e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamList, UDT(0x00003771) + +0x174f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x174E + +0x1750 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x174E, This type = 0x174F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1751 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000023cb) + +0x1752 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1751 + +0x1753 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1751, This type = 0x1752, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1754 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1755 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x1756 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1757 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1758 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x1759 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDirectDraw, UDT(0x00004e52) + +0x175a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1759 + +0x175b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x175c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x175d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1250 + +0x175e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x175D + +0x175f : Length = 42, Leaf = 0x1201 LF_ARGLIST argument count = 9 + list[0] = T_32PVOID(0403) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + list[7] = 0x175E + list[8] = T_INT4(0074) + +0x1760 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 9, Arg list type = 0x175f, This adjust = 0 + +0x1761 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _GUID, UDT(0x0000178a) + +0x1762 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1761 + +0x1763 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1762 + +0x1764 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1763 + +0x1765 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1764, This adjust = 0 + +0x1766 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1767 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x175E + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + +0x1768 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1767, This adjust = 0 + +0x1769 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x176a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + +0x176b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x176a, This adjust = 0 + +0x176c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = T_INT4(0074) + +0x176d : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x176c + +0x176e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11E7 + +0x176f : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IUnknown, UDT(0x00001cbb) + +0x1770 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x176F + +0x1771 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1291 + list[1] = 0x176E + list[2] = 0x1770 + +0x1772 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1771, This adjust = 0 + +0x1773 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1291 + list[1] = 0x11E7 + +0x1774 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1773, This adjust = 0 + +0x1775 : Length = 22, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwCaps' + +0x1776 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x1775, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _DDSCAPS, UDT(0x00001776) + +0x1777 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagSIZE, UDT(0x0000207b) + +0x1778 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1777 + +0x1779 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = 0x11E7 + list[2] = 0x1778 + +0x177a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1779, This adjust = 0 + +0x177b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x177c : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 23 + Name = + +0x177d : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 47 + Name = + +0x177e : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwColorSpaceLowValue' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwColorSpaceHighValue' + +0x177f : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x177e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = _DDCOLORKEY, UDT(0x0000177f) + +0x1780 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + +0x1781 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x1782 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_INT4(0074) + +0x1783 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1782, This adjust = 0 + +0x1784 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1785 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x1786 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1785 + +0x1787 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1785, This type = 0x1786, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1788 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 8 + Name = + +0x1789 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'Data1' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'Data2' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'Data3' + list[3] = LF_MEMBER, public, type = 0x1788, offset = 8 + member name = 'Data4' + +0x178a : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x1789, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _GUID, UDT(0x0000178a) + +0x178b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDirect3D, UDT(0x00004e70) + +0x178c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x178B + +0x178d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x178e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 9, Arg list type = 0x175f, This adjust = 0 + +0x178f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1790 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x1791 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1790 + +0x1792 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1790, This type = 0x1791, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1793 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x1794 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1793 + +0x1795 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1796 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_NOTYPE(0000) + +0x1797 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x178B, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x1796, This adjust = 0 + +0x1798 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1799 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1762 + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + list[3] = T_32PVOID(0403) + +0x179a : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = STD Near + Func attr = none + # Parms = 4, Arg list type = 0x1799 + +0x179b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x179c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11D9 + +0x179d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11D9, This type = 0x179C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x179e : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _iobuf, UDT(0x00001b3a) + +0x179f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x179E + +0x17a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11D9, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17a1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10AD + +0x17a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10AD, This type = 0x17A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10AD, This type = 0x17A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10AD, This type = 0x17A1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x17a5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxControlPresenter, UDT(0x0000341a) + +0x17a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17A5 + +0x17a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17a8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17A5 + +0x17a9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17A8 + +0x17aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x17A5, This type = 0x17A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17A5, This type = 0x17A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x17ac : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCompositePresenter, UDT(0x0000374a) + +0x17ad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17AC + +0x17ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x17af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17b0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17AC + +0x17b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17B0 + +0x17b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x17AC, This type = 0x17B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17AC, This type = 0x17B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x17b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x17b5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +0x17b6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17B5 + +0x17b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17B5, This type = 0x17B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17b8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17B5 + +0x17b9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17B8 + +0x17ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x17B5, This type = 0x17B9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17B5, This type = 0x17B9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x17bc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11ED + +0x17bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x17be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17bf : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = 0x1225 + list[3] = T_UCHAR(0020) + +0x17c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x17bf, This adjust = 0 + +0x17c1 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxBITMAPINFO, UDT(0x00003caa) + +0x17c2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x17C1 + +0x17c3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x17C2 + +0x17c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x17c3, This adjust = 0 + +0x17c5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1718 + +0x17c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x17c5, This adjust = 0 + +0x17c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x17c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x17c9 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'bfType' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 2 + member name = 'bfSize' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'bfReserved1' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 8 + member name = 'bfReserved2' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 10 + member name = 'bfOffBits' + +0x17ca : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x17c9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 14, class name = tagBITMAPFILEHEADER, UDT(0x000017ca) + +0x17cb : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + +0x17cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x17cb, This adjust = 0 + +0x17cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1225, Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124e, This adjust = 0 + +0x17cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x17d0 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_32PVOID(0403) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + +0x17d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x17d0, This adjust = 0 + +0x17d2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1453 + +0x17d3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x17D2 + list[1] = 0x1225 + +0x17d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x17d3, This adjust = 0 + +0x17d5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1224 + +0x17d6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x17D5 + +0x17d7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x17D6 + +0x17d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1224, This type = 0x1451, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x17d7, This adjust = 0 + +0x17d9 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x17D8, + list[1] = public, VANILLA, 0x1457, + list[2] = public, VANILLA, 0x1452, + +0x17da : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1461, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1452, name = 'Detach' + list[3] = LF_METHOD, count = 2, list = 0x17D9, name = 'MxPalette' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1452, name = '~MxPalette' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1462, name = 'ApplySystemEntriesToPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x145B, name = 'Clone' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1462, name = 'GetDefaultPalette' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'GetEntries' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'SetEntries' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'SetSkyColor' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1463, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x145A, name = 'CreateNativePalette' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1463, name = 'SetOverrideSkyColor' + list[14] = LF_MEMBER, private, type = 0x1459, offset = 8 + member name = 'm_palette' + list[15] = LF_MEMBER, private, type = 0x1251, offset = 12 + member name = 'm_entries' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1036 + member name = 'm_overrideSkyColor' + list[17] = LF_MEMBER, private, type = 0x1250, offset = 1037 + member name = 'm_skyColor' + +0x17db : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x17da, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 1044, class name = MxPalette, UDT(0x00003f54) + +0x17dc : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxBackgroundAudioManager, UDT(0x00003288) + +0x17dd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17DC + +0x17de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17df : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17DC + +0x17e0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17DF + +0x17e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x17DC, This type = 0x17E0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17DC, This type = 0x17E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x17e3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1361 + list[1] = T_UINT4(0075) + +0x17e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x17e3, This adjust = 0 + +0x17e5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1361 + +0x17e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x17e5, This adjust = 0 + +0x17e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x17e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x17ea : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x108E + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + +0x17eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x17ea, This adjust = 0 + +0x17ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17DC, This type = 0x17DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x17ed : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAudioPresenter, UDT(0x00002136) + +0x17ee : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17ED + +0x17ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x17ED, This type = 0x17EE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17ED, This type = 0x17EE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x17f1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAudioManager, UDT(0x00003312) + +0x17f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17F1 + +0x17f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x17F1, This type = 0x17F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17F1, This type = 0x17F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17F1, This type = 0x17F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x17f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17F1, This type = 0x17F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17F1, This type = 0x17F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x17f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14B4, This type = 0x14D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x17f9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAtomIdCounterCompare, UDT(0x00001b5f) + +0x17fa : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17F9 + +0x17fb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x17FA + +0x17fc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14D9 + list[1] = 0x14D9 + +0x17fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x17F9, This type = 0x17FB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x17fc, This adjust = 0 + +0x17fe : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x147A + list[1] = 0x147A + list[2] = 0x14D9 + +0x17ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x17fe, This adjust = 0 + +0x1800 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x14A8 + +0x1801 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1800 + +0x1802 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14D9 + +0x1803 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x147A, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1804 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxActionNotificationParam, UDT(0x00002312) + +0x1805 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1804 + +0x1806 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x1804, This type = 0x1805, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1807 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x10BA, This type = 0x1596, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1808 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1804, This type = 0x1805, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1809 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Motorcycle, UDT(0x00003dcc) + +0x180a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1809 + +0x180b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1809, This type = 0x180A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x180c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1809 + +0x180d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x180C + +0x180e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1809, This type = 0x180D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x180f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1809, This type = 0x180D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1810 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoWorldPresenter, UDT(0x00003d0a) + +0x1811 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1810, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1812 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1810 + +0x1813 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1810, This type = 0x1812, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1814 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1810 + +0x1815 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1814 + +0x1816 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1810, This type = 0x1815, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1817 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1810, This type = 0x1815, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1818 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1289 + +0x1819 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x181a : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x11f7 + +0x181b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x109e + +0x181c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x10c4 + +0x181d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10A9 + +0x181e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10A9, This type = 0x181D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x181f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x000035e3) + +0x1820 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x181F + +0x1821 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x181F, This type = 0x1820, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1822 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPathController, UDT(0x00001c39) + +0x1823 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1822 + +0x1824 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1823 + +0x1825 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x181F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1824, This adjust = 0 + +0x1826 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1823 + list[1] = 0x1823 + +0x1827 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x181F, This type = 0x1820, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1826, This adjust = 0 + +0x1828 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPathControllerList, UDT(0x000035e0) + +0x1829 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1828 + +0x182a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x000035e8) + +0x182b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x182A + +0x182c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182A, This type = 0x182B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x182d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003707) + +0x182e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x182D + +0x182f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1828, This type = 0x1829, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1830 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x000035eb) + +0x1831 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1830 + +0x1832 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1830, This type = 0x1831, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1833 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1243 + +0x1834 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1830, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x1835 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1830, This type = 0x1831, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x143b, This adjust = 0 + +0x1836 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x123B + +0x1837 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x000035f1) + +0x1838 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1837 + +0x1839 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1837, This type = 0x1838, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x183a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1289 + +0x183b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x183A + +0x183c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1289, This type = 0x183B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x183d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1289, This type = 0x183B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x183e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1439, This type = 0x143A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x183f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1840 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1841 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1842 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x1843 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x1844 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1845 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1846 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1847 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x128E + +0x1848 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1849 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x184a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x184b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UCHAR(0020) + list[1] = T_UCHAR(0020) + +0x184c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x184b, This adjust = 0 + +0x184d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_REAL32(0040) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + +0x184e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x184f : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'peRed' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'peGreen' + list[2] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'peBlue' + list[3] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 3 + member name = 'peFlags' + +0x1850 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x184f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = tagPALETTEENTRY, UDT(0x00001850) + +0x1851 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1852 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoVehicleBuildState::UnkStruct, UDT(0x000032a8) + +0x1853 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1852 + +0x1854 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1852, This type = 0x1853, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1855 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoVehicleBuildState, UDT(0x000032a6) + +0x1856 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1855 + +0x1857 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1855, This type = 0x1856, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1858 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1855 + +0x1859 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1858 + +0x185a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1855, This type = 0x1859, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x185b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1855, This type = 0x1859, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x185c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = ThisCall + Func attr = none + # Parms = 1, Arg list type = 0x12c6 + +0x185d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x185C + +0x185e : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PVOID(0403) + list[1] = T_UINT4(0075) + list[2] = T_INT4(0074) + list[3] = 0x185D + +0x185f : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = STD Near + Func attr = none + # Parms = 4, Arg list type = 0x185e + +0x1860 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoSaveDataEntry3, UDT(0x00002307) + +0x1861 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1860 + Index type = T_SHORT(0011) + length = 17424 + Name = + +0x1862 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoUnkSaveDataWriter, UDT(0x00001ea3) + +0x1863 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1862 + +0x1864 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoStream, UDT(0x00001b48) + +0x1865 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1864 + +0x1866 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1865 + +0x1867 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1862, This type = 0x1863, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1866, This adjust = 0 + +0x1868 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1860 + +0x1869 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1050, Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1049 + +0x186a : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_REAL32(0040) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_32PREAL32(0440) + list[4] = T_32PREAL32(0440) + list[5] = T_32PREAL32(0440) + +0x186b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 6, Arg list type = 0x186a + +0x186c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1361 + list[1] = T_INT4(0074) + +0x186d : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x186c + +0x186e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoTexturePresenter, UDT(0x00003e11) + +0x186f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x186E + +0x1870 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x186E, This type = 0x186F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1871 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x186E + +0x1872 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1871 + +0x1873 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x186E, This type = 0x1872, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1874 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x186E, This type = 0x1872, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1875 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x186E, This type = 0x186F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1876 : Length = 18, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = '_Noinit' + +0x1877 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 1, type = T_INT4(0074) field list type 0x1876 + enum name = _Uninitialized, UDT(0x00001877) + +0x1878 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1879 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1878 + +0x187a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1865 + list[1] = 0x1491 + list[2] = T_32PRCHAR(0470) + +0x187b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1864, This type = T_NOTYPE(0000), + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x187a, This adjust = 0 + +0x187c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1865 + list[1] = 0x1491 + +0x187d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1864, This type = T_NOTYPE(0000), + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x187c, This adjust = 0 + +0x187e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1864 + +0x187f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1864, This type = 0x187E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1880 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoMemoryStream, UDT(0x00001b4b) + +0x1881 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1880 + +0x1882 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1880, This type = 0x1881, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1883 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1864, This type = 0x187E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1884 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1880, This type = 0x1881, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11cb, This adjust = 0 + +0x1885 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoFileStream, UDT(0x00003747) + +0x1886 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1885 + +0x1887 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1888 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11cb, This adjust = 0 + +0x1889 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PUINT4(0475) + +0x188a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x188b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x188c : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'ReadBit' + list[1] = LF_ENUMERATE, public, value = 2, name = 'WriteBit' + list[2] = LF_ENUMERATE, public, value = 4, name = 'BinaryBit' + +0x188d : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x188c +NESTED, enum name = LegoStream::OpenFlags, UDT(0x0000188d) + +0x188e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = 0x188D + +0x188f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x188e, This adjust = 0 + +0x1890 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 4 + Name = + +0x1891 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1880, This type = 0x1881, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x1892 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1880, This type = 0x1881, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1893 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoState, UDT(0x00003304) + +0x1894 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1893 + +0x1895 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1893, This type = 0x1894, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1896 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1893, This type = 0x1894, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1897 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1885 + +0x1898 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1897 + +0x1899 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1893, This type = 0x1894, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1898, This adjust = 0 + +0x189a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1897, Class type = 0x1885, This type = 0x1886, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x189b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoSoundManager, UDT(0x0000330c) + +0x189c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x189B + +0x189d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x189B, This type = 0x189C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x189e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x189B, This type = 0x189C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x189f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x189B, This type = 0x189C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x18a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x189B, This type = 0x189C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18a1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_REAL64(0041) + +0x18a2 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ROIColorAlias, UDT(0x000032a4) + +0x18a3 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x18A2 + Index type = T_SHORT(0011) + length = 440 + Name = + +0x18a4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_32PRCHAR(0470) + list[2] = T_UINT4(0075) + +0x18a5 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x18a4 + +0x18a6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18A5 + +0x18a7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoROI, UDT(0x00004493) + +0x18a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x18a9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_REAL32(0040) + +0x18aa : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = T_32PRCHAR(0470) + list[1] = 0x18A9 + list[2] = 0x18A9 + list[3] = 0x18A9 + list[4] = 0x18A9 + +0x18ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18A7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 5, Arg list type = 0x18aa, This adjust = 0 + +0x18ac : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 32 + Name = + +0x18ad : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x18A6 + +0x18ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x18ad, This adjust = 0 + +0x18af : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18A7 + +0x18b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = 0x18AF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x18b1 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoRace, UDT(0x00003e0a) + +0x18b2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18B1 + +0x18b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x18b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x18b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18b7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18B1 + +0x18b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18B7 + +0x18b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18B1, This type = 0x18B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18B1, This type = 0x18B8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x18bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x18bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x18bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18B1, This type = 0x18B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x18be : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPlantManager, UDT(0x00001e97) + +0x18bf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18BE + +0x18c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18BE, This type = 0x18BF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18c1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18BE + +0x18c2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18C1 + +0x18c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18BE, This type = 0x18C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18BE, This type = 0x18BF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18c5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPhonemePresenter, UDT(0x000032a2) + +0x18c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18C5 + +0x18c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18C5, This type = 0x18C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18c8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18C5 + +0x18c9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18C8 + +0x18ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18C5, This type = 0x18C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18cb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPathPresenter, UDT(0x00003dc8) + +0x18cc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18CB + +0x18cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18CB, This type = 0x18CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18ce : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18CB + +0x18cf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18CE + +0x18d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18CB, This type = 0x18CF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18CB, This type = 0x18CF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x18d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18CB, This type = 0x18CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18CB, This type = 0x18CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x18d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1828, This type = 0x1829, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1826, This adjust = 0 + +0x18d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1828, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1824, This adjust = 0 + +0x18d6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1822 + +0x18d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1822, This type = 0x18D6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18d8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1822 + +0x18d9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18D8 + +0x18da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1822, This type = 0x18D9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1822, This type = 0x18D9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x18dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1822, This type = 0x18D6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18dd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPathActor, UDT(0x000033c9) + +0x18de : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18DD + +0x18df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18e0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18DD + +0x18e1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18E0 + +0x18e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18DD, This type = 0x18E1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18DD, This type = 0x18E1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x18e4 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoActor, UDT(0x00003258) + +0x18e5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18E4 + +0x18e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E4, This type = 0x18E5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18e7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPartPresenter, UDT(0x00003dc6) + +0x18e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x18e9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPalettePresenter, UDT(0x00003e18) + +0x18ea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18E9 + +0x18eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E9, This type = 0x18EA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18ec : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18E9 + +0x18ed : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18EC + +0x18ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18E9, This type = 0x18ED, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x18ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18E9, This type = 0x18ED, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x18f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E9, This type = 0x18EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x18f1 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1782 + +0x18f2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18F1 + +0x18f3 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoOmni, UDT(0x00004469) + +0x18f4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18F3 + +0x18f5 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x18F4, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18f6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x189B + +0x18f7 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x18F6, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18f8 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x128F, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18f9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x17DC + +0x18fa : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x18F9, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18fb : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x10C3, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18fc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoControlManager, UDT(0x00001e50) + +0x18fd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18FC + +0x18fe : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x18FD, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x18ff : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1088, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1900 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAnimationManager, UDT(0x000033dc) + +0x1901 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1900 + +0x1902 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1901, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1903 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoNavController, UDT(0x00003302) + +0x1904 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1903 + +0x1905 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1904, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1906 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x128A, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1907 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18BE + +0x1908 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1907, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1909 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoBuildingManager, UDT(0x00001e99) + +0x190a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1909 + +0x190b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x190A, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x190c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x10C7, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x190d : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x108E, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x190e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x127A + +0x190f : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x190E, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1910 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x18A7 + +0x1911 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1910, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x15c8 + +0x1912 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoEntity, UDT(0x00003cfa) + +0x1913 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1912 + +0x1914 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1913, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x15c8 + +0x1915 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_32PRCHAR(0470), Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x1916 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18F3 + +0x1917 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1918 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18F3 + +0x1919 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1918 + +0x191a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18F3, This type = 0x1919, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x191b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18F3, This type = 0x1919, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x191c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x14a3, This adjust = 0 + +0x191d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GifManagerBase, UDT(0x0000327a) + +0x191e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x191D + +0x191f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x191D, This type = 0x191E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1920 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10C6 + +0x1921 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00001f5b) + +0x1922 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1921 + +0x1923 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1924 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00001fa2) + +0x1925 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1924 + +0x1926 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1924, This type = 0x1925, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1927 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1928 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18F4, Class type = 0x18F3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1929 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13B3 + list[1] = T_LONG(0012) + +0x192a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1929, This adjust = 0 + +0x192b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13B3 + list[1] = T_INT4(0074) + +0x192c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1913, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x192b, This adjust = 0 + +0x192d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x192e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x149C, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x149d, This adjust = 0 + +0x192f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x149f, This adjust = 0 + +0x1930 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x1931 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoPathBoundary + +0x1932 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1931 + +0x1933 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1932 + +0x1934 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_INT4(0074) + +0x1935 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1933 + list[1] = 0x1934 + +0x1936 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x18F3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x1935, This adjust = 0 + +0x1937 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x1938 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1939 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1363 + +0x193a : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x125a + +0x193b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + +0x193c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x193b + +0x193d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x18F2 + +0x193e : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x193d + +0x193f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x16C6 + +0x1940 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x193F + list[1] = T_SHORT(0011) + +0x1941 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1697, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1940 + +0x1942 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoObjectFactory, UDT(0x00003dc3) + +0x1943 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1942 + +0x1944 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1942, This type = 0x1943, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1945 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1480 + +0x1946 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1945 + +0x1947 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1480, This type = 0x1946, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1948 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1480, This type = 0x1946, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1949 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x1942, This type = 0x1943, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x194a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1942, This type = 0x1943, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x194b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1903 + +0x194c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x194d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1903 + +0x194e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x194D + +0x194f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1903, This type = 0x194E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1950 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1903, This type = 0x194E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1951 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1952 : Length = 50, Leaf = 0x1201 LF_ARGLIST argument count = 11 + list[0] = T_32PINT4(0474) + list[1] = T_32PREAL32(0440) + list[2] = T_32PREAL32(0440) + list[3] = T_32PREAL32(0440) + list[4] = T_32PREAL32(0440) + list[5] = T_32PREAL32(0440) + list[6] = T_32PREAL32(0440) + list[7] = T_32PREAL32(0440) + list[8] = T_32PREAL32(0440) + list[9] = T_32PREAL32(0440) + list[10] = T_32PUCHAR(0420) + +0x1953 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1903, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 11, Arg list type = 0x1952, This adjust = 0 + +0x1954 : Length = 50, Leaf = 0x1201 LF_ARGLIST argument count = 11 + list[0] = T_INT4(0074) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + list[6] = T_REAL32(0040) + list[7] = T_REAL32(0040) + list[8] = T_REAL32(0040) + list[9] = T_REAL32(0040) + list[10] = T_UCHAR(0020) + +0x1955 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1903, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 11, Arg list type = 0x1954, This adjust = 0 + +0x1956 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_UCHAR(0020) + +0x1957 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1956, This adjust = 0 + +0x1958 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_REAL32(0040) + +0x1959 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1958, This adjust = 0 + +0x195a : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_REAL32(0040) + list[3] = T_INT4(0074) + +0x195b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195a, This adjust = 0 + +0x195c : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_REAL32(0040) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x195d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x1903, This type = 0x194B, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x195e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoModelPresenter, UDT(0x00004d1f) + +0x195f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x195E, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1960 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoLocomotionAnimPresenter, UDT(0x00003dbe) + +0x1961 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1960 + +0x1962 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1960, This type = 0x1961, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1963 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1960 + +0x1964 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1963 + +0x1965 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1960, This type = 0x1964, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1966 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1960, This type = 0x1964, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1967 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +0x1968 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1967 + +0x1969 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1967, This type = 0x1968, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x196a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x17ED + +0x196b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x196A + +0x196c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x17ED, This type = 0x196B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x196d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17ED, This type = 0x196B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x196e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17ED, This type = 0x17EE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x196f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x13A5 + +0x1970 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x196F + +0x1971 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x13A5, This type = 0x1970, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1972 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13A5, This type = 0x1970, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1973 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11C4 + +0x1974 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1973 + +0x1975 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11C4, This type = 0x1974, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1976 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11C4, This type = 0x1974, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1977 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1967 + +0x1978 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1977 + +0x1979 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1967, This type = 0x1978, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x197a : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DIOBJECTDATAFORMAT, UDT(0x00002133) + +0x197b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x197A + +0x197c : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwObjSize' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwFlags' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwDataSize' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwNumObjs' + list[5] = LF_MEMBER, public, type = 0x197B, offset = 20 + member name = 'rgodf' + +0x197d : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x197c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _DIDATAFORMAT, UDT(0x0000197d) + +0x197e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10C2 + +0x197f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1980 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1981 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x1982 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10AD + +0x1983 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1982 + +0x1984 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x10AD, This type = 0x1983, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1985 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x00003617) + +0x1986 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1985 + +0x1987 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1985, This type = 0x1986, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1988 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoEventNotificationParam, UDT(0x00003252) + +0x1989 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1988 + +0x198a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1985, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1989, This adjust = 0 + +0x198b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1988 + +0x198c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1988 + +0x198d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x198C + +0x198e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x198D + +0x198f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1988, This type = 0x198B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x198e, This adjust = 0 + +0x1990 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x1059 + list[1] = 0x10AE + list[2] = T_UCHAR(0020) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_UCHAR(0020) + +0x1991 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1988, This type = 0x198B, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x1990, This adjust = 0 + +0x1992 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1988, This type = 0x198B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1993 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x198F, + list[1] = public, VANILLA, 0x1991, + list[2] = public, VANILLA, 0x1992, + +0x1994 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x198C + +0x1995 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1988, This type = 0x1994, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1996 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1993, name = 'LegoEventNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1992, name = '~LegoEventNotificationParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1995, name = 'GetKey' + list[4] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 12 + member name = 'm_modifier' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 16 + member name = 'm_x' + list[6] = LF_MEMBER, protected, type = T_INT4(0074), offset = 20 + member name = 'm_y' + list[7] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 24 + member name = 'm_key' + list[8] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 28 + member name = 'm_unk1c' + +0x1997 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1996, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 32, class name = LegoEventNotificationParam, UDT(0x00003252) + +0x1998 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1354, This type = 0x150D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1999 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10B6 + +0x199a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10B6, This type = 0x1999, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x199b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1988 + list[1] = 0x1988 + +0x199c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x1985, This type = 0x1986, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x199b, This adjust = 0 + +0x199d : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003713) + +0x199e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x199D + +0x199f : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x000020c4) + +0x19a0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x199F + +0x19a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1988, Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19a2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoEventQueue, UDT(0x000020c6) + +0x19a3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19A2 + +0x19a4 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxQueue, UDT(0x000020b6) + +0x19a5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19A4 + +0x19a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19A4, This type = 0x19A5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x19a8 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwXpos' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwYpos' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwZpos' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwRpos' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwUpos' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwVpos' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwButtons' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwButtonNumber' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwPOV' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'dwReserved1' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwReserved2' + +0x19a9 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x19a8, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = joyinfoex_tag, UDT(0x000019a9) + +0x19aa : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PUINT4(0475) + list[1] = T_32PUINT4(0475) + list[2] = T_32PULONG(0422) + list[3] = T_32PUINT4(0475) + +0x19ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x19aa, This adjust = 0 + +0x19ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x19ad : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoCameraController, UDT(0x000033cd) + +0x19ae : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19AD + +0x19af : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x19AE + +0x19b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19af, This adjust = 0 + +0x19b1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x128A + +0x19b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x19b3 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1059 + list[1] = T_UCHAR(0020) + list[2] = T_LONG(0012) + list[3] = T_LONG(0012) + list[4] = T_UCHAR(0020) + +0x19b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x19b3, This adjust = 0 + +0x19b5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1988 + +0x19b6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x19B5 + +0x19b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b6, This adjust = 0 + +0x19b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoHideAnimPresenter, UDT(0x00003db3) + +0x19ba : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19B9 + +0x19bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19B9, This type = 0x19BA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19bc : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoLoopingAnimPresenter, UDT(0x000020a1) + +0x19bd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19BC + +0x19be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19BD + +0x19bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19BC, This type = 0x19BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19BC, This type = 0x19BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19c1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19B9 + +0x19c2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19C1 + +0x19c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19B9, This type = 0x19C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19B9, This type = 0x19C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19c5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19BC + +0x19c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19BC, This type = 0x19C5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19c7 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ColorStringStruct, UDT(0x0000209f) + +0x19c8 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x19C7 + Index type = T_SHORT(0011) + length = 344 + Name = + +0x19c9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1087 + +0x19ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19cb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1893 + +0x19cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x19cd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = InfocenterState, UDT(0x000032fa) + +0x19ce : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19CD + +0x19cf : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1864, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1887, name = 'LegoFileStream' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1887, name = '~LegoFileStream' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1888, name = 'Read' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1888, name = 'Write' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x188A, name = 'Tell' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x188B, name = 'Seek' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x188F, name = 'Open' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x189A, name = 'FUN_10006030' + list[9] = LF_MEMBER, private, type = 0x179F, offset = 8 + member name = 'm_hFile' + +0x19d0 : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 7 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR + +0x19d1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x19cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 12, class name = LegoFileStream, UDT(0x00003747) + +0x19d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1866, This adjust = 0 + +0x19d4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1273 + list[1] = T_ULONG(0022) + +0x19d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x19d4, This adjust = 0 + +0x19d6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 2 + Name = + +0x19d7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_SHORT(0011) + +0x19d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19d7, This adjust = 0 + +0x19d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x19da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x19CB, Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19db : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x19CB + +0x19dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19db, This adjust = 0 + +0x19dd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19CB + +0x19de : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoFullScreenMovie, UDT(0x00001e75) + +0x19df : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19DE + +0x19e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19DE, This type = 0x19DF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x125a, This adjust = 0 + +0x19e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19DE, This type = 0x19DF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19e2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +0x19e3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19E2 + +0x19e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19E2, This type = 0x19E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15D6, This type = 0x15DA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19e6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19E2 + +0x19e7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19E6 + +0x19e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19E2, This type = 0x19E7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19e9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x19ea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19E9 + +0x19eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19ec : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19E9 + +0x19ed : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19EC + +0x19ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19E9, This type = 0x19ED, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19E9, This type = 0x19ED, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x19f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x19f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1912 + +0x19f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x19f5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10F7 + +0x19f6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x19F5 + list[1] = 0x19F5 + list[2] = 0x19F5 + +0x19f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x19f6, This adjust = 0 + +0x19f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x19f9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1910 + list[1] = T_UCHAR(0020) + list[2] = T_UCHAR(0020) + +0x19fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x19f9, This adjust = 0 + +0x19fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x19fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x19fd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18FC + +0x19fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18FC, This type = 0x19FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x19ff : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18FC + +0x1a00 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19FF + +0x1a01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18FC, This type = 0x1A00, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18FC, This type = 0x1A00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18FC, This type = 0x19FD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x1a04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18FC, This type = 0x19FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a05 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoCarBuildAnimPresenter, UDT(0x0000208f) + +0x1a06 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A05 + +0x1a07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A05, This type = 0x1A06, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a08 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A05 + +0x1a09 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A08 + +0x1a0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A05, This type = 0x1A09, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a0b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A05, This type = 0x1A09, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a0c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAnimPresenter, UDT(0x00001fce) + +0x1a0d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A0C + +0x1a0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A0C, This type = 0x1A0D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a0f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoCarBuild, UDT(0x0000208d) + +0x1a10 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A0F + +0x1a11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A0F, This type = 0x1A10, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a12 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A0F + +0x1a13 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A12 + +0x1a14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A0F, This type = 0x1A13, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A0F, This type = 0x1A13, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A0F, This type = 0x1A10, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A0F, This type = 0x1A10, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1a18 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19AD + +0x1a19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19AD, This type = 0x1A18, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a1a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19AD + +0x1a1b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A1A + +0x1a1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19AD, This type = 0x1A1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19AD, This type = 0x1A1B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a1e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoCacheSound, UDT(0x0000208b) + +0x1a1f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A1E + +0x1a20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A1E, This type = 0x1A1F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a21 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A1E + +0x1a22 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A21 + +0x1a23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A1E, This type = 0x1A22, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A1E, This type = 0x1A22, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1909, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1a26 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1909 + +0x1a27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1909, This type = 0x1A26, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10AD, This type = 0x1983, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a29 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1909 + +0x1a2a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A29 + +0x1a2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1909, This type = 0x1A2A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a2c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoBackgroundColor, UDT(0x00003300) + +0x1a2d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A2C + +0x1a2e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A2C, This type = 0x1A2D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x125a, This adjust = 0 + +0x1a2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A2C, This type = 0x1A2D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a30 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1242 + +0x1a31 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A30 + +0x1a32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1242, This type = 0x1A31, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1242, This type = 0x1A31, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a34 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x157F + +0x1a35 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A34 + +0x1a36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x157F, This type = 0x1A35, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a37 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x157F, This type = 0x1A35, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a38 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11E2 + +0x1a39 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A38 + +0x1a3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x11E2, This type = 0x1A39, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a3b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11E2, This type = 0x1A39, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a3c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A0C + +0x1a3d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A3C + +0x1a3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A0C, This type = 0x1A3D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A0C, This type = 0x1A3D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a40 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +0x1a41 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A40 + +0x1a42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A40, This type = 0x1A41, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a43 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A40 + +0x1a44 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A43 + +0x1a45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A40, This type = 0x1A44, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A40, This type = 0x1A44, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1900, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1a48 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1900 + +0x1a49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1900, This type = 0x1A48, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a4a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1900 + +0x1a4b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A4A + +0x1a4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1900, This type = 0x1A4B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1900, This type = 0x1A4B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1900, This type = 0x1A48, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1a4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1900, This type = 0x1A48, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1a50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1900, This type = 0x1A48, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x18E4, This type = 0x18E5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E4, This type = 0x18E5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x1a53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18E4, This type = 0x18E5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E4, This type = 0x18E5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1a55 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18E4 + +0x1a56 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A55 + +0x1a57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18E4, This type = 0x1A56, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18E4, This type = 0x1A56, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a59 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoActionControlPresenter, UDT(0x00001ef5) + +0x1a5a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A59 + +0x1a5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A59, This type = 0x1A5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A59, This type = 0x1A5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A59, This type = 0x1A5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1a5e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = JukeBoxState, UDT(0x00003daa) + +0x1a5f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A5E + +0x1a60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A5E, This type = 0x1A5F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a61 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = JukeBoxEntity, UDT(0x00001ebc) + +0x1a62 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A61 + +0x1a63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A61, This type = 0x1A62, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a64 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A61 + +0x1a65 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A64 + +0x1a66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A61, This type = 0x1A65, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A61, This type = 0x1A65, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a68 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = JukeBox, UDT(0x00003da7) + +0x1a69 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A68 + +0x1a6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A68, This type = 0x1A69, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a6b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A68 + +0x1a6c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A6B + +0x1a6d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A68, This type = 0x1A6C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A68, This type = 0x1A6C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a6f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Jetski, UDT(0x00003da5) + +0x1a70 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A6F + +0x1a71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A6F, This type = 0x1A70, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a72 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A6F + +0x1a73 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A72 + +0x1a74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A6F, This type = 0x1A73, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A6F, This type = 0x1A73, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a76 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IslePathActor, UDT(0x000033d6) + +0x1a77 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A76 + +0x1a78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1a7a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = T_UCHAR(0020) + list[2] = T_UCHAR(0020) + +0x1a7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1a7a, This adjust = 0 + +0x1a7c : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Isle, UDT(0x00003478) + +0x1a7d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A7C + +0x1a7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a7f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A7C + +0x1a80 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A7F + +0x1a81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A7C, This type = 0x1A80, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A7C, This type = 0x1A80, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a83 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x19CD + +0x1a84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19CD, This type = 0x1A83, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a85 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x19CD + +0x1a86 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A85 + +0x1a87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x19CD, This type = 0x1A86, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19CD, This type = 0x1A86, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a89 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = InfocenterDoor, UDT(0x00001ead) + +0x1a8a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A89 + +0x1a8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A89, This type = 0x1A8A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a8c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A89 + +0x1a8d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A8C + +0x1a8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A89, This type = 0x1A8D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A89, This type = 0x1A8D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A89, This type = 0x1A8A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1a91 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Infocenter, UDT(0x00003f03) + +0x1a92 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A91 + +0x1a93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a94 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A91 + +0x1a95 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A94 + +0x1a96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A91, This type = 0x1A95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A91, This type = 0x1A95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1a98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1a99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a9a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HospitalState, UDT(0x00003e13) + +0x1a9b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A9A + +0x1a9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A9A, This type = 0x1A9B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1a9d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A9A + +0x1a9e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1A9D + +0x1a9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A9A, This type = 0x1A9E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aa0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A9A, This type = 0x1A9E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1aa1 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Hospital, UDT(0x0000449d) + +0x1aa2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AA1 + +0x1aa3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AA1, This type = 0x1AA2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aa4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AA1 + +0x1aa5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AA4 + +0x1aa6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AA1, This type = 0x1AA5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aa7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AA1, This type = 0x1AA5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1aa8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AA1, This type = 0x1AA2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1aa9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HistoryBook, UDT(0x00001ea5) + +0x1aaa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AA9 + +0x1aab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AA9, This type = 0x1AAA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aac : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AA9 + +0x1aad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AAC + +0x1aae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AA9, This type = 0x1AAD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aaf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AA9, This type = 0x1AAD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ab0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AA9, This type = 0x1AAA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1ab1 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Helicopter, UDT(0x000033da) + +0x1ab2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AB1 + +0x1ab3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ab4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AB1 + +0x1ab5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AB4 + +0x1ab6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AB1, This type = 0x1AB5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ab7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AB1, This type = 0x1AB5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ab8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1ab9 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GifMapEntry, UDT(0x00001d4a) + +0x1aba : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1AB9 + +0x1abb : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GifMap, UDT(0x00003278) + +0x1abc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1ABB + +0x1abd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_32PRCHAR(0470) + +0x1abe : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1ABD + +0x1abf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1ABA, Class type = 0x1ABB, This type = 0x1ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1abe, This adjust = 0 + +0x1ac0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GasStationState, UDT(0x00003d98) + +0x1ac1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AC0 + +0x1ac2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AC0, This type = 0x1AC1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ac3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AC0 + +0x1ac4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AC3 + +0x1ac5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AC0, This type = 0x1AC4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ac6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AC0, This type = 0x1AC4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ac7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GasStation, UDT(0x00001d3c) + +0x1ac8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AC7 + +0x1ac9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AC7, This type = 0x1AC8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aca : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AC7 + +0x1acb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1ACA + +0x1acc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AC7, This type = 0x1ACB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1acd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AC7, This type = 0x1ACB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ace : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AC7, This type = 0x1AC8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1acf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AC7, This type = 0x1AC8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ad0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ElevatorBottom, UDT(0x00001d3a) + +0x1ad1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AD0 + +0x1ad2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AD0, This type = 0x1AD1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ad3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AD0 + +0x1ad4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AD3 + +0x1ad5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AD0, This type = 0x1AD4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ad6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AD0, This type = 0x1AD4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ad7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AD0, This type = 0x1AD1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1ad8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DuneBuggy, UDT(0x00003d93) + +0x1ad9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AD8 + +0x1ada : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AD8, This type = 0x1AD9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1adb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AD8 + +0x1adc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1ADB + +0x1add : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AD8, This type = 0x1ADC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ade : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AD8, This type = 0x1ADC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1adf : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PVOID(0403) + list[1] = T_ULONG(0022) + list[2] = T_32PVOID(0403) + +0x1ae0 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = STD Near + Func attr = none + # Parms = 3, Arg list type = 0x1adf + +0x1ae1 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = CarRace, UDT(0x00003e0d) + +0x1ae2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AE1 + +0x1ae3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AE1, This type = 0x1AE2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ae4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AE1 + +0x1ae5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AE4 + +0x1ae6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AE1, This type = 0x1AE5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ae7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AE1, This type = 0x1AE5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ae8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = BuildingEntity, UDT(0x00001d28) + +0x1ae9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AE8 + +0x1aea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AE8, This type = 0x1AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aeb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1912 + +0x1aec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AEB + +0x1aed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1912, This type = 0x1AEC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1aee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1912, This type = 0x1AEC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1aef : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AE8 + +0x1af0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AEF + +0x1af1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AE8, This type = 0x1AF0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1af2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AE8, This type = 0x1AF0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1af3 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Bike, UDT(0x00003d8c) + +0x1af4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AF3 + +0x1af5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AF3, This type = 0x1AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1af6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AF3 + +0x1af7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AF6 + +0x1af8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AF3, This type = 0x1AF7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1af9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AF3, This type = 0x1AF7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1afa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = BeachHouseEntity, UDT(0x00003d8a) + +0x1afb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AFA + +0x1afc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AFA, This type = 0x1AFB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1afd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = AnimState, UDT(0x00003472) + +0x1afe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1AFD + +0x1aff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AFD, This type = 0x1AFE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b00 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AFD + +0x1b01 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B00 + +0x1b02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AFD, This type = 0x1B01, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AFD, This type = 0x1B01, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b04 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10CA + +0x1b05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10CA, This type = 0x1B04, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b06 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10CA + +0x1b07 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B06 + +0x1b08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x10CA, This type = 0x1B07, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10CA, This type = 0x1B07, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b0a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Ambulance, UDT(0x0000346e) + +0x1b0b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B0A + +0x1b0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B0A, This type = 0x1B0B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b0d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A76 + +0x1b0e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B0D + +0x1b0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A76, This type = 0x1B0E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b10 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A76, This type = 0x1B0E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b11 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B0A + +0x1b12 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B11 + +0x1b13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B0A, This type = 0x1B12, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B0A, This type = 0x1B12, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b15 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act3State, UDT(0x0000326a) + +0x1b16 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B15 + +0x1b17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B15, This type = 0x1B16, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b18 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act3, UDT(0x000033d4) + +0x1b19 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B18 + +0x1b1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B18, This type = 0x1B19, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b1b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B18 + +0x1b1c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B1B + +0x1b1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B18, This type = 0x1B1C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B18, This type = 0x1B1C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b1f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act2PoliceStation, UDT(0x00003d82) + +0x1b20 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B1F + +0x1b21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1B1F, This type = 0x1B20, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1b22 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act2Brick, UDT(0x00001c2a) + +0x1b23 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B22 + +0x1b24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B22, This type = 0x1B23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x1b26 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B22 + +0x1b27 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B26 + +0x1b28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B22, This type = 0x1B27, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b29 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B22, This type = 0x1B27, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1B22, This type = 0x1B23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1B22, This type = 0x1B23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x1b2c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act1State, UDT(0x0000346c) + +0x1b2d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B2C + +0x1b2e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B2C, This type = 0x1B2D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b2f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1893 + +0x1b30 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B2F + +0x1b31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1893, This type = 0x1B30, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1893, This type = 0x1B30, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b33 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B2C + +0x1b34 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B33 + +0x1b35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B2C, This type = 0x1B34, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B2C, This type = 0x1B34, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b37 : Length = 38, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x14A7, name = '_Lockit' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14A7, name = '~_Lockit' + +0x1b38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x1b37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Lockit, UDT(0x00001b38) + +0x1b39 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = '_ptr' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = '_cnt' + list[2] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = '_base' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = '_flag' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 16 + member name = '_file' + list[5] = LF_MEMBER, public, type = T_INT4(0074), offset = 20 + member name = '_charbuf' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = '_bufsiz' + list[7] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 28 + member name = '_tmpfname' + +0x1b3a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x1b39, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _iobuf, UDT(0x00001b3a) + +0x1b3b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1240 + +0x1b3c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x10AD, This type = 0x17A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b3d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10AD + +0x1b3e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1982 + +0x1b3f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1B3E + +0x1b40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B3D, Class type = 0x10AD, This type = 0x17A1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1b3f, This adjust = 0 + +0x1b41 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A3, name = 'MxCore' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17A3, + vfptr offset = 0, name = '~MxCore' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17A4, + vfptr offset = 4, name = 'Notify' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17A2, + vfptr offset = 8, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1984, + vfptr offset = 12, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A28, + vfptr offset = 16, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1B3C, name = 'GetId' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_id' + list[9] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1B40, name = 'operator=' + +0x1b42 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1b41, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = MxCore, UDT(0x00001b42) + +0x1b43 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19D0 + +0x1b44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1864, This type = 0x187E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11cb, This adjust = 0 + +0x1b45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1864, This type = 0x187E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x1b46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1864, This type = 0x187E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1b47 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B43 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1883, name = 'LegoStream' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1883, + vfptr offset = 0, name = '~LegoStream' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B44, + vfptr offset = 4, name = 'Read' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B44, + vfptr offset = 8, name = 'Write' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B45, + vfptr offset = 12, name = 'Tell' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B46, + vfptr offset = 16, name = 'Seek' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x187F, + vfptr offset = 20, name = 'IsWriteMode' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x187F, + vfptr offset = 24, name = 'IsReadMode' + list[9] = LF_NESTTYPE, type = 0x188D, OpenFlags + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x187B, name = 'WriteVariable' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x187D, name = 'ReadVariable' + list[12] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 4 + member name = 'm_mode' + +0x1b48 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x1b47, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 8, class name = LegoStream, UDT(0x00001b48) + +0x1b49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1880, This type = 0x1881, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b4a : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1864, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1882, name = 'LegoMemoryStream' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B49, name = '~LegoMemoryStream' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1884, name = 'Read' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1884, name = 'Write' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1891, name = 'Tell' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1892, name = 'Seek' + list[7] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_buffer' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_offset' + +0x1b4b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1b4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 16, class name = LegoMemoryStream, UDT(0x00001b4b) + +0x1b4c : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1895, name = '~LegoState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B31, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B32, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1896, + vfptr offset = 20, name = 'VTable0x14' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1896, + vfptr offset = 24, name = 'SetFlag' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1899, + vfptr offset = 28, name = 'VTable0x1C' + +0x1b4d : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 8 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + +0x1b4e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1b4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = LegoState, UDT(0x00003304) + +0x1b4f : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B2E, name = 'Act1State' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B35, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B36, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1B2E, name = '~Act1State' + +0x1b50 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1b4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = Act1State, UDT(0x0000346c) + +0x1b51 : Length = 6, Leaf = 0x000a LF_VTSHAPE + Number of entries : 1 + [0]: NEAR + +0x1b52 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1B51 + +0x1b53 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x199A, + vfptr offset = 0, name = '~MxParam' + +0x1b54 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x1b53, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 4, class name = MxParam, UDT(0x00001b54) + +0x1b55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1252, This type = 0x1253, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b56 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x126B, + list[1] = public, VANILLA, 0x125B, + +0x1b57 : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x125E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B55, name = 'MxVariableTable' + list[2] = LF_METHOD, count = 2, list = 0x1B56, name = 'SetVariable' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x126C, name = 'GetVariable' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14C8, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1257, name = 'Compare' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1259, name = 'Hash' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1B55, name = '~MxVariableTable' + +0x1b58 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1b57, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 40, class name = MxVariableTable, UDT(0x00001b58) + +0x1b59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14B4, This type = 0x14D8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1b5a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1273, Class type = 0x14B4, This type = 0x14D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x14B4, This type = 0x14D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b5c : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1B59, name = 'MxAtomIdCounter' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17F8, name = 'Inc' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x17F8, name = 'Dec' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1B5A, name = 'GetKey' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1B5B, name = 'GetValue' + list[5] = LF_MEMBER, private, type = 0x1272, offset = 0 + member name = 'm_key' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 16 + member name = 'm_value' + list[7] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x17F8, name = '~MxAtomIdCounter' + +0x1b5d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1b5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = MxAtomIdCounter, UDT(0x00001b5d) + +0x1b5e : Length = 22, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x17FD, name = 'operator()' + +0x1b5f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x1b5e, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = MxAtomIdCounterCompare, UDT(0x00001b5f) + +0x1b60 : Length = 30, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = '_Red' + list[1] = LF_ENUMERATE, public, value = 1, name = '_Black' + +0x1b61 : Length = 202, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1b60 +NESTED, enum name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Redbl, UDT(0x00001b61) + +0x1b62 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Left' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Parent' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 8 + member name = '_Right' + list[3] = LF_MEMBER, public, type = 0x14B5, offset = 12 + member name = '_Value' + list[4] = LF_MEMBER, public, type = 0x1B61, offset = 16 + member name = '_Color' + +0x1b63 : Length = 206, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1b62, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Node, UDT(0x00001b63) + +0x1b64 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00001c2d) + +0x1b65 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1B64, offset = 0 + +0x1b66 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x1b65, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00001b66) + +0x1b67 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x147A + +0x1b68 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1B61 + +0x1b69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B68, Class type = 0x14A8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x1b6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x14A8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x1b6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B67, Class type = 0x14A8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x1b6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B6, Class type = 0x14A8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x1b6d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x14B5 + +0x1b6e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x14D8 + +0x1b6f : Length = 278, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator,MxAtomIdCounter *,MxAtomIdCounter * + +0x1b70 : Length = 278, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator,MxAtomIdCounter *,MxAtomIdCoun + +0x1b71 : Length = 218, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator,int>, UDT(0x00001bb3) + +0x1b72 : Length = 278, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator,_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator,_Tree, UDT(0x000028a5) + +0x1b79 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B78 + +0x1b7a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1B79 + +0x1b7b : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1B6E + list[1] = 0x1B6E + list[2] = 0x1B77 + list[3] = T_INT4(0074) + list[4] = 0x1B7A + +0x1b7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x1b7b, This adjust = 0 + +0x1b7d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1B77 + list[1] = T_INT4(0074) + list[2] = 0x1B7A + +0x1b7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1b7d, This adjust = 0 + +0x1b7f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B76, + list[1] = public, VANILLA, 0x1B7C, + list[2] = public, VANILLA, 0x1B7E, + +0x1b80 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14A8 + +0x1b81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B80, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1b75, This adjust = 0 + +0x1b82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b84 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B82, + list[1] = public, VANILLA, 0x1B83, + +0x1b85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B70, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6F, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b87 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B85, + list[1] = public, VANILLA, 0x1B86, + +0x1b88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B78, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x17F9, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1b8c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1B6E + list[1] = 0x1B6E + +0x1b8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8c, This adjust = 0 + +0x1b8e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14AB + list[1] = 0x14AB + +0x1b8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8e, This adjust = 0 + +0x1b90 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14AB + list[1] = 0x14D9 + +0x1b91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b90, This adjust = 0 + +0x1b92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B71, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b93 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B8D, + list[1] = public, VANILLA, 0x1B8F, + list[2] = public, VANILLA, 0x1B91, + list[3] = public, VANILLA, 0x1B92, + +0x1b94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b95 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8e, This adjust = 0 + +0x1b96 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B8D, + list[1] = public, VANILLA, 0x1B94, + list[2] = public, VANILLA, 0x1B95, + list[3] = public, VANILLA, 0x14AF, + +0x1b97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14AB, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b99 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B97, + list[1] = public, VANILLA, 0x1B98, + +0x1b9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B73, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B72, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1b9d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1B9B, + list[1] = public, VANILLA, 0x1B9C, + +0x1b9e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1B80 + +0x1b9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1b9e, This adjust = 0 + +0x1ba0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x147A + list[1] = 0x1B61 + +0x1ba1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x147A, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1ba0, This adjust = 0 + +0x1ba2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x147A + list[1] = 0x147A + +0x1ba3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x147A, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1ba2, This adjust = 0 + +0x1ba4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x1BA3, + list[1] = protected, VANILLA, 0x1B76, + +0x1ba5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B67, Class type = 0x14A8, This type = 0x1801, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ba6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B67, Class type = 0x14A8, This type = 0x14A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ba7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x1BA5, + list[1] = protected, VANILLA, 0x1BA6, + +0x1ba8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x147A, Class type = 0x14A8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x14b1, This adjust = 0 + +0x1ba9 : Length = 1638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1B61, _Redbl + list[2] = LF_NESTTYPE, type = 0x1479, _Node + list[3] = LF_NESTTYPE, type = 0x147A, _Nodeptr + list[4] = LF_NESTTYPE, type = 0x1B67, _Nodepref + list[5] = LF_NESTTYPE, type = 0x14D9, _Keyref + list[6] = LF_NESTTYPE, type = 0x1B68, _Rbref + list[7] = LF_NESTTYPE, type = 0x14B6, _Vref + list[8] = LF_ONEMETHOD, protected, STATIC, index = 0x1B69, name = '_Color' + list[9] = LF_ONEMETHOD, protected, STATIC, index = 0x1B6A, name = '_Key' + list[10] = LF_ONEMETHOD, protected, STATIC, index = 0x1B6B, name = '_Left' + list[11] = LF_ONEMETHOD, protected, STATIC, index = 0x1B6B, name = '_Parent' + list[12] = LF_ONEMETHOD, protected, STATIC, index = 0x1B6B, name = '_Right' + list[13] = LF_ONEMETHOD, protected, STATIC, index = 0x1B6C, name = '_Value' + list[14] = LF_NESTTYPE, type = 0x14A8, _Myt + list[15] = LF_NESTTYPE, type = 0x14B5, key_type + list[16] = LF_NESTTYPE, type = 0x14B5, value_type + list[17] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[18] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[19] = LF_NESTTYPE, type = 0x1B6D, _Tptr + list[20] = LF_NESTTYPE, type = 0x1B6E, _Ctptr + list[21] = LF_NESTTYPE, type = 0x14B6, reference + list[22] = LF_NESTTYPE, type = 0x14D9, const_reference + list[23] = LF_NESTTYPE, type = 0x14AB, iterator + list[24] = LF_NESTTYPE, type = 0x14D2, const_iterator + list[25] = LF_NESTTYPE, type = 0x1B6F, reverse_iterator + list[26] = LF_NESTTYPE, type = 0x1B70, const_reverse_iterator + list[27] = LF_NESTTYPE, type = 0x1B71, _Pairib + list[28] = LF_NESTTYPE, type = 0x1B72, _Pairii + list[29] = LF_NESTTYPE, type = 0x1B73, _Paircc + list[30] = LF_METHOD, count = 3, list = 0x1B7F, name = '_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x14AA, name = '~_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1B81, name = 'operator=' + list[33] = LF_METHOD, count = 2, list = 0x1B84, name = 'begin' + list[34] = LF_METHOD, count = 2, list = 0x1B84, name = 'end' + list[35] = LF_METHOD, count = 2, list = 0x1B87, name = 'rbegin' + list[36] = LF_METHOD, count = 2, list = 0x1B87, name = 'rend' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x1B88, name = 'size' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x1B88, name = 'max_size' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1B89, name = 'empty' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x1B8A, name = 'get_allocator' + list[41] = LF_ONEMETHOD, public, VANILLA, index = 0x1B8B, name = 'key_comp' + list[42] = LF_METHOD, count = 4, list = 0x1B93, name = 'insert' + list[43] = LF_METHOD, count = 4, list = 0x1B96, name = 'erase' + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x14AA, name = 'clear' + list[45] = LF_METHOD, count = 2, list = 0x1B99, name = 'find' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x1B9A, name = 'count' + list[47] = LF_METHOD, count = 2, list = 0x1B99, name = 'lower_bound' + list[48] = LF_METHOD, count = 2, list = 0x1B99, name = 'upper_bound' + list[49] = LF_METHOD, count = 2, list = 0x1B9D, name = 'equal_range' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1B9F, name = 'swap' + list[51] = LF_STATICMEMBER, protected, type = 0x147A member name = '_Nil' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1BA1, name = '_Buynode' + list[53] = LF_METHOD, count = 2, list = 0x1BA4, name = '_Copy' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x14C4, name = '_Erase' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x14C4, name = '_Freenode' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x14AA, name = '_Init' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x17FF, name = '_Insert' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x1803, name = '_Lbound' + list[59] = LF_METHOD, count = 2, list = 0x1BA7, name = '_Lmost' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x14C4, name = '_Lrotate' + list[61] = LF_ONEMETHOD, protected, STATIC, index = 0x1BA8, name = '_Max' + list[62] = LF_ONEMETHOD, protected, STATIC, index = 0x1BA8, name = '_Min' + list[63] = LF_METHOD, count = 2, list = 0x1BA7, name = '_Rmost' + list[64] = LF_METHOD, count = 2, list = 0x1BA7, name = '_Root' + list[65] = LF_ONEMETHOD, protected, VANILLA, index = 0x14C4, name = '_Rrotate' + list[66] = LF_ONEMETHOD, protected, VANILLA, index = 0x1803, name = '_Ubound' + list[67] = LF_MEMBER, protected, type = 0x1B78, offset = 0 + member name = 'allocator' + list[68] = LF_MEMBER, protected, type = 0x17F9, offset = 1 + member name = 'key_compare' + list[69] = LF_MEMBER, protected, type = 0x147A, offset = 4 + member name = '_Head' + list[70] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = '_Multi' + list[71] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = '_Size' + +0x1baa : Length = 198, Leaf = 0x1504 LF_CLASS + # members = 92, field list type 0x1ba9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >, UDT(0x00001baa) + +0x1bab : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B71 + +0x1bac : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_INT4(0074) + +0x1bad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1BAC + +0x1bae : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14BE + list[1] = 0x1BAD + +0x1baf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B71, This type = 0x1BAB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1bae, This adjust = 0 + +0x1bb0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B71, This type = 0x1BAB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bb1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BAF, + list[1] = public, VANILLA, 0x1BB0, + +0x1bb2 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14AB, first_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), second_type + list[2] = LF_METHOD, count = 2, list = 0x1BB1, name = 'pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator,int>' + list[3] = LF_MEMBER, public, type = 0x14AB, offset = 0 + member name = 'first' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + +0x1bb3 : Length = 218, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x1bb2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator,int>, UDT(0x00001bb3) + +0x1bb4 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = set >::_Kfn, UDT(0x00002895) + +0x1bb5 : Length = 226, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator,int>, UDT(0x00001be6) + +0x1bb6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x14C5 + +0x1bb7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1BB6 + +0x1bb8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1BB7 + +0x1bb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bb8, This adjust = 0 + +0x1bba : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1B6E + list[1] = 0x1B6E + list[2] = 0x1B77 + list[3] = 0x1B7A + +0x1bbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1bba, This adjust = 0 + +0x1bbc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1B77 + list[1] = 0x1B7A + +0x1bbd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1bbc, This adjust = 0 + +0x1bbe : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BB9, + list[1] = public, VANILLA, 0x1BBB, + list[2] = public, VANILLA, 0x1BBD, + +0x1bbf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1BB6 + +0x1bc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B70, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B78, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bc5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8c, This adjust = 0 + +0x1bc6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14D2 + list[1] = 0x14D9 + +0x1bc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1bc6, This adjust = 0 + +0x1bc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BB5, Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1bc9 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BC5, + list[1] = public, VANILLA, 0x1BC7, + list[2] = public, VANILLA, 0x1BC8, + +0x1bca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1bcb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14D2 + list[1] = 0x14D2 + +0x1bcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1bcb, This adjust = 0 + +0x1bcd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14D2 + +0x1bce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bcd, This adjust = 0 + +0x1bcf : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BCA, + list[1] = public, VANILLA, 0x1BCC, + list[2] = public, VANILLA, 0x1BCE, + +0x1bd0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14C5 + +0x1bd1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1BD0 + +0x1bd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C5, This type = 0x14C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bd1, This adjust = 0 + +0x1bd3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x17F9, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D2, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1bd5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1bd6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B73, Class type = 0x14C5, This type = 0x1BBF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x1bd7 : Length = 930, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14C5, _Myt + list[1] = LF_NESTTYPE, type = 0x14B5, _TYPE + list[2] = LF_NESTTYPE, type = 0x14B5, value_type + list[3] = LF_NESTTYPE, type = 0x1BB4, _Kfn + list[4] = LF_NESTTYPE, type = 0x17F9, value_compare + list[5] = LF_NESTTYPE, type = 0x14B5, key_type + list[6] = LF_NESTTYPE, type = 0x17F9, key_compare + list[7] = LF_NESTTYPE, type = 0x1B78, allocator_type + list[8] = LF_NESTTYPE, type = 0x14A8, _Imp + list[9] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[10] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[11] = LF_NESTTYPE, type = 0x14D9, reference + list[12] = LF_NESTTYPE, type = 0x14D9, const_reference + list[13] = LF_NESTTYPE, type = 0x14D2, iterator + list[14] = LF_NESTTYPE, type = 0x14D2, const_iterator + list[15] = LF_NESTTYPE, type = 0x1B70, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x1B70, const_reverse_iterator + list[17] = LF_NESTTYPE, type = 0x1BB5, _Pairib + list[18] = LF_NESTTYPE, type = 0x1B73, _Paircc + list[19] = LF_METHOD, count = 2, list = 0x1BBE, name = 'set >' + list[20] = LF_NESTTYPE, type = 0x1B6E, _It + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC0, name = 'begin' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC0, name = 'end' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC1, name = 'rbegin' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC1, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC2, name = 'size' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC2, name = 'max_size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC3, name = 'empty' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1BC4, name = 'get_allocator' + list[29] = LF_METHOD, count = 3, list = 0x1BC9, name = 'insert' + list[30] = LF_METHOD, count = 3, list = 0x1BCF, name = 'erase' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x14C7, name = 'clear' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD2, name = 'swap' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD3, name = 'key_comp' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD3, name = 'value_comp' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD4, name = 'find' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD5, name = 'count' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD4, name = 'lower_bound' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD4, name = 'upper_bound' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1BD6, name = 'equal_range' + list[40] = LF_MEMBER, protected, type = 0x14A8, offset = 0 + member name = '_Tr' + list[41] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x14C7, name = '~set >' + +0x1bd8 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x1bd7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = set >, UDT(0x00001bd8) + +0x1bd9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1B77 + +0x1bda : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14CF, This type = 0x14D0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bd9, This adjust = 0 + +0x1bdb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x14CF + +0x1bdc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1BDB + +0x1bdd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14CF, This type = 0x14D0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bdc, This adjust = 0 + +0x1bde : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x14C5, offset = 0 + list[1] = LF_NESTTYPE, type = 0x14CF, _Myt + list[2] = LF_NESTTYPE, type = 0x1B78, _A + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1BDA, name = 'Set' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1BDD, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x14D1, name = '~Set' + +0x1bdf : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1bde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Set, UDT(0x00001bdf) + +0x1be0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1BB5 + +0x1be1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x14E1 + list[1] = 0x1BAD + +0x1be2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1BB5, This type = 0x1BE0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1be1, This adjust = 0 + +0x1be3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1BB5, This type = 0x1BE0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1be4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BE2, + list[1] = public, VANILLA, 0x1BE3, + +0x1be5 : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14D2, first_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), second_type + list[2] = LF_METHOD, count = 2, list = 0x1BE4, name = 'pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator,int>' + list[3] = LF_MEMBER, public, type = 0x14D2, offset = 0 + member name = 'first' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + +0x1be6 : Length = 226, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x1be5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = pair<_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::const_iterator,int>, UDT(0x00001be6) + +0x1be7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13B3, Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1be8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1be9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1bea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19d7, This adjust = 0 + +0x1beb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x104E + +0x1bec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1beb, This adjust = 0 + +0x1bed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x104E, Class type = 0x1082, This type = 0x168F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bee : Length = 630, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'unk14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[23] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk14' + list[25] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[27] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[28] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk24' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk28' + +0x1bef : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 9 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR + +0x1bf0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x1bee, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x1bf1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x149B, This type = 0x15EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x1bf2 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x1BF1, vfptr offset = 20 + list[1] = public, INTRODUCING VIRTUAL, 0x15EC, vfptr offset = 20 + +0x1bf3 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15ED, name = 'MxEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15ED, name = '~MxEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F0, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F1, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x1BF2, name = 'Create' + list[6] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_mxEntityId' + list[7] = LF_MEMBER, protected, type = 0x1064, offset = 12 + member name = 'm_atom' + +0x1bf4 : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 6 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + +0x1bf5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1bf3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxEntity, UDT(0x00001bf5) + +0x1bf6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x114F + +0x1bf7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x114F, This type = 0x1BF6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x1bf8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x114F, This type = 0x1BF6, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x1bf9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x114F, This type = 0x1BF6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1bfa : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BF7, + list[1] = public, VANILLA, 0x1BF8, + list[2] = public, VANILLA, 0x1BF9, + +0x1bfb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x114F, This type = 0x1BF6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1bfc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x101C + +0x1bfd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1150 + +0x1bfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BFC, Class type = 0x114F, This type = 0x1BFD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1bff : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1BFB, + list[1] = public, VANILLA, 0x1BFE, + +0x1c00 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1121, offset = 0 + member name = 'elements' + list[1] = LF_METHOD, count = 3, list = 0x1BFA, name = 'Vector3' + list[2] = LF_METHOD, count = 2, list = 0x1BFF, name = 'operator[]' + +0x1c01 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1c00, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Vector3, UDT(0x00001c01) + +0x1c02 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 29 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR + +0x1c03 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1C02 + +0x1c04 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10EA, vfptr offset = 40 + list[1] = public, INTRODUCING VIRTUAL, 0x10E9, vfptr offset = 40 + +0x1c05 : Length = 50, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E8, vfptr offset = 60 + list[1] = public, INTRODUCING VIRTUAL, 0x10EE, vfptr offset = 60 + list[2] = public, INTRODUCING VIRTUAL, 0x10F0, vfptr offset = 60 + list[3] = public, INTRODUCING VIRTUAL, 0x10F2, vfptr offset = 60 + +0x1c06 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 76 + list[1] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 76 + +0x1c07 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 88 + list[1] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 88 + +0x1c08 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 100 + list[1] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 100 + +0x1c09 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 112 + list[1] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 112 + +0x1c0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BFC, Class type = 0x10DF, This type = 0x10E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1c0b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1c0c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1C0A, + list[1] = public, VANILLA, 0x1C0B, + +0x1c0d : Length = 546, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1C03 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x10E2, name = 'Vector2Impl' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E4, + vfptr offset = 0, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 4, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 8, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 12, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 16, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 20, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E8, + vfptr offset = 24, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 28, name = 'SetData' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 32, name = 'EqualsImpl' + list[11] = LF_METHOD, count = 2, list = 0x1C04, name = 'GetData' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10EB, + vfptr offset = 44, name = 'Clear' + list[13] = LF_METHOD, count = 4, list = 0x1C05, name = 'Dot' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F3, + vfptr offset = 64, name = 'LenSquared' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F4, + vfptr offset = 68, name = 'Unitize' + list[16] = LF_METHOD, count = 2, list = 0x1C06, name = 'AddVector' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E4, + vfptr offset = 80, name = 'AddScalar' + list[18] = LF_METHOD, count = 2, list = 0x1C07, name = 'SubVector' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 92, name = 'MullScalar' + list[20] = LF_METHOD, count = 2, list = 0x1C08, name = 'MullVector' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 104, name = 'DivScalar' + list[22] = LF_METHOD, count = 2, list = 0x1C09, name = 'SetVector' + list[23] = LF_METHOD, count = 2, list = 0x1C0C, name = 'operator[]' + list[24] = LF_MEMBER, protected, type = T_32PREAL32(0440), offset = 4 + member name = 'm_data' + +0x1c0e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x1c0d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c02 + Size = 8, class name = Vector2Impl, UDT(0x000033c2) + +0x1c0f : Length = 38, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10FC, vfptr offset = 128 + list[1] = public, INTRODUCING VIRTUAL, 0x10FE, vfptr offset = 128 + list[2] = public, INTRODUCING VIRTUAL, 0x1100, vfptr offset = 128 + +0x1c10 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10DF, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1111, name = 'Vector3Impl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1112, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1115, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'EqualsImpl' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1116, name = 'Clear' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1117, name = 'LenSquared' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F9, + vfptr offset = 116, name = 'EqualsCrossImpl' + list[13] = LF_METHOD, count = 3, list = 0x1C0F, name = 'EqualsCross' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1111, + vfptr offset = 132, name = 'EqualsScalar' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1112, name = 'Fill' + +0x1c11 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 34 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + +0x1c12 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x1c10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 8, class name = Vector3Impl, UDT(0x000033a5) + +0x1c13 : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10F7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1103, name = 'Vector4Impl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1104, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1107, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'EqualsImpl' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x110C, name = 'Clear' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x110D, name = 'LenSquared' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'EqualsScalar' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x110B, + vfptr offset = 136, name = 'SetMatrixProduct' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1108, + vfptr offset = 140, name = 'SetMatrixProductImpl' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x110E, + vfptr offset = 144, name = 'NormalizeQuaternion' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1110, + vfptr offset = 148, name = 'UnknownQuaternionOp' + +0x1c14 : Length = 26, Leaf = 0x000a LF_VTSHAPE + Number of entries : 38 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + +0x1c15 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1c13, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c14 + Size = 8, class name = Vector4Impl, UDT(0x0000345a) + +0x1c16 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x10AB + +0x1c17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10A9, This type = 0x181D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c16, This adjust = 0 + +0x1c18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10A9, This type = 0x181D, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x1c19 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1C17, + list[1] = public, VANILLA, 0x1C18, + list[2] = public, VANILLA, 0x181E, + +0x1c1a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10A9 + +0x1c1b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C1A + +0x1c1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10A9, This type = 0x181D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c1b, This adjust = 0 + +0x1c1d : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10F7, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1C19, name = 'Vector3Data' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1C1C, name = 'CopyFrom' + list[3] = LF_MEMBER, private, type = 0x114F, offset = 8 + member name = 'm_vector' + +0x1c1e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c1d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 20, class name = Vector3Data, UDT(0x0000339d) + +0x1c1f : Length = 762, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x149B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'LegoEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19F3, name = '~LegoEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19FC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AEE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F8, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 28, name = 'Destroy' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FB, + vfptr offset = 32, name = 'ParseAction' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FA, + vfptr offset = 36, name = 'SetROI' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F7, + vfptr offset = 40, name = 'SetWorldTransform' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 44, name = 'ResetWorldTransform' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B25, + vfptr offset = 48, name = 'SetWorldSpeed' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 56, name = 'VTable0x38' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 60, name = 'VTable0x3c' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 64, name = 'VTable0x40' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 72, name = 'VTable0x48' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 76, name = 'VTable0x4c' + list[20] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'Init' + list[21] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'SetWorld' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk10' + list[23] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 17 + member name = 'm_unk11' + list[24] = LF_MEMBER, protected, type = 0x10A9, offset = 20 + member name = 'm_worldLocation' + list[25] = LF_MEMBER, protected, type = 0x10A9, offset = 40 + member name = 'm_worldDirection' + list[26] = LF_MEMBER, protected, type = 0x10A9, offset = 60 + member name = 'm_worldUp' + list[27] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 80 + member name = 'm_worldSpeed' + list[28] = LF_MEMBER, protected, type = 0x1910, offset = 84 + member name = 'm_roi' + list[29] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 88 + member name = 'm_cameraFlag' + list[30] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 89 + member name = 'm_unk59' + list[31] = LF_MEMBER, protected, type = 0x1050, offset = 92 + member name = 'm_actionType' + list[32] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 96 + member name = 'm_actionArgString' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 100 + member name = 'm_actionArgNumber' + +0x1c20 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 20 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + +0x1c21 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x1c1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +0x1c22 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18E6, name = 'LegoActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A57, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A58, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A51, + vfptr offset = 80, name = 'VTable0x50' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A52, + vfptr offset = 84, name = 'VTable0x54' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A52, + vfptr offset = 88, name = 'VTable0x58' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A51, + vfptr offset = 92, name = 'VTable0x5c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A53, + vfptr offset = 96, name = 'VTable0x60' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A54, + vfptr offset = 100, name = 'VTable0x64' + list[10] = LF_MEMBER, private, type = T_REAL32(0040), offset = 104 + member name = 'm_unk68' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk6c' + list[12] = LF_MEMBER, private, type = T_REAL32(0040), offset = 112 + member name = 'm_unk70' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 116 + member name = 'm_unk74' + list[14] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x18E6, name = '~LegoActor' + +0x1c23 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 26 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + +0x1c24 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1c22, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = LegoActor, UDT(0x00003258) + +0x1c25 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 196 + Name = + +0x1c26 : Length = 830, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18E4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18DF, name = 'LegoPathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DF, name = '~LegoPathActor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 104, name = 'VTable0x68' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 108, name = 'VTable0x6c' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 112, name = 'VTable0x70' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 116, name = 'VTable0x74' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 120, name = 'VTable0x78' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 124, name = 'VTable0x7c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 128, name = 'VTable0x80' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 132, name = 'VTable0x84' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 136, name = 'VTable0x88' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 140, name = 'VTable0x8c' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 144, name = 'VTable0x90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 148, name = 'VTable0x94' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 152, name = 'VTable0x98' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 156, name = 'VTable0x9c' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 160, name = 'VTable0xa0' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 164, name = 'VTable0xa4' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 168, name = 'VTable0xa8' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 172, name = 'VTable0xac' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 176, name = 'VTable0xb0' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 180, name = 'VTable0xb4' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 184, name = 'VTable0xb8' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 188, name = 'VTable0xbc' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 192, name = 'VTable0xc0' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 196, name = 'VTable0xc4' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 200, name = 'VTable0xc8' + list[30] = LF_MEMBER, protected, type = 0x1C25, offset = 120 + member name = 'unk78' + list[31] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 316 + member name = 'm_unk13c' + list[32] = LF_MEMBER, protected, type = T_INT4(0074), offset = 320 + member name = 'm_unk140' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 324 + member name = 'm_unk144' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 328 + member name = 'm_unk148' + list[35] = LF_MEMBER, protected, type = T_INT4(0074), offset = 332 + member name = 'm_unk14c' + list[36] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 336 + member name = 'm_unk150' + +0x1c27 : Length = 30, Leaf = 0x000a LF_VTSHAPE + Number of entries : 51 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR32 + [39]: NEAR32 + [40]: NEAR32 + [41]: NEAR32 + [42]: NEAR32 + [43]: NEAR32 + [44]: NEAR32 + [45]: NEAR32 + [46]: NEAR32 + [47]: NEAR32 + [48]: NEAR32 + [49]: NEAR32 + [50]: NEAR + +0x1c28 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x1c26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +0x1c29 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B24, name = 'Act2Brick' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B24, name = '~Act2Brick' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B2B, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B2A, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B28, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B29, name = 'IsA' + +0x1c2a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1c29, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = Act2Brick, UDT(0x00001c2a) + +0x1c2b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = bidirectional_iterator_tag, UDT(0x0000288a) + +0x1c2c : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x14B5, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x1c2d : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x1c2c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00001c2d) + +0x1c2e : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + +0x1c2f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c2e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = LegoROI, UDT(0x00004493) + +0x1c30 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B1F + +0x1c31 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1C30 + +0x1c32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B1F, This type = 0x1C31, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B1F, This type = 0x1C31, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1c34 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B21, name = 'Notify' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1C32, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1C33, name = 'IsA' + +0x1c35 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1c34, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = Act2PoliceStation, UDT(0x00003d82) + +0x1c36 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A19, name = 'LegoCameraController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A19, name = '~LegoCameraController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A1C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A1D, name = 'IsA' + +0x1c37 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c36, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoCameraController, UDT(0x000033cd) + +0x1c38 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18D7, name = 'LegoPathController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D7, name = '~LegoPathController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DC, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DA, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DB, name = 'IsA' + +0x1c39 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1c38, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoPathController, UDT(0x00001c39) + +0x1c3a : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x182A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x182F, name = 'LegoPathControllerList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D4, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18D5, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x182F, name = '~LegoPathControllerList' + +0x1c3b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c3a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoPathControllerList, UDT(0x000035e0) + +0x1c3c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1824 + +0x1c3d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1C3C + +0x1c3e : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1821, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1821, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1825, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1827, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x1C3D, offset = 12 + member name = 'm_customDestructor' + +0x1c3f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1c3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035e3) + +0x1c40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1824, This adjust = 0 + +0x1c41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c42 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C3D + +0x1c43 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c42, This adjust = 0 + +0x1c44 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00001c95) + +0x1c45 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1C44 + +0x1c46 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C45 + +0x1c47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c46, This adjust = 0 + +0x1c48 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1823 + list[1] = 0x1C45 + list[2] = 0x1C45 + +0x1c49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C45, Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1c48, This adjust = 0 + +0x1c4a : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C43, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = '_InsertEntry' + +0x1c4b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1c4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x1c4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182A, This type = 0x182B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c42, This adjust = 0 + +0x1c4d : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x182D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1C4C, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x182C, name = '~MxPtrList' + +0x1c4e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1c4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035e8) + +0x1c4f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1448 + +0x1c50 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1C4F + +0x1c51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1481, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1484, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1287, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12C0, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x148B, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x148D, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x148F, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1491, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c5a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1494, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1497, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1489, Class type = 0x1448, This type = 0x1C50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c5d : Length = 1290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x14E9, name = 'DestroyInstance' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetCD' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetHD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14E8, name = 'GetInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x14ED, name = 'IsSound3D' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetCD' + list[7] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetHD' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x14EE, name = 'SetSound3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x149A, name = 'MxOmni' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x149A, name = '~MxOmni' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14EA, name = 'Notify' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 20, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A4, + vfptr offset = 24, name = 'Create' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 28, name = 'Destroy' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E6, + vfptr offset = 32, name = 'Start' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E7, + vfptr offset = 36, name = 'DeleteObject' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14EF, + vfptr offset = 40, name = 'DoesEntityExist' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 44, name = 'Vtable0x2c' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149E, + vfptr offset = 48, name = 'FindWorld' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A0, + vfptr offset = 52, name = 'NotifyCurrentEntity' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 56, name = 'StartTimer' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 60, name = 'StopTimer' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x147F, + vfptr offset = 64, name = 'IsTimerRunning' + list[24] = LF_ONEMETHOD, public, STATIC, index = 0x14A1, name = 'SetInstance' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1C51, name = 'GetWindowHandle' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C52, name = 'GetObjectFactory' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C53, name = 'GetNotificationManager' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C54, name = 'GetTickleManager' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C55, name = 'GetTimer' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C56, name = 'GetStreamer' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1C57, name = 'GetSoundManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1C58, name = 'GetVideoManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1C59, name = 'GetVariableTable' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5A, name = 'GetMusicManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5B, name = 'GetEventManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5C, name = 'GetAtomIdCounterSet' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x14EA, name = 'HandleNotificationType2' + list[38] = LF_STATICMEMBER, protected, type = 0x1449 member name = 'g_instance' + list[39] = LF_MEMBER, protected, type = 0x1272, offset = 8 + member name = 'm_mediaPath' + list[40] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 24 + member name = 'm_windowHandle' + list[41] = LF_MEMBER, protected, type = 0x1481, offset = 28 + member name = 'm_objectFactory' + list[42] = LF_MEMBER, protected, type = 0x1491, offset = 32 + member name = 'm_variableTable' + list[43] = LF_MEMBER, protected, type = 0x1287, offset = 36 + member name = 'm_tickleManager' + list[44] = LF_MEMBER, protected, type = 0x1484, offset = 40 + member name = 'm_notificationManager' + list[45] = LF_MEMBER, protected, type = 0x148F, offset = 44 + member name = 'm_videoManager' + list[46] = LF_MEMBER, protected, type = 0x148D, offset = 48 + member name = 'm_soundManager' + list[47] = LF_MEMBER, protected, type = 0x1494, offset = 52 + member name = 'm_musicManager' + list[48] = LF_MEMBER, protected, type = 0x1497, offset = 56 + member name = 'm_eventManager' + list[49] = LF_MEMBER, protected, type = 0x12C0, offset = 60 + member name = 'm_timer' + list[50] = LF_MEMBER, protected, type = 0x148B, offset = 64 + member name = 'm_streamer' + list[51] = LF_MEMBER, protected, type = 0x1489, offset = 68 + member name = 'm_atomIdCounterSet' + list[52] = LF_MEMBER, protected, type = 0x11D9, offset = 72 + member name = 'm_criticalsection' + list[53] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 100 + member name = 'm_timerRunning' + +0x1c5e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x1c5d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +0x1c5f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1200 + +0x1c60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1200, This type = 0x1C5F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1c61 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1200, This type = 0x1C5F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c62 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1C60, + list[1] = public, VANILLA, 0x1C61, + +0x1c63 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1C62, name = 'MxPoint32' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x1c64 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1c63, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x1c65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1242, This type = 0x1A31, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1200, Class type = 0x1242, This type = 0x1A31, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1242, This type = 0x1A31, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c68 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x17AC + +0x1c69 : Length = 958, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1441, TickleState + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x143E, name = 'MxPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143E, name = '~MxPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143F, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A32, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A33, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 20, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 24, name = 'ReadyTickle' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 28, name = 'StartingTickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 32, name = 'StreamingTickle' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 36, name = 'RepeatingTickle' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 40, name = 'Unk5Tickle' + list[13] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 44, name = 'DoneTickle' + list[14] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 48, name = 'ParseExtra' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 52, name = 'AddToManager' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 56, name = 'Destroy' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1447, + vfptr offset = 60, name = 'StartAction' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 64, name = 'EndAction' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1443, + vfptr offset = 68, name = 'SetTickleState' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1444, + vfptr offset = 72, name = 'HasTickleStatePassed' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 76, name = 'PutData' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1445, + vfptr offset = 80, name = 'IsHit' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x144C, + vfptr offset = 84, name = 'Enable' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1450, name = 'IsEnabled' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetCurrentTickleState' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C66, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetLocationX' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetLocationY' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetDisplayZ' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C67, name = 'GetAction' + list[31] = LF_ONEMETHOD, protected, VANILLA, index = 0x143E, name = 'Init' + list[32] = LF_ONEMETHOD, protected, VANILLA, index = 0x144B, name = 'SendToCompositePresenter' + list[33] = LF_MEMBER, protected, type = 0x1441, offset = 8 + member name = 'm_currentTickleState' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_previousTickleStates' + list[35] = LF_MEMBER, protected, type = 0x1200, offset = 16 + member name = 'm_location' + list[36] = LF_MEMBER, protected, type = T_INT4(0074), offset = 24 + member name = 'm_displayZ' + list[37] = LF_MEMBER, protected, type = 0x109C, offset = 28 + member name = 'm_action' + list[38] = LF_MEMBER, protected, type = 0x11D9, offset = 32 + member name = 'm_criticalSection' + list[39] = LF_MEMBER, protected, type = 0x1C68, offset = 60 + member name = 'm_compositePresenter' + +0x1c6a : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 22 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + +0x1c6b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x1c69, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +0x1c6c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1833 + +0x1c6d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1C6C + +0x1c6e : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1832, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1832, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1834, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1835, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x1C6D, offset = 12 + member name = 'm_customDestructor' + +0x1c6f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1c6e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035eb) + +0x1c70 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x1c71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c72 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C6D + +0x1c73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c72, This adjust = 0 + +0x1c74 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00001ca1) + +0x1c75 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1C74 + +0x1c76 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C75 + +0x1c77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c76, This adjust = 0 + +0x1c78 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1243 + list[1] = 0x1C75 + list[2] = 0x1C75 + +0x1c79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C75, Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1c78, This adjust = 0 + +0x1c7a : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C73, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = '_InsertEntry' + +0x1c7b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1c7a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x1c7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1837, This type = 0x1838, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c72, This adjust = 0 + +0x1c7d : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x123B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1C7C, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1839, name = '~MxPtrList' + +0x1c7e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1c7d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035f1) + +0x1c7f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 28 + Name = + +0x1c80 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 38 + Name = + +0x1c81 : Length = 486, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1843, name = 'EndAction' + list[15] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[16] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[18] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk9c' + list[19] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[20] = LF_MEMBER, protected, type = 0x1C80, offset = 208 + member name = 'm_unkd0' + list[21] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unkf6' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unkf7' + +0x1c82 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 27 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR + +0x1c83 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x1c81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x1c84 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x149C + +0x1c85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B18, This type = 0x1B19, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c84, This adjust = 0 + +0x1c86 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 16660 + Name = + +0x1c87 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 100 + Name = + +0x1c88 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B1A, name = 'Act3' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1A, name = '~Act3' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1D, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1E, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C85, name = 'SetUnkown420c' + list[6] = LF_MEMBER, protected, type = 0x1C86, offset = 248 + member name = 'm_unkf8' + list[7] = LF_MEMBER, protected, type = 0x149C, offset = 16908 + member name = 'm_unk420c' + list[8] = LF_MEMBER, protected, type = 0x1C87, offset = 16912 + member name = 'm_unk4210' + +0x1c89 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1c88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +0x1c8a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1C44 + +0x1c8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1c48, This adjust = 0 + +0x1c8c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1823 + list[1] = 0x1C45 + +0x1c8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1c8c, This adjust = 0 + +0x1c8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c8f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1C8B, + list[1] = public, VANILLA, 0x1C8D, + list[2] = public, VANILLA, 0x1C8E, + +0x1c90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1823, Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C45, Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1824, This adjust = 0 + +0x1c93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C44, This type = 0x1C8A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c46, This adjust = 0 + +0x1c94 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1C8F, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1C90, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1C91, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C91, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1C92, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C93, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C93, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x1823, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x1C45, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x1C45, offset = 8 + member name = 'm_next' + +0x1c95 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00001c95) + +0x1c96 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1C74 + +0x1c97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1c78, This adjust = 0 + +0x1c98 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1243 + list[1] = 0x1C75 + +0x1c99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1c98, This adjust = 0 + +0x1c9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c9b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1C97, + list[1] = public, VANILLA, 0x1C99, + list[2] = public, VANILLA, 0x1C9A, + +0x1c9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1243, Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C75, Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1c9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x1c9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1C74, This type = 0x1C96, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c76, This adjust = 0 + +0x1ca0 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1C9B, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9C, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9D, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9D, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9E, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9F, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C9F, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x1243, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x1C75, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x1C75, offset = 8 + member name = 'm_next' + +0x1ca1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1ca0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00001ca1) + +0x1ca2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1361, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ca3 : Length = 594, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'vtable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'vtable0x1C' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'vtable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138F, + vfptr offset = 36, name = 'vtable0x24' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'vtable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'vtable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138F, + vfptr offset = 48, name = 'vtable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[17] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[18] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'atom' + list[19] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[20] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk2c' + list[21] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[22] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unkList0x3c' + list[23] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[24] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unkList0x54' + list[25] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x1ca4 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 13 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR + +0x1ca5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 26, field list type 0x1ca3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x1ca6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _RTL_CRITICAL_SECTION, UDT(0x00001cb1) + +0x1ca7 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x179D, name = 'MxCriticalSection' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x179D, name = '~MxCriticalSection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x17A0, name = 'SetDoMutex' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x179D, name = 'Enter' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179D, name = 'Leave' + list[5] = LF_MEMBER, private, type = 0x1CA6, offset = 0 + member name = 'm_criticalSection' + list[6] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 24 + member name = 'm_mutex' + +0x1ca8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1ca7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 28, class name = MxCriticalSection, UDT(0x00001ca8) + +0x1ca9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxUnkList, UDT(0x00001fb9) + +0x1caa : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AF, + vfptr offset = 88, name = 'VTable0x58' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AF, + vfptr offset = 92, name = 'VTable0x5c' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17B4, + vfptr offset = 96, name = 'VTable0x60' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[9] = LF_MEMBER, private, type = 0x1CA9, offset = 64 + member name = 'm_list' + +0x1cab : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1caa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x1cac : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1837, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143C, name = 'Compare' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x183E, name = 'MxPresenterList' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x183E, name = '~MxPresenterList' + +0x1cad : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1cac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPresenterList, UDT(0x000035f4) + +0x1cae : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _RTL_CRITICAL_SECTION_DEBUG, UDT(0x00001d0f) + +0x1caf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CAE + +0x1cb0 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1CAF, offset = 0 + member name = 'DebugInfo' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'LockCount' + list[2] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'RecursionCount' + list[3] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 12 + member name = 'OwningThread' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 16 + member name = 'LockSemaphore' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'Reserved' + +0x1cb1 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x1cb0, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _RTL_CRITICAL_SECTION, UDT(0x00001cb1) + +0x1cb2 : Length = 6, Leaf = 0x000a LF_VTSHAPE + Number of entries : 3 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR + +0x1cb3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CB2 + +0x1cb4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x176F + +0x1cb5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1761 + +0x1cb6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1CB5 + +0x1cb7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1CB6 + list[1] = 0x1714 + +0x1cb8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x176F, This type = 0x1CB4, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1cb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x176F, This type = 0x1CB4, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cba : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1CB3 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1CB8, + vfptr offset = 0, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1CB9, + vfptr offset = 4, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1CB9, + vfptr offset = 8, name = 'Release' + +0x1cbb : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x1cba, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = IUnknown, UDT(0x00001cbb) + +0x1cbc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1468 + +0x1cbd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CBC, Class type = 0x1464, This type = 0x1465, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cbe : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1464 + +0x1cbf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1CBE + +0x1cc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12CC, Class type = 0x1464, This type = 0x1CBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cc1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : T_VOID(0003) + +0x1cc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CC1, Class type = 0x1464, This type = 0x1CBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x122E, Class type = 0x1464, This type = 0x1CBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1229, Class type = 0x1464, This type = 0x1465, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cc5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1CC3, + list[1] = public, VANILLA, 0x1CC4, + +0x1cc6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1464, This type = 0x1465, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cc7 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10B6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x146A, name = 'MxOmniCreateParam' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1CBD, name = 'CreateFlags' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1CC0, name = 'GetMediaPath' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1CC2, name = 'GetWindowHandle' + list[5] = LF_METHOD, count = 2, list = 0x1CC5, name = 'GetVideoParam' + list[6] = LF_MEMBER, private, type = 0x1272, offset = 4 + member name = 'm_mediaPath' + list[7] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 20 + member name = 'm_windowHandle' + list[8] = LF_MEMBER, private, type = 0x1220, offset = 24 + member name = 'm_videoParam' + list[9] = LF_MEMBER, private, type = 0x1468, offset = 60 + member name = 'm_createFlags' + list[10] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1CC6, name = '~MxOmniCreateParam' + +0x1cc8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1cc7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 64, class name = MxOmniCreateParam, UDT(0x00001cc8) + +0x1cc9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1354 + +0x1cca : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1CC9 + +0x1ccb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1CCA + +0x1ccc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1354, This type = 0x150D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ccb, This adjust = 0 + +0x1ccd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1059 + list[1] = 0x10AE + +0x1cce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1354, This type = 0x150D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1ccd, This adjust = 0 + +0x1ccf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1CCC, + list[1] = public, VANILLA, 0x1CCE, + +0x1cd0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1CC9 + +0x1cd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1059, Class type = 0x1354, This type = 0x1CD0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x1354, This type = 0x1CD0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cd3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1354 + +0x1cd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CD3, Class type = 0x1354, This type = 0x150D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ccb, This adjust = 0 + +0x1cd5 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10B6, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1CCF, name = 'MxNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1998, name = '~MxNotificationParam' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x150E, + vfptr offset = 4, name = 'Clone' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD1, name = 'GetNotification' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD2, name = 'GetSender' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD1, name = 'GetType' + list[7] = LF_MEMBER, protected, type = 0x1059, offset = 4 + member name = 'm_type' + list[8] = LF_MEMBER, protected, type = 0x10AE, offset = 8 + member name = 'm_sender' + list[9] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1CD4, name = 'operator=' + +0x1cd6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1cd5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x135e + Size = 12, class name = MxNotificationParam, UDT(0x00001cd6) + +0x1cd7 : Length = 538, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14F3, name = 'MxObjectFactory' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1947, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1948, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14F4, + vfptr offset = 20, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x150C, + vfptr offset = 24, name = 'Destroy' + list[6] = LF_MEMBER, private, type = 0x1064, offset = 8 + member name = 'm_idMxPresenter' + list[7] = LF_MEMBER, private, type = 0x1064, offset = 12 + member name = 'm_idMxCompositePresenter' + list[8] = LF_MEMBER, private, type = 0x1064, offset = 16 + member name = 'm_idMxVideoPresenter' + list[9] = LF_MEMBER, private, type = 0x1064, offset = 20 + member name = 'm_idMxFlcPresenter' + list[10] = LF_MEMBER, private, type = 0x1064, offset = 24 + member name = 'm_idMxSmkPresenter' + list[11] = LF_MEMBER, private, type = 0x1064, offset = 28 + member name = 'm_idMxStillPresenter' + list[12] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_idMxWavePresenter' + list[13] = LF_MEMBER, private, type = 0x1064, offset = 36 + member name = 'm_idMxMIDIPresenter' + list[14] = LF_MEMBER, private, type = 0x1064, offset = 40 + member name = 'm_idMxEventPresenter' + list[15] = LF_MEMBER, private, type = 0x1064, offset = 44 + member name = 'm_idMxLoopingFlcPresenter' + list[16] = LF_MEMBER, private, type = 0x1064, offset = 48 + member name = 'm_idMxLoopingSmkPresenter' + list[17] = LF_MEMBER, private, type = 0x1064, offset = 52 + member name = 'm_idMxLoopingMIDIPresenter' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x14F3, name = '~MxObjectFactory' + +0x1cd8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x1cd7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 56, class name = MxObjectFactory, UDT(0x00001cd8) + +0x1cd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14F1, Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cda : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1483, This type = 0x1514, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1cdb : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_MEMBER, private, type = 0x14F1, offset = 8 + member name = 'm_queue' + list[2] = LF_MEMBER, private, type = 0x14F1, offset = 12 + member name = 'm_sendList' + list[3] = LF_MEMBER, private, type = 0x11D9, offset = 16 + member name = 'm_lock' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 44 + member name = 'm_unk2c' + list[5] = LF_MEMBER, private, type = 0x1519, offset = 48 + member name = 'm_listenerIds' + list[6] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 60 + member name = 'm_active' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1515, name = 'MxNotificationManager' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1515, name = '~MxNotificationManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x153E, name = 'Tickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1525, + vfptr offset = 20, name = 'Create' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Register' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Unregister' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1526, name = 'Send' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD9, name = 'GetQueue' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CDA, name = 'SetActive' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x1540, name = 'FlushPending' + +0x1cdc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1cdb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 64, class name = MxNotificationManager, UDT(0x0000374c) + +0x1cdd : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x129F, name = 'MxTickleManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x129F, name = '~MxTickleManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x12A1, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12B9, + vfptr offset = 20, name = 'RegisterClient' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12BA, + vfptr offset = 24, name = 'UnregisterClient' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12B9, + vfptr offset = 28, name = 'SetClientTickleInterval' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12BB, + vfptr offset = 32, name = 'GetClientTickleInterval' + list[8] = LF_MEMBER, private, type = 0x1924, offset = 8 + member name = 'm_clients' + +0x1cde : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1cdd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 20, class name = MxTickleManager, UDT(0x0000374f) + +0x1cdf : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'MxTimer' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'Start' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'Stop' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1299, name = 'GetRealTime' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1299, name = 'GetTime' + list[6] = LF_MEMBER, private, type = T_LONG(0012), offset = 8 + member name = 'm_startTime' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_isRunning' + list[8] = LF_STATICMEMBER, private, type = T_LONG(0012) member name = 's_LastTimeCalculated' + list[9] = LF_STATICMEMBER, private, type = T_LONG(0012) member name = 's_LastTimeTimerStarted' + list[10] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1298, name = '~MxTimer' + +0x1ce0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1cdf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxTimer, UDT(0x00003350) + +0x1ce1 : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'e_DiskStream' + list[1] = LF_ENUMERATE, public, value = 1, name = 'e_RAMStream' + +0x1ce2 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1ce1 +NESTED, enum name = MxStreamer::OpenMode, UDT(0x00001ce2) + +0x1ce3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x132D + +0x1ce4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1CE3 + +0x1ce5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CE4, Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ce6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1330 + +0x1ce7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1CE6 + +0x1ce8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CE7, Class type = 0x131D, This type = 0x131E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ce9 : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1CE2, OpenMode + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x131F, name = 'MxStreamer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x131F, name = '~MxStreamer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1335, name = 'Open' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x133C, name = 'Close' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1366, name = 'Notify' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1325, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1326, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1333, + vfptr offset = 20, name = 'Create' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1365, name = 'FUN_100b9b30' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1360, name = 'GetOpenStream' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1362, name = 'AddStreamControllerToOpenList' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1364, name = 'FUN_100b99b0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE5, name = 'GetSubclass1' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE8, name = 'GetSubclass2' + list[16] = LF_MEMBER, private, type = 0x132A, offset = 8 + member name = 'm_openStreams' + list[17] = LF_MEMBER, private, type = 0x132D, offset = 20 + member name = 'm_subclass1' + list[18] = LF_MEMBER, private, type = 0x1330, offset = 32 + member name = 'm_subclass2' + +0x1cea : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x1ce9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +0x1ceb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x13AE, + list[1] = public, VIRTUAL, 0x13AD, + +0x1cec : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectSound, UDT(0x00002178) + +0x1ced : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CEC + +0x1cee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CED, Class type = 0x13AB, This type = 0x13AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cef : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectSoundBuffer, UDT(0x00002163) + +0x1cf0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CEF + +0x1cf1 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 4 + Name = + +0x1cf2 : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17F1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13AD, name = 'MxSoundManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13AD, name = '~MxSoundManager' + list[3] = LF_METHOD, count = 2, list = 0x1CEB, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B1, name = 'SetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B0, + vfptr offset = 48, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13AD, + vfptr offset = 52, name = 'Pause' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13AD, + vfptr offset = 56, name = 'Resume' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1CEE, name = 'GetDirectSound' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x13B6, name = 'FUN_100aecf0' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x13AD, name = 'Init' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x13B5, name = 'FUN_100aebd0' + list[12] = LF_MEMBER, private, type = 0x1CED, offset = 48 + member name = 'm_directSound' + list[13] = LF_MEMBER, private, type = 0x1CF0, offset = 52 + member name = 'm_dsBuffer' + list[14] = LF_MEMBER, private, type = 0x1CF1, offset = 56 + member name = 'm_unk38' + +0x1cf3 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 15 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR + +0x1cf4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1cf2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 60, class name = MxSoundManager, UDT(0x00003264) + +0x1cf5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x1237, + list[1] = public, VIRTUAL, 0x1233, + +0x1cf6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1229, Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cf7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1245, Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cf8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1295, Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cf9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13D9 + +0x1cfa : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1249, + vfptr offset = 40, name = 'vtable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'vtable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[17] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[18] = LF_MEMBER, protected, type = 0x11E7, offset = 84 + member name = 'm_pDDSurface' + list[19] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[20] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[21] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk60' + +0x1cfb : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 14 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + +0x1cfc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x1cfa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x1cfd : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x156F, + list[1] = public, VIRTUAL, 0x156E, + +0x1cfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1493, This type = 0x156D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1cff : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = midihdr_tag, UDT(0x000026f8) + +0x1d00 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CFF + +0x1d01 : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17F1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'MxMusicManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x156E, name = '~MxMusicManager' + list[3] = LF_METHOD, count = 2, list = 0x1CFD, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1571, name = 'SetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1570, + vfptr offset = 48, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1CFE, name = 'GetMIDIInitialized' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'DeinitializeMIDI' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1574, name = 'FUN_100c09c0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1571, name = 'SetMultiplier' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1572, name = 'CalculateVolume' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x156E, name = 'SetMIDIVolume' + list[12] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 48 + member name = 'm_MIDIStreamH' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_MIDIInitialized' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 56 + member name = 'm_unk38' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'm_unk3c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'm_unk40' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_unk44' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_unk48' + list[19] = LF_MEMBER, private, type = 0x1D00, offset = 76 + member name = 'm_MIDIHdrP' + list[20] = LF_MEMBER, private, type = T_INT4(0074), offset = 80 + member name = 'm_multiplier' + list[21] = LF_MEMBER, private, type = T_ULONG(0022), offset = 84 + member name = 'm_MIDIVolume' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'Init' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'InitData' + +0x1d02 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x1d01, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +0x1d03 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x15E8, + list[1] = public, VIRTUAL, 0x15E7, + +0x1d04 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15E7, name = 'MxEventManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15E7, name = '~MxEventManager' + list[3] = LF_METHOD, count = 2, list = 0x1D03, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15E9, + vfptr offset = 40, name = 'Create' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x15E7, name = 'Init' + +0x1d05 : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 11 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR + +0x1d06 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 44, class name = MxEventManager, UDT(0x00001d06) + +0x1d07 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1488 + +0x1d08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1488, This type = 0x1D07, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d09 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x14CF, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1D08, name = 'MxAtomIdCounterSet' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1D08, name = '~MxAtomIdCounterSet' + +0x1d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxAtomIdCounterSet, UDT(0x00003752) + +0x1d0b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CA6 + +0x1d0c : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _LIST_ENTRY, UDT(0x00001d12) + +0x1d0d : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_ULONG(0022) + Index type = T_SHORT(0011) + length = 8 + Name = + +0x1d0e : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'Type' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'CreatorBackTraceIndex' + list[2] = LF_MEMBER, public, type = 0x1D0B, offset = 4 + member name = 'CriticalSection' + list[3] = LF_MEMBER, public, type = 0x1D0C, offset = 8 + member name = 'ProcessLocksList' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'EntryCount' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'ContentionCount' + list[6] = LF_MEMBER, public, type = 0x1D0D, offset = 24 + member name = 'Spare' + +0x1d0f : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x1d0e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _RTL_CRITICAL_SECTION_DEBUG, UDT(0x00001d0f) + +0x1d10 : Length = 10, Leaf = 0x1002 LF_POINTER + volatile Pointer (NEAR32), Size: 0 + Element type : 0x1D0C + +0x1d11 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1D10, offset = 0 + member name = 'Flink' + list[1] = LF_MEMBER, public, type = 0x1D10, offset = 4 + member name = 'Blink' + +0x1d12 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1d11, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = _LIST_ENTRY, UDT(0x00001d12) + +0x1d13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B15, This type = 0x1B16, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d14 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1B15 + +0x1d15 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1D14 + +0x1d16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B15, This type = 0x1D15, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1B15, This type = 0x1D15, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1d18 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1D13, name = 'Act3State' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D16, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D17, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B17, name = 'VTable0x14' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk08' + list[6] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1D13, name = '~Act3State' + +0x1d19 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d18, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = Act3State, UDT(0x0000326a) + +0x1d1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x1d1b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x128A, Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d1c : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A78, name = 'IslePathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B0F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B10, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A78, name = '~IslePathActor' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A79, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 204, name = 'VTable0xcc' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 208, name = 'VTable0xd0' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 212, name = 'VTable0xd4' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 216, name = 'VTable0xd8' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 220, name = 'VTable0xdc' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 224, name = 'VTable0xe0' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 228, name = 'VTable0xe4' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A7B, + vfptr offset = 232, name = 'VTable0xe8' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 236, name = 'VTable0xec' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1A, name = 'SetWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1B, name = 'GetWorld' + list[17] = LF_MEMBER, private, type = 0x128A, offset = 340 + member name = 'm_pLegoWorld' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 344 + member name = 'm_unk158' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 348 + member name = 'm_unk15c' + +0x1d1d : Length = 34, Leaf = 0x000a LF_VTSHAPE + Number of entries : 60 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR32 + [39]: NEAR32 + [40]: NEAR32 + [41]: NEAR32 + [42]: NEAR32 + [43]: NEAR32 + [44]: NEAR32 + [45]: NEAR32 + [46]: NEAR32 + [47]: NEAR32 + [48]: NEAR32 + [49]: NEAR32 + [50]: NEAR32 + [51]: NEAR32 + [52]: NEAR32 + [53]: NEAR32 + [54]: NEAR32 + [55]: NEAR32 + [56]: NEAR32 + [57]: NEAR32 + [58]: NEAR32 + [59]: NEAR32 + +0x1d1e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x1d1c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +0x1d1f : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B0C, name = 'Ambulance' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B13, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B14, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk160' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk16e' + list[10] = LF_MEMBER, private, type = T_SHORT(0011), offset = 368 + member name = 'm_unk170' + list[11] = LF_MEMBER, private, type = T_SHORT(0011), offset = 370 + member name = 'm_unk172' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk174' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 376 + member name = 'm_unk178' + list[14] = LF_MEMBER, private, type = T_REAL32(0040), offset = 380 + member name = 'm_unk17c' + list[15] = LF_MEMBER, private, type = 0x1CF1, offset = 384 + member name = 'm_unk180' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1B0C, name = '~Ambulance' + +0x1d20 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1d1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +0x1d21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x10CA, This type = 0x1B04, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1d22 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 18 + Name = + +0x1d23 : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B05, name = 'AmbulanceMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B08, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B09, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1D21, name = 'GetColor' + list[5] = LF_MEMBER, protected, type = 0x1D22, offset = 8 + member name = 'm_unk8' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 26 + member name = 'm_color1' + list[7] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_color2' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color3' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color4' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color5' + +0x1d24 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1d23, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +0x1d25 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AFF, name = 'AnimState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AFF, name = '~AnimState' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B02, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B03, name = 'IsA' + +0x1d26 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1d25, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = AnimState, UDT(0x00003472) + +0x1d27 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AEA, name = 'BuildingEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AEA, name = '~BuildingEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF1, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF2, name = 'IsA' + +0x1d28 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1d27, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = BuildingEntity, UDT(0x00001d28) + +0x1d29 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1AFA + +0x1d2a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1D29 + +0x1d2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1AFA, This type = 0x1D2A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AFA, This type = 0x1D2A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1d2d : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AFC, name = 'Notify' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D2B, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D2C, name = 'IsA' + +0x1d2e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d2d, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = BeachHouseEntity, UDT(0x00003d8a) + +0x1d2f : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AF5, name = 'Bike' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF8, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF9, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk160' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1AF5, name = '~Bike' + +0x1d30 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1d2f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +0x1d31 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 16 + Name = + +0x1d32 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18B6, name = 'LegoRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B6, name = '~LegoRace' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B9, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BA, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BB, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x5c' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x64' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BD, name = 'VTable0x68' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 108, name = 'VTable0x6c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 112, name = 'VTable0x70' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 116, name = 'VTable0x74' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 120, name = 'VTable0x78' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B4, + vfptr offset = 124, name = 'VTable0x7c' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 248 + member name = 'm_unkf8' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unkfc' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 256 + member name = 'm_unk100' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk104' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 264 + member name = 'm_unk108' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk10c' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk110' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk114' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 280 + member name = 'm_unk118' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk11c' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk120' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 292 + member name = 'm_unk124' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 296 + member name = 'm_unk128' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 300 + member name = 'm_unk12c' + list[29] = LF_MEMBER, private, type = 0x1D31, offset = 304 + member name = 'm_unk130' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 320 + member name = 'm_unk140' + +0x1d33 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 32 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + +0x1d34 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x1d32, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +0x1d35 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18B1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AE3, name = 'CarRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE6, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE7, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1AE3, name = '~CarRace' + +0x1d36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1d35, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = CarRace, UDT(0x00003e0d) + +0x1d37 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ADA, name = 'DuneBuggy' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADD, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADE, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 352 + member name = 'm_unk160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk164' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 360 + member name = 'm_unk168' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1ADA, name = '~DuneBuggy' + +0x1d38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1d37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +0x1d39 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AD2, name = 'ElevatorBottom' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AD2, name = '~ElevatorBottom' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AD7, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AD5, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AD6, name = 'IsA' + +0x1d3a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1d39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = ElevatorBottom, UDT(0x00001d3a) + +0x1d3b : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AC9, name = 'GasStation' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AC9, name = '~GasStation' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ACE, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ACF, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ACC, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ACD, name = 'IsA' + +0x1d3c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d3b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = GasStation, UDT(0x00001d3c) + +0x1d3d : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 12 + Name = + +0x1d3e : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AC2, name = 'GasStationState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AC5, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AC6, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1D3D, offset = 8 + member name = 'm_unk0x08' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, private, type = T_USHORT(0021), offset = 26 + member name = 'm_unk0x1a' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 28 + member name = 'm_unk0x1c' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 30 + member name = 'm_unk0x1e' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_unk0x20' + list[11] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1AC2, name = '~GasStationState' + +0x1d3f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1d3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = GasStationState, UDT(0x00003d98) + +0x1d40 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GifData, UDT(0x00001d48) + +0x1d41 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D40 + +0x1d42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1D41, Class type = 0x1ABB, This type = 0x1ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1d43 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1ABF, name = 'FindNode' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1D42, name = 'Get' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0' + list[3] = LF_MEMBER, public, type = 0x1ABA, offset = 4 + member name = 'm_unk4' + +0x1d44 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d43, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = GifMap, UDT(0x00003278) + +0x1d45 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMTexture2, UDT(0x00001dc6) + +0x1d46 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D45 + +0x1d47 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_name' + list[1] = LF_MEMBER, public, type = 0x11E7, offset = 4 + member name = 'm_surface' + list[2] = LF_MEMBER, public, type = 0x1459, offset = 8 + member name = 'm_palette' + list[3] = LF_MEMBER, public, type = 0x1D46, offset = 12 + member name = 'm_texture' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_data' + +0x1d48 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1d47, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = GifData, UDT(0x00001d48) + +0x1d49 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1ABA, offset = 0 + member name = 'm_right' + list[1] = LF_MEMBER, public, type = 0x1ABA, offset = 4 + member name = 'm_parent' + list[2] = LF_MEMBER, public, type = 0x1ABA, offset = 8 + member name = 'm_left' + list[3] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 12 + member name = 'm_key' + list[4] = LF_MEMBER, public, type = 0x1D41, offset = 16 + member name = 'm_value' + +0x1d4a : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1d49, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = GifMapEntry, UDT(0x00001d4a) + +0x1d4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1D41, Class type = 0x191D, This type = 0x191E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1d4c : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x191F, + vfptr offset = 0, name = '~GifManagerBase' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1D4B, name = 'Get' + list[3] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk4' + list[5] = LF_MEMBER, protected, type = 0x1ABB, offset = 12 + member name = 'm_unk8' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x191F, name = 'GifManagerBase' + +0x1d4d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = GifManagerBase, UDT(0x0000327a) + +0x1d4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C6, This type = 0x1920, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d4f : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x191D, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D4E, name = '~GifManager' + list[2] = LF_MEMBER, protected, type = 0x1C7F, offset = 20 + member name = 'm_unk' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1D4E, name = 'GifManager' + +0x1d50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +0x1d51 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11E6 + +0x1d52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1d53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d54 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x11E7 + +0x1d55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x1d56 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagRECT, UDT(0x00001279) + +0x1d57 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D56 + +0x1d58 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D57 + +0x1d59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d58, This adjust = 0 + +0x1d5a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDBLTFX, UDT(0x00001e39) + +0x1d5b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D5A + +0x1d5c : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1D57 + list[1] = 0x11E7 + list[2] = 0x1D57 + list[3] = T_ULONG(0022) + list[4] = 0x1D5B + +0x1d5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x1d5c, This adjust = 0 + +0x1d5e : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDBLTBATCH, UDT(0x00001e3b) + +0x1d5f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D5E + +0x1d60 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1D5F + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + +0x1d61 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1d60, This adjust = 0 + +0x1d62 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x11E7 + list[3] = 0x1D57 + list[4] = T_ULONG(0022) + +0x1d63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x1d62, This adjust = 0 + +0x1d64 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x11E7 + +0x1d65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d64, This adjust = 0 + +0x1d66 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x11E7 + list[1] = 0x1291 + list[2] = T_32PVOID(0403) + +0x1d67 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = STD Near + Func attr = none + # Parms = 3, Arg list type = 0x1d66 + +0x1d68 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D67 + +0x1d69 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = 0x1D68 + +0x1d6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d69, This adjust = 0 + +0x1d6b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_32PVOID(0403) + list[2] = 0x1D68 + +0x1d6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1d6b, This adjust = 0 + +0x1d6d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11E7 + list[1] = T_ULONG(0022) + +0x1d6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d6d, This adjust = 0 + +0x1d6f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10D1 + +0x1d70 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1D6F + list[1] = 0x176E + +0x1d71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d70, This adjust = 0 + +0x1d72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x1d73 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D6F + +0x1d74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d73, This adjust = 0 + +0x1d75 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1247 + +0x1d76 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D75 + +0x1d77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d76, This adjust = 0 + +0x1d78 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10CF + +0x1d79 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x1D78 + +0x1d7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d79, This adjust = 0 + +0x1d7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1715, This adjust = 0 + +0x1d7c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PLONG(0412) + list[1] = T_32PLONG(0412) + +0x1d7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d7c, This adjust = 0 + +0x1d7e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1459 + +0x1d7f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D7E + +0x1d80 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d7f, This adjust = 0 + +0x1d81 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x10D0 + +0x1d82 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D81 + +0x1d83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d82, This adjust = 0 + +0x1d84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1292, This adjust = 0 + +0x1d85 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1245 + list[1] = 0x1291 + +0x1d86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d85, This adjust = 0 + +0x1d87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d88 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1D57 + list[1] = 0x1291 + list[2] = T_ULONG(0022) + list[3] = T_32PVOID(0403) + +0x1d89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1d88, This adjust = 0 + +0x1d8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x1d8b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1247 + +0x1d8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d8b, This adjust = 0 + +0x1d8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x15c8, This adjust = 0 + +0x1d8e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1459 + +0x1d8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d8e, This adjust = 0 + +0x1d90 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDOVERLAYFX, UDT(0x00001e3d) + +0x1d91 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D90 + +0x1d92 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1D57 + list[1] = 0x11E7 + list[2] = 0x1D57 + list[3] = T_ULONG(0022) + list[4] = 0x1D91 + +0x1d93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11E6, This type = 0x1D51, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x1d92, This adjust = 0 + +0x1d94 : Length = 934, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D52, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D53, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D53, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D55, + vfptr offset = 12, name = 'AddAttachedSurface' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D59, + vfptr offset = 16, name = 'AddOverlayDirtyRect' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D5D, + vfptr offset = 20, name = 'Blt' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D61, + vfptr offset = 24, name = 'BltBatch' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D63, + vfptr offset = 28, name = 'BltFast' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D65, + vfptr offset = 32, name = 'DeleteAttachedSurface' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D6A, + vfptr offset = 36, name = 'EnumAttachedSurfaces' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D6C, + vfptr offset = 40, name = 'EnumOverlayZOrders' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D6E, + vfptr offset = 44, name = 'Flip' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D71, + vfptr offset = 48, name = 'GetAttachedSurface' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D72, + vfptr offset = 52, name = 'GetBltStatus' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D74, + vfptr offset = 56, name = 'GetCaps' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D77, + vfptr offset = 60, name = 'GetClipper' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D7A, + vfptr offset = 64, name = 'GetColorKey' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D7B, + vfptr offset = 68, name = 'GetDC' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D72, + vfptr offset = 72, name = 'GetFlipStatus' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D7D, + vfptr offset = 76, name = 'GetOverlayPosition' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D80, + vfptr offset = 80, name = 'GetPalette' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D83, + vfptr offset = 84, name = 'GetPixelFormat' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D84, + vfptr offset = 88, name = 'GetSurfaceDesc' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D86, + vfptr offset = 92, name = 'Initialize' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D87, + vfptr offset = 96, name = 'IsLost' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D89, + vfptr offset = 100, name = 'Lock' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D8A, + vfptr offset = 104, name = 'ReleaseDC' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D87, + vfptr offset = 108, name = 'Restore' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D8C, + vfptr offset = 112, name = 'SetClipper' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D7A, + vfptr offset = 116, name = 'SetColorKey' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D8D, + vfptr offset = 120, name = 'SetOverlayPosition' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D8F, + vfptr offset = 124, name = 'SetPalette' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D8A, + vfptr offset = 128, name = 'Unlock' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D93, + vfptr offset = 132, name = 'UpdateOverlay' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D72, + vfptr offset = 136, name = 'UpdateOverlayDisplay' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D65, + vfptr offset = 140, name = 'UpdateOverlayZOrder' + +0x1d95 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 36 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + +0x1d96 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 37, field list type 0x1d94, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 4, class name = IDirectDrawSurface, UDT(0x00001d96) + +0x1d97 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1458 + +0x1d98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1458, This type = 0x1D97, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1d99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1458, This type = 0x1D97, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1d9a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PULONG(0422) + +0x1d9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1458, This type = 0x1D97, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x1d9c : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + list[3] = 0x145C + +0x1d9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1458, This type = 0x1D97, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1d9c, This adjust = 0 + +0x1d9e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1245 + list[1] = T_ULONG(0022) + list[2] = 0x145C + +0x1d9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1458, This type = 0x1D97, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1d9e, This adjust = 0 + +0x1da0 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D98, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D99, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D99, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D9B, + vfptr offset = 12, name = 'GetCaps' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D9D, + vfptr offset = 16, name = 'GetEntries' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D9F, + vfptr offset = 20, name = 'Initialize' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1D9D, + vfptr offset = 24, name = 'SetEntries' + +0x1da1 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x1da0, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 4, class name = IDirectDrawPalette, UDT(0x00001da1) + +0x1da2 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMTexture, UDT(0x00001de6) + +0x1da3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1D45 + +0x1da4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1da5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1da6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1770 + list[1] = 0x1CB6 + list[2] = 0x1714 + +0x1da7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x1da8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMObject, UDT(0x00001dd0) + +0x1da9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DA8 + +0x1daa : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1DA9 + list[1] = T_32PVOID(0403) + +0x1dab : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1daa + +0x1dac : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DAB + +0x1dad : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1DAC + list[1] = T_32PVOID(0403) + +0x1dae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x1daf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x1db0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1db1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PULONG(0422) + list[1] = T_32PRCHAR(0470) + +0x1db2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x1db3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x1db4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x1db5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1db6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_REAL32(0040) + list[1] = T_REAL32(0040) + +0x1db7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db6, This adjust = 0 + +0x1db8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x15c8, This adjust = 0 + +0x1db9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1dba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x1dbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d7c, This adjust = 0 + +0x1dbc : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMIMAGE, UDT(0x00001dec) + +0x1dbd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DBC + +0x1dbe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1DBD, Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1dbf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1dc0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1DBD + +0x1dc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1dc0, This adjust = 0 + +0x1dc2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PVOID(0403) + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + +0x1dc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1D45, This type = 0x1DA3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1dc2, This adjust = 0 + +0x1dc4 : Length = 802, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA2, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA4, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA7, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAE, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAE, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAF, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB0, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB2, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB2, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB0, name = 'InitFromFile' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB3, name = 'InitFromSurface' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB4, name = 'InitFromResource' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB5, name = 'Changed' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAF, name = 'SetColors' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAF, name = 'SetShades' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB7, name = 'SetDecalSize' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB8, name = 'SetDecalOrigin' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAF, name = 'SetDecalScale' + list[21] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DB9, name = 'SetDecalTransparency' + list[22] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DAF, name = 'SetDecalTransparentColor' + list[23] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DBA, name = 'GetDecalSize' + list[24] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DBB, name = 'GetDecalOrigin' + list[25] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DBE, name = 'GetImage' + list[26] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'GetShades' + list[27] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'GetColors' + list[28] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'GetDecalScale' + list[29] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DBF, name = 'GetDecalTransparency' + list[30] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DA5, name = 'GetDecalTransparentColor' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DC1, + vfptr offset = 120, name = 'InitFromImage' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DC3, + vfptr offset = 124, name = 'InitFromResource2' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DAF, + vfptr offset = 128, name = 'GenerateMIPMap' + +0x1dc5 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 33 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR + +0x1dc6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 34, field list type 0x1dc4, + Derivation list type 0x0000, VT shape type 0x1dc5 + Size = 4, class name = IDirect3DRMTexture2, UDT(0x00001dc6) + +0x1dc7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1DA8 + +0x1dc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1dc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1dca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x1dcb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x1dcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x1dcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1dce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA8, This type = 0x1DC7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x1dcf : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DC8, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DC9, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DC9, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCA, + vfptr offset = 12, name = 'Clone' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCB, + vfptr offset = 16, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCB, + vfptr offset = 20, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCC, + vfptr offset = 24, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DC9, + vfptr offset = 28, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCD, + vfptr offset = 32, name = 'SetName' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCE, + vfptr offset = 36, name = 'GetName' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DCE, + vfptr offset = 40, name = 'GetClassNameA' + +0x1dd0 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x1dcf, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = IDirect3DRMObject, UDT(0x00001dd0) + +0x1dd1 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMVisual, UDT(0x00001df6) + +0x1dd2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1DA2 + +0x1dd3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1dd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1dd5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x1dd6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x1dd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x1dd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1dd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x1dda : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x1ddb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x1ddc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1ddd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db6, This adjust = 0 + +0x1dde : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x15c8, This adjust = 0 + +0x1ddf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1de0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x1de1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d7c, This adjust = 0 + +0x1de2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1DBD, Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1de3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1DA2, This type = 0x1DD2, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1de4 : Length = 790, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD3, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD4, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD4, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD5, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD6, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD6, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD7, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD4, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD8, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD9, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DD9, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD8, + vfptr offset = 44, name = 'InitFromFile' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDA, + vfptr offset = 48, name = 'InitFromSurface' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDB, + vfptr offset = 52, name = 'InitFromResource' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDC, + vfptr offset = 56, name = 'Changed' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD7, + vfptr offset = 60, name = 'SetColors' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD7, + vfptr offset = 64, name = 'SetShades' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDD, + vfptr offset = 68, name = 'SetDecalSize' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDE, + vfptr offset = 72, name = 'SetDecalOrigin' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD7, + vfptr offset = 76, name = 'SetDecalScale' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DDF, + vfptr offset = 80, name = 'SetDecalTransparency' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD7, + vfptr offset = 84, name = 'SetDecalTransparentColor' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DE0, + vfptr offset = 88, name = 'GetDecalSize' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DE1, + vfptr offset = 92, name = 'GetDecalOrigin' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DE2, + vfptr offset = 96, name = 'GetImage' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD4, + vfptr offset = 100, name = 'GetShades' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD4, + vfptr offset = 104, name = 'GetColors' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD4, + vfptr offset = 108, name = 'GetDecalScale' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DE3, + vfptr offset = 112, name = 'GetDecalTransparency' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DD4, + vfptr offset = 116, name = 'GetDecalTransparentColor' + +0x1de5 : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 30 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + +0x1de6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 31, field list type 0x1de4, + Derivation list type 0x0000, VT shape type 0x1de5 + Size = 4, class name = IDirect3DRMTexture, UDT(0x00001de6) + +0x1de7 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwFourCC' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwRGBBitCount' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwYUVBitCount' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwZBufferBitDepth' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwAlphaBitDepth' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwRBitMask' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwYBitMask' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwGBitMask' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwUBitMask' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwBBitMask' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwVBitMask' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwRGBAlphaBitMask' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwYUVAlphaBitMask' + list[15] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwRGBZBitMask' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwYUVZBitMask' + +0x1de8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 17, field list type 0x1de7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _DDPIXELFORMAT, UDT(0x00001de8) + +0x1de9 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMPALETTEENTRY, UDT(0x00001df8) + +0x1dea : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DE9 + +0x1deb : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'width' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'height' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'aspectx' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'aspecty' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 16 + member name = 'depth' + list[5] = LF_MEMBER, public, type = T_INT4(0074), offset = 20 + member name = 'rgb' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'bytes_per_line' + list[7] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 28 + member name = 'buffer1' + list[8] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 32 + member name = 'buffer2' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'red_mask' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'green_mask' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'blue_mask' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'alpha_mask' + list[13] = LF_MEMBER, public, type = T_INT4(0074), offset = 52 + member name = 'palette_size' + list[14] = LF_MEMBER, public, type = 0x1DEA, offset = 56 + member name = 'palette' + +0x1dec : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 15, field list type 0x1deb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 60, class name = _D3DRMIMAGE, UDT(0x00001dec) + +0x1ded : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1DD1 + +0x1dee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1def : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1df0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x1df1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x1df2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x1df3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1df4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1DD1, This type = 0x1DED, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x1df5 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DEE, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DEF, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DEF, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF0, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF1, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF1, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF2, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DEF, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF3, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF4, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DF4, name = 'GetClassNameA' + +0x1df6 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x1df5, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = IDirect3DRMVisual, UDT(0x00001df6) + +0x1df7 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'red' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'green' + list[2] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'blue' + list[3] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 3 + member name = 'flags' + +0x1df8 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x1df7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _D3DRMPALETTEENTRY, UDT(0x00001df8) + +0x1df9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1246 + +0x1dfa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1dfb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1dfc : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _RGNDATA, UDT(0x00001e0e) + +0x1dfd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DFC + +0x1dfe : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1D57 + list[1] = 0x1DFD + list[2] = T_32PULONG(0422) + +0x1dff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1dfe, This adjust = 0 + +0x1e00 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1715, This adjust = 0 + +0x1e01 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1245 + list[1] = T_ULONG(0022) + +0x1e02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e01, This adjust = 0 + +0x1e03 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PINT4(0474) + +0x1e04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e03, This adjust = 0 + +0x1e05 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1DFD + list[1] = T_ULONG(0022) + +0x1e06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e05, This adjust = 0 + +0x1e07 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = T_32PVOID(0403) + +0x1e08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1246, This type = 0x1DF9, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e07, This adjust = 0 + +0x1e09 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DFA, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DFB, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1DFB, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1DFF, + vfptr offset = 12, name = 'GetClipList' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E00, + vfptr offset = 16, name = 'GetHWnd' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E02, + vfptr offset = 20, name = 'Initialize' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E04, + vfptr offset = 24, name = 'IsClipListChanged' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E06, + vfptr offset = 28, name = 'SetClipList' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E08, + vfptr offset = 32, name = 'SetHWnd' + +0x1e0a : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x1e09, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = IDirectDrawClipper, UDT(0x00001e0a) + +0x1e0b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _RGNDATAHEADER, UDT(0x00001e37) + +0x1e0c : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 1 + Name = + +0x1e0d : Length = 38, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1E0B, offset = 0 + member name = 'rdh' + list[1] = LF_MEMBER, public, type = 0x1E0C, offset = 32 + member name = 'Buffer' + +0x1e0e : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1e0d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = _RGNDATA, UDT(0x00001e0e) + +0x1e0f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1244 + +0x1e10 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x1e11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e12 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e13 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = 0x1D75 + list[2] = 0x1770 + +0x1e14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1e13, This adjust = 0 + +0x1e15 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x145C + list[2] = 0x1D7E + list[3] = 0x1770 + +0x1e16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1e15, This adjust = 0 + +0x1e17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1771, This adjust = 0 + +0x1e18 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11E7 + list[1] = 0x176E + +0x1e19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e18, This adjust = 0 + +0x1e1a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1291 + list[1] = T_32PVOID(0403) + +0x1e1b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = STD Near + Func attr = none + # Parms = 2, Arg list type = 0x1e1a + +0x1e1c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E1B + +0x1e1d : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x1291 + list[2] = T_32PVOID(0403) + list[3] = 0x1E1C + +0x1e1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1e1d, This adjust = 0 + +0x1e1f : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x1291 + list[2] = T_32PVOID(0403) + list[3] = 0x1D68 + +0x1e20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1e1f, This adjust = 0 + +0x1e21 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DDCAPS, UDT(0x00001e40) + +0x1e22 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E21 + +0x1e23 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1E22 + list[1] = 0x1E22 + +0x1e24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e23, This adjust = 0 + +0x1e25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1292, This adjust = 0 + +0x1e26 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PULONG(0422) + list[1] = T_32PULONG(0422) + +0x1e27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e26, This adjust = 0 + +0x1e28 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x176E + +0x1e29 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e28, This adjust = 0 + +0x1e2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x1e2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e03, This adjust = 0 + +0x1e2c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1762 + +0x1e2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e2c, This adjust = 0 + +0x1e2e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = T_ULONG(0022) + +0x1e2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e2e, This adjust = 0 + +0x1e30 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + +0x1e31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1e30, This adjust = 0 + +0x1e32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1244, This type = 0x1E0F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e07, This adjust = 0 + +0x1e33 : Length = 646, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1E10, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1E11, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1E11, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E12, + vfptr offset = 12, name = 'Compact' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E14, + vfptr offset = 16, name = 'CreateClipper' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E16, + vfptr offset = 20, name = 'CreatePalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E17, + vfptr offset = 24, name = 'CreateSurface' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E19, + vfptr offset = 28, name = 'DuplicateSurface' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E1E, + vfptr offset = 32, name = 'EnumDisplayModes' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E20, + vfptr offset = 36, name = 'EnumSurfaces' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E12, + vfptr offset = 40, name = 'FlipToGDISurface' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E24, + vfptr offset = 44, name = 'GetCaps' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E25, + vfptr offset = 48, name = 'GetDisplayMode' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E27, + vfptr offset = 52, name = 'GetFourCCCodes' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E29, + vfptr offset = 56, name = 'GetGDISurface' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E2A, + vfptr offset = 60, name = 'GetMonitorFrequency' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E2A, + vfptr offset = 64, name = 'GetScanLine' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E2B, + vfptr offset = 68, name = 'GetVerticalBlankStatus' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E2D, + vfptr offset = 72, name = 'Initialize' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E12, + vfptr offset = 76, name = 'RestoreDisplayMode' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E2F, + vfptr offset = 80, name = 'SetCooperativeLevel' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E31, + vfptr offset = 84, name = 'SetDisplayMode' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1E32, + vfptr offset = 88, name = 'WaitForVerticalBlank' + +0x1e34 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 23 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR + +0x1e35 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x1e33, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 4, class name = IDirectDraw, UDT(0x00001e35) + +0x1e36 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'iType' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'nCount' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'nRgnSize' + list[4] = LF_MEMBER, public, type = 0x1D56, offset = 16 + member name = 'rcBound' + +0x1e37 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1e36, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _RGNDATAHEADER, UDT(0x00001e37) + +0x1e38 : Length = 798, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwDDFX' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwROP' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwDDROP' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwRotationAngle' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwZBufferOpCode' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwZBufferLow' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwZBufferHigh' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwZBufferBaseDest' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwZDestConstBitDepth' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwZDestConst' + list[11] = LF_MEMBER, public, type = 0x11E7, offset = 40 + member name = 'lpDDSZBufferDest' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'dwZSrcConstBitDepth' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwZSrcConst' + list[14] = LF_MEMBER, public, type = 0x11E7, offset = 48 + member name = 'lpDDSZBufferSrc' + list[15] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'dwAlphaEdgeBlendBitDepth' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'dwAlphaEdgeBlend' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'dwReserved' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'dwAlphaDestConstBitDepth' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'dwAlphaDestConst' + list[20] = LF_MEMBER, public, type = 0x11E7, offset = 68 + member name = 'lpDDSAlphaDest' + list[21] = LF_MEMBER, public, type = T_ULONG(0022), offset = 72 + member name = 'dwAlphaSrcConstBitDepth' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 76 + member name = 'dwAlphaSrcConst' + list[23] = LF_MEMBER, public, type = 0x11E7, offset = 76 + member name = 'lpDDSAlphaSrc' + list[24] = LF_MEMBER, public, type = T_ULONG(0022), offset = 80 + member name = 'dwFillColor' + list[25] = LF_MEMBER, public, type = T_ULONG(0022), offset = 80 + member name = 'dwFillDepth' + list[26] = LF_MEMBER, public, type = T_ULONG(0022), offset = 80 + member name = 'dwFillPixel' + list[27] = LF_MEMBER, public, type = 0x11E7, offset = 80 + member name = 'lpDDSPattern' + list[28] = LF_MEMBER, public, type = 0x10CF, offset = 84 + member name = 'ddckDestColorkey' + list[29] = LF_MEMBER, public, type = 0x10CF, offset = 92 + member name = 'ddckSrcColorkey' + +0x1e39 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 30, field list type 0x1e38, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 100, class name = _DDBLTFX, UDT(0x00001e39) + +0x1e3a : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1D57, offset = 0 + member name = 'lprDest' + list[1] = LF_MEMBER, public, type = 0x11E7, offset = 4 + member name = 'lpDDSSrc' + list[2] = LF_MEMBER, public, type = 0x1D57, offset = 8 + member name = 'lprSrc' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwFlags' + list[4] = LF_MEMBER, public, type = 0x1D5B, offset = 16 + member name = 'lpDDBltFx' + +0x1e3b : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1e3a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _DDBLTBATCH, UDT(0x00001e3b) + +0x1e3c : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwAlphaEdgeBlendBitDepth' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwAlphaEdgeBlend' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwReserved' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwAlphaDestConstBitDepth' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwAlphaDestConst' + list[6] = LF_MEMBER, public, type = 0x11E7, offset = 20 + member name = 'lpDDSAlphaDest' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwAlphaSrcConstBitDepth' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwAlphaSrcConst' + list[9] = LF_MEMBER, public, type = 0x11E7, offset = 28 + member name = 'lpDDSAlphaSrc' + list[10] = LF_MEMBER, public, type = 0x10CF, offset = 32 + member name = 'dckDestColorkey' + list[11] = LF_MEMBER, public, type = 0x10CF, offset = 40 + member name = 'dckSrcColorkey' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwDDFX' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'dwFlags' + +0x1e3d : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x1e3c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 56, class name = _DDOVERLAYFX, UDT(0x00001e3d) + +0x1e3e : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_ULONG(0022) + Index type = T_SHORT(0011) + length = 32 + Name = + +0x1e3f : Length = 1502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwCaps' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwCaps2' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwCKeyCaps' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwFXCaps' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwFXAlphaCaps' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwPalCaps' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwSVCaps' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwAlphaBltConstBitDepths' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwAlphaBltPixelBitDepths' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwAlphaBltSurfaceBitDepths' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'dwAlphaOverlayConstBitDepths' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwAlphaOverlayPixelBitDepths' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'dwAlphaOverlaySurfaceBitDepths' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'dwZBufferBitDepths' + list[15] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'dwVidMemTotal' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'dwVidMemFree' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'dwMaxVisibleOverlays' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 72 + member name = 'dwCurrVisibleOverlays' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 76 + member name = 'dwNumFourCCCodes' + list[20] = LF_MEMBER, public, type = T_ULONG(0022), offset = 80 + member name = 'dwAlignBoundarySrc' + list[21] = LF_MEMBER, public, type = T_ULONG(0022), offset = 84 + member name = 'dwAlignSizeSrc' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 88 + member name = 'dwAlignBoundaryDest' + list[23] = LF_MEMBER, public, type = T_ULONG(0022), offset = 92 + member name = 'dwAlignSizeDest' + list[24] = LF_MEMBER, public, type = T_ULONG(0022), offset = 96 + member name = 'dwAlignStrideAlign' + list[25] = LF_MEMBER, public, type = 0x1E3E, offset = 100 + member name = 'dwRops' + list[26] = LF_MEMBER, public, type = 0x10D1, offset = 132 + member name = 'ddsCaps' + list[27] = LF_MEMBER, public, type = T_ULONG(0022), offset = 136 + member name = 'dwMinOverlayStretch' + list[28] = LF_MEMBER, public, type = T_ULONG(0022), offset = 140 + member name = 'dwMaxOverlayStretch' + list[29] = LF_MEMBER, public, type = T_ULONG(0022), offset = 144 + member name = 'dwMinLiveVideoStretch' + list[30] = LF_MEMBER, public, type = T_ULONG(0022), offset = 148 + member name = 'dwMaxLiveVideoStretch' + list[31] = LF_MEMBER, public, type = T_ULONG(0022), offset = 152 + member name = 'dwMinHwCodecStretch' + list[32] = LF_MEMBER, public, type = T_ULONG(0022), offset = 156 + member name = 'dwMaxHwCodecStretch' + list[33] = LF_MEMBER, public, type = T_ULONG(0022), offset = 160 + member name = 'dwReserved1' + list[34] = LF_MEMBER, public, type = T_ULONG(0022), offset = 164 + member name = 'dwReserved2' + list[35] = LF_MEMBER, public, type = T_ULONG(0022), offset = 168 + member name = 'dwReserved3' + list[36] = LF_MEMBER, public, type = T_ULONG(0022), offset = 172 + member name = 'dwSVBCaps' + list[37] = LF_MEMBER, public, type = T_ULONG(0022), offset = 176 + member name = 'dwSVBCKeyCaps' + list[38] = LF_MEMBER, public, type = T_ULONG(0022), offset = 180 + member name = 'dwSVBFXCaps' + list[39] = LF_MEMBER, public, type = 0x1E3E, offset = 184 + member name = 'dwSVBRops' + list[40] = LF_MEMBER, public, type = T_ULONG(0022), offset = 216 + member name = 'dwVSBCaps' + list[41] = LF_MEMBER, public, type = T_ULONG(0022), offset = 220 + member name = 'dwVSBCKeyCaps' + list[42] = LF_MEMBER, public, type = T_ULONG(0022), offset = 224 + member name = 'dwVSBFXCaps' + list[43] = LF_MEMBER, public, type = 0x1E3E, offset = 228 + member name = 'dwVSBRops' + list[44] = LF_MEMBER, public, type = T_ULONG(0022), offset = 260 + member name = 'dwSSBCaps' + list[45] = LF_MEMBER, public, type = T_ULONG(0022), offset = 264 + member name = 'dwSSBCKeyCaps' + list[46] = LF_MEMBER, public, type = T_ULONG(0022), offset = 268 + member name = 'dwSSBFXCaps' + list[47] = LF_MEMBER, public, type = 0x1E3E, offset = 272 + member name = 'dwSSBRops' + list[48] = LF_MEMBER, public, type = T_ULONG(0022), offset = 304 + member name = 'dwMaxVideoPorts' + list[49] = LF_MEMBER, public, type = T_ULONG(0022), offset = 308 + member name = 'dwCurrVideoPorts' + list[50] = LF_MEMBER, public, type = T_ULONG(0022), offset = 312 + member name = 'dwSVBCaps2' + list[51] = LF_MEMBER, public, type = T_ULONG(0022), offset = 316 + member name = 'dwNLVBCaps' + list[52] = LF_MEMBER, public, type = T_ULONG(0022), offset = 320 + member name = 'dwNLVBCaps2' + list[53] = LF_MEMBER, public, type = T_ULONG(0022), offset = 324 + member name = 'dwNLVBCKeyCaps' + list[54] = LF_MEMBER, public, type = T_ULONG(0022), offset = 328 + member name = 'dwNLVBFXCaps' + list[55] = LF_MEMBER, public, type = 0x1E3E, offset = 332 + member name = 'dwNLVBRops' + +0x1e40 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 56, field list type 0x1e3f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 364, class name = _DDCAPS, UDT(0x00001e40) + +0x1e41 : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 18 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + +0x1e42 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E41 + +0x1e43 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x1168, vfptr offset = 20 + list[1] = public, INTRODUCING VIRTUAL, 0x116A, vfptr offset = 20 + +0x1e44 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x116C, vfptr offset = 28 + list[1] = public, INTRODUCING VIRTUAL, 0x116D, vfptr offset = 28 + +0x1e45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1e46 : Length = 474, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1E42 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1165, name = 'Matrix4Impl' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1163, + vfptr offset = 0, name = 'EqualsMatrixImpl' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1160, + vfptr offset = 4, name = 'EqualsMatrixData' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1165, + vfptr offset = 8, name = 'SetData' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1165, + vfptr offset = 12, name = 'AnotherSetData' + list[6] = LF_METHOD, count = 2, list = 0x1E43, name = 'GetData' + list[7] = LF_METHOD, count = 2, list = 0x1E44, name = 'Element' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x116E, + vfptr offset = 32, name = 'Clear' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x116E, + vfptr offset = 36, name = 'SetIdentity' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x117C, + vfptr offset = 40, name = 'operator=' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1170, + vfptr offset = 44, name = 'operator+=' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1172, + vfptr offset = 48, name = 'TranslateBy' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1172, + vfptr offset = 52, name = 'SetTranslation' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1176, + vfptr offset = 56, name = 'EqualsMxProduct' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1174, + vfptr offset = 60, name = 'EqualsDataProduct' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1178, + vfptr offset = 64, name = 'ToQuaternion' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x117B, + vfptr offset = 68, name = 'FUN_10002710' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1E45, name = 'operator[]' + list[19] = LF_MEMBER, protected, type = 0x1169, offset = 4 + member name = 'm_data' + +0x1e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x1e46, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 8, class name = Matrix4Impl, UDT(0x000033d8) + +0x1e48 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector4Data, UDT(0x000028aa) + +0x1e49 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HelicopterState, UDT(0x00003d9b) + +0x1e4a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E49 + +0x1e4b : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AB3, name = 'Helicopter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB6, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB7, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB8, name = 'Create' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = 'VTable0xe4' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = '~Helicopter' + list[7] = LF_MEMBER, protected, type = 0x102C, offset = 352 + member name = 'm_unk160' + list[8] = LF_MEMBER, protected, type = 0x102C, offset = 424 + member name = 'm_unk1a8' + list[9] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 496 + member name = 'm_unk1f0' + list[10] = LF_MEMBER, protected, type = 0x1E48, offset = 500 + member name = 'm_unk1f4' + list[11] = LF_MEMBER, protected, type = 0x1E48, offset = 524 + member name = 'm_unk20c' + list[12] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 548 + member name = 'm_unk224' + list[13] = LF_MEMBER, protected, type = 0x1E4A, offset = 552 + member name = 'm_state' + list[14] = LF_MEMBER, protected, type = 0x1064, offset = 556 + member name = 'm_unk22c' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x1AB3, name = 'GetState' + +0x1e4c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1e4b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +0x1e4d : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A49, name = 'LegoAnimationManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A49, name = '~LegoAnimationManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4F, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A50, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1A4E, name = 'FUN_1005f6d0' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x1A47, name = 'configureLegoAnimationManager' + list[9] = LF_ONEMETHOD, private, VANILLA, index = 0x1A49, name = 'Init' + +0x1e4e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1e4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoAnimationManager, UDT(0x000033dc) + +0x1e4f : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19FE, name = 'LegoControlManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19FE, name = '~LegoControlManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A04, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A01, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A02, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1A03, name = 'Register' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1A03, name = 'Unregister' + +0x1e50 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1e4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoControlManager, UDT(0x00001e50) + +0x1e51 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1254 + +0x1e52 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1E51 + +0x1e53 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1E52 + +0x1e54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1254, This type = 0x1274, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1e53, This adjust = 0 + +0x1e55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1254, This type = 0x1274, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x125a, This adjust = 0 + +0x1e56 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1E54, + list[1] = public, VANILLA, 0x1E55, + list[2] = public, VANILLA, 0x1276, + list[3] = public, VANILLA, 0x1277, + +0x1e57 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12CB + +0x1e58 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E51 + +0x1e59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1E57, Class type = 0x1254, This type = 0x1E58, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e5a : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1CB3 + list[1] = LF_METHOD, count = 3, list = 0x1E56, name = 'MxVariable' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1275, + vfptr offset = 0, name = 'GetValue' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1276, + vfptr offset = 4, name = 'SetValue' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1277, + vfptr offset = 8, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1E59, name = 'GetKey' + list[6] = LF_MEMBER, protected, type = 0x1272, offset = 4 + member name = 'm_key' + list[7] = LF_MEMBER, protected, type = 0x1272, offset = 20 + member name = 'm_value' + list[8] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1277, name = '~MxVariable' + +0x1e5b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1e5a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 36, class name = MxVariable, UDT(0x00001e5b) + +0x1e5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e5d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1A2C + +0x1e5e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19DE + +0x1e5f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 1020 + Name = + +0x1e60 : Length = 758, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[18] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[19] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[20] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unkC' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk10' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[24] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[25] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[26] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk24' + list[28] = LF_MEMBER, private, type = 0x1E5F, offset = 38 + member name = 'm_unk28' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk424' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk428' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk42c' + +0x1e61 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x1e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x1e62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x128F, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18F6, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e64 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10C3, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10C7, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x128A, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1904, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1907, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1901, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x190A, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1088, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18F9, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x190E, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x108E, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e6f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1862 + +0x1e70 : Length = 1298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = T_UINT4(0075), offset = 120 + member name = 'm_unk78' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x128A, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_unkLegoSaveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk13c' + +0x1e71 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x1e70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x1e72 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1254, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A2E, name = 'LegoBackgroundColor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A2F, name = 'SetValue' + list[3] = LF_MEMBER, private, type = T_REAL32(0040), offset = 36 + member name = 'h' + list[4] = LF_MEMBER, private, type = T_REAL32(0040), offset = 40 + member name = 's' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 44 + member name = 'v' + +0x1e73 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1e72, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 48, class name = LegoBackgroundColor, UDT(0x00003300) + +0x1e74 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1254, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19E0, name = 'LegoFullScreenMovie' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E1, name = 'SetValue' + +0x1e75 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1e74, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 36, class name = LegoFullScreenMovie, UDT(0x00001e75) + +0x1e76 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x184C, + list[1] = public, VANILLA, 0x184A, + +0x1e77 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Lego3DManager, UDT(0x00004e68) + +0x1e78 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E77 + +0x1e79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1E78, Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e7a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x178B + +0x1e7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1E7A, Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e7c : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 108 + Name = + +0x1e7d : Length = 30, Leaf = 0x1506 LF_UNION + # members = 0, field list type 0x0000, FORWARD REF, Size = 0 ,class name = _LARGE_INTEGER, UDT(0x000028b0) + +0x1e7e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E7D + +0x1e7f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 16 + Name = + +0x1e80 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 57 + Name = + +0x1e81 : Length = 1054, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk64' + list[14] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk6c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk70' + list[17] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[18] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[20] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[22] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[23] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk4e8' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[26] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[27] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[28] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[32] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[34] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[36] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[39] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[40] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[41] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[42] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[43] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[45] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x1e82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x1e81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x1e83 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x189E, + list[1] = public, VIRTUAL, 0x189D, + +0x1e84 : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13AB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x189D, name = 'LegoSoundManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x189D, name = '~LegoSoundManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18A0, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1E83, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x189F, name = 'Create' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x189D, name = 'Init' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'unk0x3c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'unk0x40' + +0x1e85 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1e84, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 68, class name = LegoSoundManager, UDT(0x0000330c) + +0x1e86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1e87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18FD, Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x128A, Class type = 0x10C2, This type = 0x197E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1e89 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00003715) + +0x1e8a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E89 + +0x1e8b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x19A2 + +0x1e8c : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectInputA, UDT(0x000020f5) + +0x1e8d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E8C + +0x1e8e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirectInputDeviceA, UDT(0x00002123) + +0x1e8f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E8E + +0x1e90 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 248 + Name = + +0x1e91 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagJOYCAPSA, UDT(0x00002126) + +0x1e92 : Length = 1154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'LegoInputManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x197F, name = '~LegoInputManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19B4, name = 'QueueEvent' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19AC, name = 'Register' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19AC, name = 'UnRegister' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1980, name = 'Tickle' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1981, name = 'Create' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x197F, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19A7, name = 'CreateAndAcquireKeyboard' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'ReleaseDX' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1980, name = 'GetJoystickId' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x19AB, name = 'GetJoystickState' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'SetTimer' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'KillTimer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x19B0, name = 'SetCamera' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'ClearCamera' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x19B2, name = 'SetWorld' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'ClearWorld' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1E86, name = 'SetUnknown88' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1E86, name = 'SetUnknown336' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1E87, name = 'GetControlManager' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E88, name = 'GetWorld' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x197F, name = 'ProcessEvents' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x19B7, name = 'ProcessOneEvent' + list[25] = LF_MEMBER, public, type = 0x11D9, offset = 64 + member name = 'm_criticalSection' + list[26] = LF_MEMBER, public, type = 0x1E8A, offset = 92 + member name = 'm_unk0x5c' + list[27] = LF_MEMBER, public, type = 0x19AE, offset = 96 + member name = 'm_camera' + list[28] = LF_MEMBER, public, type = 0x128A, offset = 100 + member name = 'm_world' + list[29] = LF_MEMBER, public, type = 0x1E8B, offset = 104 + member name = 'm_eventQueue' + list[30] = LF_MEMBER, public, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[31] = LF_MEMBER, public, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[32] = LF_MEMBER, public, type = T_UINT4(0075), offset = 116 + member name = 'm_unk0x74' + list[33] = LF_MEMBER, public, type = T_UINT4(0075), offset = 120 + member name = 'm_timer' + list[34] = LF_MEMBER, public, type = T_UINT4(0075), offset = 124 + member name = 'm_timeout' + list[35] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[36] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 129 + member name = 'm_unk0x81' + list[37] = LF_MEMBER, public, type = 0x18FD, offset = 132 + member name = 'm_controlManager' + list[38] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 136 + member name = 'm_unk0x88' + list[39] = LF_MEMBER, public, type = 0x1E8D, offset = 140 + member name = 'm_directInput' + list[40] = LF_MEMBER, public, type = 0x1E8F, offset = 144 + member name = 'm_directInputDevice' + list[41] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 148 + member name = 'm_unk0x94' + list[42] = LF_MEMBER, public, type = T_UINT4(0075), offset = 152 + member name = 'm_unk0x98' + list[43] = LF_MEMBER, public, type = 0x1E90, offset = 156 + member name = 'm_unk0x9c' + list[44] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 404 + member name = 'm_unk0x194' + list[45] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 405 + member name = 'm_unk0x195' + list[46] = LF_MEMBER, public, type = T_INT4(0074), offset = 408 + member name = 'm_joyid' + list[47] = LF_MEMBER, public, type = T_INT4(0074), offset = 412 + member name = 'm_joystickIndex' + list[48] = LF_MEMBER, public, type = 0x1E91, offset = 416 + member name = 'm_joyCaps' + list[49] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 820 + member name = 'm_useJoystick' + list[50] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 821 + member name = 'm_unk0x335' + list[51] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 822 + member name = 'm_unk0x336' + +0x1e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 52, field list type 0x1e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 824, class name = LegoInputManager, UDT(0x00001e93) + +0x1e94 : Length = 998, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x1953, name = 'GetDefaults' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1955, name = 'SetDefaults' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'LegoNavController' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194C, name = '~LegoNavController' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1950, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1951, name = 'SetControlMax' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'ResetToDefault' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1957, name = 'SetTargets' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1959, name = 'CalculateNewTargetSpeed' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x195B, name = 'CalculateNewAccel' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x195D, name = 'CalculateNewVel' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_hMax' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_vMax' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 16 + member name = 'm_mouseDeadzone' + list[16] = LF_MEMBER, private, type = T_REAL32(0040), offset = 20 + member name = 'm_zeroThreshold' + list[17] = LF_MEMBER, private, type = T_REAL32(0040), offset = 24 + member name = 'unk_18' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 28 + member name = 'unk_1C' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 32 + member name = 'm_targetMovementSpeed' + list[20] = LF_MEMBER, private, type = T_REAL32(0040), offset = 36 + member name = 'm_targetTurnSpeed' + list[21] = LF_MEMBER, private, type = T_REAL32(0040), offset = 40 + member name = 'm_movementMaxSpeed' + list[22] = LF_MEMBER, private, type = T_REAL32(0040), offset = 44 + member name = 'm_turnMaxSpeed' + list[23] = LF_MEMBER, private, type = T_REAL32(0040), offset = 48 + member name = 'm_movementAccel' + list[24] = LF_MEMBER, private, type = T_REAL32(0040), offset = 52 + member name = 'm_turnAccel' + list[25] = LF_MEMBER, private, type = T_REAL32(0040), offset = 56 + member name = 'm_movementMaxAccel' + list[26] = LF_MEMBER, private, type = T_REAL32(0040), offset = 60 + member name = 'm_turnMaxAccel' + list[27] = LF_MEMBER, private, type = T_REAL32(0040), offset = 64 + member name = 'm_movementMinAccel' + list[28] = LF_MEMBER, private, type = T_REAL32(0040), offset = 68 + member name = 'm_turnMinAccel' + list[29] = LF_MEMBER, private, type = T_REAL32(0040), offset = 72 + member name = 'm_movementDecel' + list[30] = LF_MEMBER, private, type = T_REAL32(0040), offset = 76 + member name = 'm_turnDecel' + list[31] = LF_MEMBER, private, type = T_REAL32(0040), offset = 80 + member name = 'm_turnSensitivity' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 84 + member name = 'm_turnUseVelocity' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 88 + member name = 'm_time' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 92 + member name = 'm_trackDefault' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 93 + member name = 'm_unk5D' + list[36] = LF_MEMBER, private, type = 0x19D6, offset = 94 + member name = 'm_unk5E' + list[37] = LF_MEMBER, private, type = T_INT4(0074), offset = 96 + member name = 'm_unk60' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 100 + member name = 'm_unk64' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 104 + member name = 'm_unk68' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 108 + member name = 'm_unk6C' + +0x1e95 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x1e94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +0x1e96 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18C0, name = 'LegoPlantManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18C0, name = '~LegoPlantManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18C4, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18C3, name = 'ClassName' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x18C0, name = 'Init' + +0x1e97 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1e96, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoPlantManager, UDT(0x00001e97) + +0x1e98 : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A27, name = 'LegoBuildingManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A27, name = '~LegoBuildingManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A2B, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1A25, name = 'configureLegoBuildingManager' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1A27, name = 'Init' + +0x1e99 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1e98, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoBuildingManager, UDT(0x00001e99) + +0x1e9a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x17ED + +0x1e9b : Length = 650, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'MxBackgroundAudioManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17DE, name = '~MxBackgroundAudioManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E7, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E1, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E2, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x17E9, name = 'StartAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x17E9, name = 'StopAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x17EB, name = 'PlayMusic' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FUN_1007ee70' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FUN_1007ef40' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FadeInOrFadeOut' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x17EC, name = 'Enable' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17E4, + vfptr offset = 20, name = 'Create' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'Stop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'LowerVolume' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'RaiseVolume' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x17DE, name = 'Init' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x17E6, name = 'OpenMusic' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x17DE, name = 'DestroyMusic' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 8 + member name = 'm_musicEnabled' + list[22] = LF_MEMBER, private, type = 0x108B, offset = 12 + member name = 'm_action1' + list[23] = LF_MEMBER, private, type = 0x1E9A, offset = 160 + member name = 'm_unka0' + list[24] = LF_MEMBER, private, type = 0x108B, offset = 164 + member name = 'm_action2' + list[25] = LF_MEMBER, private, type = 0x1E9A, offset = 312 + member name = 'm_unk138' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 316 + member name = 'm_unk13c' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 320 + member name = 'm_unk140' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 324 + member name = 'm_targetVolume' + list[29] = LF_MEMBER, private, type = T_SHORT(0011), offset = 328 + member name = 'm_unk148' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 332 + member name = 'm_script' + +0x1e9c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x1e9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 336, class name = MxBackgroundAudioManager, UDT(0x00003288) + +0x1e9d : Length = 26, Leaf = 0x1506 LF_UNION + # members = 0, field list type 0x0000, FORWARD REF, Size = 0 ,class name = flag_bitfield, UDT(0x00002067) + +0x1e9e : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_USHORT(0021) + Index type = T_SHORT(0011) + length = 1280 + Name = + +0x1e9f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_USHORT(0021) + Index type = T_SHORT(0011) + length = 960 + Name = + +0x1ea0 : Length = 798, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x127C, name = 'MxTransitionManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127C, name = '~MxTransitionManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x128D, name = 'SetWaitIndicator' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1281, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1280, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1281, + vfptr offset = 20, name = 'GetDDrawSurfaceFromVideoManager' + list[8] = LF_NESTTYPE, type = 0x1283, TransitionType + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1285, name = 'StartTransition' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1288, name = 'EndTransition' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_None' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Dissolve' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Pixelation' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Wipe' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Windows' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Broken' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SubmitCopyRect' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SetupCopyRect' + list[19] = LF_MEMBER, private, type = 0x128B, offset = 8 + member name = 'm_waitIndicator' + list[20] = LF_MEMBER, private, type = 0x1D56, offset = 12 + member name = 'm_copyRect' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 28 + member name = 'm_copyBuffer' + list[22] = LF_MEMBER, private, type = 0x1E9D, offset = 32 + member name = 'm_copyFlags' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 36 + member name = 'm_unk24' + list[24] = LF_MEMBER, private, type = 0x1E9D, offset = 40 + member name = 'm_unk28' + list[25] = LF_MEMBER, private, type = 0x1283, offset = 44 + member name = 'm_transitionType' + list[26] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 52 + member name = 'm_animationTimer' + list[28] = LF_MEMBER, private, type = 0x1E9E, offset = 54 + member name = 'm_columnOrder' + list[29] = LF_MEMBER, private, type = 0x1E9F, offset = 1334 + member name = 'm_randomShift' + list[30] = LF_MEMBER, private, type = T_ULONG(0022), offset = 2296 + member name = 'm_systemTime' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 2300 + member name = 'm_animationSpeed' + +0x1ea1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x1ea0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +0x1ea2 : Length = 26, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, private, VANILLA, index = 0x1867, name = 'WriteSaveData3' + +0x1ea3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x1ea2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = LegoUnkSaveDataWriter, UDT(0x00001ea3) + +0x1ea4 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AAB, name = 'HistoryBook' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AAB, name = '~HistoryBook' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB0, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AAE, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AAF, name = 'IsA' + +0x1ea5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1ea4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = HistoryBook, UDT(0x00001ea5) + +0x1ea6 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AA3, name = 'Hospital' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA3, name = '~Hospital' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA6, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA7, name = 'IsA' + +0x1ea7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1ea6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Hospital, UDT(0x0000449d) + +0x1ea8 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A9C, name = 'HospitalState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A9F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA0, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A9C, name = '~HospitalState' + +0x1ea9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1ea8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = HospitalState, UDT(0x00003e13) + +0x1eaa : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A93, name = 'Infocenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A93, name = '~Infocenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A98, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A99, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A96, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A97, name = 'IsA' + +0x1eab : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1eaa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Infocenter, UDT(0x00003f03) + +0x1eac : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A8B, name = 'InfocenterDoor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A8B, name = '~InfocenterDoor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A90, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A8E, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A8F, name = 'IsA' + +0x1ead : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1eac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = InfocenterDoor, UDT(0x00001ead) + +0x1eae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x19CD, This type = 0x1A83, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1eaf : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 112 + Name = + +0x1eb0 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 28 + Name = + +0x1eb1 : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A84, name = 'InfocenterState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A84, name = '~InfocenterState' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A87, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A88, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EAE, name = 'GetInfocenterBufferElement' + list[6] = LF_MEMBER, private, type = 0x1EAF, offset = 8 + member name = 'pad' + list[7] = LF_MEMBER, private, type = 0x1EB0, offset = 120 + member name = 'm_buffer' + +0x1eb2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1eb1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 148, class name = InfocenterState, UDT(0x000032fa) + +0x1eb3 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A7E, name = '~Isle' + +0x1eb4 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1eb3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Isle, UDT(0x00003478) + +0x1eb5 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18E4, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11BB, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11BC, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x11C2, name = 'IsleActor' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x11C2, name = '~IsleActor' + +0x1eb6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1eb5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = IsleActor, UDT(0x00001eb6) + +0x1eb7 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A71, name = 'Jetski' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A74, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A75, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk160' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A71, name = '~Jetski' + +0x1eb8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1eb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +0x1eb9 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A6A, name = 'JukeBox' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6D, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6E, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A6A, name = '~JukeBox' + +0x1eba : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1eb9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = JukeBox, UDT(0x00003da7) + +0x1ebb : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A63, name = 'JukeBoxEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A63, name = '~JukeBoxEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A66, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A67, name = 'IsA' + +0x1ebc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1ebb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = JukeBoxEntity, UDT(0x00001ebc) + +0x1ebd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A5E + +0x1ebe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1EBD + +0x1ebf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A5E, This type = 0x1EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ec0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A5E, This type = 0x1EBE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ec1 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EBF, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EC0, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A60, name = 'VTable0x14' + +0x1ec2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1ec1, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = JukeBoxState, UDT(0x00003daa) + +0x1ec3 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_Bit2' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 128, name = 'Flag_Bit8' + list[4] = LF_ENUMERATE, public, value = (LF_USHORT) 32768, name = 'Flag_Bit16' + +0x1ec4 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1ec3 +NESTED, enum name = MxDSChunk::__unnamed + +0x1ec5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x1ec6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x1ec7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1ec8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PUCHAR(0420) + +0x1ec9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x1eca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ecb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ecc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ecd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ece : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0c' + list[17] = LF_MEMBER, private, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[19] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x1ecf : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x1ece, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x1ed0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ed1 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 28 + member name = 'm_unk1c' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1ED0, name = '~MxStreamChunk' + +0x1ed2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x1ed3 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 68 + Name = + +0x1ed4 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'FUN_100b7ed0' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[9] = LF_MEMBER, private, type = 0x1ED3, offset = 8 + member name = 'm_pad' + +0x1ed5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1ed4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x1ed6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1398, This type = 0x1399, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ed7 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1586, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED6, name = 'MxStreamChunkList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139B, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x139C, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1ED6, name = '~MxStreamChunkList' + +0x1ed8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1ed7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxStreamChunkList, UDT(0x00001ed8) + +0x1ed9 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x11d5 + +0x1eda : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1ED9 + +0x1edb : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1592, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1592, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1593, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1594, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x1EDA, offset = 12 + member name = 'm_customDestructor' + +0x1edc : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1edb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035f7) + +0x1edd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x1ede : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1edf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1EDA + +0x1ee0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1edf, This adjust = 0 + +0x1ee1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00001fae) + +0x1ee2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1EE1 + +0x1ee3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1EE2 + +0x1ee4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ee3, This adjust = 0 + +0x1ee5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x11CE + list[1] = 0x1EE2 + list[2] = 0x1EE2 + +0x1ee6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1EE2, Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1ee5, This adjust = 0 + +0x1ee7 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EE0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = '_InsertEntry' + +0x1ee8 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1ee7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x1ee9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x1582, + list[1] = public, VIRTUAL, 0x1581, + +0x1eea : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x15F2 + +0x1eeb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1398 + +0x1eec : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1584 + +0x1eed : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1581, name = 'MxMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = '~MxMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1598, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A36, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A37, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'StreamingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'RepeatingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'DoneTickle' + list[9] = LF_METHOD, count = 2, list = 0x1EE9, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x158F, name = 'StartAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'EndAction' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1582, name = 'Enable' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1599, + vfptr offset = 88, name = 'AppendChunk' + list[14] = LF_MEMBER, protected, type = 0x1EEA, offset = 64 + member name = 'm_subscriber' + list[15] = LF_MEMBER, protected, type = 0x1EEB, offset = 68 + member name = 'm_chunks' + list[16] = LF_MEMBER, protected, type = 0x1EEC, offset = 72 + member name = 'm_cursor' + list[17] = LF_MEMBER, protected, type = 0x11CE, offset = 76 + member name = 'm_currentChunk' + list[18] = LF_ONEMETHOD, protected, VANILLA, index = 0x1581, name = 'Init' + list[19] = LF_ONEMETHOD, protected, VANILLA, index = 0x158E, name = 'FUN_100b5650' + list[20] = LF_ONEMETHOD, protected, VANILLA, index = 0x158E, name = 'NextChunk' + +0x1eee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x1eed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +0x1eef : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1A59 + +0x1ef0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1EEF + +0x1ef1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1A59, This type = 0x1EF0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ef2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A59, This type = 0x1EF0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x1ef3 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A5B, name = 'LegoActionControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A5B, name = '~LegoActionControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EF1, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EF2, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A5B, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A5B, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A5B, name = 'ParseExtra' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A5C, name = 'AddToManager' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A5D, + vfptr offset = 92, name = 'Destroy' + list[10] = LF_MEMBER, private, type = 0x1050, offset = 80 + member name = 'm_unk0x50' + list[11] = LF_MEMBER, private, type = 0x1272, offset = 84 + member name = 'm_unk0x54' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk0x64' + +0x1ef4 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 24 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + +0x1ef5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x1ef3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ef4 + Size = 104, class name = LegoActionControlPresenter, UDT(0x00001ef5) + +0x1ef6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x129A + +0x1ef7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1EF6 + +0x1ef8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x129A, This type = 0x1EF7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ef9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x129A, This type = 0x1EF7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1efa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x129A, This type = 0x1EF7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1efb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x129A, This type = 0x129B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1efc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x129A, This type = 0x129B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x1efd : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_MEMBER, private, type = 0x10AE, offset = 0 + member name = 'm_client' + list[9] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[11] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_flags' + +0x1efe : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1efd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x1eff : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x12A0, offset = 8 + member name = '_Value' + +0x1f00 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x1eff, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x00001f00) + +0x1f01 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00001fb0) + +0x1f02 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1F01, offset = 0 + +0x1f03 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x1f02, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00001f03) + +0x1f04 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00001f7a) + +0x1f05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x000029a5) + +0x1f06 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12A0 + +0x1f07 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x129B + +0x1f08 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x129B + +0x1f09 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x000029b6) + +0x1f0a : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxTickleClient *,MxTickleClient * &,MxTickleClient * *,int>, UDT(0x00001f88) + +0x1f0b : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxTickleClient *,MxTickleClient * const &,MxTickleClient * const *,int>, UDT(0x00001f97) + +0x1f0c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F05 + +0x1f0d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F0C + +0x1f0e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1F09 + list[1] = 0x1F09 + list[2] = 0x1F0D + +0x1f0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f0e, This adjust = 0 + +0x1f10 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1921 + +0x1f11 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F10 + +0x1f12 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F11 + +0x1f13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f12, This adjust = 0 + +0x1f14 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x1F08 + list[2] = 0x1F0D + +0x1f15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f14, This adjust = 0 + +0x1f16 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F0D + +0x1f17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f16, This adjust = 0 + +0x1f18 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F0F, + list[1] = public, VANILLA, 0x1F13, + list[2] = public, VANILLA, 0x1F15, + list[3] = public, VANILLA, 0x1F17, + +0x1f19 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1921 + +0x1f1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F19, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f12, This adjust = 0 + +0x1f1b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F10 + +0x1f1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F09, Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f1e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F1C, + list[1] = public, VANILLA, 0x1F1D, + +0x1f1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F0B, Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F0A, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f21 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F1F, + list[1] = public, VANILLA, 0x1F20, + +0x1f22 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x12A0 + +0x1f23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f22, This adjust = 0 + +0x1f24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F05, Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f29 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F27, + list[1] = public, VANILLA, 0x1F28, + +0x1f2a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F08 + +0x1f2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f2a, This adjust = 0 + +0x1f2c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x1F08 + +0x1f2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f2c, This adjust = 0 + +0x1f2e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F09 + list[1] = 0x1F09 + +0x1f2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f2e, This adjust = 0 + +0x1f30 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F2D, + list[1] = public, VANILLA, 0x1F2F, + +0x1f31 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12A3 + list[1] = 0x1F09 + list[2] = 0x1F09 + +0x1f32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f31, This adjust = 0 + +0x1f33 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12A3 + list[1] = 0x1F07 + list[2] = 0x1F07 + +0x1f34 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f33, This adjust = 0 + +0x1f35 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12A3 + list[1] = T_UINT4(0075) + list[2] = 0x1F08 + +0x1f36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f35, This adjust = 0 + +0x1f37 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12A3 + list[1] = 0x1F08 + +0x1f38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f37, This adjust = 0 + +0x1f39 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F32, + list[1] = public, VANILLA, 0x1F34, + list[2] = public, VANILLA, 0x1F36, + list[3] = public, VANILLA, 0x1F38, + +0x1f3a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12A3 + list[1] = 0x12A3 + +0x1f3b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f3a, This adjust = 0 + +0x1f3c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12A3 + +0x1f3d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f3c, This adjust = 0 + +0x1f3e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F3B, + list[1] = public, VANILLA, 0x1F3D, + +0x1f3f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F19 + +0x1f40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f3f, This adjust = 0 + +0x1f41 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12A3 + list[1] = 0x1F19 + list[2] = 0x12A3 + list[3] = 0x12A3 + +0x1f42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1f41, This adjust = 0 + +0x1f43 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12A3 + list[1] = 0x1F19 + list[2] = 0x12A3 + +0x1f44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1f43, This adjust = 0 + +0x1f45 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12A3 + list[1] = 0x1F19 + +0x1f46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f45, This adjust = 0 + +0x1f47 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F42, + list[1] = public, VANILLA, 0x1F44, + list[2] = public, VANILLA, 0x1F46, + +0x1f48 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00001f6c) + +0x1f49 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F48 + +0x1f4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f49, This adjust = 0 + +0x1f4b : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00001f62) + +0x1f4c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F4B + +0x1f4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f4c, This adjust = 0 + +0x1f4e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F4D, + list[1] = public, VANILLA, 0x1923, + +0x1f4f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00001f75) + +0x1f50 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F19 + list[1] = 0x1F4F + +0x1f51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f50, This adjust = 0 + +0x1f52 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F51, + list[1] = public, VANILLA, 0x1F40, + +0x1f53 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F4F + +0x1f54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f53, This adjust = 0 + +0x1f55 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F54, + list[1] = public, VANILLA, 0x1923, + +0x1f56 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12A6 + list[1] = 0x12A6 + +0x1f57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A6, Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f56, This adjust = 0 + +0x1f58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12a7, This adjust = 0 + +0x1f59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1921, This type = 0x1F1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f5a : Length = 1142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x12A5, _Node + list[2] = LF_NESTTYPE, type = 0x12A6, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x1F04, _Acc + list[4] = LF_NESTTYPE, type = 0x1921, _Myt + list[5] = LF_NESTTYPE, type = 0x1F05, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x1F06, _Tptr + list[9] = LF_NESTTYPE, type = 0x1F07, _Ctptr + list[10] = LF_NESTTYPE, type = 0x12AB, reference + list[11] = LF_NESTTYPE, type = 0x1F08, const_reference + list[12] = LF_NESTTYPE, type = 0x12A0, value_type + list[13] = LF_NESTTYPE, type = 0x12A3, iterator + list[14] = LF_NESTTYPE, type = 0x1F09, const_iterator + list[15] = LF_NESTTYPE, type = 0x1F0A, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x1F0B, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x1F18, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x1F09, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1923, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1F1A, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x1F1E, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x1F1E, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x1F21, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x1F21, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1F23, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1F24, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1F24, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1F25, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1F26, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x1F29, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x1F29, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1F2B, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1923, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1F2B, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1923, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x1F30, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x1F39, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x1F3E, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1923, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x1F40, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x1F47, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x1F2B, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x1F48, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x1F4A, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x1F4E, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x1F4B, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x1F52, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x1F4F, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x1F55, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1923, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x1F57, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1F58, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1F42, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1F59, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x1F05, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x12A6, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x1f5b : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x1f5a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00001f5b) + +0x1f5c : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00001f70) + +0x1f5d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F4B + +0x1f5e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F5D + +0x1f5f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F08 + list[1] = 0x1F08 + +0x1f60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1F4B, This type = 0x1F5E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f5f, This adjust = 0 + +0x1f61 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1F5C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1F60, name = 'operator()' + +0x1f62 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1f61, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00001f62) + +0x1f63 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00001f6e) + +0x1f64 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F48 + +0x1f65 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F5D + +0x1f66 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F65 + list[1] = 0x1F08 + +0x1f67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F48, This type = 0x1F64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f66, This adjust = 0 + +0x1f68 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F48 + +0x1f69 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F68 + +0x1f6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1F48, This type = 0x1F69, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f2a, This adjust = 0 + +0x1f6b : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1F63, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1F67, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1F6A, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x1F4B, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x12A0, offset = 4 + member name = 'value' + +0x1f6c : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1f6b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00001f6c) + +0x1f6d : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12A0, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x1f6e : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1f6d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00001f6e) + +0x1f6f : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12A0, first_argument_type + list[1] = LF_NESTTYPE, type = 0x12A0, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x1f70 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x1f6f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00001f70) + +0x1f71 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F4F + +0x1f72 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F71 + +0x1f73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1F4F, This type = 0x1F72, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f5f, This adjust = 0 + +0x1f74 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1F5C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1F73, name = 'operator()' + +0x1f75 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1f74, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00001f75) + +0x1f76 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12A6 + +0x1f77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F76, Class type = 0x1F04, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x12a7, This adjust = 0 + +0x1f78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x1F04, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x12a7, This adjust = 0 + +0x1f79 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1F76, _Nodepref + list[1] = LF_NESTTYPE, type = 0x12AB, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1F77, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1F77, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1F78, name = '_Value' + +0x1f7a : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x1f79, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00001f7a) + +0x1f7b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F0A + +0x1f7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F0A, This type = 0x1F7B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f3c, This adjust = 0 + +0x1f7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F0A, This type = 0x1F7B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f7e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F7C, + list[1] = public, VANILLA, 0x1F7D, + +0x1f7f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F0A + +0x1f80 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F7F + +0x1f81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12A3, Class type = 0x1F0A, This type = 0x1F80, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x1F0A, This type = 0x1F80, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F0A, Class type = 0x1F0A, This type = 0x1F7B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1f84 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F0A + +0x1f85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F84, Class type = 0x1F0A, This type = 0x1F7B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f86 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F83, + list[1] = public, VANILLA, 0x1F85, + +0x1f87 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12A2, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1F0A, _Myt + list[2] = LF_NESTTYPE, type = 0x12A3, iter_type + list[3] = LF_NESTTYPE, type = 0x12A0, value_type + list[4] = LF_NESTTYPE, type = 0x12AB, reference_type + list[5] = LF_NESTTYPE, type = 0x1F06, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x1F7E, name = 'reverse_bidirectional_iterator >::iterator,MxTickleClient *,MxTickleClient * &,MxTickleClient * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1F81, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1F82, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x1F86, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x1F86, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x12A3, offset = 0 + member name = 'current' + +0x1f88 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1f87, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxTickleClient *,MxTickleClient * &,MxTickleClient * *,int>, UDT(0x00001f88) + +0x1f89 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F0B + +0x1f8a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F09 + +0x1f8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F0B, This type = 0x1F89, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f8a, This adjust = 0 + +0x1f8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F0B, This type = 0x1F89, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f8d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F8B, + list[1] = public, VANILLA, 0x1F8C, + +0x1f8e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F0B + +0x1f8f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F8E + +0x1f90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F09, Class type = 0x1F0B, This type = 0x1F8F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x1F0B, This type = 0x1F8F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F0B, Class type = 0x1F0B, This type = 0x1F89, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1f93 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F0B + +0x1f94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F93, Class type = 0x1F0B, This type = 0x1F89, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1f95 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F92, + list[1] = public, VANILLA, 0x1F94, + +0x1f96 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12A2, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1F0B, _Myt + list[2] = LF_NESTTYPE, type = 0x1F09, iter_type + list[3] = LF_NESTTYPE, type = 0x12A0, value_type + list[4] = LF_NESTTYPE, type = 0x1F08, reference_type + list[5] = LF_NESTTYPE, type = 0x1F07, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x1F8D, name = 'reverse_bidirectional_iterator >::const_iterator,MxTickleClient *,MxTickleClient * const &,MxTickleClient * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1F90, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1F91, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x1F95, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x1F95, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x1F09, offset = 0 + member name = 'current' + +0x1f97 : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1f96, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxTickleClient *,MxTickleClient * const &,MxTickleClient * const *,int>, UDT(0x00001f97) + +0x1f98 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1924 + +0x1f99 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F98 + +0x1f9a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F99 + +0x1f9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1924, This type = 0x1925, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f9a, This adjust = 0 + +0x1f9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1924, This type = 0x1925, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f2c, This adjust = 0 + +0x1f9d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1F9B, + list[1] = public, VANILLA, 0x1F9C, + list[2] = public, VANILLA, 0x1926, + +0x1f9e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1924 + +0x1f9f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F9E + +0x1fa0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1924, This type = 0x1925, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f9f, This adjust = 0 + +0x1fa1 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1921, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1924, _Myt + list[2] = LF_NESTTYPE, type = 0x1F05, _A + list[3] = LF_METHOD, count = 2, list = 0x1F9D, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FA0, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1926, name = '~List' + +0x1fa2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1fa1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00001fa2) + +0x1fa3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1EE1 + +0x1fa4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1ee5, This adjust = 0 + +0x1fa5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11CE + list[1] = 0x1EE2 + +0x1fa6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1fa5, This adjust = 0 + +0x1fa7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fa8 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1FA4, + list[1] = public, VANILLA, 0x1FA6, + list[2] = public, VANILLA, 0x1FA7, + +0x1fa9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11CE, Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1faa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1EE2, Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x1fac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1EE1, This type = 0x1FA3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ee3, This adjust = 0 + +0x1fad : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1FA8, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FA9, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FAA, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FAA, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FAB, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FAC, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FAC, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x11CE, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x1EE2, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x1EE2, offset = 8 + member name = 'm_next' + +0x1fae : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1fad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00001fae) + +0x1faf : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x12A0, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x1fb0 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x1faf, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00001fb0) + +0x1fb1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1584, This type = 0x1585, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fb2 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1583, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1589, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1FB1, name = '~MxListCursorChild' + +0x1fb3 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1fb2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00001fb3) + +0x1fb4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1CA9 + +0x1fb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1CA9, This type = 0x1FB4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fb6 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxUnkListNode, UDT(0x00001fbb) + +0x1fb7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FB6 + +0x1fb8 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1FB5, name = 'MxUnkList' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'm_unk00' + list[2] = LF_MEMBER, public, type = 0x1FB7, offset = 4 + member name = 'm_head' + list[3] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + +0x1fb9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1fb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxUnkList, UDT(0x00001fb9) + +0x1fba : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1FB7, offset = 0 + member name = 'm_unk00' + list[1] = LF_MEMBER, public, type = 0x1FB7, offset = 4 + member name = 'm_unk04' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_unk08' + +0x1fbb : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x1fba, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxUnkListNode, UDT(0x00001fbb) + +0x1fbc : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A42, name = 'LegoAnimMMPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A45, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A46, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A42, name = '~LegoAnimMMPresenter' + +0x1fbd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1fbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +0x1fbe : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = tagBITMAPINFOHEADER, UDT(0x00001fd8) + +0x1fbf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FBE + +0x1fc0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11EE + +0x1fc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1FBF, Class type = 0x11ED, This type = 0x1FC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x1FC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x11ED, This type = 0x1FC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fc4 : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'vtable28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'vtable2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'vtable30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[22] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[23] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[24] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[25] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[27] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x1fc5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x1fc4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x1fc6 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_Bit2' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[4] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + +0x1fc7 : Length = 42, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x1fc6 +NESTED, enum name = MxVideoPresenter::__unnamed + +0x1fc8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x11F9, + list[1] = public, VIRTUAL, 0x11E5, + +0x1fc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1718, Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fca : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11EB + +0x1fcb : Length = 770, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FC7, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x11E5, name = 'MxVideoPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = '~MxVideoPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3A, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3B, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StreamingTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'RepeatingTickle' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'Unk5Tickle' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'AddToManager' + list[12] = LF_METHOD, count = 2, list = 0x1FC8, name = 'Destroy' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'EndAction' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'PutData' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121B, name = 'IsHit' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 92, name = 'LoadHeader' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 96, name = 'CreateBitmap' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 100, name = 'NextFrame' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 104, name = 'LoadFrame' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 108, name = 'VTable0x6c' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 112, name = 'VTable0x70' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 116, name = 'VTable0x74' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E8, + vfptr offset = 120, name = 'VTable0x78' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 124, name = 'VTable0x7c' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 128, name = 'GetWidth' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 132, name = 'GetHeight' + list[27] = LF_NESTTYPE, type = 0x11EB, AlphaMask + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC9, name = 'GetBitmap' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x11E5, name = 'Init' + list[30] = LF_MEMBER, protected, type = 0x1718, offset = 80 + member name = 'm_bitmap' + list[31] = LF_MEMBER, protected, type = 0x1FCA, offset = 84 + member name = 'm_alpha' + list[32] = LF_MEMBER, protected, type = 0x11E7, offset = 88 + member name = 'm_unk58' + list[33] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 92 + member name = 'm_unk5c' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 94 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 96 + member name = 'm_unk60' + +0x1fcc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x1fcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x1fcd : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A0E, name = 'LegoAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3E, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3F, name = 'IsA' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1A0E, name = 'Init' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A0E, name = '~LegoAnimPresenter' + +0x1fce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1fcd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoAnimPresenter, UDT(0x00001fce) + +0x1fcf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x11F5, + list[1] = public, VANILLA, 0x11F1, + +0x1fd0 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 4 + member name = 'm_bitmask' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 8 + member name = 'm_width' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 10 + member name = 'm_height' + list[4] = LF_METHOD, count = 2, list = 0x1FCF, name = 'AlphaMask' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11F6, + vfptr offset = 0, name = '~AlphaMask' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x11F8, name = 'IsHit' + +0x1fd1 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x1fd0, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 12, class name = MxVideoPresenter::AlphaMask, UDT(0x00001fd1) + +0x1fd2 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'rgbBlue' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'rgbGreen' + list[2] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'rgbRed' + list[3] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 3 + member name = 'rgbReserved' + +0x1fd3 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x1fd2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = tagRGBQUAD, UDT(0x00001fd3) + +0x1fd4 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1453 + Index type = T_SHORT(0011) + length = 1024 + Name = + +0x1fd5 : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1FBE, offset = 0 + member name = 'bmiHeader' + list[1] = LF_MEMBER, public, type = 0x1FD4, offset = 40 + member name = 'bmiColors' + +0x1fd6 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1fd5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +0x1fd7 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'biSize' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'biWidth' + list[2] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'biHeight' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 12 + member name = 'biPlanes' + list[4] = LF_MEMBER, public, type = T_USHORT(0021), offset = 14 + member name = 'biBitCount' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'biCompression' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'biSizeImage' + list[7] = LF_MEMBER, public, type = T_LONG(0012), offset = 24 + member name = 'biXPelsPerMeter' + list[8] = LF_MEMBER, public, type = T_LONG(0012), offset = 28 + member name = 'biYPelsPerMeter' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'biClrUsed' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'biClrImportant' + +0x1fd8 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x1fd7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = tagBITMAPINFOHEADER, UDT(0x00001fd8) + +0x1fd9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Lego3DView, UDT(0x00004e47) + +0x1fda : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FD9 + +0x1fdb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E77 + +0x1fdc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1FDA, Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fdd : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[1] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_unk00' + list[2] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_unk04' + list[3] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + +0x1fde : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1fdd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +0x1fdf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1790 + +0x1fe0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1FDF, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fe1 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3D, UDT(0x000028d2) + +0x1fe2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FE1 + +0x1fe3 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DDevice, UDT(0x00002907) + +0x1fe4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FE3 + +0x1fe5 : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'Clear' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x1797, name = 'BuildErrorString' + list[10] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[11] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[12] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk88c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk890' + +0x1fe6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1fe5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x1fe7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1203 + +0x1fe8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1203, This type = 0x1FE7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x1fe9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1203, This type = 0x1FE7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1fea : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1FE8, + list[1] = public, VANILLA, 0x1FE9, + +0x1feb : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1FEA, name = 'MxSize32' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_height' + +0x1fec : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1feb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +0x1fed : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1258 + +0x1fee : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FED + +0x1fef : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14CB, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14CB, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14CC, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14CD, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x1FEE, offset = 12 + member name = 'm_customDestructor' + +0x1ff0 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1fef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035fd) + +0x1ff1 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'HashTableOpt_NoExpand' + list[1] = LF_ENUMERATE, public, value = 1, name = 'HashTableOpt_ExpandAdd' + list[2] = LF_ENUMERATE, public, value = 2, name = 'HashTableOpt_ExpandMultiply' + +0x1ff2 : Length = 54, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x1ff1 +NESTED, enum name = MxHashTable::HashTableOpt, UDT(0x00001ff2) + +0x1ff3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x125E, This type = 0x126D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1258, This adjust = 0 + +0x1ff4 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x14C9, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FF2, HashTableOpt + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'MxHashTable' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x126E, name = '~MxHashTable' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'Resize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF3, name = 'Add' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'DeleteAll' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14CE, + vfptr offset = 24, name = 'Hash' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1271, name = '_NodeInsert' + list[9] = LF_MEMBER, protected, type = 0x126F, offset = 16 + member name = 'm_slots' + list[10] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_numSlots' + list[11] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 24 + member name = 'm_autoResizeRatio' + list[12] = LF_MEMBER, protected, type = 0x1FF2, offset = 28 + member name = 'm_resizeOption' + list[13] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 32 + member name = 'm_increaseAmount' + list[14] = LF_MEMBER, protected, type = T_REAL64(0041), offset = 32 + member name = 'm_increaseFactor' + +0x1ff5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1ff4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 40, class name = MxHashTable, UDT(0x00003338) + +0x1ff6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x121D, This type = 0x121E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x1ff7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x121D, This type = 0x121E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x1ff8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x121D, This type = 0x121E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ff9 : Length = 750, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[33] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[34] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x1ffa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x1ff9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x1ffb : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1228, + list[1] = public, VANILLA, 0x122B, + list[2] = public, VANILLA, 0x1222, + +0x1ffc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1226, Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x1ffd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124e, This adjust = 0 + +0x1ffe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x1fff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1223, Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2000 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1225, Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2001 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2002 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1FFB, name = 'MxVideoParam' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1230, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1222, name = '~MxVideoParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x122C, name = 'SetDeviceName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFC, name = 'flags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFD, name = 'SetPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFE, name = 'SetBackBuffers' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFF, name = 'GetRect' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2000, name = 'GetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2001, name = 'GetBackBuffers' + list[10] = LF_MEMBER, private, type = 0x11FA, offset = 0 + member name = 'm_rect' + list[11] = LF_MEMBER, private, type = 0x1225, offset = 16 + member name = 'm_palette' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_backBuffers' + list[13] = LF_MEMBER, private, type = 0x121D, offset = 24 + member name = 'm_flags' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 28 + member name = 'm_unk1c' + list[15] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 32 + member name = 'm_deviceId' + +0x2003 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x2002, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +0x2004 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11E7, Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2005 : Length = 634, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'vtable24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'vtable28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'vtable2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'vtable30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'vtable34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1713, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'vtable44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[21] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[23] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[25] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[26] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x2006 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x2005, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x2007 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13C6, name = 'MxSemaphore' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x13C6, name = '~MxSemaphore' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13C7, + vfptr offset = 0, name = 'Init' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13C8, name = 'Wait' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x13C8, name = 'Release' + list[6] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 4 + member name = 'm_hSemaphore' + +0x2008 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2007, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 8, class name = MxSemaphore, UDT(0x00002008) + +0x2009 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x135E + +0x200a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12C1, This type = 0x12C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x200b : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x2009 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12C8, + vfptr offset = 0, name = 'Run' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x12C4, name = 'Start' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x12C3, name = 'Terminate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x12C5, name = 'Sleep' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x200A, name = 'IsRunning' + list[6] = LF_ONEMETHOD, protected, VANILLA, index = 0x12C3, name = 'MxThread' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12C3, + vfptr offset = 4, name = '~MxThread' + list[8] = LF_ONEMETHOD, private, STATIC, index = 0x12C7, name = 'ThreadProc' + list[9] = LF_MEMBER, private, type = T_ULONG(0022), offset = 4 + member name = 'm_hThread' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_threadId' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_running' + list[12] = LF_MEMBER, private, type = 0x13C4, offset = 16 + member name = 'm_semaphore' + list[13] = LF_MEMBER, protected, type = 0x10AE, offset = 24 + member name = 'm_target' + +0x200c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x200b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 28, class name = MxThread, UDT(0x00003c79) + +0x200d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12BC, This type = 0x12BD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x200e : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12C1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12BE, name = 'MxTickleThread' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x200D, name = '~MxTickleThread' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x12BF, name = 'Run' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 28 + member name = 'm_frequencyMS' + +0x200f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x200e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 32, class name = MxTickleThread, UDT(0x0000200f) + +0x2010 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13CF, This type = 0x13E2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2011 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13E3, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2010, name = 'MxRegionList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x13D3, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2010, name = '~MxRegionList' + +0x2012 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2011, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionList, UDT(0x000035ff) + +0x2013 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x13d2 + +0x2014 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2013 + +0x2015 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DE, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DE, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x13DF, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E1, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x2014, offset = 12 + member name = 'm_customDestructor' + +0x2016 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2015, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003602) + +0x2017 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x13F9, + list[1] = public, VANILLA, 0x1406, + +0x2018 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2019 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x201a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13D4 + +0x201b : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2017, name = 'MxRegionTopBottom' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141A, name = 'Clone' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x13F9, name = 'FUN_100c5280' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x141B, name = 'FUN_100c57b0' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetTop' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetBottom' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetTop' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetBottom' + list[8] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_top' + list[9] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_bottom' + list[10] = LF_MEMBER, private, type = 0x201A, offset = 8 + member name = 'm_leftRightList' + +0x201c : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x201b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +0x201d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x201e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x201f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2014 + +0x2020 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x201f, This adjust = 0 + +0x2021 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x141E + +0x2022 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2021, This adjust = 0 + +0x2023 : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2020, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = '_InsertEntry' + +0x2024 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2023, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x2025 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E3, This type = 0x13E4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x201f, This adjust = 0 + +0x2026 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13E6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2025, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13E5, name = '~MxPtrList' + +0x2027 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2026, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000360a) + +0x2028 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D4, This type = 0x1400, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2029 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1401, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2028, name = 'MxRegionLeftRightList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x13D8, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2028, name = '~MxRegionLeftRightList' + +0x202a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2029, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionLeftRightList, UDT(0x0000360c) + +0x202b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x13d7 + +0x202c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x202B + +0x202d : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13FC, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13FC, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x13FD, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13FF, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x202C, offset = 12 + member name = 'm_customDestructor' + +0x202e : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x202d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000360f) + +0x202f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x13D5 + +0x2030 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D5, This type = 0x202F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x2031 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13D6, Class type = 0x13D5, This type = 0x202F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2032 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x13D5, This type = 0x202F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2033 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D5, This type = 0x202F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2034 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2030, name = 'MxRegionLeftRight' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2031, name = 'Clone' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2032, name = 'GetLeft' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2032, name = 'GetRight' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2033, name = 'SetLeft' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2033, name = 'SetRight' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[7] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_right' + +0x2035 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x2034, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxRegionLeftRight, UDT(0x00003ebc) + +0x2036 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x2037 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2038 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x202C + +0x2039 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2038, This adjust = 0 + +0x203a : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2039, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = '_InsertEntry' + +0x203b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x203a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x203c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1401, This type = 0x1402, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2038, This adjust = 0 + +0x203d : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1404, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x203C, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1403, name = '~MxPtrList' + +0x203e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x203d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003614) + +0x203f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1223, Class type = 0x13D9, This type = 0x13DA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2040 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13CF + +0x2041 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DB, name = 'MxRegion' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DB, name = '~MxRegion' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13DB, + vfptr offset = 20, name = 'Reset' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E9, + vfptr offset = 24, name = 'vtable18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13F7, + vfptr offset = 28, name = 'vtable1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E8, + vfptr offset = 32, name = 'vtable20' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x203F, name = 'GetRect' + list[8] = LF_MEMBER, private, type = 0x2040, offset = 8 + member name = 'm_list' + list[9] = LF_MEMBER, private, type = 0x11FA, offset = 12 + member name = 'm_rect' + +0x2042 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2041, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +0x2043 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13D1 + list[1] = 0x141E + +0x2044 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2043, This adjust = 0 + +0x2045 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2046 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1427, + list[1] = public, VANILLA, 0x2044, + list[2] = public, VANILLA, 0x2045, + +0x2047 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13D1, Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2048 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x141E, Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2049 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x204a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x141D, This type = 0x1426, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2021, This adjust = 0 + +0x204b : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x2046, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2047, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2048, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2048, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2049, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x204A, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x204A, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x13D1, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x141E, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x141E, offset = 8 + member name = 'm_next' + +0x204c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x204b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x0000204c) + +0x204d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1422 + +0x204e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1424, This adjust = 0 + +0x204f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x13D6 + list[1] = 0x1423 + +0x2050 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x204f, This adjust = 0 + +0x2051 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2052 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x204E, + list[1] = public, VANILLA, 0x2050, + list[2] = public, VANILLA, 0x2051, + +0x2053 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x13D6, Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2054 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1423, Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2055 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x2056 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1422, This type = 0x204D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1428, This adjust = 0 + +0x2057 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x2052, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2053, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2054, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2054, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2055, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2056, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2056, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x13D6, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x1423, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x1423, offset = 8 + member name = 'm_next' + +0x2058 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2057, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00002058) + +0x2059 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1267 + +0x205a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1255 + list[1] = T_UINT4(0075) + +0x205b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1267, This type = 0x2059, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x205a, This adjust = 0 + +0x205c : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x205B, name = 'MxHashTableNode' + list[1] = LF_MEMBER, public, type = 0x1255, offset = 0 + member name = 'm_obj' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_hash' + list[3] = LF_MEMBER, public, type = 0x1268, offset = 8 + member name = 'm_prev' + list[4] = LF_MEMBER, public, type = 0x1268, offset = 12 + member name = 'm_next' + +0x205d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x205c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxHashTableNode, UDT(0x0000205d) + +0x205e : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 0, Type = T_UCHAR(0020) + +0x205f : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 1, Type = T_UCHAR(0020) + +0x2060 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 2, Type = T_UCHAR(0020) + +0x2061 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 3, Type = T_UCHAR(0020) + +0x2062 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 4, Type = T_UCHAR(0020) + +0x2063 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 5, Type = T_UCHAR(0020) + +0x2064 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 6, Type = T_UCHAR(0020) + +0x2065 : Length = 10, Leaf = 0x1205 LF_BITFIELD + bits = 1, starting position = 7, Type = T_UCHAR(0020) + +0x2066 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x205E, offset = 0 + member name = 'bit0' + list[1] = LF_MEMBER, public, type = 0x205F, offset = 0 + member name = 'bit1' + list[2] = LF_MEMBER, public, type = 0x2060, offset = 0 + member name = 'bit2' + list[3] = LF_MEMBER, public, type = 0x2061, offset = 0 + member name = 'bit3' + list[4] = LF_MEMBER, public, type = 0x2062, offset = 0 + member name = 'bit4' + list[5] = LF_MEMBER, public, type = 0x2063, offset = 0 + member name = 'bit5' + list[6] = LF_MEMBER, public, type = 0x2064, offset = 0 + member name = 'bit6' + list[7] = LF_MEMBER, public, type = 0x2065, offset = 0 + member name = 'bit7' + +0x2067 : Length = 26, Leaf = 0x1506 LF_UNION + # members = 8, field list type 0x2066, Size = 1 ,class name = flag_bitfield, UDT(0x00002067) + +0x2068 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_LONG(0012) + list[2] = T_32PVOID(0403) + +0x2069 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x2068 + +0x206a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2069 + +0x206b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +0x206c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1785 + +0x206d : Length = 1638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWM_SIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'a_850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[43] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[44] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009E020' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009D920' + +0x206e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x206d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x206f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 224 + Name = + +0x2070 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[2] = LF_MEMBER, public, type = 0x206F, offset = 0 + member name = 'm_unknown' + list[3] = LF_MEMBER, public, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x2071 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2070, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x2072 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1439 + +0x2073 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12C1 + +0x2074 : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15A2, name = 'MxMediaManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15A2, name = '~MxMediaManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15A3, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15A3, + vfptr offset = 20, name = 'InitPresenters' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15A2, + vfptr offset = 24, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15AB, + vfptr offset = 28, name = 'AddPresenter' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15AB, + vfptr offset = 32, name = 'RemovePresenter' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15A2, + vfptr offset = 36, name = 'StopPresenters' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15A3, name = 'Init' + list[10] = LF_MEMBER, protected, type = 0x2072, offset = 8 + member name = 'm_presenters' + list[11] = LF_MEMBER, protected, type = 0x2073, offset = 12 + member name = 'm_thread' + list[12] = LF_MEMBER, protected, type = 0x11D9, offset = 16 + member name = 'm_criticalSection' + +0x2075 : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 10 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + +0x2076 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2074, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2075 + Size = 44, class name = MxMediaManager, UDT(0x00002076) + +0x2077 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x206B + +0x2078 : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'p_guid' + list[1] = LF_MEMBER, public, type = 0x2077, offset = 4 + member name = 'm_mode_ARRAY' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'count' + list[3] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddcaps' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 376 + member name = 'a_178' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = 'DeviceModesInfo' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = '~DeviceModesInfo' + +0x2079 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2078, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x207a : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_LONG(0012), offset = 0 + member name = 'cx' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'cy' + +0x207b : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x207a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = tagSIZE, UDT(0x0000207b) + +0x207c : Length = 22, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1042, name = 'RemoveAll' + +0x207d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x207c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = ViewManager, UDT(0x0000207d) + +0x207e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Renderer, UDT(0x00003005) + +0x207f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x207E + +0x2080 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewLODList, UDT(0x000027cb) + +0x2081 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2080 + +0x2082 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x207F + list[1] = 0x2081 + +0x2083 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1020, This type = 0x102A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2082, This adjust = 0 + +0x2084 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1020, This type = 0x102A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2085 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2081 + +0x2086 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1020, This type = 0x102A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2085, This adjust = 0 + +0x2087 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x1028, vfptr offset = 52 + list[1] = public, INTRODUCING VIRTUAL, 0x102B, vfptr offset = 52 + +0x2088 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1122, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2083, name = 'ViewROI' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2084, name = '~ViewROI' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2086, name = 'SetLODList' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1024, name = 'IntrinsicImportance' + list[5] = LF_METHOD, count = 2, list = 0x2087, name = 'GetGeometry' + list[6] = LF_MEMBER, protected, type = 0x1029, offset = 220 + member name = 'geometry' + list[7] = LF_ONEMETHOD, protected, VIRTUAL, index = 0x1030, name = 'UpdateWorldData' + +0x2089 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2088, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = ViewROI, UDT(0x000043a6) + +0x208a : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A20, name = 'LegoCacheSound' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A20, name = '~LegoCacheSound' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A23, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A24, name = 'IsA' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1A20, name = 'Init' + +0x208b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x208a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoCacheSound, UDT(0x0000208b) + +0x208c : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A11, name = 'LegoCarBuild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A11, name = '~LegoCarBuild' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A17, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A16, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A14, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A15, name = 'IsA' + +0x208d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x208c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoCarBuild, UDT(0x0000208d) + +0x208e : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A0C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A07, name = 'LegoCarBuildAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A07, name = '~LegoCarBuildAnimPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A0A, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A0B, name = 'IsA' + +0x208f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x208e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoCarBuildAnimPresenter, UDT(0x0000208f) + +0x2090 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x19F1, + list[1] = public, VIRTUAL, 0x19EB, + +0x2091 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F0, + vfptr offset = 108, name = 'vtable6c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 76 + member name = 'm_unk4c' + +0x2092 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 28 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + +0x2093 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2091, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x2094 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = FLIC_HEADER, UDT(0x0000209d) + +0x2095 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2094 + +0x2096 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15D8, name = 'MxFlcPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = '~MxFlcPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E5, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DB, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DC, name = 'LoadHeader' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = 'CreateBitmap' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = 'VTable0x70' + list[8] = LF_MEMBER, protected, type = 0x2095, offset = 100 + member name = 'm_flicHeader' + +0x2097 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2096, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = MxFlcPresenter, UDT(0x00002d9d) + +0x2098 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19E4, name = 'LegoFlcTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E8, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x19E4, name = '~LegoFlcTexturePresenter' + +0x2099 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2098, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +0x209a : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 24 + Name = + +0x209b : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 40 + Name = + +0x209c : Length = 494, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'size' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'type' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'frames' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 8 + member name = 'width' + list[4] = LF_MEMBER, public, type = T_USHORT(0021), offset = 10 + member name = 'height' + list[5] = LF_MEMBER, public, type = T_USHORT(0021), offset = 12 + member name = 'depth' + list[6] = LF_MEMBER, public, type = T_USHORT(0021), offset = 14 + member name = 'flags' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'speed' + list[8] = LF_MEMBER, public, type = T_USHORT(0021), offset = 20 + member name = 'reserved1' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'created' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'creator' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'updated' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'updater' + list[13] = LF_MEMBER, public, type = T_USHORT(0021), offset = 40 + member name = 'aspect_dx' + list[14] = LF_MEMBER, public, type = T_USHORT(0021), offset = 42 + member name = 'aspect_dy' + list[15] = LF_MEMBER, public, type = T_USHORT(0021), offset = 44 + member name = 'ext_flags' + list[16] = LF_MEMBER, public, type = T_USHORT(0021), offset = 46 + member name = 'keyframes' + list[17] = LF_MEMBER, public, type = T_USHORT(0021), offset = 48 + member name = 'totalframes' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'req_memory' + list[19] = LF_MEMBER, public, type = T_USHORT(0021), offset = 56 + member name = 'max_regions' + list[20] = LF_MEMBER, public, type = T_USHORT(0021), offset = 58 + member name = 'transp_num' + list[21] = LF_MEMBER, public, type = 0x209A, offset = 60 + member name = 'reserved2' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 84 + member name = 'oframe1' + list[23] = LF_MEMBER, public, type = T_ULONG(0022), offset = 88 + member name = 'oframe2' + list[24] = LF_MEMBER, public, type = 0x209B, offset = 92 + member name = 'reserved3' + +0x209d : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 25, field list type 0x209c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 132, class name = FLIC_HEADER, UDT(0x0000209d) + +0x209e : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_targetName' + list[1] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_colorName' + +0x209f : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x209e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = ColorStringStruct, UDT(0x0000209f) + +0x20a0 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A0C, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19BF, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19C0, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x19C6, name = 'LegoLoopingAnimPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x19C6, name = '~LegoLoopingAnimPresenter' + +0x20a1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x20a0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoLoopingAnimPresenter, UDT(0x000020a1) + +0x20a2 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19BC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19BB, name = 'LegoHideAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19C3, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19C4, name = 'IsA' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x19BB, name = 'Init' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x19BB, name = '~LegoHideAnimPresenter' + +0x20a3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x20a2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoHideAnimPresenter, UDT(0x00003db3) + +0x20a4 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1989 + +0x20a5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20A4 + +0x20a6 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1987, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1987, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x198A, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x199C, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x20A5, offset = 12 + member name = 'm_customDestructor' + +0x20a7 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x20a6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003617) + +0x20a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1989, This adjust = 0 + +0x20a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20aa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20A5 + +0x20ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20aa, This adjust = 0 + +0x20ac : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x199F + +0x20ad : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20AC + +0x20ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20ad, This adjust = 0 + +0x20af : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1988 + list[1] = 0x20AC + list[2] = 0x20AC + +0x20b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x20AC, Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x20af, This adjust = 0 + +0x20b1 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20AB, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = '_InsertEntry' + +0x20b2 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x20b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x20b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19A4, This type = 0x19A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b6, This adjust = 0 + +0x20b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x19A4, This type = 0x19A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b6, This adjust = 0 + +0x20b5 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x199D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20B3, name = 'Enqueue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x20B4, name = 'Dequeue' + +0x20b6 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x20b5, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxQueue, UDT(0x000020b6) + +0x20b7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x199F + +0x20b8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x20B7 + +0x20b9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20B8 + +0x20ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20b9, This adjust = 0 + +0x20bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x20af, This adjust = 0 + +0x20bc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1988 + list[1] = 0x20AC + +0x20bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x20bc, This adjust = 0 + +0x20be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20bf : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x20BA, + list[1] = public, VANILLA, 0x20BB, + list[2] = public, VANILLA, 0x20BD, + list[3] = public, VANILLA, 0x20BE, + +0x20c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x20AC, Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1989, This adjust = 0 + +0x20c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199F, This type = 0x19A0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20ad, This adjust = 0 + +0x20c3 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x20BF, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19A1, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x20C0, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20C0, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20C1, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20C2, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20C2, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x1988, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x20AC, offset = 32 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x20AC, offset = 36 + member name = 'm_next' + list[10] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x20BE, name = '~MxListEntry' + +0x20c4 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x20c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxListEntry, UDT(0x000020c4) + +0x20c5 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19A4, offset = 0 + +0x20c6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x20c5, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoEventQueue, UDT(0x000020c6) + +0x20c7 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x00003633) + +0x20c8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E89 + +0x20c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x20cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20cc : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x181B + +0x20cd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20CC + +0x20ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20cd, This adjust = 0 + +0x20cf : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x000020e2) + +0x20d0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20CF + +0x20d1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20D0 + +0x20d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20d1, This adjust = 0 + +0x20d3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x20D0 + list[2] = 0x20D0 + +0x20d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x20D0, Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x20d3, This adjust = 0 + +0x20d5 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20CE, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = '_InsertEntry' + +0x20d6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x20d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x20d7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x20CF + +0x20d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x20d3, This adjust = 0 + +0x20d9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x20D0 + +0x20da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x20d9, This adjust = 0 + +0x20db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20dc : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x20D8, + list[1] = public, VANILLA, 0x20DA, + list[2] = public, VANILLA, 0x20DB, + +0x20dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x20D0, Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x20e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20CF, This type = 0x20D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20d1, This adjust = 0 + +0x20e1 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x20DC, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20DD, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x20DE, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20DE, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20DF, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20E0, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20E0, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x20D0, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x20D0, offset = 8 + member name = 'm_next' + +0x20e2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x20e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x000020e2) + +0x20e3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E8C + +0x20e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x20e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20e6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1E8F + +0x20e7 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1CB6 + list[1] = 0x20E6 + list[2] = 0x1770 + +0x20e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x20e7, This adjust = 0 + +0x20e9 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DIDEVICEINSTANCEA, UDT(0x00002130) + +0x20ea : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x20E9 + +0x20eb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20EA + +0x20ec : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x20EB + list[1] = T_32PVOID(0403) + +0x20ed : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = STD Near + Func attr = none + # Parms = 2, Arg list type = 0x20ec + +0x20ee : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20ED + +0x20ef : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x20EE + list[2] = T_32PVOID(0403) + list[3] = T_ULONG(0022) + +0x20f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x20ef, This adjust = 0 + +0x20f1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1CB6 + +0x20f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x20f1, This adjust = 0 + +0x20f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8C, This type = 0x20E3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e2e, This adjust = 0 + +0x20f4 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20E4, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20E5, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20E5, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20E8, + vfptr offset = 12, name = 'CreateDevice' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20F0, + vfptr offset = 16, name = 'EnumDevices' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20F2, + vfptr offset = 20, name = 'GetDeviceStatus' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20F3, + vfptr offset = 24, name = 'RunControlPanel' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20F3, + vfptr offset = 28, name = 'Initialize' + +0x20f5 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x20f4, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 4, class name = IDirectInputA, UDT(0x000020f5) + +0x20f6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E8E + +0x20f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x20f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x20f9 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DIDEVCAPS, UDT(0x00002128) + +0x20fa : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20F9 + +0x20fb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x20FA + +0x20fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x20fb, This adjust = 0 + +0x20fd : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DIDEVICEOBJECTINSTANCEA, UDT(0x0000212a) + +0x20fe : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x20FD + +0x20ff : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20FE + +0x2100 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x20FF + list[1] = T_32PVOID(0403) + +0x2101 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = STD Near + Func attr = none + # Parms = 2, Arg list type = 0x2100 + +0x2102 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2101 + +0x2103 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2102 + list[1] = T_32PVOID(0403) + list[2] = T_ULONG(0022) + +0x2104 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2103, This adjust = 0 + +0x2105 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DIPROPHEADER, UDT(0x0000212c) + +0x2106 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2105 + +0x2107 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1CB6 + list[1] = 0x2106 + +0x2108 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2107, This adjust = 0 + +0x2109 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2105 + +0x210a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2109 + +0x210b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1CB6 + list[1] = 0x210A + +0x210c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x210b, This adjust = 0 + +0x210d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x210e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e07, This adjust = 0 + +0x210f : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = DIDEVICEOBJECTDATA, UDT(0x0000212e) + +0x2110 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x210F + +0x2111 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x2110 + list[2] = T_32PULONG(0422) + list[3] = T_ULONG(0022) + +0x2112 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2111, This adjust = 0 + +0x2113 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DIDATAFORMAT, UDT(0x0000197d) + +0x2114 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2113 + +0x2115 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2114 + +0x2116 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2115 + +0x2117 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2116, This adjust = 0 + +0x2118 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2119 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e2e, This adjust = 0 + +0x211a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20FD + +0x211b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x211A + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + +0x211c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x211b, This adjust = 0 + +0x211d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x20E9 + +0x211e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x211D + +0x211f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x211e, This adjust = 0 + +0x2120 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PVOID(0403) + list[1] = T_ULONG(0022) + list[2] = 0x1CB6 + +0x2121 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1E8E, This type = 0x20F6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2120, This adjust = 0 + +0x2122 : Length = 474, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20F7, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20F8, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20F8, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x20FC, + vfptr offset = 12, name = 'GetCapabilities' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2104, + vfptr offset = 16, name = 'EnumObjects' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2108, + vfptr offset = 20, name = 'GetProperty' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x210C, + vfptr offset = 24, name = 'SetProperty' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x210D, + vfptr offset = 28, name = 'Acquire' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x210D, + vfptr offset = 32, name = 'Unacquire' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x210E, + vfptr offset = 36, name = 'GetDeviceState' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2112, + vfptr offset = 40, name = 'GetDeviceData' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2117, + vfptr offset = 44, name = 'SetDataFormat' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2118, + vfptr offset = 48, name = 'SetEventNotification' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2119, + vfptr offset = 52, name = 'SetCooperativeLevel' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x211C, + vfptr offset = 56, name = 'GetObjectInfo' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x211F, + vfptr offset = 60, name = 'GetDeviceInfo' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2119, + vfptr offset = 64, name = 'RunControlPanel' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2121, + vfptr offset = 68, name = 'Initialize' + +0x2123 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 19, field list type 0x2122, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 4, class name = IDirectInputDeviceA, UDT(0x00002123) + +0x2124 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 260 + Name = + +0x2125 : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'wMid' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'wPid' + list[2] = LF_MEMBER, public, type = 0x18AC, offset = 4 + member name = 'szPname' + list[3] = LF_MEMBER, public, type = T_UINT4(0075), offset = 36 + member name = 'wXmin' + list[4] = LF_MEMBER, public, type = T_UINT4(0075), offset = 40 + member name = 'wXmax' + list[5] = LF_MEMBER, public, type = T_UINT4(0075), offset = 44 + member name = 'wYmin' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 48 + member name = 'wYmax' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 52 + member name = 'wZmin' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 56 + member name = 'wZmax' + list[9] = LF_MEMBER, public, type = T_UINT4(0075), offset = 60 + member name = 'wNumButtons' + list[10] = LF_MEMBER, public, type = T_UINT4(0075), offset = 64 + member name = 'wPeriodMin' + list[11] = LF_MEMBER, public, type = T_UINT4(0075), offset = 68 + member name = 'wPeriodMax' + list[12] = LF_MEMBER, public, type = T_UINT4(0075), offset = 72 + member name = 'wRmin' + list[13] = LF_MEMBER, public, type = T_UINT4(0075), offset = 76 + member name = 'wRmax' + list[14] = LF_MEMBER, public, type = T_UINT4(0075), offset = 80 + member name = 'wUmin' + list[15] = LF_MEMBER, public, type = T_UINT4(0075), offset = 84 + member name = 'wUmax' + list[16] = LF_MEMBER, public, type = T_UINT4(0075), offset = 88 + member name = 'wVmin' + list[17] = LF_MEMBER, public, type = T_UINT4(0075), offset = 92 + member name = 'wVmax' + list[18] = LF_MEMBER, public, type = T_UINT4(0075), offset = 96 + member name = 'wCaps' + list[19] = LF_MEMBER, public, type = T_UINT4(0075), offset = 100 + member name = 'wMaxAxes' + list[20] = LF_MEMBER, public, type = T_UINT4(0075), offset = 104 + member name = 'wNumAxes' + list[21] = LF_MEMBER, public, type = T_UINT4(0075), offset = 108 + member name = 'wMaxButtons' + list[22] = LF_MEMBER, public, type = 0x18AC, offset = 112 + member name = 'szRegKey' + list[23] = LF_MEMBER, public, type = 0x2124, offset = 144 + member name = 'szOEMVxD' + +0x2126 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x2125, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = tagJOYCAPSA, UDT(0x00002126) + +0x2127 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwDevType' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwAxes' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwButtons' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwPOVs' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwFFSamplePeriod' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwFFMinTimeResolution' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwFirmwareRevision' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwHardwareRevision' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwFFDriverVersion' + +0x2128 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x2127, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 44, class name = DIDEVCAPS, UDT(0x00002128) + +0x2129 : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x1761, offset = 4 + member name = 'guidType' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwOfs' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwType' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwFlags' + list[5] = LF_MEMBER, public, type = 0x2124, offset = 32 + member name = 'tszName' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 292 + member name = 'dwFFMaxForce' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 296 + member name = 'dwFFForceResolution' + list[8] = LF_MEMBER, public, type = T_USHORT(0021), offset = 300 + member name = 'wCollectionNumber' + list[9] = LF_MEMBER, public, type = T_USHORT(0021), offset = 302 + member name = 'wDesignatorIndex' + list[10] = LF_MEMBER, public, type = T_USHORT(0021), offset = 304 + member name = 'wUsagePage' + list[11] = LF_MEMBER, public, type = T_USHORT(0021), offset = 306 + member name = 'wUsage' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 308 + member name = 'dwDimension' + list[13] = LF_MEMBER, public, type = T_USHORT(0021), offset = 312 + member name = 'wExponent' + list[14] = LF_MEMBER, public, type = T_USHORT(0021), offset = 314 + member name = 'wReserved' + +0x212a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 15, field list type 0x2129, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 316, class name = DIDEVICEOBJECTINSTANCEA, UDT(0x0000212a) + +0x212b : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwHeaderSize' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwObj' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwHow' + +0x212c : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x212b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = DIPROPHEADER, UDT(0x0000212c) + +0x212d : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwOfs' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwData' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwTimeStamp' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwSequence' + +0x212e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x212d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = DIDEVICEOBJECTDATA, UDT(0x0000212e) + +0x212f : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x1761, offset = 4 + member name = 'guidInstance' + list[2] = LF_MEMBER, public, type = 0x1761, offset = 20 + member name = 'guidProduct' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwDevType' + list[4] = LF_MEMBER, public, type = 0x2124, offset = 40 + member name = 'tszInstanceName' + list[5] = LF_MEMBER, public, type = 0x2124, offset = 300 + member name = 'tszProductName' + list[6] = LF_MEMBER, public, type = 0x1761, offset = 560 + member name = 'guidFFDriver' + list[7] = LF_MEMBER, public, type = T_USHORT(0021), offset = 576 + member name = 'wUsagePage' + list[8] = LF_MEMBER, public, type = T_USHORT(0021), offset = 578 + member name = 'wUsage' + +0x2130 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x212f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 580, class name = DIDEVICEINSTANCEA, UDT(0x00002130) + +0x2131 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CB5 + +0x2132 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2131, offset = 0 + member name = 'pguid' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwOfs' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwType' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwFlags' + +0x2133 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2132, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _DIOBJECTDATAFORMAT, UDT(0x00002133) + +0x2134 : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x196E, name = 'MxAudioPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x196C, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x196D, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17EF, + vfptr offset = 92, name = 'GetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F0, + vfptr offset = 96, name = 'SetVolume' + list[6] = LF_MEMBER, protected, type = T_INT4(0074), offset = 80 + member name = 'm_volume' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x196E, name = '~MxAudioPresenter' + +0x2135 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 25 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR + +0x2136 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2134, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2135 + Size = 84, class name = MxAudioPresenter, UDT(0x00002136) + +0x2137 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x13A8, + list[1] = public, VIRTUAL, 0x13A7, + +0x2138 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17ED, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A7, name = '~MxSoundPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1971, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1972, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A9, name = 'AddToManager' + list[5] = LF_METHOD, count = 2, list = 0x2137, name = 'Destroy' + +0x2139 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2138, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2135 + Size = 84, class name = MxSoundPresenter, UDT(0x00002139) + +0x213a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x11C9, + list[1] = public, VIRTUAL, 0x11C6, + +0x213b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxWavePresenter::WaveFormat, UDT(0x00002142) + +0x213c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x213B + +0x213d : Length = 722, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13A5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11C6, name = 'MxWavePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = '~MxWavePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1975, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1976, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'StreamingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'DoneTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'ParseExtra' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C8, name = 'AddToManager' + list[11] = LF_METHOD, count = 2, list = 0x213A, name = 'Destroy' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'EndAction' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C8, name = 'PutData' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C9, name = 'Enable' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11D6, name = 'AppendChunk' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E0, name = 'SetVolume' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C6, + vfptr offset = 100, name = 'Pause' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C6, + vfptr offset = 104, name = 'Resume' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C7, + vfptr offset = 108, name = 'IsPaused' + list[20] = LF_NESTTYPE, type = 0x213B, WaveFormat + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x11C6, name = 'Init' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x11CA, name = 'GetPlayedChunks' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x11C7, name = 'FUN_100b1ba0' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x11CC, name = 'WriteToSoundBuffer' + list[25] = LF_MEMBER, private, type = 0x213C, offset = 84 + member name = 'm_waveFormat' + list[26] = LF_MEMBER, private, type = 0x1CF0, offset = 88 + member name = 'm_dsBuffer' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 92 + member name = 'm_chunkLength' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 96 + member name = 'm_lockSize' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 100 + member name = 'm_writtenChunks' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 101 + member name = 'm_started' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 102 + member name = 'm_unk66' + list[32] = LF_MEMBER, private, type = T_CHAR(0010), offset = 103 + member name = 'm_silenceData' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 104 + member name = 'm_paused' + +0x213e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x213d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = MxWavePresenter, UDT(0x0000329e) + +0x213f : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11C4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1969, name = 'LegoLoadCacheSoundPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1969, name = '~LegoLoadCacheSoundPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1979, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1969, name = 'Init' + +0x2140 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x213f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +0x2141 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x11D1, offset = 0 + member name = 'm_waveFormatEx' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_dataSize' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_flags' + +0x2142 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2141, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 28, class name = MxWavePresenter::WaveFormat, UDT(0x00002142) + +0x2143 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1CEF + +0x2144 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2145 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2146 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DSBCAPS, UDT(0x00002165) + +0x2147 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2146 + +0x2148 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2147 + +0x2149 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2148, This adjust = 0 + +0x214a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e26, This adjust = 0 + +0x214b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x11D2 + list[1] = T_ULONG(0022) + list[2] = T_32PULONG(0422) + +0x214c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x214b, This adjust = 0 + +0x214d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PLONG(0412) + +0x214e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x214d, This adjust = 0 + +0x214f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x2150 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DSBUFFERDESC, UDT(0x000011d4) + +0x2151 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2150 + +0x2152 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2151 + +0x2153 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1CED + list[1] = 0x2152 + +0x2154 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2153, This adjust = 0 + +0x2155 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x1714 + list[3] = T_32PULONG(0422) + list[4] = 0x1714 + list[5] = T_32PULONG(0422) + list[6] = T_ULONG(0022) + +0x2156 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x2155, This adjust = 0 + +0x2157 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1e30, This adjust = 0 + +0x2158 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2159 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x11D1 + +0x215a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2159 + +0x215b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x215A + +0x215c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x215b, This adjust = 0 + +0x215d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x215e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x215f : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PVOID(0403) + list[1] = T_ULONG(0022) + list[2] = T_32PVOID(0403) + list[3] = T_ULONG(0022) + +0x2160 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEF, This type = 0x2143, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x215f, This adjust = 0 + +0x2161 : Length = 494, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2144, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2145, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2145, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2149, + vfptr offset = 12, name = 'GetCaps' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214A, + vfptr offset = 16, name = 'GetCurrentPosition' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214C, + vfptr offset = 20, name = 'GetFormat' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214E, + vfptr offset = 24, name = 'GetVolume' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214E, + vfptr offset = 28, name = 'GetPan' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214F, + vfptr offset = 32, name = 'GetFrequency' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x214F, + vfptr offset = 36, name = 'GetStatus' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2154, + vfptr offset = 40, name = 'Initialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2156, + vfptr offset = 44, name = 'Lock' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2157, + vfptr offset = 48, name = 'Play' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2158, + vfptr offset = 52, name = 'SetCurrentPosition' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x215C, + vfptr offset = 56, name = 'SetFormat' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x215D, + vfptr offset = 60, name = 'SetVolume' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x215D, + vfptr offset = 64, name = 'SetPan' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2158, + vfptr offset = 68, name = 'SetFrequency' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x215E, + vfptr offset = 72, name = 'Stop' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2160, + vfptr offset = 76, name = 'Unlock' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x215E, + vfptr offset = 80, name = 'Restore' + +0x2162 : Length = 18, Leaf = 0x000a LF_VTSHAPE + Number of entries : 21 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR + +0x2163 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 22, field list type 0x2161, + Derivation list type 0x0000, VT shape type 0x2162 + Size = 4, class name = IDirectSoundBuffer, UDT(0x00002163) + +0x2164 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwBufferBytes' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwUnlockTransferRate' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwPlayCpuOverhead' + +0x2165 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2164, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _DSBCAPS, UDT(0x00002165) + +0x2166 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1CEC + +0x2167 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2168 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2169 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1CF0 + +0x216a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2152 + list[1] = 0x2169 + list[2] = 0x1770 + +0x216b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x216a, This adjust = 0 + +0x216c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _DSCAPS, UDT(0x0000217a) + +0x216d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x216C + +0x216e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x216D + +0x216f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x216e, This adjust = 0 + +0x2170 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1CF0 + list[1] = 0x2169 + +0x2171 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2170, This adjust = 0 + +0x2172 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e2e, This adjust = 0 + +0x2173 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2174 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x2175 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2176 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1CEC, This type = 0x2166, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e2c, This adjust = 0 + +0x2177 : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2167, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2168, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2168, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x216B, + vfptr offset = 12, name = 'CreateSoundBuffer' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x216F, + vfptr offset = 16, name = 'GetCaps' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2171, + vfptr offset = 20, name = 'DuplicateSoundBuffer' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2172, + vfptr offset = 24, name = 'SetCooperativeLevel' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2173, + vfptr offset = 28, name = 'Compact' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2174, + vfptr offset = 32, name = 'GetSpeakerConfig' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2175, + vfptr offset = 36, name = 'SetSpeakerConfig' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2176, + vfptr offset = 40, name = 'Initialize' + +0x2178 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x2177, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = IDirectSound, UDT(0x00002178) + +0x2179 : Length = 810, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwMinSecondarySampleRate' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwMaxSecondarySampleRate' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwPrimaryBuffers' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwMaxHwMixingAllBuffers' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwMaxHwMixingStaticBuffers' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwMaxHwMixingStreamingBuffers' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwFreeHwMixingAllBuffers' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwFreeHwMixingStaticBuffers' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwFreeHwMixingStreamingBuffers' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'dwMaxHw3DAllBuffers' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwMaxHw3DStaticBuffers' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'dwMaxHw3DStreamingBuffers' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'dwFreeHw3DAllBuffers' + list[15] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'dwFreeHw3DStaticBuffers' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'dwFreeHw3DStreamingBuffers' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'dwTotalHwMemBytes' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 72 + member name = 'dwFreeHwMemBytes' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 76 + member name = 'dwMaxContigFreeHwMemBytes' + list[20] = LF_MEMBER, public, type = T_ULONG(0022), offset = 80 + member name = 'dwUnlockTransferRateHwBuffers' + list[21] = LF_MEMBER, public, type = T_ULONG(0022), offset = 84 + member name = 'dwPlayCpuOverheadSwBuffers' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 88 + member name = 'dwReserved1' + list[23] = LF_MEMBER, public, type = T_ULONG(0022), offset = 92 + member name = 'dwReserved2' + +0x217a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x2179, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 96, class name = _DSCAPS, UDT(0x0000217a) + +0x217b : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19BC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1962, name = 'LegoLocomotionAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1965, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1966, name = 'IsA' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1962, name = 'Init' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1962, name = '~LegoLocomotionAnimPresenter' + +0x217c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x217b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoLocomotionAnimPresenter, UDT(0x00003dbe) + +0x217d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x13A0, + list[1] = public, VIRTUAL, 0x139F, + +0x217e : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x139F, name = 'MxStillPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = '~MxStillPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1509, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x150A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'StartingTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'StreamingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'RepeatingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'ParseExtra' + list[9] = LF_METHOD, count = 2, list = 0x217D, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A0, name = 'Enable' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A1, name = 'LoadHeader' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'CreateBitmap' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'NextFrame' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A1, name = 'LoadFrame' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'VTable0x70' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13A2, + vfptr offset = 136, name = 'VTable0x88' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13A4, + vfptr offset = 140, name = 'Clone' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk64' + list[19] = LF_MEMBER, private, type = 0x17C2, offset = 104 + member name = 'm_bitmapInfo' + +0x217f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x217e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 108, class name = MxStillPresenter, UDT(0x00002d9f) + +0x2180 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x195E + +0x2181 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2180 + +0x2182 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x195E, This type = 0x2181, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2183 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x195E, This type = 0x2181, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x2184 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x195F, name = 'configureLegoModelPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2182, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2183, name = 'IsA' + +0x2185 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2184, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +0x2186 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1480, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1944, name = 'LegoObjectFactory' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1949, name = 'Create' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194A, name = 'Destroy' + list[4] = LF_MEMBER, private, type = 0x1064, offset = 56 + member name = 'm_idInfocenterState' + +0x2187 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2186, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 60, class name = LegoObjectFactory, UDT(0x00003dc3) + +0x2188 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x150F, This type = 0x1510, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2189 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x150F, This type = 0x1510, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x218a : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1512, name = 'MxNotification' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1513, name = '~MxNotification' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2188, name = 'GetTarget' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2189, name = 'GetParam' + list[4] = LF_MEMBER, private, type = 0x10AE, offset = 0 + member name = 'm_target' + list[5] = LF_MEMBER, private, type = 0x135A, offset = 4 + member name = 'm_param' + +0x218b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x218a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxNotification, UDT(0x0000218b) + +0x218c : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = '_Value' + +0x218d : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x218c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000218d) + +0x218e : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000022d9) + +0x218f : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x218E, offset = 0 + +0x2190 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x218f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002190) + +0x2191 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00002205) + +0x2192 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002887) + +0x2193 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_UINT4(0075) + +0x2194 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2193 + +0x2195 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x000029da) + +0x2196 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,unsigned int,unsigned int &,unsigned int *,int>, UDT(0x00002213) + +0x2197 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,unsigned int,unsigned int const &,unsigned int const *,int>, UDT(0x00002222) + +0x2198 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2192 + +0x2199 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2198 + +0x219a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2195 + list[1] = 0x2195 + list[2] = 0x2199 + +0x219b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x219a, This adjust = 0 + +0x219c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1516 + +0x219d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x219C + +0x219e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x219D + +0x219f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x219e, This adjust = 0 + +0x21a0 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x2194 + list[2] = 0x2199 + +0x21a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x21a0, This adjust = 0 + +0x21a2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2199 + +0x21a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21a2, This adjust = 0 + +0x21a4 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x219B, + list[1] = public, VANILLA, 0x219F, + list[2] = public, VANILLA, 0x21A1, + list[3] = public, VANILLA, 0x21A3, + +0x21a5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1516 + +0x21a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x21A5, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x219e, This adjust = 0 + +0x21a7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x219C + +0x21a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2195, Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21aa : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21A8, + list[1] = public, VANILLA, 0x21A9, + +0x21ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2197, Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2196, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21ad : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21AB, + list[1] = public, VANILLA, 0x21AC, + +0x21ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x21af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2192, Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21b4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21B2, + list[1] = public, VANILLA, 0x21B3, + +0x21b5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2194 + +0x21b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21b5, This adjust = 0 + +0x21b7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x2194 + +0x21b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21b7, This adjust = 0 + +0x21b9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2195 + list[1] = 0x2195 + +0x21ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21b9, This adjust = 0 + +0x21bb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21B8, + list[1] = public, VANILLA, 0x21BA, + +0x21bc : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1528 + list[1] = 0x2195 + list[2] = 0x2195 + +0x21bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x21bc, This adjust = 0 + +0x21be : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1528 + list[1] = T_32PUINT4(0475) + list[2] = T_32PUINT4(0475) + +0x21bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x21be, This adjust = 0 + +0x21c0 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1528 + list[1] = T_UINT4(0075) + list[2] = 0x2194 + +0x21c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x21c0, This adjust = 0 + +0x21c2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1528 + list[1] = 0x2194 + +0x21c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21c2, This adjust = 0 + +0x21c4 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21BD, + list[1] = public, VANILLA, 0x21BF, + list[2] = public, VANILLA, 0x21C1, + list[3] = public, VANILLA, 0x21C3, + +0x21c5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1528 + list[1] = 0x1528 + +0x21c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21c5, This adjust = 0 + +0x21c7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1528 + +0x21c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21c7, This adjust = 0 + +0x21c9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21C6, + list[1] = public, VANILLA, 0x21C8, + +0x21ca : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x21A5 + +0x21cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21ca, This adjust = 0 + +0x21cc : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1528 + list[1] = 0x21A5 + list[2] = 0x1528 + list[3] = 0x1528 + +0x21cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x21cc, This adjust = 0 + +0x21ce : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1528 + list[1] = 0x21A5 + list[2] = 0x1528 + +0x21cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x21ce, This adjust = 0 + +0x21d0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1528 + list[1] = 0x21A5 + +0x21d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21d0, This adjust = 0 + +0x21d2 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21CD, + list[1] = public, VANILLA, 0x21CF, + list[2] = public, VANILLA, 0x21D1, + +0x21d3 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x000021f7) + +0x21d4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x21D3 + +0x21d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21d4, This adjust = 0 + +0x21d6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x000021ed) + +0x21d7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x21D6 + +0x21d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21d7, This adjust = 0 + +0x21d9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21D8, + list[1] = public, VANILLA, 0x1518, + +0x21da : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002200) + +0x21db : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x21A5 + list[1] = 0x21DA + +0x21dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21db, This adjust = 0 + +0x21dd : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21DC, + list[1] = public, VANILLA, 0x21CB, + +0x21de : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x21DA + +0x21df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21de, This adjust = 0 + +0x21e0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x21DF, + list[1] = public, VANILLA, 0x1518, + +0x21e1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x152B + list[1] = 0x152B + +0x21e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x152B, Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21e1, This adjust = 0 + +0x21e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x1517, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x152c, This adjust = 0 + +0x21e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1516, This type = 0x21A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x21e5 : Length = 1126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x152A, _Node + list[2] = LF_NESTTYPE, type = 0x152B, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2191, _Acc + list[4] = LF_NESTTYPE, type = 0x1516, _Myt + list[5] = LF_NESTTYPE, type = 0x2192, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = T_32PUINT4(0475), _Tptr + list[9] = LF_NESTTYPE, type = T_32PUINT4(0475), _Ctptr + list[10] = LF_NESTTYPE, type = 0x1530, reference + list[11] = LF_NESTTYPE, type = 0x2194, const_reference + list[12] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[13] = LF_NESTTYPE, type = 0x1528, iterator + list[14] = LF_NESTTYPE, type = 0x2195, const_iterator + list[15] = LF_NESTTYPE, type = 0x2196, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2197, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x21A4, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2195, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1518, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x21A6, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x21AA, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x21AA, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x21AD, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x21AD, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x21AE, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x21AF, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x21AF, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x21B0, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x21B1, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x21B4, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x21B4, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x21B6, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1518, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x21B6, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1518, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x21BB, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x21C4, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x21C9, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1518, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x21CB, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x21D2, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x21B6, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x21D3, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x21D5, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x21D9, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x21D6, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x21DD, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x21DA, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x21E0, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1518, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x21E2, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x21E3, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x21CD, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x21E4, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2192, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x152B, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x21e6 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x21e5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x000021e6) + +0x21e7 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x000021fb) + +0x21e8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x21D6 + +0x21e9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x21E8 + +0x21ea : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2194 + list[1] = 0x2194 + +0x21eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x21D6, This type = 0x21E9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21ea, This adjust = 0 + +0x21ec : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x21E7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x21EB, name = 'operator()' + +0x21ed : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x21ec, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x000021ed) + +0x21ee : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000021f9) + +0x21ef : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x21D3 + +0x21f0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x21E8 + +0x21f1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x21F0 + list[1] = 0x2194 + +0x21f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x21D3, This type = 0x21EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21f1, This adjust = 0 + +0x21f3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x21D3 + +0x21f4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x21F3 + +0x21f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x21D3, This type = 0x21F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21b5, This adjust = 0 + +0x21f6 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x21EE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x21F2, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x21F5, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x21D6, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'value' + +0x21f7 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x21f6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x000021f7) + +0x21f8 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x21f9 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x21f8, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000021f9) + +0x21fa : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), first_argument_type + list[1] = LF_NESTTYPE, type = T_UINT4(0075), second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x21fb : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x21fa, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x000021fb) + +0x21fc : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x21DA + +0x21fd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x21FC + +0x21fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x21DA, This type = 0x21FD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21ea, This adjust = 0 + +0x21ff : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x21E7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x21FE, name = 'operator()' + +0x2200 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x21ff, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002200) + +0x2201 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x152B + +0x2202 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2201, Class type = 0x2191, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x152c, This adjust = 0 + +0x2203 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x2191, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x152c, This adjust = 0 + +0x2204 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2201, _Nodepref + list[1] = LF_NESTTYPE, type = 0x1530, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2202, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2202, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x2203, name = '_Value' + +0x2205 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2204, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00002205) + +0x2206 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2196 + +0x2207 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2196, This type = 0x2206, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21c7, This adjust = 0 + +0x2208 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2196, This type = 0x2206, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2209 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2207, + list[1] = public, VANILLA, 0x2208, + +0x220a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2196 + +0x220b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x220A + +0x220c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1528, Class type = 0x2196, This type = 0x220B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x220d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x2196, This type = 0x220B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x220e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2196, Class type = 0x2196, This type = 0x2206, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x220f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2196 + +0x2210 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x220F, Class type = 0x2196, This type = 0x2206, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2211 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x220E, + list[1] = public, VANILLA, 0x2210, + +0x2212 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1527, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2196, _Myt + list[2] = LF_NESTTYPE, type = 0x1528, iter_type + list[3] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[4] = LF_NESTTYPE, type = 0x1530, reference_type + list[5] = LF_NESTTYPE, type = T_32PUINT4(0475), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2209, name = 'reverse_bidirectional_iterator >::iterator,unsigned int,unsigned int &,unsigned int *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x220C, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x220D, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2211, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2211, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x1528, offset = 0 + member name = 'current' + +0x2213 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2212, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,unsigned int,unsigned int &,unsigned int *,int>, UDT(0x00002213) + +0x2214 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2197 + +0x2215 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2195 + +0x2216 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2197, This type = 0x2214, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2215, This adjust = 0 + +0x2217 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2197, This type = 0x2214, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2218 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2216, + list[1] = public, VANILLA, 0x2217, + +0x2219 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2197 + +0x221a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2219 + +0x221b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2195, Class type = 0x2197, This type = 0x221A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x221c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x2197, This type = 0x221A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x221d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2197, Class type = 0x2197, This type = 0x2214, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x221e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2197 + +0x221f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x221E, Class type = 0x2197, This type = 0x2214, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2220 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x221D, + list[1] = public, VANILLA, 0x221F, + +0x2221 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1527, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2197, _Myt + list[2] = LF_NESTTYPE, type = 0x2195, iter_type + list[3] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[4] = LF_NESTTYPE, type = 0x2194, reference_type + list[5] = LF_NESTTYPE, type = T_32PUINT4(0475), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2218, name = 'reverse_bidirectional_iterator >::const_iterator,unsigned int,unsigned int const &,unsigned int const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x221B, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x221C, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2220, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2220, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2195, offset = 0 + member name = 'current' + +0x2222 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2221, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,unsigned int,unsigned int const &,unsigned int const *,int>, UDT(0x00002222) + +0x2223 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x151C + +0x2224 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2223 + +0x2225 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2224 + +0x2226 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151C, This type = 0x151D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2225, This adjust = 0 + +0x2227 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151C, This type = 0x151D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21b7, This adjust = 0 + +0x2228 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2226, + list[1] = public, VANILLA, 0x2227, + list[2] = public, VANILLA, 0x151E, + +0x2229 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x151C + +0x222a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2229 + +0x222b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151C, This type = 0x151D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x222a, This adjust = 0 + +0x222c : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1516, offset = 0 + list[1] = LF_NESTTYPE, type = 0x151C, _Myt + list[2] = LF_NESTTYPE, type = 0x2192, _A + list[3] = LF_METHOD, count = 2, list = 0x2228, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x222B, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x151E, name = '~List' + +0x222d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x222c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x0000222d) + +0x222e : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x153F, offset = 8 + member name = '_Value' + +0x222f : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x222e, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000222f) + +0x2230 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000022db) + +0x2231 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2230, offset = 0 + +0x2232 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2231, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002232) + +0x2233 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x000022a1) + +0x2234 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x000029ea) + +0x2235 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x153F + +0x2236 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1510 + +0x2237 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x000029fb) + +0x2238 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxNotification *,MxNotification * &,MxNotification * *,int>, UDT(0x000022af) + +0x2239 : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxNotification *,MxNotification * const &,MxNotification * const *,int>, UDT(0x000022be) + +0x223a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2234 + +0x223b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x223A + +0x223c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2237 + list[1] = 0x2237 + list[2] = 0x223B + +0x223d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x223c, This adjust = 0 + +0x223e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1522 + +0x223f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x223E + +0x2240 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x223F + +0x2241 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2240, This adjust = 0 + +0x2242 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x155D + list[2] = 0x223B + +0x2243 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2242, This adjust = 0 + +0x2244 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x223B + +0x2245 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2244, This adjust = 0 + +0x2246 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x223D, + list[1] = public, VANILLA, 0x2241, + list[2] = public, VANILLA, 0x2243, + list[3] = public, VANILLA, 0x2245, + +0x2247 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1522 + +0x2248 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2247, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2240, This adjust = 0 + +0x2249 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x223E + +0x224a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2237, Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x224b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x224A, + list[1] = public, VANILLA, 0x155C, + +0x224c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2239, Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x224d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2238, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x224e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x224C, + list[1] = public, VANILLA, 0x224D, + +0x224f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x153F + +0x2250 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x224f, This adjust = 0 + +0x2251 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2252 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2253 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2234, Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2254 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2255 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2256 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2254, + list[1] = public, VANILLA, 0x2255, + +0x2257 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x155D + +0x2258 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2257, This adjust = 0 + +0x2259 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x155D + +0x225a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2259, This adjust = 0 + +0x225b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2237 + list[1] = 0x2237 + +0x225c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x225b, This adjust = 0 + +0x225d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x225A, + list[1] = public, VANILLA, 0x225C, + +0x225e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1546 + list[1] = 0x2237 + list[2] = 0x2237 + +0x225f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x225e, This adjust = 0 + +0x2260 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1546 + list[1] = 0x2236 + list[2] = 0x2236 + +0x2261 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2260, This adjust = 0 + +0x2262 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1546 + list[1] = T_UINT4(0075) + list[2] = 0x155D + +0x2263 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2262, This adjust = 0 + +0x2264 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x225F, + list[1] = public, VANILLA, 0x2261, + list[2] = public, VANILLA, 0x2263, + list[3] = public, VANILLA, 0x155F, + +0x2265 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1546 + list[1] = 0x1546 + +0x2266 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2265, This adjust = 0 + +0x2267 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2266, + list[1] = public, VANILLA, 0x1561, + +0x2268 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2247 + +0x2269 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2268, This adjust = 0 + +0x226a : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1546 + list[1] = 0x2247 + list[2] = 0x1546 + list[3] = 0x1546 + +0x226b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x226a, This adjust = 0 + +0x226c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1546 + list[1] = 0x2247 + list[2] = 0x1546 + +0x226d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x226c, This adjust = 0 + +0x226e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1546 + list[1] = 0x2247 + +0x226f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x226e, This adjust = 0 + +0x2270 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x226B, + list[1] = public, VANILLA, 0x226D, + list[2] = public, VANILLA, 0x226F, + +0x2271 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00002293) + +0x2272 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2271 + +0x2273 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2272, This adjust = 0 + +0x2274 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00002289) + +0x2275 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2274 + +0x2276 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2275, This adjust = 0 + +0x2277 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2276, + list[1] = public, VANILLA, 0x1524, + +0x2278 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x0000229c) + +0x2279 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2247 + list[1] = 0x2278 + +0x227a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2279, This adjust = 0 + +0x227b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x227A, + list[1] = public, VANILLA, 0x2269, + +0x227c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2278 + +0x227d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x227c, This adjust = 0 + +0x227e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x227D, + list[1] = public, VANILLA, 0x1524, + +0x227f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x1523, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x154a, This adjust = 0 + +0x2280 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1522, This type = 0x2249, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2281 : Length = 1142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1548, _Node + list[2] = LF_NESTTYPE, type = 0x1549, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2233, _Acc + list[4] = LF_NESTTYPE, type = 0x1522, _Myt + list[5] = LF_NESTTYPE, type = 0x2234, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2235, _Tptr + list[9] = LF_NESTTYPE, type = 0x2236, _Ctptr + list[10] = LF_NESTTYPE, type = 0x154E, reference + list[11] = LF_NESTTYPE, type = 0x155D, const_reference + list[12] = LF_NESTTYPE, type = 0x153F, value_type + list[13] = LF_NESTTYPE, type = 0x1546, iterator + list[14] = LF_NESTTYPE, type = 0x2237, const_iterator + list[15] = LF_NESTTYPE, type = 0x2238, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2239, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x2246, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2237, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1524, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x2248, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x224B, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x224B, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x224E, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x224E, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2250, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2251, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2251, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2252, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2253, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x2256, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x2256, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2258, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1524, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x2258, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1524, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x225D, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x2264, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x2267, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1524, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2269, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2270, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x2258, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2271, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2273, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x2277, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x2274, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x227B, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x2278, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x227E, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1524, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x1563, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x227F, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x226B, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2280, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2234, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x1549, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x2282 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x2281, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00002282) + +0x2283 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002297) + +0x2284 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2274 + +0x2285 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2284 + +0x2286 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x155D + list[1] = 0x155D + +0x2287 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2274, This type = 0x2285, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2286, This adjust = 0 + +0x2288 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2283, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2287, name = 'operator()' + +0x2289 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2288, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00002289) + +0x228a : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002295) + +0x228b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2271 + +0x228c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2284 + +0x228d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x228C + list[1] = 0x155D + +0x228e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2271, This type = 0x228B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x228d, This adjust = 0 + +0x228f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2271 + +0x2290 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x228F + +0x2291 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2271, This type = 0x2290, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2257, This adjust = 0 + +0x2292 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x228A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x228E, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2291, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x2274, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x153F, offset = 4 + member name = 'value' + +0x2293 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2292, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00002293) + +0x2294 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x153F, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2295 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2294, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002295) + +0x2296 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x153F, first_argument_type + list[1] = LF_NESTTYPE, type = 0x153F, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2297 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2296, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002297) + +0x2298 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2278 + +0x2299 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2298 + +0x229a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2278, This type = 0x2299, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2286, This adjust = 0 + +0x229b : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2283, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x229A, name = 'operator()' + +0x229c : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x229b, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x0000229c) + +0x229d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1549 + +0x229e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x229D, Class type = 0x2233, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x154a, This adjust = 0 + +0x229f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x2233, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x154a, This adjust = 0 + +0x22a0 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x229D, _Nodepref + list[1] = LF_NESTTYPE, type = 0x154E, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x229E, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x229E, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x229F, name = '_Value' + +0x22a1 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x22a0, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x000022a1) + +0x22a2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2238 + +0x22a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2238, This type = 0x22A2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1560, This adjust = 0 + +0x22a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2238, This type = 0x22A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22a5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x22A3, + list[1] = public, VANILLA, 0x22A4, + +0x22a6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2238 + +0x22a7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x22A6 + +0x22a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1546, Class type = 0x2238, This type = 0x22A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x2238, This type = 0x22A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2238, Class type = 0x2238, This type = 0x22A2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x22ab : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2238 + +0x22ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x22AB, Class type = 0x2238, This type = 0x22A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22ad : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x22AA, + list[1] = public, VANILLA, 0x22AC, + +0x22ae : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1545, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2238, _Myt + list[2] = LF_NESTTYPE, type = 0x1546, iter_type + list[3] = LF_NESTTYPE, type = 0x153F, value_type + list[4] = LF_NESTTYPE, type = 0x154E, reference_type + list[5] = LF_NESTTYPE, type = 0x2235, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x22A5, name = 'reverse_bidirectional_iterator >::iterator,MxNotification *,MxNotification * &,MxNotification * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x22A8, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x22A9, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x22AD, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x22AD, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x1546, offset = 0 + member name = 'current' + +0x22af : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x22ae, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxNotification *,MxNotification * &,MxNotification * *,int>, UDT(0x000022af) + +0x22b0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2239 + +0x22b1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2237 + +0x22b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2239, This type = 0x22B0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x22b1, This adjust = 0 + +0x22b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2239, This type = 0x22B0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22b4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x22B2, + list[1] = public, VANILLA, 0x22B3, + +0x22b5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2239 + +0x22b6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x22B5 + +0x22b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2237, Class type = 0x2239, This type = 0x22B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x2239, This type = 0x22B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2239, Class type = 0x2239, This type = 0x22B0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x22ba : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2239 + +0x22bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x22BA, Class type = 0x2239, This type = 0x22B0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22bc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x22B9, + list[1] = public, VANILLA, 0x22BB, + +0x22bd : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1545, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2239, _Myt + list[2] = LF_NESTTYPE, type = 0x2237, iter_type + list[3] = LF_NESTTYPE, type = 0x153F, value_type + list[4] = LF_NESTTYPE, type = 0x155D, reference_type + list[5] = LF_NESTTYPE, type = 0x2236, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x22B4, name = 'reverse_bidirectional_iterator >::const_iterator,MxNotification *,MxNotification * const &,MxNotification * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x22B7, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x22B8, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x22BC, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x22BC, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2237, offset = 0 + member name = 'current' + +0x22be : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x22bd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxNotification *,MxNotification * const &,MxNotification * const *,int>, UDT(0x000022be) + +0x22bf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x151F + +0x22c0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x22BF + +0x22c1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x22C0 + +0x22c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151F, This type = 0x1520, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x22c1, This adjust = 0 + +0x22c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151F, This type = 0x1520, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2259, This adjust = 0 + +0x22c4 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x22C2, + list[1] = public, VANILLA, 0x22C3, + list[2] = public, VANILLA, 0x1521, + +0x22c5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x151F + +0x22c6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x22C5 + +0x22c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x151F, This type = 0x1520, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x22c6, This adjust = 0 + +0x22c8 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1522, offset = 0 + list[1] = LF_NESTTYPE, type = 0x151F, _Myt + list[2] = LF_NESTTYPE, type = 0x2234, _A + list[3] = LF_METHOD, count = 2, list = 0x22C4, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x22C7, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1521, name = '~List' + +0x22c9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x22c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000022c9) + +0x22ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x22cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16d7, This adjust = 0 + +0x22cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x16d9, This adjust = 0 + +0x22cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22ce : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16C9, name = 'MxDSSource' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D1, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D2, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CA, + vfptr offset = 20, name = 'Open' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161C, + vfptr offset = 24, name = 'Close' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161B, + vfptr offset = 28, name = 'ReadToBuffer' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CB, + vfptr offset = 32, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CC, + vfptr offset = 36, name = 'Seek' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CD, + vfptr offset = 40, name = 'GetBufferSize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CD, + vfptr offset = 44, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161C, + vfptr offset = 48, name = 'GetLengthInDWords' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161D, + vfptr offset = 52, name = 'GetBuffer' + list[13] = LF_MEMBER, protected, type = T_ULONG(0022), offset = 8 + member name = 'm_lengthInDWords' + list[14] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 12 + member name = 'm_pBuffer' + list[15] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_position' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16C9, name = '~MxDSSource' + +0x22cf : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x22ce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 20, class name = MxDSSource, UDT(0x00003c7c) + +0x22d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x22d1 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSFile::ChunkHeader, UDT(0x0000332e) + +0x22d2 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1616, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16CE, name = 'MxDSFile' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C8, name = '~MxDSFile' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16CC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16CD, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D3, name = 'Open' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D5, name = 'Close' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D8, name = 'Read' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DA, name = 'Seek' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DB, name = 'GetBufferSize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DB, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x22D0, name = 'SetFileName' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x16D5, name = 'ReadChunks' + list[13] = LF_NESTTYPE, type = 0x22D1, ChunkHeader + list[14] = LF_MEMBER, private, type = 0x1272, offset = 20 + member name = 'm_filename' + list[15] = LF_MEMBER, private, type = 0x15BD, offset = 36 + member name = 'm_io' + list[16] = LF_MEMBER, private, type = 0x22D1, offset = 108 + member name = 'm_header' + list[17] = LF_MEMBER, private, type = T_ULONG(0022), offset = 120 + member name = 'm_skipReadingChunks' + +0x22d3 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x22d2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 124, class name = MxDSFile, UDT(0x000033e8) + +0x22d4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x22D1 + +0x22d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x22D1, This type = 0x22D4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22d6 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x22D5, name = 'ChunkHeader' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'majorVersion' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'minorVersion' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'bufferSize' + list[4] = LF_MEMBER, public, type = T_SHORT(0011), offset = 8 + member name = 'streamBuffersNum' + list[5] = LF_MEMBER, public, type = T_SHORT(0011), offset = 10 + member name = 'reserved' + +0x22d7 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x22d6, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDSFile::ChunkHeader, UDT(0x0000332e) + +0x22d8 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x22d9 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x22d8, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000022d9) + +0x22da : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x153F, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x22db : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x22da, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000022db) + +0x22dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22de : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[9] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[10] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[11] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk14' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk18' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk1c' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_unk20' + list[16] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk30' + +0x22df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x22de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x22e0 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _MMIOINFO, UDT(0x000022ea) + +0x22e1 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x15BF, name = 'MXIOINFO' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15BF, name = '~MXIOINFO' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x15C1, name = 'Open' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15C5, name = 'Close' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15C7, name = 'Read' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15C9, name = 'Seek' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15CB, name = 'SetBuffer' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15CD, name = 'Flush' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15CD, name = 'Advance' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15D3, name = 'Descend' + list[10] = LF_MEMBER, public, type = 0x22E0, offset = 0 + member name = 'm_info' + +0x22e2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x22e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 72, class name = MXIOINFO, UDT(0x000022e2) + +0x22e3 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x151C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x151B, name = 'MxIdList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x151B, name = '~MxIdList' + +0x22e4 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x22e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxIdList, UDT(0x0000375b) + +0x22e5 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PRCHAR(0470) + list[1] = T_UINT4(0075) + list[2] = T_LONG(0012) + list[3] = T_LONG(0012) + +0x22e6 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = STD Near + Func attr = none + # Parms = 4, Arg list type = 0x22e5 + +0x22e7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x22E6 + +0x22e8 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_ULONG(0022) + Index type = T_SHORT(0011) + length = 12 + Name = + +0x22e9 : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwFlags' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'fccIOProc' + list[2] = LF_MEMBER, public, type = 0x22E7, offset = 8 + member name = 'pIOProc' + list[3] = LF_MEMBER, public, type = T_UINT4(0075), offset = 12 + member name = 'wErrorRet' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 16 + member name = 'htask' + list[5] = LF_MEMBER, public, type = T_LONG(0012), offset = 20 + member name = 'cchBuffer' + list[6] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 24 + member name = 'pchBuffer' + list[7] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 28 + member name = 'pchNext' + list[8] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 32 + member name = 'pchEndRead' + list[9] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 36 + member name = 'pchEndWrite' + list[10] = LF_MEMBER, public, type = T_LONG(0012), offset = 40 + member name = 'lBufOffset' + list[11] = LF_MEMBER, public, type = T_LONG(0012), offset = 44 + member name = 'lDiskOffset' + list[12] = LF_MEMBER, public, type = 0x22E8, offset = 48 + member name = 'adwInfo' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'dwReserved1' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'dwReserved2' + list[15] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 68 + member name = 'hmmio' + +0x22ea : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 16, field list type 0x22e9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 72, class name = _MMIOINFO, UDT(0x000022ea) + +0x22eb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x17F5, + list[1] = public, VIRTUAL, 0x17F4, + +0x22ec : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17F4, name = 'MxAudioManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F4, name = '~MxAudioManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F6, name = 'InitPresenters' + list[4] = LF_METHOD, count = 2, list = 0x22EB, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F3, + vfptr offset = 40, name = 'GetVolume' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F7, + vfptr offset = 44, name = 'SetVolume' + list[7] = LF_STATICMEMBER, private, type = T_INT4(0074) member name = 'g_unkCount' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x17F4, name = 'Init' + list[9] = LF_MEMBER, protected, type = T_INT4(0074), offset = 44 + member name = 'm_volume' + +0x22ed : Length = 10, Leaf = 0x000a LF_VTSHAPE + Number of entries : 12 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + +0x22ee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x22ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +0x22ef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x18F0, + list[1] = public, VIRTUAL, 0x18EB, + +0x22f0 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18EB, name = 'LegoPalettePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EB, name = '~LegoPalettePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x22EF, name = 'Destroy' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x18EB, name = 'Init' + list[7] = LF_MEMBER, private, type = 0x1225, offset = 100 + member name = 'm_palette' + +0x22f1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x22f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoPalettePresenter, UDT(0x00003e18) + +0x22f2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x18E7 + +0x22f3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x22F2 + +0x22f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x18E7, This type = 0x22F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x22f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18E7, This type = 0x22F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x22f6 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x22F4, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x22F5, name = 'IsA' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18E8, name = 'configureLegoPartPresenter' + +0x22f7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x22f6, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoPartPresenter, UDT(0x00003dc6) + +0x22f8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x18D3, + list[1] = public, VIRTUAL, 0x18CD, + +0x22f9 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18CD, name = 'LegoPathPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D0, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D1, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CD, name = 'RepeatingTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CD, name = 'ParseExtra' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D2, name = 'AddToManager' + list[7] = LF_METHOD, count = 2, list = 0x22F8, name = 'Destroy' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x18CD, name = 'Init' + list[9] = LF_MEMBER, protected, type = 0x1064, offset = 80 + member name = 'm_atomId' + list[10] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x18CD, name = '~LegoPathPresenter' + +0x22fa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x22f9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 84, class name = LegoPathPresenter, UDT(0x00003dc8) + +0x22fb : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18C7, name = 'LegoPhonemePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18C7, name = '~LegoPhonemePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CA, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x18C7, name = 'Init' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 104 + member name = 'm_unk68' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 108 + member name = 'm_unk6c' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk70' + list[8] = LF_MEMBER, private, type = 0x1272, offset = 116 + member name = 'm_string' + list[9] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 132 + member name = 'm_unk84' + +0x22fc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x22fb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 136, class name = LegoPhonemePresenter, UDT(0x000032a2) + +0x22fd : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_name' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_red' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_green' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'm_blue' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 16 + member name = 'm_unk10' + +0x22fe : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x22fd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = ROIColorAlias, UDT(0x000032a4) + +0x22ff : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1870, name = '~LegoTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1873, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1874, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1875, name = 'AddToManager' + +0x2300 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x22ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +0x2301 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 24 + Name = + +0x2302 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 8 + Name = + +0x2303 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 20 + Name = + +0x2304 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 44 + Name = + +0x2305 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 68 + Name = + +0x2306 : Length = 502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_name' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_unk0x04' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 8 + member name = 'm_unk0x08' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'm_savePart1' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 16 + member name = 'm_savePart2' + list[5] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 20 + member name = 'm_savePart3' + list[6] = LF_MEMBER, public, type = 0x2301, offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 48 + member name = 'm_frameOffsetInDwords' + list[8] = LF_MEMBER, public, type = T_32PINT4(0474), offset = 52 + member name = 'm_pFrameData' + list[9] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 56 + member name = 'm_currentFrame' + list[10] = LF_MEMBER, public, type = 0x2302, offset = 60 + member name = 'm_unk0x3c' + list[11] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 68 + member name = 'm_savePart5' + list[12] = LF_MEMBER, public, type = 0x2303, offset = 72 + member name = 'm_unk0x48' + list[13] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 92 + member name = 'm_savePart6' + list[14] = LF_MEMBER, public, type = 0x2304, offset = 96 + member name = 'm_unk0x60' + list[15] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 140 + member name = 'm_savePart7' + list[16] = LF_MEMBER, public, type = 0x2303, offset = 144 + member name = 'm_unk0x90' + list[17] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 164 + member name = 'm_savePart8' + list[18] = LF_MEMBER, public, type = 0x2305, offset = 168 + member name = 'm_unk0xa8' + list[19] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 236 + member name = 'm_savePart9' + list[20] = LF_MEMBER, public, type = 0x2303, offset = 240 + member name = 'm_unk0xf0' + list[21] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 260 + member name = 'm_savePart10' + +0x2307 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 22, field list type 0x2306, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 264, class name = LegoSaveDataEntry3, UDT(0x00002307) + +0x2308 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1852 + Index type = T_SHORT(0011) + length = 48 + Name = + +0x2309 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1855, This type = 0x1856, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x230a : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1857, name = 'LegoVehicleBuildState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x185A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x185B, name = 'IsA' + list[4] = LF_NESTTYPE, type = 0x1852, UnkStruct + list[5] = LF_MEMBER, private, type = 0x2308, offset = 8 + member name = 'm_unk08' + list[6] = LF_MEMBER, private, type = 0x1272, offset = 56 + member name = 'm_className' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_animationState' + list[8] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 76 + member name = 'm_unk4c' + list[9] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 77 + member name = 'm_unk4d' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 78 + member name = 'm_unk4e' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 79 + member name = 'm_placedPartCount' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2309, name = '~LegoVehicleBuildState' + +0x230b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x230a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 80, class name = LegoVehicleBuildState, UDT(0x000032a6) + +0x230c : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk00' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'm_unk04' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'm_unk06' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 8 + member name = 'm_unk08' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1854, name = 'UnkStruct' + +0x230d : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x230c, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = LegoVehicleBuildState::UnkStruct, UDT(0x000032a8) + +0x230e : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1059 + list[1] = 0x10AE + list[2] = 0x109C + list[3] = T_UCHAR(0020) + +0x230f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1804, This type = 0x1805, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x230e, This adjust = 0 + +0x2310 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x1804, This type = 0x1805, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2311 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x230F, name = 'MxActionNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1808, name = '~MxActionNotificationParam' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1806, name = 'Clone' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2310, name = 'GetAction' + list[5] = LF_MEMBER, protected, type = 0x109C, offset = 12 + member name = 'm_action' + list[6] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_realloc' + +0x2312 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2311, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxActionNotificationParam, UDT(0x00002312) + +0x2313 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10BA, This type = 0x1596, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x230e, This adjust = 0 + +0x2314 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2313, name = 'MxEndActionNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1807, name = 'Clone' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1597, name = '~MxEndActionNotificationParam' + +0x2315 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2314, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxEndActionNotificationParam, UDT(0x00002315) + +0x2316 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1813, name = 'LegoWorldPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = '~LegoWorldPresenter' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1811, name = 'configureLegoWorldPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1816, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1817, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 80 + member name = 'm_unk50' + +0x2317 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2316, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +0x2318 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x180B, name = 'Motorcycle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180E, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180F, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk164' + list[6] = LF_MEMBER, private, type = 0x1CF1, offset = 360 + member name = 'm_unk168' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x180B, name = '~Motorcycle' + +0x2319 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2318, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +0x231a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x16B8, This type = 0x16BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x231b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x16B8, This type = 0x16BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x231c : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk00' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_unk04' + +0x231d : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x231c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxDSMediaAction::__unnamed + +0x231e : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16BA, name = 'MxDSMediaAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BA, name = '~MxDSMediaAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16C1, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16C2, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C4, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C5, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x16C3, name = 'CopyMediaSrcPath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetMediaFormat' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x231B, name = 'GetSustainTime' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[13] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 152 + member name = 'm_mediaSrcPath' + list[14] = LF_MEMBER, private, type = 0x231D, offset = 156 + member name = 'm_unk9c' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 164 + member name = 'm_framesPerSecond' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 168 + member name = 'm_mediaFormat' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 172 + member name = 'm_paletteManagement' + list[18] = LF_MEMBER, private, type = T_LONG(0012), offset = 176 + member name = 'm_sustainTime' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 180 + member name = 'm_unkb4' + +0x231f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x231e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +0x2320 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x161E, This type = 0x1622, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2321 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1620, name = 'MxDSSound' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1620, name = '~MxDSSound' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1627, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1628, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1623, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1624, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x162B, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x162A, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1629, name = 'Clone' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2320, name = 'GetVolume' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 184 + member name = 'm_sizeOnDisk' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 188 + member name = 'm_volume' + +0x2322 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2321, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 192, class name = MxDSSound, UDT(0x0000350a) + +0x2323 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = T_SHORT(0011) + list[2] = T_UINT4(0075) + +0x2324 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12FE, This type = 0x1396, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2323, This adjust = 0 + +0x2325 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x12FE, This type = 0x1393, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2326 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x12FE, This type = 0x1393, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2327 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12FE, This type = 0x1396, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2328 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2324, name = 'MxNextActionDataStart' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1394, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1395, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2325, name = 'GetObjectId' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2326, name = 'GetUnknown24' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_objectId' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 12 + member name = 'm_unk24val' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_data' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2327, name = '~MxNextActionDataStart' + +0x2329 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2328, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +0x232a : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x109C, offset = 8 + member name = '_Value' + +0x232b : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x232a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000232b) + +0x232c : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000025c6) + +0x232d : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x232C, offset = 0 + +0x232e : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x232d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x0000232e) + +0x232f : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x000023a3) + +0x2330 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002a0a) + +0x2331 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x109C + +0x2332 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x108C + +0x2333 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x108C + +0x2334 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002a1b) + +0x2335 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDSAction *,MxDSAction * &,MxDSAction * *,int>, UDT(0x000023b1) + +0x2336 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDSAction *,MxDSAction * const &,MxDSAction * const *,int>, UDT(0x000023c0) + +0x2337 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2330 + +0x2338 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2337 + +0x2339 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2334 + list[1] = 0x2334 + list[2] = 0x2338 + +0x233a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2339, This adjust = 0 + +0x233b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x173A + +0x233c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x233B + +0x233d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x233C + +0x233e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x233d, This adjust = 0 + +0x233f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x2333 + list[2] = 0x2338 + +0x2340 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x233f, This adjust = 0 + +0x2341 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2338 + +0x2342 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2341, This adjust = 0 + +0x2343 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x233A, + list[1] = public, VANILLA, 0x233E, + list[2] = public, VANILLA, 0x2340, + list[3] = public, VANILLA, 0x2342, + +0x2344 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x173A + +0x2345 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2344, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x233d, This adjust = 0 + +0x2346 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x233B + +0x2347 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2334, Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2348 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2349 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2347, + list[1] = public, VANILLA, 0x2348, + +0x234a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2336, Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x234b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2335, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x234c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x234A, + list[1] = public, VANILLA, 0x234B, + +0x234d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x109C + +0x234e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x234d, This adjust = 0 + +0x234f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2350 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2351 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2330, Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2352 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2333, Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2353 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12F0, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2354 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2352, + list[1] = public, VANILLA, 0x2353, + +0x2355 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2333 + +0x2356 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2355, This adjust = 0 + +0x2357 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x2333 + +0x2358 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2357, This adjust = 0 + +0x2359 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2334 + list[1] = 0x2334 + +0x235a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2359, This adjust = 0 + +0x235b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2358, + list[1] = public, VANILLA, 0x235A, + +0x235c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12E8 + list[1] = 0x2334 + list[2] = 0x2334 + +0x235d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x235c, This adjust = 0 + +0x235e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12E8 + list[1] = 0x2332 + list[2] = 0x2332 + +0x235f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x235e, This adjust = 0 + +0x2360 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12E8 + list[1] = T_UINT4(0075) + list[2] = 0x2333 + +0x2361 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2360, This adjust = 0 + +0x2362 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12E8 + list[1] = 0x2333 + +0x2363 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2362, This adjust = 0 + +0x2364 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x235D, + list[1] = public, VANILLA, 0x235F, + list[2] = public, VANILLA, 0x2361, + list[3] = public, VANILLA, 0x2363, + +0x2365 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12E8 + list[1] = 0x12E8 + +0x2366 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2365, This adjust = 0 + +0x2367 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12E8 + +0x2368 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2367, This adjust = 0 + +0x2369 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2366, + list[1] = public, VANILLA, 0x2368, + +0x236a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2344 + +0x236b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x236a, This adjust = 0 + +0x236c : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12E8 + list[1] = 0x2344 + list[2] = 0x12E8 + list[3] = 0x12E8 + +0x236d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x236c, This adjust = 0 + +0x236e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12E8 + list[1] = 0x2344 + list[2] = 0x12E8 + +0x236f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x236e, This adjust = 0 + +0x2370 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12E8 + list[1] = 0x2344 + +0x2371 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2370, This adjust = 0 + +0x2372 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x236D, + list[1] = public, VANILLA, 0x236F, + list[2] = public, VANILLA, 0x2371, + +0x2373 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00002395) + +0x2374 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2373 + +0x2375 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2374, This adjust = 0 + +0x2376 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x0000238b) + +0x2377 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2376 + +0x2378 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2377, This adjust = 0 + +0x2379 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2378, + list[1] = public, VANILLA, 0x173C, + +0x237a : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x0000239e) + +0x237b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2344 + list[1] = 0x237A + +0x237c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x237b, This adjust = 0 + +0x237d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x237C, + list[1] = public, VANILLA, 0x236B, + +0x237e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x237A + +0x237f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x237e, This adjust = 0 + +0x2380 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x237F, + list[1] = public, VANILLA, 0x173C, + +0x2381 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x173B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12ec, This adjust = 0 + +0x2382 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x173A, This type = 0x2346, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2383 : Length = 1126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x12EA, _Node + list[2] = LF_NESTTYPE, type = 0x12EB, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x232F, _Acc + list[4] = LF_NESTTYPE, type = 0x173A, _Myt + list[5] = LF_NESTTYPE, type = 0x2330, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2331, _Tptr + list[9] = LF_NESTTYPE, type = 0x2332, _Ctptr + list[10] = LF_NESTTYPE, type = 0x12F0, reference + list[11] = LF_NESTTYPE, type = 0x2333, const_reference + list[12] = LF_NESTTYPE, type = 0x109C, value_type + list[13] = LF_NESTTYPE, type = 0x12E8, iterator + list[14] = LF_NESTTYPE, type = 0x2334, const_iterator + list[15] = LF_NESTTYPE, type = 0x2335, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2336, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x2343, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2334, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x173C, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x2345, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x2349, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x2349, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x234C, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x234C, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x234E, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x234F, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x234F, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2350, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2351, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x2354, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x2354, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2356, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x173C, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x2356, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x173C, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x235B, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x2364, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x2369, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x173C, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x236B, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2372, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x2356, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2373, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2375, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x2379, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x2376, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x237D, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x237A, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2380, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x173C, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x173E, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2381, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x236D, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2382, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2330, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x12EB, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x2384 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x2383, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00002384) + +0x2385 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002399) + +0x2386 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2376 + +0x2387 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2386 + +0x2388 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2333 + list[1] = 0x2333 + +0x2389 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2376, This type = 0x2387, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2388, This adjust = 0 + +0x238a : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2389, name = 'operator()' + +0x238b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x238a, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x0000238b) + +0x238c : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002397) + +0x238d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2373 + +0x238e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2386 + +0x238f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x238E + list[1] = 0x2333 + +0x2390 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2373, This type = 0x238D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x238f, This adjust = 0 + +0x2391 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2373 + +0x2392 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2391 + +0x2393 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2373, This type = 0x2392, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2355, This adjust = 0 + +0x2394 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x238C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2390, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2393, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x2376, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x109C, offset = 4 + member name = 'value' + +0x2395 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2394, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00002395) + +0x2396 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x109C, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2397 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2396, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002397) + +0x2398 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x109C, first_argument_type + list[1] = LF_NESTTYPE, type = 0x109C, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2399 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2398, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002399) + +0x239a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x237A + +0x239b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x239A + +0x239c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x237A, This type = 0x239B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2388, This adjust = 0 + +0x239d : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x239C, name = 'operator()' + +0x239e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x239d, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x0000239e) + +0x239f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12EB + +0x23a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x239F, Class type = 0x232F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x12ec, This adjust = 0 + +0x23a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12F0, Class type = 0x232F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x12ec, This adjust = 0 + +0x23a2 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x239F, _Nodepref + list[1] = LF_NESTTYPE, type = 0x12F0, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x23A0, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x23A0, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x23A1, name = '_Value' + +0x23a3 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x23a2, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x000023a3) + +0x23a4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2335 + +0x23a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2335, This type = 0x23A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2367, This adjust = 0 + +0x23a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2335, This type = 0x23A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23a7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23A5, + list[1] = public, VANILLA, 0x23A6, + +0x23a8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2335 + +0x23a9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23A8 + +0x23aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12E8, Class type = 0x2335, This type = 0x23A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12F0, Class type = 0x2335, This type = 0x23A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2335, Class type = 0x2335, This type = 0x23A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x23ad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2335 + +0x23ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23AD, Class type = 0x2335, This type = 0x23A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23af : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23AC, + list[1] = public, VANILLA, 0x23AE, + +0x23b0 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12E7, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2335, _Myt + list[2] = LF_NESTTYPE, type = 0x12E8, iter_type + list[3] = LF_NESTTYPE, type = 0x109C, value_type + list[4] = LF_NESTTYPE, type = 0x12F0, reference_type + list[5] = LF_NESTTYPE, type = 0x2331, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x23A7, name = 'reverse_bidirectional_iterator >::iterator,MxDSAction *,MxDSAction * &,MxDSAction * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x23AA, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x23AB, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x23AF, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x23AF, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x12E8, offset = 0 + member name = 'current' + +0x23b1 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x23b0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDSAction *,MxDSAction * &,MxDSAction * *,int>, UDT(0x000023b1) + +0x23b2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2336 + +0x23b3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2334 + +0x23b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2336, This type = 0x23B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23b3, This adjust = 0 + +0x23b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2336, This type = 0x23B2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23b6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23B4, + list[1] = public, VANILLA, 0x23B5, + +0x23b7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2336 + +0x23b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23B7 + +0x23b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2334, Class type = 0x2336, This type = 0x23B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2333, Class type = 0x2336, This type = 0x23B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2336, Class type = 0x2336, This type = 0x23B2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x23bc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2336 + +0x23bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23BC, Class type = 0x2336, This type = 0x23B2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23be : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23BB, + list[1] = public, VANILLA, 0x23BD, + +0x23bf : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12E7, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2336, _Myt + list[2] = LF_NESTTYPE, type = 0x2334, iter_type + list[3] = LF_NESTTYPE, type = 0x109C, value_type + list[4] = LF_NESTTYPE, type = 0x2333, reference_type + list[5] = LF_NESTTYPE, type = 0x2332, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x23B6, name = 'reverse_bidirectional_iterator >::const_iterator,MxDSAction *,MxDSAction * const &,MxDSAction * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x23B9, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x23BA, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x23BE, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x23BE, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2334, offset = 0 + member name = 'current' + +0x23c0 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x23bf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDSAction *,MxDSAction * const &,MxDSAction * const *,int>, UDT(0x000023c0) + +0x23c1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1751 + +0x23c2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23C1 + +0x23c3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23C2 + +0x23c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1751, This type = 0x1752, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23c3, This adjust = 0 + +0x23c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1751, This type = 0x1752, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2357, This adjust = 0 + +0x23c6 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23C4, + list[1] = public, VANILLA, 0x23C5, + list[2] = public, VANILLA, 0x1753, + +0x23c7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1751 + +0x23c8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23C7 + +0x23c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1751, This type = 0x1752, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23c8, This adjust = 0 + +0x23ca : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x173A, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1751, _Myt + list[2] = LF_NESTTYPE, type = 0x2330, _A + list[3] = LF_METHOD, count = 2, list = 0x23C6, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x23C9, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1753, name = '~List' + +0x23cb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x23ca, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000023cb) + +0x23cc : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x12FF, offset = 8 + member name = '_Value' + +0x23cd : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x23cc, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x000023cd) + +0x23ce : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000025c8) + +0x23cf : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x23CE, offset = 0 + +0x23d0 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x23cf, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x000023d0) + +0x23d1 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00002445) + +0x23d2 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002a2b) + +0x23d3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12FF + +0x23d4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1396 + +0x23d5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1396 + +0x23d6 : Length = 102, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002a3c) + +0x23d7 : Length = 210, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxNextActionDataStart *,MxNextActionDataStart * &,MxNextActionDataStart * *,int>, UDT(0x00002453) + +0x23d8 : Length = 226, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxNextActionDataStart *,MxNextActionDataStart * const &,MxNextActionDataStart * const *,int>, UDT(0x00002462) + +0x23d9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x23D2 + +0x23da : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23D9 + +0x23db : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x23D6 + list[1] = 0x23D6 + list[2] = 0x23DA + +0x23dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x23db, This adjust = 0 + +0x23dd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x136B + +0x23de : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23DD + +0x23df : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23DE + +0x23e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23df, This adjust = 0 + +0x23e1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x23D5 + list[2] = 0x23DA + +0x23e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x23e1, This adjust = 0 + +0x23e3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23DA + +0x23e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23e3, This adjust = 0 + +0x23e5 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23DC, + list[1] = public, VANILLA, 0x23E0, + list[2] = public, VANILLA, 0x23E2, + list[3] = public, VANILLA, 0x23E4, + +0x23e6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x136B + +0x23e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23E6, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23df, This adjust = 0 + +0x23e8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23DD + +0x23e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D6, Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23eb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23E9, + list[1] = public, VANILLA, 0x23EA, + +0x23ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D8, Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D7, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23ee : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23EC, + list[1] = public, VANILLA, 0x23ED, + +0x23ef : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x12FF + +0x23f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x23ef, This adjust = 0 + +0x23f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D2, Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D5, Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x130D, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x23f6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23F4, + list[1] = public, VANILLA, 0x23F5, + +0x23f7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23D5 + +0x23f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23f7, This adjust = 0 + +0x23f9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x23D5 + +0x23fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x23f9, This adjust = 0 + +0x23fb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x23D6 + list[1] = 0x23D6 + +0x23fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x23fb, This adjust = 0 + +0x23fd : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23FA, + list[1] = public, VANILLA, 0x23FC, + +0x23fe : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1305 + list[1] = 0x23D6 + list[2] = 0x23D6 + +0x23ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x23fe, This adjust = 0 + +0x2400 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1305 + list[1] = 0x23D4 + list[2] = 0x23D4 + +0x2401 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2400, This adjust = 0 + +0x2402 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1305 + list[1] = T_UINT4(0075) + list[2] = 0x23D5 + +0x2403 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2402, This adjust = 0 + +0x2404 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1305 + list[1] = 0x23D5 + +0x2405 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2404, This adjust = 0 + +0x2406 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x23FF, + list[1] = public, VANILLA, 0x2401, + list[2] = public, VANILLA, 0x2403, + list[3] = public, VANILLA, 0x2405, + +0x2407 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1305 + list[1] = 0x1305 + +0x2408 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2407, This adjust = 0 + +0x2409 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1305 + +0x240a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2409, This adjust = 0 + +0x240b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2408, + list[1] = public, VANILLA, 0x240A, + +0x240c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23E6 + +0x240d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x240c, This adjust = 0 + +0x240e : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1305 + list[1] = 0x23E6 + list[2] = 0x1305 + list[3] = 0x1305 + +0x240f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x240e, This adjust = 0 + +0x2410 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1305 + list[1] = 0x23E6 + list[2] = 0x1305 + +0x2411 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2410, This adjust = 0 + +0x2412 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1305 + list[1] = 0x23E6 + +0x2413 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2412, This adjust = 0 + +0x2414 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x240F, + list[1] = public, VANILLA, 0x2411, + list[2] = public, VANILLA, 0x2413, + +0x2415 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00002437) + +0x2416 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2415 + +0x2417 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2416, This adjust = 0 + +0x2418 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x0000242d) + +0x2419 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2418 + +0x241a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2419, This adjust = 0 + +0x241b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x241A, + list[1] = public, VANILLA, 0x136D, + +0x241c : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002440) + +0x241d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x23E6 + list[1] = 0x241C + +0x241e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x241d, This adjust = 0 + +0x241f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x241E, + list[1] = public, VANILLA, 0x240D, + +0x2420 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x241C + +0x2421 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2420, This adjust = 0 + +0x2422 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2421, + list[1] = public, VANILLA, 0x136D, + +0x2423 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x136C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1309, This adjust = 0 + +0x2424 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x136B, This type = 0x23E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2425 : Length = 1170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1307, _Node + list[2] = LF_NESTTYPE, type = 0x1308, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x23D1, _Acc + list[4] = LF_NESTTYPE, type = 0x136B, _Myt + list[5] = LF_NESTTYPE, type = 0x23D2, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x23D3, _Tptr + list[9] = LF_NESTTYPE, type = 0x23D4, _Ctptr + list[10] = LF_NESTTYPE, type = 0x130D, reference + list[11] = LF_NESTTYPE, type = 0x23D5, const_reference + list[12] = LF_NESTTYPE, type = 0x12FF, value_type + list[13] = LF_NESTTYPE, type = 0x1305, iterator + list[14] = LF_NESTTYPE, type = 0x23D6, const_iterator + list[15] = LF_NESTTYPE, type = 0x23D7, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x23D8, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x23E5, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x23D6, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x136D, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x23E7, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x23EB, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x23EB, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x23EE, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x23EE, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x23F0, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x23F1, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x23F1, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x23F2, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x23F3, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x23F6, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x23F6, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x23F8, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x136D, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x23F8, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x136D, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x23FD, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x2406, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x240B, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x136D, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x240D, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2414, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x23F8, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2415, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2417, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x241B, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x2418, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x241F, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x241C, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2422, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x136D, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x136F, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2423, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x240F, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2424, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x23D2, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x1308, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x2426 : Length = 86, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x2425, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00002426) + +0x2427 : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x0000243b) + +0x2428 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2418 + +0x2429 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2428 + +0x242a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x23D5 + list[1] = 0x23D5 + +0x242b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2418, This type = 0x2429, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x242a, This adjust = 0 + +0x242c : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2427, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x242B, name = 'operator()' + +0x242d : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x242c, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x0000242d) + +0x242e : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002439) + +0x242f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2415 + +0x2430 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2428 + +0x2431 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2430 + list[1] = 0x23D5 + +0x2432 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2415, This type = 0x242F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2431, This adjust = 0 + +0x2433 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2415 + +0x2434 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2433 + +0x2435 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2415, This type = 0x2434, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23f7, This adjust = 0 + +0x2436 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x242E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2432, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2435, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x2418, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x12FF, offset = 4 + member name = 'value' + +0x2437 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2436, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00002437) + +0x2438 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12FF, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2439 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2438, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002439) + +0x243a : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12FF, first_argument_type + list[1] = LF_NESTTYPE, type = 0x12FF, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x243b : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x243a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x0000243b) + +0x243c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x241C + +0x243d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x243C + +0x243e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x241C, This type = 0x243D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x242a, This adjust = 0 + +0x243f : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2427, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x243E, name = 'operator()' + +0x2440 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x243f, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002440) + +0x2441 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1308 + +0x2442 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2441, Class type = 0x23D1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1309, This adjust = 0 + +0x2443 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x130D, Class type = 0x23D1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1309, This adjust = 0 + +0x2444 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2441, _Nodepref + list[1] = LF_NESTTYPE, type = 0x130D, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2442, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2442, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x2443, name = '_Value' + +0x2445 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2444, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00002445) + +0x2446 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23D7 + +0x2447 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D7, This type = 0x2446, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2409, This adjust = 0 + +0x2448 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D7, This type = 0x2446, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2449 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2447, + list[1] = public, VANILLA, 0x2448, + +0x244a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x23D7 + +0x244b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x244A + +0x244c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1305, Class type = 0x23D7, This type = 0x244B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x244d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x130D, Class type = 0x23D7, This type = 0x244B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x244e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D7, Class type = 0x23D7, This type = 0x2446, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x244f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23D7 + +0x2450 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x244F, Class type = 0x23D7, This type = 0x2446, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2451 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x244E, + list[1] = public, VANILLA, 0x2450, + +0x2452 : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1304, offset = 0 + list[1] = LF_NESTTYPE, type = 0x23D7, _Myt + list[2] = LF_NESTTYPE, type = 0x1305, iter_type + list[3] = LF_NESTTYPE, type = 0x12FF, value_type + list[4] = LF_NESTTYPE, type = 0x130D, reference_type + list[5] = LF_NESTTYPE, type = 0x23D3, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2449, name = 'reverse_bidirectional_iterator >::iterator,MxNextActionDataStart *,MxNextActionDataStart * &,MxNextActionDataStart * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x244C, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x244D, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2451, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2451, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x1305, offset = 0 + member name = 'current' + +0x2453 : Length = 210, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2452, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxNextActionDataStart *,MxNextActionDataStart * &,MxNextActionDataStart * *,int>, UDT(0x00002453) + +0x2454 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23D8 + +0x2455 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23D6 + +0x2456 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D8, This type = 0x2454, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2455, This adjust = 0 + +0x2457 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D8, This type = 0x2454, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2458 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2456, + list[1] = public, VANILLA, 0x2457, + +0x2459 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x23D8 + +0x245a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2459 + +0x245b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D6, Class type = 0x23D8, This type = 0x245A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x245c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D5, Class type = 0x23D8, This type = 0x245A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x245d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D8, Class type = 0x23D8, This type = 0x2454, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x245e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23D8 + +0x245f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x245E, Class type = 0x23D8, This type = 0x2454, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2460 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x245D, + list[1] = public, VANILLA, 0x245F, + +0x2461 : Length = 454, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1304, offset = 0 + list[1] = LF_NESTTYPE, type = 0x23D8, _Myt + list[2] = LF_NESTTYPE, type = 0x23D6, iter_type + list[3] = LF_NESTTYPE, type = 0x12FF, value_type + list[4] = LF_NESTTYPE, type = 0x23D5, reference_type + list[5] = LF_NESTTYPE, type = 0x23D4, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2458, name = 'reverse_bidirectional_iterator >::const_iterator,MxNextActionDataStart *,MxNextActionDataStart * const &,MxNextActionDataStart * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x245B, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x245C, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2460, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2460, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x23D6, offset = 0 + member name = 'current' + +0x2462 : Length = 226, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2461, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxNextActionDataStart *,MxNextActionDataStart * const &,MxNextActionDataStart * const *,int>, UDT(0x00002462) + +0x2463 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1388 + +0x2464 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2463 + +0x2465 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2464 + +0x2466 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1388, This type = 0x1389, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2465, This adjust = 0 + +0x2467 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1388, This type = 0x1389, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x23f9, This adjust = 0 + +0x2468 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2466, + list[1] = public, VANILLA, 0x2467, + list[2] = public, VANILLA, 0x138A, + +0x2469 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1388 + +0x246a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2469 + +0x246b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1388, This type = 0x1389, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x246a, This adjust = 0 + +0x246c : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x136B, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1388, _Myt + list[2] = LF_NESTTYPE, type = 0x23D2, _A + list[3] = LF_METHOD, count = 2, list = 0x2468, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x246B, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x138A, name = '~List' + +0x246d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x246c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x0000246d) + +0x246e : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x1EEA, offset = 8 + member name = '_Value' + +0x246f : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x246e, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000246f) + +0x2470 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x000024e7) + +0x2471 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002a4c) + +0x2472 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1EEA + +0x2473 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x15F3 + +0x2474 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1EEA + +0x2475 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x15F3 + +0x2476 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00002a5d) + +0x2477 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002a71) + +0x2478 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDSSubscriber *,MxDSSubscriber * &,MxDSSubscriber * *,int>, UDT(0x000024f6) + +0x2479 : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDSSubscriber *,MxDSSubscriber * const &,MxDSSubscriber * const *,int>, UDT(0x00002505) + +0x247a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2471 + +0x247b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x247A + +0x247c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2477 + list[1] = 0x2477 + list[2] = 0x247B + +0x247d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x247c, This adjust = 0 + +0x247e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1370 + +0x247f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x247E + +0x2480 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x247F + +0x2481 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2480, This adjust = 0 + +0x2482 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x2475 + list[2] = 0x247B + +0x2483 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2482, This adjust = 0 + +0x2484 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x247B + +0x2485 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2484, This adjust = 0 + +0x2486 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x247D, + list[1] = public, VANILLA, 0x2481, + list[2] = public, VANILLA, 0x2483, + list[3] = public, VANILLA, 0x2485, + +0x2487 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1370 + +0x2488 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2487, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2480, This adjust = 0 + +0x2489 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x247E + +0x248a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2477, Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x248b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x248c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x248A, + list[1] = public, VANILLA, 0x248B, + +0x248d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2479, Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x248e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2478, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x248f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x248D, + list[1] = public, VANILLA, 0x248E, + +0x2490 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x1EEA + +0x2491 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2490, This adjust = 0 + +0x2492 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2493 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2494 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2471, Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2495 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2475, Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2496 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2474, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2497 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2495, + list[1] = public, VANILLA, 0x2496, + +0x2498 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2475 + +0x2499 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2498, This adjust = 0 + +0x249a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x2475 + +0x249b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x249a, This adjust = 0 + +0x249c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2477 + list[1] = 0x2477 + +0x249d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x249c, This adjust = 0 + +0x249e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x249B, + list[1] = public, VANILLA, 0x249D, + +0x249f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2476 + list[1] = 0x2477 + list[2] = 0x2477 + +0x24a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x249f, This adjust = 0 + +0x24a1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2476 + list[1] = 0x2473 + list[2] = 0x2473 + +0x24a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x24a1, This adjust = 0 + +0x24a3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2476 + list[1] = T_UINT4(0075) + list[2] = 0x2475 + +0x24a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x24a3, This adjust = 0 + +0x24a5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2476 + list[1] = 0x2475 + +0x24a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24a5, This adjust = 0 + +0x24a7 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24A0, + list[1] = public, VANILLA, 0x24A2, + list[2] = public, VANILLA, 0x24A4, + list[3] = public, VANILLA, 0x24A6, + +0x24a8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2476 + list[1] = 0x2476 + +0x24a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24a8, This adjust = 0 + +0x24aa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2476 + +0x24ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24aa, This adjust = 0 + +0x24ac : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24A9, + list[1] = public, VANILLA, 0x24AB, + +0x24ad : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2487 + +0x24ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24ad, This adjust = 0 + +0x24af : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x2476 + list[1] = 0x2487 + list[2] = 0x2476 + list[3] = 0x2476 + +0x24b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x24af, This adjust = 0 + +0x24b1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2476 + list[1] = 0x2487 + list[2] = 0x2476 + +0x24b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x24b1, This adjust = 0 + +0x24b3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2476 + list[1] = 0x2487 + +0x24b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24b3, This adjust = 0 + +0x24b5 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24B0, + list[1] = public, VANILLA, 0x24B2, + list[2] = public, VANILLA, 0x24B4, + +0x24b6 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x000024d9) + +0x24b7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x24B6 + +0x24b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24b7, This adjust = 0 + +0x24b9 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x000024cf) + +0x24ba : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x24B9 + +0x24bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24ba, This adjust = 0 + +0x24bc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24BB, + list[1] = public, VANILLA, 0x1372, + +0x24bd : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x000024e2) + +0x24be : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2487 + list[1] = 0x24BD + +0x24bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24be, This adjust = 0 + +0x24c0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24BF, + list[1] = public, VANILLA, 0x24AE, + +0x24c1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x24BD + +0x24c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24c1, This adjust = 0 + +0x24c3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24C2, + list[1] = public, VANILLA, 0x1372, + +0x24c4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1374 + +0x24c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x1371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24c4, This adjust = 0 + +0x24c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1370, This type = 0x2489, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24c7 : Length = 1142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1373, _Node + list[2] = LF_NESTTYPE, type = 0x1374, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2470, _Acc + list[4] = LF_NESTTYPE, type = 0x1370, _Myt + list[5] = LF_NESTTYPE, type = 0x2471, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2472, _Tptr + list[9] = LF_NESTTYPE, type = 0x2473, _Ctptr + list[10] = LF_NESTTYPE, type = 0x2474, reference + list[11] = LF_NESTTYPE, type = 0x2475, const_reference + list[12] = LF_NESTTYPE, type = 0x1EEA, value_type + list[13] = LF_NESTTYPE, type = 0x2476, iterator + list[14] = LF_NESTTYPE, type = 0x2477, const_iterator + list[15] = LF_NESTTYPE, type = 0x2478, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2479, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x2486, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2477, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1372, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x2488, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x248C, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x248C, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x248F, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x248F, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2491, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2492, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2492, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2493, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2494, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x2497, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x2497, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2499, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1372, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x2499, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1372, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x249E, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x24A7, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x24AC, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1372, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x24AE, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x24B5, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x2499, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x24B6, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x24B8, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x24BC, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x24B9, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x24C0, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x24BD, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x24C3, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1372, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x1376, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x24C5, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x24B0, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x24C6, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2471, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x1374, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x24c8 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x24c7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x000024c8) + +0x24c9 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x000024dd) + +0x24ca : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x24B9 + +0x24cb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24CA + +0x24cc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2475 + list[1] = 0x2475 + +0x24cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x24B9, This type = 0x24CB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24cc, This adjust = 0 + +0x24ce : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24C9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x24CD, name = 'operator()' + +0x24cf : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x24ce, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x000024cf) + +0x24d0 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000024db) + +0x24d1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24B6 + +0x24d2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x24CA + +0x24d3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x24D2 + list[1] = 0x2475 + +0x24d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x24B6, This type = 0x24D1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24d3, This adjust = 0 + +0x24d5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x24B6 + +0x24d6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24D5 + +0x24d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x24B6, This type = 0x24D6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2498, This adjust = 0 + +0x24d8 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24D0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x24D4, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x24D7, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x24B9, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x1EEA, offset = 4 + member name = 'value' + +0x24d9 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x24d8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x000024d9) + +0x24da : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1EEA, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x24db : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x24da, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000024db) + +0x24dc : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1EEA, first_argument_type + list[1] = LF_NESTTYPE, type = 0x1EEA, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x24dd : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x24dc, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x000024dd) + +0x24de : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x24BD + +0x24df : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24DE + +0x24e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x24BD, This type = 0x24DF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x24cc, This adjust = 0 + +0x24e1 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24C9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x24E0, name = 'operator()' + +0x24e2 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x24e1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x000024e2) + +0x24e3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1374 + +0x24e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x24E3, Class type = 0x2470, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x24c4, This adjust = 0 + +0x24e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2474, Class type = 0x2470, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x24c4, This adjust = 0 + +0x24e6 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x24E3, _Nodepref + list[1] = LF_NESTTYPE, type = 0x2474, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x24E4, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x24E4, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x24E5, name = '_Value' + +0x24e7 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x24e6, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x000024e7) + +0x24e8 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002a60) + +0x24e9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2478 + +0x24ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2478, This type = 0x24E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24aa, This adjust = 0 + +0x24eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2478, This type = 0x24E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24ec : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24EA, + list[1] = public, VANILLA, 0x24EB, + +0x24ed : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2478 + +0x24ee : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24ED + +0x24ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x2478, This type = 0x24EE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2474, Class type = 0x2478, This type = 0x24EE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2478, Class type = 0x2478, This type = 0x24E9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x24f2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2478 + +0x24f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x24F2, Class type = 0x2478, This type = 0x24E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24f4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24F1, + list[1] = public, VANILLA, 0x24F3, + +0x24f5 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24E8, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2478, _Myt + list[2] = LF_NESTTYPE, type = 0x2476, iter_type + list[3] = LF_NESTTYPE, type = 0x1EEA, value_type + list[4] = LF_NESTTYPE, type = 0x2474, reference_type + list[5] = LF_NESTTYPE, type = 0x2472, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x24EC, name = 'reverse_bidirectional_iterator >::iterator,MxDSSubscriber *,MxDSSubscriber * &,MxDSSubscriber * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x24EF, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x24F0, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x24F4, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x24F4, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2476, offset = 0 + member name = 'current' + +0x24f6 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x24f5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDSSubscriber *,MxDSSubscriber * &,MxDSSubscriber * *,int>, UDT(0x000024f6) + +0x24f7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2479 + +0x24f8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2477 + +0x24f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2479, This type = 0x24F7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24f8, This adjust = 0 + +0x24fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2479, This type = 0x24F7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24fb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x24F9, + list[1] = public, VANILLA, 0x24FA, + +0x24fc : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2479 + +0x24fd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x24FC + +0x24fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2477, Class type = 0x2479, This type = 0x24FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x24ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2475, Class type = 0x2479, This type = 0x24FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2500 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2479, Class type = 0x2479, This type = 0x24F7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2501 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2479 + +0x2502 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2501, Class type = 0x2479, This type = 0x24F7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2503 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2500, + list[1] = public, VANILLA, 0x2502, + +0x2504 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24E8, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2479, _Myt + list[2] = LF_NESTTYPE, type = 0x2477, iter_type + list[3] = LF_NESTTYPE, type = 0x1EEA, value_type + list[4] = LF_NESTTYPE, type = 0x2475, reference_type + list[5] = LF_NESTTYPE, type = 0x2473, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x24FB, name = 'reverse_bidirectional_iterator >::const_iterator,MxDSSubscriber *,MxDSSubscriber * const &,MxDSSubscriber * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x24FE, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x24FF, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2503, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2503, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2477, offset = 0 + member name = 'current' + +0x2505 : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2504, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDSSubscriber *,MxDSSubscriber * const &,MxDSSubscriber * const *,int>, UDT(0x00002505) + +0x2506 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1385 + +0x2507 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2506 + +0x2508 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2507 + +0x2509 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1385, This type = 0x1386, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2508, This adjust = 0 + +0x250a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1385, This type = 0x1386, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x249a, This adjust = 0 + +0x250b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2509, + list[1] = public, VANILLA, 0x250A, + list[2] = public, VANILLA, 0x1387, + +0x250c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1385 + +0x250d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x250C + +0x250e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1385, This type = 0x1386, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x250d, This adjust = 0 + +0x250f : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1370, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1385, _Myt + list[2] = LF_NESTTYPE, type = 0x2471, _A + list[3] = LF_METHOD, count = 2, list = 0x250B, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x250E, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1387, name = '~List' + +0x2510 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x250f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00002510) + +0x2511 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2512 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2513 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x172C, name = 'MxStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172B, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E1, + vfptr offset = 20, name = 'SetResourceToGet' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 24, name = 'GetFileSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 28, name = 'GetStreamBuffersNum' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E2, + vfptr offset = 32, name = 'vtable0x20' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 36, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2512, + vfptr offset = 40, name = 'GetBufferForDWords' + list[10] = LF_MEMBER, protected, type = 0x12DF, offset = 8 + member name = 'm_pLookup' + list[11] = LF_MEMBER, protected, type = 0x193F, offset = 12 + member name = 'm_pFile' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x172C, name = '~MxStreamProvider' + +0x2514 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2513, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +0x2515 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1320, This type = 0x1321, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2516 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1320 + +0x2517 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2516 + +0x2518 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1320, This type = 0x2517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2519 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1320, This type = 0x1321, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x251a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x1320, This type = 0x2517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x251b : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetUnk08' + list[6] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk08' + +0x251c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x251b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x251d : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1320, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x132F, name = 'MxStreamerSubClass2' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x132F, name = '~MxStreamerSubClass2' + +0x251e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x251d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass2, UDT(0x0000251e) + +0x251f : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1320, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1332, name = 'MxStreamerSubClass3' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1332, name = '~MxStreamerSubClass3' + +0x2520 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x251f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass3, UDT(0x00002520) + +0x2521 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x12DF, offset = 8 + member name = '_Value' + +0x2522 : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2521, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x00002522) + +0x2523 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000025ca) + +0x2524 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2523, offset = 0 + +0x2525 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2524, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002525) + +0x2526 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x0000259c) + +0x2527 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002a81) + +0x2528 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x12DF + +0x2529 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1367 + +0x252a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1367 + +0x252b : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002a92) + +0x252c : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxStreamController *,MxStreamController * &,MxStreamController * *,int>, UDT(0x000025aa) + +0x252d : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxStreamController *,MxStreamController * const &,MxStreamController * const *,int>, UDT(0x000025b9) + +0x252e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2527 + +0x252f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x252E + +0x2530 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x252B + list[1] = 0x252B + list[2] = 0x252F + +0x2531 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2530, This adjust = 0 + +0x2532 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1327 + +0x2533 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2532 + +0x2534 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2533 + +0x2535 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2534, This adjust = 0 + +0x2536 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x252A + list[2] = 0x252F + +0x2537 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2536, This adjust = 0 + +0x2538 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x252F + +0x2539 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2538, This adjust = 0 + +0x253a : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2531, + list[1] = public, VANILLA, 0x2535, + list[2] = public, VANILLA, 0x2537, + list[3] = public, VANILLA, 0x2539, + +0x253b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1327 + +0x253c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x253B, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2534, This adjust = 0 + +0x253d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2532 + +0x253e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252B, Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x253f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2540 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x253E, + list[1] = public, VANILLA, 0x253F, + +0x2541 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252D, Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2542 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252C, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2543 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2541, + list[1] = public, VANILLA, 0x2542, + +0x2544 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x12DF + +0x2545 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2544, This adjust = 0 + +0x2546 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2547 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2548 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2527, Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2549 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252A, Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x254a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1346, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x254b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2549, + list[1] = public, VANILLA, 0x254A, + +0x254c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x252A + +0x254d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x254c, This adjust = 0 + +0x254e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x252A + +0x254f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x254e, This adjust = 0 + +0x2550 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x252B + list[1] = 0x252B + +0x2551 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2550, This adjust = 0 + +0x2552 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x254F, + list[1] = public, VANILLA, 0x2551, + +0x2553 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x133E + list[1] = 0x252B + list[2] = 0x252B + +0x2554 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2553, This adjust = 0 + +0x2555 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x133E + list[1] = 0x2529 + list[2] = 0x2529 + +0x2556 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2555, This adjust = 0 + +0x2557 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x133E + list[1] = T_UINT4(0075) + list[2] = 0x252A + +0x2558 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2557, This adjust = 0 + +0x2559 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x133E + list[1] = 0x252A + +0x255a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2559, This adjust = 0 + +0x255b : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2554, + list[1] = public, VANILLA, 0x2556, + list[2] = public, VANILLA, 0x2558, + list[3] = public, VANILLA, 0x255A, + +0x255c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x133E + list[1] = 0x133E + +0x255d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x255c, This adjust = 0 + +0x255e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x133E + +0x255f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x255e, This adjust = 0 + +0x2560 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x255D, + list[1] = public, VANILLA, 0x255F, + +0x2561 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x253B + +0x2562 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2561, This adjust = 0 + +0x2563 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x133E + list[1] = 0x253B + list[2] = 0x133E + list[3] = 0x133E + +0x2564 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2563, This adjust = 0 + +0x2565 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x133E + list[1] = 0x253B + list[2] = 0x133E + +0x2566 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2565, This adjust = 0 + +0x2567 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x133E + list[1] = 0x253B + +0x2568 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2567, This adjust = 0 + +0x2569 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2564, + list[1] = public, VANILLA, 0x2566, + list[2] = public, VANILLA, 0x2568, + +0x256a : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x0000258e) + +0x256b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x256A + +0x256c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x256b, This adjust = 0 + +0x256d : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00002584) + +0x256e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x256D + +0x256f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x256e, This adjust = 0 + +0x2570 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x256F, + list[1] = public, VANILLA, 0x1329, + +0x2571 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002597) + +0x2572 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x253B + list[1] = 0x2571 + +0x2573 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2572, This adjust = 0 + +0x2574 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2573, + list[1] = public, VANILLA, 0x2562, + +0x2575 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2571 + +0x2576 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2575, This adjust = 0 + +0x2577 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2576, + list[1] = public, VANILLA, 0x1329, + +0x2578 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1341 + list[1] = 0x1341 + +0x2579 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1341, Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2578, This adjust = 0 + +0x257a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x1328, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1342, This adjust = 0 + +0x257b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1327, This type = 0x253D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x257c : Length = 1158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1340, _Node + list[2] = LF_NESTTYPE, type = 0x1341, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2526, _Acc + list[4] = LF_NESTTYPE, type = 0x1327, _Myt + list[5] = LF_NESTTYPE, type = 0x2527, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2528, _Tptr + list[9] = LF_NESTTYPE, type = 0x2529, _Ctptr + list[10] = LF_NESTTYPE, type = 0x1346, reference + list[11] = LF_NESTTYPE, type = 0x252A, const_reference + list[12] = LF_NESTTYPE, type = 0x12DF, value_type + list[13] = LF_NESTTYPE, type = 0x133E, iterator + list[14] = LF_NESTTYPE, type = 0x252B, const_iterator + list[15] = LF_NESTTYPE, type = 0x252C, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x252D, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x253A, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x252B, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1329, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x253C, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x2540, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x2540, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x2543, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x2543, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2545, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2546, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2546, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2547, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2548, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x254B, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x254B, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x254D, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1329, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x254D, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1329, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x2552, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x255B, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x2560, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1329, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2562, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2569, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x254D, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x256A, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x256C, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x2570, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x256D, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x2574, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x2571, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2577, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1329, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x2579, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x257A, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x2564, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x257B, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2527, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x1341, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x257d : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x257c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000257d) + +0x257e : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002592) + +0x257f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x256D + +0x2580 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x257F + +0x2581 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x252A + list[1] = 0x252A + +0x2582 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x256D, This type = 0x2580, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2581, This adjust = 0 + +0x2583 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x257E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2582, name = 'operator()' + +0x2584 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2583, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00002584) + +0x2585 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002590) + +0x2586 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x256A + +0x2587 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x257F + +0x2588 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2587 + list[1] = 0x252A + +0x2589 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x256A, This type = 0x2586, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2588, This adjust = 0 + +0x258a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x256A + +0x258b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x258A + +0x258c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x256A, This type = 0x258B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x254c, This adjust = 0 + +0x258d : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2585, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2589, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x258C, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x256D, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x12DF, offset = 4 + member name = 'value' + +0x258e : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x258d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x0000258e) + +0x258f : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12DF, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2590 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x258f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002590) + +0x2591 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12DF, first_argument_type + list[1] = LF_NESTTYPE, type = 0x12DF, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2592 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2591, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002592) + +0x2593 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2571 + +0x2594 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2593 + +0x2595 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2571, This type = 0x2594, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2581, This adjust = 0 + +0x2596 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x257E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2595, name = 'operator()' + +0x2597 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2596, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002597) + +0x2598 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1341 + +0x2599 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2598, Class type = 0x2526, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1342, This adjust = 0 + +0x259a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1346, Class type = 0x2526, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1342, This adjust = 0 + +0x259b : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2598, _Nodepref + list[1] = LF_NESTTYPE, type = 0x1346, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2599, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2599, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x259A, name = '_Value' + +0x259c : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x259b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x0000259c) + +0x259d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x252C + +0x259e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252C, This type = 0x259D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x255e, This adjust = 0 + +0x259f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252C, This type = 0x259D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25a0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x259E, + list[1] = public, VANILLA, 0x259F, + +0x25a1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x252C + +0x25a2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25A1 + +0x25a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x133E, Class type = 0x252C, This type = 0x25A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1346, Class type = 0x252C, This type = 0x25A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252C, Class type = 0x252C, This type = 0x259D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x25a6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x252C + +0x25a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25A6, Class type = 0x252C, This type = 0x259D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25a8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25A5, + list[1] = public, VANILLA, 0x25A7, + +0x25a9 : Length = 422, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x133D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x252C, _Myt + list[2] = LF_NESTTYPE, type = 0x133E, iter_type + list[3] = LF_NESTTYPE, type = 0x12DF, value_type + list[4] = LF_NESTTYPE, type = 0x1346, reference_type + list[5] = LF_NESTTYPE, type = 0x2528, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x25A0, name = 'reverse_bidirectional_iterator >::iterator,MxStreamController *,MxStreamController * &,MxStreamController * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x25A3, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x25A4, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x25A8, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x25A8, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x133E, offset = 0 + member name = 'current' + +0x25aa : Length = 194, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x25a9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxStreamController *,MxStreamController * &,MxStreamController * *,int>, UDT(0x000025aa) + +0x25ab : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x252D + +0x25ac : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x252B + +0x25ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252D, This type = 0x25AB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25ac, This adjust = 0 + +0x25ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252D, This type = 0x25AB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25af : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25AD, + list[1] = public, VANILLA, 0x25AE, + +0x25b0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x252D + +0x25b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25B0 + +0x25b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252B, Class type = 0x252D, This type = 0x25B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252A, Class type = 0x252D, This type = 0x25B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252D, Class type = 0x252D, This type = 0x25AB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x25b5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x252D + +0x25b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25B5, Class type = 0x252D, This type = 0x25AB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25b7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25B4, + list[1] = public, VANILLA, 0x25B6, + +0x25b8 : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x133D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x252D, _Myt + list[2] = LF_NESTTYPE, type = 0x252B, iter_type + list[3] = LF_NESTTYPE, type = 0x12DF, value_type + list[4] = LF_NESTTYPE, type = 0x252A, reference_type + list[5] = LF_NESTTYPE, type = 0x2529, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x25AF, name = 'reverse_bidirectional_iterator >::const_iterator,MxStreamController *,MxStreamController * const &,MxStreamController * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x25B2, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x25B3, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x25B7, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x25B7, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x252B, offset = 0 + member name = 'current' + +0x25b9 : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x25b8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxStreamController *,MxStreamController * const &,MxStreamController * const *,int>, UDT(0x000025b9) + +0x25ba : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x132A + +0x25bb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25BA + +0x25bc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25BB + +0x25bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x132A, This type = 0x132B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25bc, This adjust = 0 + +0x25be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x132A, This type = 0x132B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x254e, This adjust = 0 + +0x25bf : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25BD, + list[1] = public, VANILLA, 0x25BE, + list[2] = public, VANILLA, 0x132C, + +0x25c0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x132A + +0x25c1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25C0 + +0x25c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x132A, This type = 0x132B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25c1, This adjust = 0 + +0x25c3 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1327, offset = 0 + list[1] = LF_NESTTYPE, type = 0x132A, _Myt + list[2] = LF_NESTTYPE, type = 0x2527, _A + list[3] = LF_METHOD, count = 2, list = 0x25BF, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x25C2, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x132C, name = '~List' + +0x25c4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x25c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000025c4) + +0x25c5 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x109C, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x25c6 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x25c5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000025c6) + +0x25c7 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x12FF, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x25c8 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x25c7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000025c8) + +0x25c9 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x12DF, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x25ca : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x25c9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000025ca) + +0x25cb : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x25cc : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x25cd : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x25ce : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x25cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x25cf : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1382, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = 'MxStreamListMxNextActionDataStart' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = '~MxStreamListMxNextActionDataStart' + +0x25d0 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x25cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x25d1 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = 'MxStreamList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = '~MxStreamList' + +0x25d2 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +0x25d3 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1388, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = 'MxStreamList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = '~MxStreamList' + +0x25d4 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +0x25d5 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1751, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = 'MxStreamList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = '~MxStreamList' + +0x25d6 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +0x25d7 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17B7, name = 'MxCompositeMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BA, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BB, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x17B7, name = '~MxCompositeMediaPresenter' + +0x25d8 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x25d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +0x25d9 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk4c' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk4e' + list[8] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk50' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk52' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk54' + list[11] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk58' + +0x25da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x25d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x25db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25dc : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UINT4(0075) + Index type = T_SHORT(0011) + length = 388 + Name = + +0x25dd : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = '_DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_unk004' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_unk008' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 12 + member name = 'm_unk00c' + list[8] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk010_flag' + list[9] = LF_MEMBER, public, type = 0x25DC, offset = 20 + member name = 'm_unknown' + +0x25de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x25dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x25df : Length = 470, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'vtable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'vtable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1756, name = 'vtable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'vtable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1756, name = 'vtable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'vtable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unkc4' + +0x25e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x25df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x25e1 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x1619, offset = 8 + member name = '_Value' + +0x25e2 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x25e1, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x000025e2) + +0x25e3 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x0000265a) + +0x25e4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002aa4) + +0x25e5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1619 + +0x25e6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x16EF + +0x25e7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1619 + +0x25e8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x16EF + +0x25e9 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00002ab5) + +0x25ea : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002ac9) + +0x25eb : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDSBuffer *,MxDSBuffer * &,MxDSBuffer * *,int>, UDT(0x00002669) + +0x25ec : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDSBuffer *,MxDSBuffer * const &,MxDSBuffer * const *,int>, UDT(0x00002678) + +0x25ed : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x25E4 + +0x25ee : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25ED + +0x25ef : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x25EA + list[1] = 0x25EA + list[2] = 0x25EE + +0x25f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x25ef, This adjust = 0 + +0x25f1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1743 + +0x25f2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25F1 + +0x25f3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25F2 + +0x25f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25f3, This adjust = 0 + +0x25f5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x25E8 + list[2] = 0x25EE + +0x25f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x25f5, This adjust = 0 + +0x25f7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25EE + +0x25f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25f7, This adjust = 0 + +0x25f9 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25F0, + list[1] = public, VANILLA, 0x25F4, + list[2] = public, VANILLA, 0x25F6, + list[3] = public, VANILLA, 0x25F8, + +0x25fa : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1743 + +0x25fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25FA, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x25f3, This adjust = 0 + +0x25fc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25F1 + +0x25fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EA, Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x25ff : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x25FD, + list[1] = public, VANILLA, 0x25FE, + +0x2600 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EC, Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2601 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EB, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2602 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2600, + list[1] = public, VANILLA, 0x2601, + +0x2603 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x1619 + +0x2604 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2603, This adjust = 0 + +0x2605 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2606 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2607 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E4, Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2608 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E8, Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2609 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E7, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x260a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2608, + list[1] = public, VANILLA, 0x2609, + +0x260b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25E8 + +0x260c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x260b, This adjust = 0 + +0x260d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x25E8 + +0x260e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x260d, This adjust = 0 + +0x260f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25EA + list[1] = 0x25EA + +0x2610 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x260f, This adjust = 0 + +0x2611 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x260E, + list[1] = public, VANILLA, 0x2610, + +0x2612 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x25E9 + list[1] = 0x25EA + list[2] = 0x25EA + +0x2613 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2612, This adjust = 0 + +0x2614 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x25E9 + list[1] = 0x25E6 + list[2] = 0x25E6 + +0x2615 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2614, This adjust = 0 + +0x2616 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x25E9 + list[1] = T_UINT4(0075) + list[2] = 0x25E8 + +0x2617 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2616, This adjust = 0 + +0x2618 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25E9 + list[1] = 0x25E8 + +0x2619 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2618, This adjust = 0 + +0x261a : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2613, + list[1] = public, VANILLA, 0x2615, + list[2] = public, VANILLA, 0x2617, + list[3] = public, VANILLA, 0x2619, + +0x261b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25E9 + list[1] = 0x25E9 + +0x261c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x261b, This adjust = 0 + +0x261d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25E9 + +0x261e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x261d, This adjust = 0 + +0x261f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x261C, + list[1] = public, VANILLA, 0x261E, + +0x2620 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25FA + +0x2621 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2620, This adjust = 0 + +0x2622 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x25E9 + list[1] = 0x25FA + list[2] = 0x25E9 + list[3] = 0x25E9 + +0x2623 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2622, This adjust = 0 + +0x2624 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x25E9 + list[1] = 0x25FA + list[2] = 0x25E9 + +0x2625 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2624, This adjust = 0 + +0x2626 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25E9 + list[1] = 0x25FA + +0x2627 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2626, This adjust = 0 + +0x2628 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2623, + list[1] = public, VANILLA, 0x2625, + list[2] = public, VANILLA, 0x2627, + +0x2629 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x0000264c) + +0x262a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2629 + +0x262b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x262a, This adjust = 0 + +0x262c : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00002642) + +0x262d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x262C + +0x262e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x262d, This adjust = 0 + +0x262f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x262E, + list[1] = public, VANILLA, 0x1745, + +0x2630 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002655) + +0x2631 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25FA + list[1] = 0x2630 + +0x2632 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2631, This adjust = 0 + +0x2633 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2632, + list[1] = public, VANILLA, 0x2621, + +0x2634 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2630 + +0x2635 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2634, This adjust = 0 + +0x2636 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2635, + list[1] = public, VANILLA, 0x1745, + +0x2637 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1747 + +0x2638 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x1744, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2637, This adjust = 0 + +0x2639 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1743, This type = 0x25FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x263a : Length = 1126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1746, _Node + list[2] = LF_NESTTYPE, type = 0x1747, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x25E3, _Acc + list[4] = LF_NESTTYPE, type = 0x1743, _Myt + list[5] = LF_NESTTYPE, type = 0x25E4, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x25E5, _Tptr + list[9] = LF_NESTTYPE, type = 0x25E6, _Ctptr + list[10] = LF_NESTTYPE, type = 0x25E7, reference + list[11] = LF_NESTTYPE, type = 0x25E8, const_reference + list[12] = LF_NESTTYPE, type = 0x1619, value_type + list[13] = LF_NESTTYPE, type = 0x25E9, iterator + list[14] = LF_NESTTYPE, type = 0x25EA, const_iterator + list[15] = LF_NESTTYPE, type = 0x25EB, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x25EC, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x25F9, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x25EA, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1745, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x25FB, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x25FF, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x25FF, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x2602, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x2602, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2604, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2605, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2605, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2606, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2607, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x260A, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x260A, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x260C, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1745, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x260C, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1745, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x2611, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x261A, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x261F, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x1745, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2621, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2628, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x260C, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2629, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x262B, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x262F, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x262C, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x2633, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x2630, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2636, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x1745, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x1749, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2638, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x2623, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2639, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x25E4, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x1747, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x263b : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x263a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000263b) + +0x263c : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002650) + +0x263d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x262C + +0x263e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x263D + +0x263f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25E8 + list[1] = 0x25E8 + +0x2640 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x262C, This type = 0x263E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x263f, This adjust = 0 + +0x2641 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x263C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2640, name = 'operator()' + +0x2642 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2641, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00002642) + +0x2643 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x0000264e) + +0x2644 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2629 + +0x2645 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x263D + +0x2646 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2645 + list[1] = 0x25E8 + +0x2647 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2629, This type = 0x2644, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2646, This adjust = 0 + +0x2648 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2629 + +0x2649 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2648 + +0x264a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2629, This type = 0x2649, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x260b, This adjust = 0 + +0x264b : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2643, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2647, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x264A, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x262C, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x1619, offset = 4 + member name = 'value' + +0x264c : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x264b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x0000264c) + +0x264d : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1619, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x264e : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x264d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x0000264e) + +0x264f : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1619, first_argument_type + list[1] = LF_NESTTYPE, type = 0x1619, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2650 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x264f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002650) + +0x2651 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2630 + +0x2652 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2651 + +0x2653 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2630, This type = 0x2652, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x263f, This adjust = 0 + +0x2654 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x263C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2653, name = 'operator()' + +0x2655 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2654, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002655) + +0x2656 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1747 + +0x2657 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2656, Class type = 0x25E3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2637, This adjust = 0 + +0x2658 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E7, Class type = 0x25E3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2637, This adjust = 0 + +0x2659 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2656, _Nodepref + list[1] = LF_NESTTYPE, type = 0x25E7, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2657, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2657, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x2658, name = '_Value' + +0x265a : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2659, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x0000265a) + +0x265b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002ab8) + +0x265c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25EB + +0x265d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EB, This type = 0x265C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x261d, This adjust = 0 + +0x265e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EB, This type = 0x265C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x265f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x265D, + list[1] = public, VANILLA, 0x265E, + +0x2660 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x25EB + +0x2661 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2660 + +0x2662 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x25EB, This type = 0x2661, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2663 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E7, Class type = 0x25EB, This type = 0x2661, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2664 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EB, Class type = 0x25EB, This type = 0x265C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2665 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25EB + +0x2666 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2665, Class type = 0x25EB, This type = 0x265C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2667 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2664, + list[1] = public, VANILLA, 0x2666, + +0x2668 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x265B, offset = 0 + list[1] = LF_NESTTYPE, type = 0x25EB, _Myt + list[2] = LF_NESTTYPE, type = 0x25E9, iter_type + list[3] = LF_NESTTYPE, type = 0x1619, value_type + list[4] = LF_NESTTYPE, type = 0x25E7, reference_type + list[5] = LF_NESTTYPE, type = 0x25E5, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x265F, name = 'reverse_bidirectional_iterator >::iterator,MxDSBuffer *,MxDSBuffer * &,MxDSBuffer * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2662, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2663, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2667, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2667, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x25E9, offset = 0 + member name = 'current' + +0x2669 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2668, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDSBuffer *,MxDSBuffer * &,MxDSBuffer * *,int>, UDT(0x00002669) + +0x266a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25EC + +0x266b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25EA + +0x266c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EC, This type = 0x266A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x266b, This adjust = 0 + +0x266d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EC, This type = 0x266A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x266e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x266C, + list[1] = public, VANILLA, 0x266D, + +0x266f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x25EC + +0x2670 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x266F + +0x2671 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EA, Class type = 0x25EC, This type = 0x2670, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2672 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E8, Class type = 0x25EC, This type = 0x2670, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2673 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EC, Class type = 0x25EC, This type = 0x266A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2674 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25EC + +0x2675 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2674, Class type = 0x25EC, This type = 0x266A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2676 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2673, + list[1] = public, VANILLA, 0x2675, + +0x2677 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x265B, offset = 0 + list[1] = LF_NESTTYPE, type = 0x25EC, _Myt + list[2] = LF_NESTTYPE, type = 0x25EA, iter_type + list[3] = LF_NESTTYPE, type = 0x1619, value_type + list[4] = LF_NESTTYPE, type = 0x25E8, reference_type + list[5] = LF_NESTTYPE, type = 0x25E6, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x266E, name = 'reverse_bidirectional_iterator >::const_iterator,MxDSBuffer *,MxDSBuffer * const &,MxDSBuffer * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2671, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2672, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2676, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2676, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x25EA, offset = 0 + member name = 'current' + +0x2678 : Length = 174, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2677, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDSBuffer *,MxDSBuffer * const &,MxDSBuffer * const *,int>, UDT(0x00002678) + +0x2679 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x174B + +0x267a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2679 + +0x267b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x267A + +0x267c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x174B, This type = 0x174C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x267b, This adjust = 0 + +0x267d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x174B, This type = 0x174C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x260d, This adjust = 0 + +0x267e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x267C, + list[1] = public, VANILLA, 0x267D, + list[2] = public, VANILLA, 0x174D, + +0x267f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x174B + +0x2680 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x267F + +0x2681 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x174B, This type = 0x174C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2680, This adjust = 0 + +0x2682 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1743, offset = 0 + list[1] = LF_NESTTYPE, type = 0x174B, _Myt + list[2] = LF_NESTTYPE, type = 0x25E4, _A + list[3] = LF_METHOD, count = 2, list = 0x267E, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2681, name = 'swap' + +0x2683 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x2682, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00002683) + +0x2684 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12C1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x172D, name = 'MxDiskStreamProviderThread' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1721, name = 'Run' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1725, name = 'StartWithTarget' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x172D, name = '~MxDiskStreamProviderThread' + +0x2685 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2684, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 28, class name = MxDiskStreamProviderThread, UDT(0x00002685) + +0x2686 : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetStreamBuffersNum' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1733, name = 'vtable0x20' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[13] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[14] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[15] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk35' + list[17] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x2687 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x2686, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x2688 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16A2, This type = 0x16A3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2689 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x163D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2688, name = 'MxDSActionList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1704, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1705, name = 'Destroy' + list[4] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_unk18' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2688, name = '~MxDSActionList' + +0x268a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x2689, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 28, class name = MxDSActionList, UDT(0x000032be) + +0x268b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1363 + +0x268c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x268B + +0x268d : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169E, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169E, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x169F, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x16A1, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x268C, offset = 12 + member name = 'm_customDestructor' + +0x268e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x268d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000361e) + +0x268f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x2690 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2691 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x268C + +0x2692 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2691, This adjust = 0 + +0x2693 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x000026ae) + +0x2694 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2693 + +0x2695 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2694 + +0x2696 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2695, This adjust = 0 + +0x2697 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x109C + list[1] = 0x2694 + list[2] = 0x2694 + +0x2698 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2694, Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2697, This adjust = 0 + +0x2699 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2692, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = '_InsertEntry' + +0x269a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2699, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x269b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x163f, This adjust = 0 + +0x269c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x269d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12F0 + +0x269e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x269d, This adjust = 0 + +0x269f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163A, This type = 0x16AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x26a1 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x26a2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x26a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x26a3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2693 + +0x26a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2697, This adjust = 0 + +0x26a5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x109C + list[1] = 0x2694 + +0x26a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x26a5, This adjust = 0 + +0x26a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26a8 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x26A4, + list[1] = public, VANILLA, 0x26A6, + list[2] = public, VANILLA, 0x26A7, + +0x26a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2694, Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x26ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2693, This type = 0x26A3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2695, This adjust = 0 + +0x26ad : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x26A8, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26A9, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26AA, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x26AA, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x26AB, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26AC, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26AC, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x109C, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x2694, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x2694, offset = 8 + member name = 'm_next' + +0x26ae : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x26ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x000026ae) + +0x26af : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16FA, name = 'MxDSAnim' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16FA, name = '~MxDSAnim' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1701, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1702, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16FD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16FE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1703, name = 'Clone' + +0x26b0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26af, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSAnim, UDT(0x000026b0) + +0x26b1 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16DE, name = 'MxDSEvent' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DE, name = '~MxDSEvent' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16E5, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16E6, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16E1, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16E2, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16E7, name = 'Clone' + +0x26b2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26b1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSEvent, UDT(0x000026b2) + +0x26b3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x16A2 + +0x26b4 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169B, name = 'MxDSMultiAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169B, name = '~MxDSMultiAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AB, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AE, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A7, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A8, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'unk14' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B4, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B6, name = 'SetAtomId' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B2, name = 'Clone' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B0, name = 'MergeFrom' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B1, name = 'HasId' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16AF, name = 'SetUnkTimingField' + list[15] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[16] = LF_MEMBER, protected, type = 0x26B3, offset = 152 + member name = 'm_actions' + +0x26b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x26b4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +0x26b6 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1682, name = 'MxDSObjectAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1682, name = '~MxDSObjectAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x168A, name = 'operator=' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1685, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1686, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168B, name = 'Clone' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1689, + vfptr offset = 68, name = 'CopyFrom' + +0x26b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 184, class name = MxDSObjectAction, UDT(0x000026b7) + +0x26b8 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1699, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1673, name = 'MxDSParallelAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1673, name = '~MxDSParallelAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x167A, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x167B, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1676, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1677, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x167D, name = 'GetDuration' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x167C, name = 'Clone' + +0x26b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x26b8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSParallelAction, UDT(0x000026b9) + +0x26ba : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x164a + +0x26bb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x26BA + +0x26bc : Length = 166, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1649, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1649, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x164B, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x164D, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x26BB, offset = 12 + member name = 'm_customDestructor' + +0x26bd : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x26bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003623) + +0x26be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26bf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x26BB + +0x26c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26bf, This adjust = 0 + +0x26c1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x166B + +0x26c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26c1, This adjust = 0 + +0x26c3 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26C0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = '_InsertEntry' + +0x26c4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x26c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x26c5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1654 + +0x26c6 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1671, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1646, name = 'MxDSSelectAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1646, name = '~MxDSSelectAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1658, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1664, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1652, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1653, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1666, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1667, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1665, name = 'Clone' + list[10] = LF_MEMBER, private, type = 0x1272, offset = 156 + member name = 'm_unk0x9c' + list[11] = LF_MEMBER, private, type = 0x26C5, offset = 172 + member name = 'm_unk0xac' + +0x26c7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x26c6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 176, class name = MxDSSelectAction, UDT(0x0000350e) + +0x26c8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x163B + +0x26c9 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1699, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x162E, name = 'MxDSSerialAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x162E, name = '~MxDSSerialAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1636, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1637, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1631, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1632, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1639, name = 'GetDuration' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1633, name = 'SetDuration' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1638, name = 'Clone' + list[10] = LF_MEMBER, private, type = 0x26C8, offset = 156 + member name = 'm_cursor' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 160 + member name = 'm_unk0xa0' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 164 + member name = 'm_unk0xa4' + +0x26ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x26c9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 168, class name = MxDSSerialAction, UDT(0x00002d28) + +0x26cb : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x160C, name = 'MxDSStill' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x160C, name = '~MxDSStill' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1613, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1614, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x160F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1610, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1615, name = 'Clone' + +0x26cc : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26cb, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSStill, UDT(0x000026cc) + +0x26cd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x166A + +0x26ce : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x26CD + +0x26cf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x26CE + +0x26d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26cf, This adjust = 0 + +0x26d1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1272 + list[1] = 0x166B + +0x26d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x26d1, This adjust = 0 + +0x26d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26d4 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x26D0, + list[1] = public, VANILLA, 0x166F, + list[2] = public, VANILLA, 0x26D2, + list[3] = public, VANILLA, 0x26D3, + +0x26d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x166B, Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x26d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x166A, This type = 0x166E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26c1, This adjust = 0 + +0x26d8 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x26D4, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1670, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26D5, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x26D5, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x26D6, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26D7, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26D7, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x1272, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x166B, offset = 16 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x166B, offset = 20 + member name = 'm_next' + list[10] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x26D3, name = '~MxListEntry' + +0x26d9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x26d8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = MxListEntry, UDT(0x000026d9) + +0x26da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1654, This type = 0x1655, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26db : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x164E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x26DA, name = 'MxStringList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x26DA, name = '~MxStringList' + +0x26dc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x26db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxStringList, UDT(0x000026dc) + +0x26dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x165d, This adjust = 0 + +0x26de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x26df : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12D0 + +0x26e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26df, This adjust = 0 + +0x26e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x26e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1659, This type = 0x1662, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x164a, This adjust = 0 + +0x26e3 : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x26e4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x26e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x26e5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1604, + list[1] = public, VANILLA, 0x1600, + +0x26e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1602, Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1603, This adjust = 0 + +0x26e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1602, Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x26e8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x26E6, + list[1] = public, VANILLA, 0x26E7, + +0x26e9 : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100CD2D0' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk94' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk9c' + list[12] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unka0' + list[13] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unka4' + list[14] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unka8' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unkac' + list[16] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x26ea : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x26e9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x26eb : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15DF, name = 'MxEventPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DF, name = '~MxEventPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15E2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15E3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DF, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DF, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15E4, name = 'AddToManager' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DF, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15E4, name = 'PutData' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15E5, + vfptr offset = 92, name = 'CopyData' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x15DF, name = 'Init' + list[12] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 80 + member name = 'm_data' + +0x26ec : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x26eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ef4 + Size = 84, class name = MxEventPresenter, UDT(0x000026ec) + +0x26ed : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15B8, name = 'MxLoopingFlcPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B8, name = '~MxLoopingFlcPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15BB, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B8, name = 'NextFrame' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x15B8, name = 'Init' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x15BC, name = 'Destroy' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk68' + +0x26ee : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 108, class name = MxLoopingFlcPresenter, UDT(0x000032c2) + +0x26ef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x156B, + list[1] = public, VIRTUAL, 0x1566, + +0x26f0 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17ED, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1566, name = 'MxMusicPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1566, name = '~MxMusicPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1569, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x156A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x156C, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x26EF, name = 'Destroy' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x1566, name = 'Init' + +0x26f1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x26f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2135 + Size = 84, class name = MxMusicPresenter, UDT(0x000026f1) + +0x26f2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x157C, + list[1] = public, VIRTUAL, 0x1577, + +0x26f3 : Length = 294, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1564, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1577, name = 'MxMIDIPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = '~MxMIDIPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x157A, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x157B, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = 'StreamingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = 'DoneTickle' + list[9] = LF_METHOD, count = 2, list = 0x26F2, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1577, name = 'EndAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x157D, name = 'PutData' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x157E, name = 'SetVolume' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x1577, name = 'Init' + list[14] = LF_MEMBER, protected, type = 0x11CE, offset = 84 + member name = 'm_chunk' + +0x26f4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x26f3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2135 + Size = 88, class name = MxMIDIPresenter, UDT(0x000026f4) + +0x26f5 : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1575, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1505, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1506, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B4, name = 'StreamingTickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B4, name = 'DoneTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B5, name = 'PutData' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x15B4, name = 'MxLoopingMIDIPresenter' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15B4, name = '~MxLoopingMIDIPresenter' + +0x26f6 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26f5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2135 + Size = 88, class name = MxLoopingMIDIPresenter, UDT(0x000026f6) + +0x26f7 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'lpData' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwBufferLength' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwBytesRecorded' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwUser' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwFlags' + list[5] = LF_MEMBER, public, type = 0x1D00, offset = 20 + member name = 'lpNext' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'reserved' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwOffset' + list[8] = LF_MEMBER, public, type = 0x1E3E, offset = 32 + member name = 'dwReserved' + +0x26f8 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x26f7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = midihdr_tag, UDT(0x000026f8) + +0x26f9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x13BD, + list[1] = public, VIRTUAL, 0x13B9, + +0x26fa : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'VTable0x70' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_MEMBER, public, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[13] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + +0x26fb : Length = 22, Leaf = 0x000a LF_VTSHAPE + Number of entries : 35 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR + +0x26fc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x26fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x26fd : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13B7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15AE, name = 'MxLoopingSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = '~MxLoopingSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B2, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x15AE, name = 'Init' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x15B3, name = 'Destroy' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1824 + member name = 'm_unk720' + +0x26fe : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x26fd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +0x26ff : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Smack, UDT(0x00003569) + +0x2700 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 784 + Name = + +0x2701 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1716 + member name = 'm_unk0x6b4' + +0x2702 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x2701, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x2703 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_ULONG(0022) + Index type = T_SHORT(0011) + length = 28 + Name = + +0x2704 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 772 + Name = + +0x2705 : Length = 542, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'm_version' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'm_width' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'm_height' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'm_frames' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'm_msInAFrame' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'm_smkType' + list[6] = LF_MEMBER, public, type = 0x2703, offset = 24 + member name = 'm_audioTrackSize' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'm_treeSize' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'm_codeSize' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'm_abSize' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'm_detailSize' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'm_typeSize' + list[12] = LF_MEMBER, public, type = 0x2703, offset = 72 + member name = 'm_trackType' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 100 + member name = 'm_extra' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 104 + member name = 'm_newPalette' + list[15] = LF_MEMBER, public, type = 0x2704, offset = 108 + member name = 'm_palette' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 880 + member name = 'm_frameNum' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 884 + member name = 'm_lastRectX' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 888 + member name = 'm_lastRectY' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 892 + member name = 'm_lastRectW' + list[20] = LF_MEMBER, public, type = T_ULONG(0022), offset = 896 + member name = 'm_lastRectH' + list[21] = LF_MEMBER, public, type = T_ULONG(0022), offset = 900 + member name = 'm_openFlags' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 904 + member name = 'm_leftOfs' + list[23] = LF_MEMBER, public, type = T_ULONG(0022), offset = 908 + member name = 'm_topOfs' + +0x2706 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x2705, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +0x2707 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1239, This type = 0x123A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2708 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1238, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x123E, name = 'MxListCursorChildChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2707, name = '~MxListCursorChildChild' + +0x2709 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x00002709) + +0x270a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1238, This type = 0x15A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x123d, This adjust = 0 + +0x270b : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270A, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A8, name = '~MxListCursorChild' + +0x270c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x270b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x0000270c) + +0x270d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x123d, This adjust = 0 + +0x270e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x270f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1243 + +0x2710 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x270F + +0x2711 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2710, This adjust = 0 + +0x2712 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2713 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15A4, This type = 0x15A5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x2714 : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x2715 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x2716 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1588, This adjust = 0 + +0x2717 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x2718 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11CE + +0x2719 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2718 + +0x271a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2719, This adjust = 0 + +0x271b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x271c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1583, This type = 0x158C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x271d : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x271e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x271d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x271f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1336, This type = 0x133B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2720 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x271F, name = 'MxRAMStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1339, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x133A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1434, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'vtable0x20' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1436, name = 'vtable0x24' + list[7] = LF_MEMBER, private, type = 0x1618, offset = 100 + member name = 'm_buffer' + list[8] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x271F, name = '~MxRAMStreamController' + +0x2721 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2720, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +0x2722 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x142C, name = 'MxRAMStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x142C, name = '~MxRAMStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x142F, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1430, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1433, name = 'SetResourceToGet' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1431, name = 'GetFileSize' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1431, name = 'GetStreamBuffersNum' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1431, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1432, name = 'GetBufferForDWords' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1432, name = 'GetBufferOfFileSize' + list[11] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 16 + member name = 'm_bufferSize' + list[12] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_fileSize' + list[13] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 24 + member name = 'm_pBufferOfFileSize' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 28 + member name = 'm_lengthInDWords' + list[15] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 32 + member name = 'm_bufferForDWords' + +0x2723 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2722, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 36, class name = MxRAMStreamProvider, UDT(0x000036ed) + +0x2724 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13EA, This type = 0x13F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x2725 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13F2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2724, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F6, name = '~MxListCursorChild' + +0x2726 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2725, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00002726) + +0x2727 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x2728 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x2729 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x13D1 + +0x272a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2729 + +0x272b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x272a, This adjust = 0 + +0x272c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x272d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13F2, This type = 0x13F3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x272e : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x272f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x272e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x2730 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1407, This type = 0x1412, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x140b, This adjust = 0 + +0x2731 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1407 + +0x2732 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1407 + +0x2733 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2732 + +0x2734 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2733 + +0x2735 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2731, Class type = 0x1407, This type = 0x1412, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2734, This adjust = 0 + +0x2736 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x140F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2730, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2735, name = 'operator=' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1414, name = '~MxListCursorChild' + +0x2737 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2736, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00002737) + +0x2738 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x2739 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x13D6 + +0x273a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2739 + +0x273b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x273a, This adjust = 0 + +0x273c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x273d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x140F, This type = 0x1410, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x273e : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x273f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x273e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x2740 : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, STATIC, index = 0x13CB, name = 'GetInstance' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13CE, name = 'StartMultiTasking' + +0x2741 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2740, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = MxScheduler, UDT(0x00002741) + +0x2742 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x10BE + +0x2743 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x10BE, This type = 0x2742, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2744 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x10BE, This type = 0x2742, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2745 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 20 + Name = + +0x2746 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2743, name = 'GetUnknown20' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2744, name = 'GetUnknown28' + list[3] = LF_MEMBER, protected, type = 0x2745, offset = 12 + member name = 'm_unkc' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 32 + member name = 'm_unk20' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 36 + member name = 'm_unk24' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 40 + member name = 'm_unk28' + +0x2747 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2746, + Derivation list type 0x0000, VT shape type 0x135e + Size = 44, class name = MxType17NotificationParam, UDT(0x000032c6) + +0x2748 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11B7, name = 'Pizza' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11B7, name = '~Pizza' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C3, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11BF, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C0, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 120 + member name = 'm_unk78' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 124 + member name = 'm_unk7c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 128 + member name = 'm_unk80' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 132 + member name = 'm_unk84' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 136 + member name = 'm_unk88' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 140 + member name = 'm_unk8c' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 144 + member name = 'm_unk90' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk94' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 152 + member name = 'm_unk98' + +0x2749 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2748, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 156, class name = Pizza, UDT(0x000032c8) + +0x274a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x10CD + +0x274b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x274A + +0x274c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x10CD, This type = 0x274B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x274d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x10CD, This type = 0x274B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x274e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x10CD, This type = 0x11B3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x274f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x11B1 + Index type = T_SHORT(0011) + length = 160 + Name = + +0x2750 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274C, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274D, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x274E, name = 'GetColor' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x11B4, name = 'GetState' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unkc' + list[7] = LF_MEMBER, protected, type = 0x274F, offset = 16 + member name = 'm_state' + +0x2751 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2750, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +0x2752 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 21 + Name = + +0x2753 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 6 + Name = + +0x2754 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_unk0' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'm_id' + list[2] = LF_MEMBER, public, type = 0x2752, offset = 3 + member name = 'm_unk3' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 24 + member name = 'm_color' + list[4] = LF_MEMBER, public, type = 0x2753, offset = 26 + member name = 'm_unk18' + +0x2755 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2754, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = PizzaMissionStateEntry, UDT(0x000032cc) + +0x2756 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11AC, name = 'PizzeriaState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11AF, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11B0, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x11AC, name = '~PizzeriaState' + +0x2757 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2756, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PizzeriaState, UDT(0x00003dd4) + +0x2758 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11A4, name = 'Police' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A4, name = '~Police' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A9, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A7, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A8, name = 'IsA' + +0x2759 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x2758, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Police, UDT(0x00002759) + +0x275a : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x119D, name = 'PoliceState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A0, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A1, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x119D, name = '~PoliceState' + +0x275b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x275a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PoliceState, UDT(0x00003dd9) + +0x275c : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1196, name = 'RaceCar' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1196, name = '~RaceCar' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1199, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x119A, name = 'IsA' + list[5] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk160' + +0x275d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x275c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = RaceCar, UDT(0x000032ce) + +0x275e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x10C8, This type = 0x118B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x275f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1191 + Index type = T_SHORT(0011) + length = 30 + Name = + +0x2760 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_USHORT(0021) + Index type = T_SHORT(0011) + length = 4 + Name = + +0x2761 : Length = 166, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x118C, name = 'RaceState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x118F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1190, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x275E, name = 'GetColor' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1193, name = 'GetState' + list[6] = LF_MEMBER, protected, type = 0x275F, offset = 8 + member name = 'm_state' + list[7] = LF_MEMBER, protected, type = 0x2760, offset = 38 + member name = 'm_unk26' + list[8] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk28' + +0x2762 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2761, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = RaceState, UDT(0x000032d0) + +0x2763 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 1 + Name = + +0x2764 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'm_id' + list[1] = LF_MEMBER, public, type = 0x2763, offset = 1 + member name = 'm_unk1' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'm_unk2' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'm_color' + +0x2765 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2764, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 6, class name = RaceStateEntry, UDT(0x000032d2) + +0x2766 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1186, name = '~Radio' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1189, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x118A, name = 'IsA' + +0x2767 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = Radio, UDT(0x00003402) + +0x2768 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x117F, name = 'RadioState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1182, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1183, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x117F, name = '~RadioState' + +0x2769 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2768, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = RadioState, UDT(0x000033ff) + +0x276a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1155 + +0x276b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C1A, Class type = 0x1155, This type = 0x276A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x276c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1156 + +0x276d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AB, Class type = 0x1155, This type = 0x276C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x276e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x276B, + list[1] = public, VANILLA, 0x276D, + +0x276f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1155, This type = 0x276A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2770 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x276E, name = 'Min' + list[1] = LF_METHOD, count = 2, list = 0x276E, name = 'Max' + list[2] = LF_MEMBER, private, type = 0x10A9, offset = 0 + member name = 'min' + list[3] = LF_MEMBER, private, type = 0x10A9, offset = 20 + member name = 'max' + list[4] = LF_MEMBER, private, type = 0x10A9, offset = 40 + member name = 'm_unk28' + list[5] = LF_MEMBER, private, type = 0x10A9, offset = 60 + member name = 'm_unk3c' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x276F, name = 'BoundingBox' + +0x2771 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 80, class name = BoundingBox, UDT(0x000032d4) + +0x2772 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1159 + +0x2773 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C1A, Class type = 0x1159, This type = 0x2772, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2774 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x115A + +0x2775 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AB, Class type = 0x1159, This type = 0x2774, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2776 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2773, + list[1] = public, VANILLA, 0x2775, + +0x2777 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x1159, This type = 0x2772, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2778 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BFC, Class type = 0x1159, This type = 0x2774, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2779 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2777, + list[1] = public, VANILLA, 0x2778, + +0x277a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1159, This type = 0x2772, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x277b : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2776, name = 'Center' + list[1] = LF_METHOD, count = 2, list = 0x2779, name = 'Radius' + list[2] = LF_MEMBER, private, type = 0x10A9, offset = 0 + member name = 'center' + list[3] = LF_MEMBER, private, type = T_REAL32(0040), offset = 20 + member name = 'radius' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x277A, name = 'BoundingSphere' + +0x277c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x277b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = BoundingSphere, UDT(0x0000277c) + +0x277d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x113F + +0x277e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x113F, This type = 0x277D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x277f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x113F + +0x2780 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x277F + +0x2781 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2782 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1151, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2783 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1157, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2784 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x115B, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2785 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LODListBase, UDT(0x00002add) + +0x2786 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2785 + +0x2787 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2786 + +0x2788 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2787, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2789 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LODObject, UDT(0x00002ae6) + +0x278a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2789 + +0x278b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x278A + +0x278c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x278B, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x278d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x278e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x101F + +0x278f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x278E + +0x2790 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x278F, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2791 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x101F + +0x2792 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2785 + +0x2793 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x277E, name = 'ROI' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x277E, + vfptr offset = 0, name = '~ROI' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2781, + vfptr offset = 4, name = 'IntrinsicImportance' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2782, + vfptr offset = 8, name = 'GetWorldVelocity' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2783, + vfptr offset = 12, name = 'GetWorldBoundingBox' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2784, + vfptr offset = 16, name = 'GetWorldBoundingSphere' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2788, name = 'GetLODs' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x278C, name = 'GetLOD' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x278D, name = 'GetLODCount' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2790, name = 'GetComp' + list[11] = LF_MEMBER, protected, type = 0x2791, offset = 4 + member name = 'm_comp' + list[12] = LF_MEMBER, protected, type = 0x2792, offset = 8 + member name = 'm_lods' + +0x2794 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2793, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 12, class name = ROI, UDT(0x00003778) + +0x2795 : Length = 534, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x113F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1124, name = 'OrientableROI' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1154, name = 'GetWorldVelocity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1158, name = 'GetWorldBoundingBox' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x115C, name = 'GetWorldBoundingSphere' + list[5] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 20, name = 'VTable0x14' + list[6] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 24, name = 'UpdateWorldBoundingVolumes' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1128, + vfptr offset = 32, name = 'SetLocalTransform' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 40, name = 'UpdateWorldData' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 44, name = 'UpdateWorldVelocity' + list[12] = LF_MEMBER, protected, type = T_RCHAR(0070), offset = 12 + member name = 'm_unkc' + list[13] = LF_MEMBER, protected, type = 0x102C, offset = 16 + member name = 'm_local2world' + list[14] = LF_MEMBER, protected, type = 0x1155, offset = 88 + member name = 'm_world_bounding_box' + list[15] = LF_MEMBER, protected, type = 0x1159, offset = 168 + member name = 'm_world_bounding_sphere' + list[16] = LF_MEMBER, protected, type = 0x10A9, offset = 192 + member name = 'm_world_velocity' + list[17] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 212 + member name = 'm_unkd4' + list[18] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 216 + member name = 'm_unkd8' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1124, name = '~OrientableROI' + +0x2796 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x2795, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +0x2797 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000027ad) + +0x2798 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2797, offset = 0 + +0x2799 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2798, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002799) + +0x279a : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x1140, offset = 8 + member name = '_Value' + +0x279b : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x279a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000279b) + +0x279c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00002b4d) + +0x279d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002afa) + +0x279e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x101F + +0x279f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x278E + +0x27a0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x279F + +0x27a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x101F, This type = 0x279E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27a0, This adjust = 0 + +0x27a2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x277D + +0x27a3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x27A2 + +0x27a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x101F, This type = 0x279E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x27a3, This adjust = 0 + +0x27a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x101F, This type = 0x279E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27a6 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x27A1, + list[1] = public, VANILLA, 0x27A4, + list[2] = public, VANILLA, 0x27A5, + +0x27a7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x101F + +0x27a8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27A7 + +0x27a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x101F, This type = 0x279E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27a8, This adjust = 0 + +0x27aa : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x279C, offset = 0 + list[1] = LF_NESTTYPE, type = 0x101F, _Myt + list[2] = LF_NESTTYPE, type = 0x279D, _A + list[3] = LF_METHOD, count = 2, list = 0x27A6, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x27A9, name = 'swap' + +0x27ab : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x27aa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000027ab) + +0x27ac : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x1140, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x27ad : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x27ac, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000027ad) + +0x27ae : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, STATIC, index = 0x111A, name = 'GetPartsThreshold' + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x111A, name = 'GetUserMaxLOD' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1119, name = 'SetPartsThreshold' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x111B, name = 'UpdateMaxLOD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1119, name = 'SetUserMaxLOD' + +0x27af : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x27ae, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = RealtimeView, UDT(0x000027af) + +0x27b0 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x10D9, name = 'RegistrationBook' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10D9, name = '~RegistrationBook' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10DE, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10DC, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10DD, name = 'IsA' + +0x27b1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x27b0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = RegistrationBook, UDT(0x000027b1) + +0x27b2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1061 + +0x27b3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27B2 + +0x27b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1061, This type = 0x27B3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1061, This type = 0x27B3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x27b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1061, This type = 0x1062, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x27b7 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x27B4, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x27B5, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1063, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1063, name = 'SetFlag' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1063, name = 'GetTutorialFlag' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x27B6, name = 'SetTutorialFlag' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 8 + member name = 'm_playCubeTutorial' + +0x27b8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x27b7, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = ScoreState, UDT(0x00003ddc) + +0x27b9 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x107C, name = 'Score' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107C, name = '~Score' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10B9, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107F, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1080, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1085, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107C, name = 'Stop' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1081, name = 'VTable0x5c' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1081, name = 'VTable0x64' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10C5, name = 'VTable0x68' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x107C, name = 'Paint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x10BD, name = 'FUN_10001510' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x10C1, name = 'FUN_100016d0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x10D5, name = 'FillArea' + list[15] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 248 + member name = 'm_unkf8' + list[16] = LF_MEMBER, protected, type = 0x1086, offset = 252 + member name = 'm_state' + list[17] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 256 + member name = 'm_surface' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x107C, name = 'DeleteScript' + +0x27ba : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x27b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = Score, UDT(0x000032d8) + +0x27bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x1043, This type = 0x1044, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x27bc : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1045, name = 'TowTrackMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1048, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x104A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x27BB, name = 'GetColor' + list[5] = LF_MEMBER, protected, type = 0x2745, offset = 8 + member name = 'm_unk8' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_color1' + list[7] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color2' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color3' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color4' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 36 + member name = 'm_color5' + list[11] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1045, name = '~TowTrackMissionState' + +0x27bd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x27bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +0x27be : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 7 + Name = + +0x27bf : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x105C, name = 'SkateBoard' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x105F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1060, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 352 + member name = 'm_unk160' + list[5] = LF_MEMBER, private, type = 0x27BE, offset = 353 + member name = 'm_unk161' + list[6] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x105C, name = '~SkateBoard' + +0x27c0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x27bf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +0x27c1 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1053, name = 'TowTrack' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1056, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1057, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk154' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk16e' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 368 + member name = 'm_unk170' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk174' + list[12] = LF_MEMBER, private, type = T_REAL32(0040), offset = 376 + member name = 'm_unk178' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 380 + member name = 'm_unk17c' + list[14] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1053, name = '~TowTrack' + +0x27c2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x27c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +0x27c3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LODList, UDT(0x000027d9) + +0x27c4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2080 + +0x27c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2080, This type = 0x27C4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x27c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2080, This type = 0x27C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2080, This type = 0x27C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27c8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewLODListManager, UDT(0x0000377b) + +0x27c9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27C8 + +0x27ca : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27C3, offset = 0 + list[1] = LF_ONEMETHOD, protected, VANILLA, index = 0x27C5, name = 'ViewLODList' + list[2] = LF_ONEMETHOD, protected, VIRTUAL, index = 0x27C6, name = '~ViewLODList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x27C7, name = 'AddRef' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x27C7, name = 'Release' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 16 + member name = 'm_refCount' + list[6] = LF_MEMBER, private, type = 0x27C9, offset = 20 + member name = 'm_owner' + +0x27cb : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x27ca, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 24, class name = ViewLODList, UDT(0x000027cb) + +0x27cc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27C3 + +0x27cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27C3, This type = 0x27CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x27ce : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewLOD + +0x27cf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27CE + +0x27d0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27CF + +0x27d1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27C3 + +0x27d2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27D1 + +0x27d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27D0, Class type = 0x27C3, This type = 0x27D2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x27d4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27D0 + +0x27d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27D0, Class type = 0x27C3, This type = 0x27CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27d4, This adjust = 0 + +0x27d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27D0, Class type = 0x27C3, This type = 0x27CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27C3, This type = 0x27CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27d8 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2785, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x27CD, name = 'LODList' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x27D3, name = 'operator[]' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x27D5, name = 'PushBack' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x27D6, name = 'PopBack' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x27D7, name = '~LODList' + +0x27d9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x27d8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = LODList, UDT(0x000027d9) + +0x27da : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Object, UDT(0x00002fff) + +0x27db : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Device, UDT(0x0000301c) + +0x27dc : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27DB + +0x27dd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x207E + +0x27de : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::DeviceDirect3DCreateData, UDT(0x00004d33) + +0x27df : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27DE + +0x27e0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x27DF + +0x27e1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27E0 + +0x27e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27e1, This adjust = 0 + +0x27e3 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +0x27e4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27E3 + +0x27e5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x27E4 + +0x27e6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27E5 + +0x27e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27e6, This adjust = 0 + +0x27e8 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x27E2, vfptr offset = 12 + list[1] = public, INTRODUCING VIRTUAL, 0x27E7, vfptr offset = 12 + +0x27e9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::View, UDT(0x00003023) + +0x27ea : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27E9 + +0x27eb : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27DB + +0x27ec : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27EB + +0x27ed : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Camera, UDT(0x00003025) + +0x27ee : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27ED + +0x27ef : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27EE + +0x27f0 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x27EC + list[1] = 0x27EF + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = T_ULONG(0022) + +0x27f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27EA, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x27f0, This adjust = 0 + +0x27f2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27ED + +0x27f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27F2, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x27f4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Light, UDT(0x00003028) + +0x27f5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27F4 + +0x27f6 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1007 + list[1] = T_REAL64(0041) + list[2] = T_REAL64(0041) + list[3] = T_REAL64(0041) + +0x27f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27F5, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x27f6, This adjust = 0 + +0x27f8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1027 + +0x27f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1029, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27f8, This adjust = 0 + +0x27fa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Mesh, UDT(0x00003019) + +0x27fb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27FA + +0x27fc : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x101C + Index type = T_SHORT(0011) + length = 12 + Name = + +0x27fd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27FC + +0x27fe : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x101C + Index type = T_SHORT(0011) + length = 8 + Name = + +0x27ff : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27FE + +0x2800 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x27FD + list[2] = 0x27FF + list[3] = T_32PULONG(0422) + +0x2801 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27FB, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2800, This adjust = 0 + +0x2802 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_ULONG(0022) + list[1] = 0x27FD + list[2] = 0x27FF + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = T_32PULONG(0422) + +0x2803 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27FB, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x2802, This adjust = 0 + +0x2804 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x2801, vfptr offset = 36 + list[1] = public, INTRODUCING VIRTUAL, 0x2803, vfptr offset = 36 + +0x2805 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Texture, UDT(0x00003013) + +0x2806 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2805 + +0x2807 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2806, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2808 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::PaletteEntry, UDT(0x00002877) + +0x2809 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2808 + +0x280a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2809 + +0x280b : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_32PVOID(0403) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = 0x280A + +0x280c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2806, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x280b, This adjust = 0 + +0x280d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x2807, vfptr offset = 44 + list[1] = public, INTRODUCING VIRTUAL, 0x280C, vfptr offset = 44 + +0x280e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x280f : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x27E8, name = 'CreateDevice' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F1, + vfptr offset = 16, name = 'CreateView' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F3, + vfptr offset = 20, name = 'CreateCamera' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F7, + vfptr offset = 24, name = 'CreateLight' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F9, + vfptr offset = 28, name = 'CreateGroup' + list[6] = LF_METHOD, count = 2, list = 0x2804, name = 'CreateMesh' + list[7] = LF_METHOD, count = 2, list = 0x280D, name = 'CreateTexture' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x280E, + vfptr offset = 48, name = 'SetTextureDefaultShadeCount' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x280E, + vfptr offset = 52, name = 'SetTextureDefaultColorCount' + +0x2810 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x280f, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 4, class name = Tgl::Renderer, UDT(0x00003005) + +0x2811 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Map, UDT(0x00004470) + +0x2812 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27C8 + +0x2813 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27C8, This type = 0x2812, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2814 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type T_RCHAR(0070) + +0x2815 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2814 + +0x2816 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2815 + +0x2817 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2816 + list[1] = T_INT4(0074) + +0x2818 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2081, Class type = 0x27C8, This type = 0x2812, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2817, This adjust = 0 + +0x2819 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27C8 + +0x281a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2819 + +0x281b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2816 + +0x281c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2081, Class type = 0x27C8, This type = 0x281A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x281d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27C8, This type = 0x2812, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2085, This adjust = 0 + +0x281e : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x2811, ViewLODListMap + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2813, name = 'ViewLODListManager' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2813, + vfptr offset = 0, name = '~ViewLODListManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2818, name = 'Create' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x281C, name = 'Lookup' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x281D, name = 'Destroy' + list[7] = LF_MEMBER, private, type = 0x2811, offset = 4 + member name = 'm_map' + +0x281f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x281e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = ViewLODListManager, UDT(0x0000377b) + +0x2820 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1025 + +0x2821 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x115f, This adjust = 0 + +0x2822 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_REAL64(0041) + list[1] = T_REAL64(0041) + list[2] = T_REAL64(0041) + +0x2823 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2822, This adjust = 0 + +0x2824 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2805 + +0x2825 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2824 + +0x2826 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2825 + +0x2827 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2826, This adjust = 0 + +0x2828 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27FA + +0x2829 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2828 + +0x282a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2829 + +0x282b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x282a, This adjust = 0 + +0x282c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27f8, This adjust = 0 + +0x282d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x282B, vfptr offset = 24 + list[1] = public, INTRODUCING VIRTUAL, 0x282C, vfptr offset = 24 + +0x282e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x282B, vfptr offset = 32 + list[1] = public, INTRODUCING VIRTUAL, 0x282C, vfptr offset = 32 + +0x282f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2830 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PREAL64(0441) + list[1] = T_32PREAL64(0441) + +0x2831 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2830, This adjust = 0 + +0x2832 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2821, + vfptr offset = 8, name = 'SetTransformation' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2823, + vfptr offset = 12, name = 'SetColor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2827, + vfptr offset = 16, name = 'SetTexture' + list[4] = LF_METHOD, count = 2, list = 0x282D, name = 'Add' + list[5] = LF_METHOD, count = 2, list = 0x282E, name = 'Remove' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x282F, + vfptr offset = 36, name = 'RemoveAll' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2831, + vfptr offset = 40, name = 'TransformLocalToWorld' + +0x2833 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2832, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Group, UDT(0x0000300c) + +0x2834 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2805 + +0x2835 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_32PVOID(0403) + list[4] = T_INT4(0074) + +0x2836 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x2835, This adjust = 0 + +0x2837 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = 0x280A + +0x2838 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2837, This adjust = 0 + +0x2839 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2836, + vfptr offset = 8, name = 'SetTexels' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2838, + vfptr offset = 12, name = 'SetPalette' + +0x283a : Length = 6, Leaf = 0x000a LF_VTSHAPE + Number of entries : 4 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + +0x283b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2839, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = Tgl::Texture, UDT(0x00003013) + +0x283c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27FA + +0x283d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2822, This adjust = 0 + +0x283e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2826, This adjust = 0 + +0x283f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x100B + +0x2840 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x283f, This adjust = 0 + +0x2841 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1005 + +0x2842 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2841, This adjust = 0 + +0x2843 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x283D, + vfptr offset = 8, name = 'SetColor' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x283E, + vfptr offset = 12, name = 'SetTexture' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2840, + vfptr offset = 16, name = 'SetTextureMappingMode' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2842, + vfptr offset = 20, name = 'SetShadingModel' + +0x2844 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2843, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 4, class name = Tgl::Mesh, UDT(0x00003019) + +0x2845 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27DB + +0x2846 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2847 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1003 + +0x2848 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2847, This adjust = 0 + +0x2849 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2841, This adjust = 0 + +0x284a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x284b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x284c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x284d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x284e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x284f : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2846, + vfptr offset = 8, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2846, + vfptr offset = 12, name = 'GetHeight' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2848, + vfptr offset = 16, name = 'SetColorModel' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2849, + vfptr offset = 20, name = 'SetShadingModel' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284A, + vfptr offset = 24, name = 'SetShadeCount' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284B, + vfptr offset = 28, name = 'SetDither' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284C, + vfptr offset = 32, name = 'Update' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284D, + vfptr offset = 36, name = 'HandleActivate' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284E, + vfptr offset = 40, name = 'HandlePaint' + +0x2850 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x284f, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Device, UDT(0x0000301c) + +0x2851 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1FE2, offset = 0 + member name = 'm_pDirect3D' + list[1] = LF_MEMBER, public, type = 0x1FE4, offset = 4 + member name = 'm_pDirect3DDevice' + +0x2852 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2851, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = Tgl::DeviceDirect3DCreateData, UDT(0x00004d33) + +0x2853 : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2131, offset = 0 + member name = 'm_driverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hWnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_pDirectDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_pFrontBuffer' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_pBackBuffer' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_pPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + +0x2854 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2853, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 28, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +0x2855 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27E9 + +0x2856 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x27F4 + +0x2857 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2856 + +0x2858 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2857 + +0x2859 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2858, This adjust = 0 + +0x285a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27EF + +0x285b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285a, This adjust = 0 + +0x285c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1009 + +0x285d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285c, This adjust = 0 + +0x285e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2822, This adjust = 0 + +0x285f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2860 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27f8, This adjust = 0 + +0x2861 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + +0x2862 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2861, This adjust = 0 + +0x2863 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2830, This adjust = 0 + +0x2864 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1027 + +0x2865 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2864 + +0x2866 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x2864 + list[3] = T_INT4(0074) + list[4] = 0x2865 + list[5] = 0x1934 + +0x2867 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x2866, This adjust = 0 + +0x2868 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2859, + vfptr offset = 8, name = 'Add' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2859, + vfptr offset = 12, name = 'Remove' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285B, + vfptr offset = 16, name = 'SetCamera' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285D, + vfptr offset = 20, name = 'SetProjection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285E, + vfptr offset = 24, name = 'SetFrustrum' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285E, + vfptr offset = 28, name = 'SetBackgroundColor' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285F, + vfptr offset = 32, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2860, + vfptr offset = 36, name = 'Render' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2862, + vfptr offset = 40, name = 'ForceUpdate' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2863, + vfptr offset = 44, name = 'TransformWorldToScreen' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2867, + vfptr offset = 48, name = 'Pick' + +0x2869 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2868, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::View, UDT(0x00003023) + +0x286a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27ED + +0x286b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::FloatMatrix4, UDT(0x00002b94) + +0x286c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x286B + +0x286d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x286C + +0x286e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x286D + +0x286f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27ED, This type = 0x286A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2870 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x286F, + vfptr offset = 8, name = 'SetTransformation' + +0x2871 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2870, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Camera, UDT(0x00003025) + +0x2872 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27F4 + +0x2873 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27F4, This type = 0x2872, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2874 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2873, + vfptr offset = 8, name = 'SetTransformation' + +0x2875 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2874, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Light, UDT(0x00003028) + +0x2876 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'm_red' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'm_green' + list[2] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'm_blue' + +0x2877 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2876, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 3, class name = Tgl::PaletteEntry, UDT(0x00002877) + +0x2878 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2198 + +0x2879 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x2192, This type = 0x2878, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21b5, This adjust = 0 + +0x287a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1530 + +0x287b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x2192, This type = 0x2878, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x287a, This adjust = 0 + +0x287c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2879, + list[1] = public, VANILLA, 0x287B, + +0x287d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2192 + +0x287e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_32PVOID(0403) + +0x287f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x2192, This type = 0x287D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2880 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2192, This type = 0x287D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2881 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2192, This type = 0x287D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2882 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUINT4(0475) + list[1] = 0x2194 + +0x2883 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2192, This type = 0x287D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2882, This adjust = 0 + +0x2884 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2192, This type = 0x287D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x2885 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2192, This type = 0x2878, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2886 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = T_32PUINT4(0475), pointer + list[3] = LF_NESTTYPE, type = T_32PUINT4(0475), const_pointer + list[4] = LF_NESTTYPE, type = 0x1530, reference + list[5] = LF_NESTTYPE, type = 0x2194, const_reference + list[6] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[7] = LF_METHOD, count = 2, list = 0x287C, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x287F, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2880, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2881, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2883, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2884, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2885, name = 'max_size' + +0x2887 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2886, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002887) + +0x2888 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = forward_iterator_tag, UDT(0x0000288d) + +0x2889 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2888, offset = 0 + +0x288a : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2889, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = bidirectional_iterator_tag, UDT(0x0000288a) + +0x288b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = input_iterator_tag, UDT(0x0000288f) + +0x288c : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x288B, offset = 0 + +0x288d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x288c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = forward_iterator_tag, UDT(0x0000288d) + +0x288e : Length = 2, Leaf = 0x1203 LF_FIELDLIST + +0x288f : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = input_iterator_tag, UDT(0x0000288f) + +0x2890 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000028ac) + +0x2891 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1BB4 + +0x2892 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2891 + +0x2893 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x1BB4, This type = 0x2892, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x2894 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2890, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2893, name = 'operator()' + +0x2895 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2894, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = set >::_Kfn, UDT(0x00002895) + +0x2896 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B79 + +0x2897 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6E, Class type = 0x1B78, This type = 0x2896, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x2898 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x14B6 + +0x2899 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6D, Class type = 0x1B78, This type = 0x2896, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2898, This adjust = 0 + +0x289a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2897, + list[1] = public, VANILLA, 0x2899, + +0x289b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1B78 + +0x289c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6D, Class type = 0x1B78, This type = 0x289B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x289d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1B78, This type = 0x289B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x289e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B78, This type = 0x289B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x289f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1B6D + list[1] = 0x14D9 + +0x28a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B78, This type = 0x289B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x289f, This adjust = 0 + +0x28a1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1B6D + +0x28a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B78, This type = 0x289B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x28a1, This adjust = 0 + +0x28a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1B78, This type = 0x2896, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x28a4 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x1B6D, pointer + list[3] = LF_NESTTYPE, type = 0x1B6E, const_pointer + list[4] = LF_NESTTYPE, type = 0x14B6, reference + list[5] = LF_NESTTYPE, type = 0x14D9, const_reference + list[6] = LF_NESTTYPE, type = 0x14B5, value_type + list[7] = LF_METHOD, count = 2, list = 0x289A, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x289C, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x289D, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x289E, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x28A0, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x28A2, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x28A3, name = 'max_size' + +0x28a5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x28a4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x000028a5) + +0x28a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E48 + +0x28a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E48, This type = 0x28A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x28a8 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector4, UDT(0x00002bd2) + +0x28a9 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1101, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x28A7, name = 'Vector4Data' + list[2] = LF_MEMBER, private, type = 0x28A8, offset = 8 + member name = 'm_vector' + +0x28aa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x28a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c14 + Size = 24, class name = Vector4Data, UDT(0x000028aa) + +0x28ab : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14B5, argument_type + list[1] = LF_NESTTYPE, type = 0x14B5, result_type + +0x28ac : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x28ab, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000028ac) + +0x28ad : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'LowPart' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'HighPart' + +0x28ae : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x28ad, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = _LARGE_INTEGER::__unnamed + +0x28af : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'LowPart' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'HighPart' + list[2] = LF_MEMBER, public, type = 0x28AE, offset = 0 + member name = 'u' + list[3] = LF_MEMBER, public, type = T_QUAD(0013), offset = 0 + member name = 'QuadPart' + +0x28b0 : Length = 30, Leaf = 0x1506 LF_UNION + # members = 4, field list type 0x28af, Size = 8 ,class name = _LARGE_INTEGER, UDT(0x000028b0) + +0x28b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1FE1 + +0x28b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x28b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x28b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x20f1, This adjust = 0 + +0x28b5 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DDeviceDesc, UDT(0x00002bd8) + +0x28b6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28B5 + +0x28b7 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x1762 + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + list[3] = 0x28B6 + list[4] = 0x28B6 + list[5] = T_32PVOID(0403) + +0x28b8 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = STD Near + Func attr = none + # Parms = 6, Arg list type = 0x28b7 + +0x28b9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28B8 + +0x28ba : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28B9 + list[1] = T_32PVOID(0403) + +0x28bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28ba, This adjust = 0 + +0x28bc : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DLight, UDT(0x00002912) + +0x28bd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28BC + +0x28be : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28BD + +0x28bf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28BE + list[1] = 0x1770 + +0x28c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28bf, This adjust = 0 + +0x28c1 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DMaterial, UDT(0x0000291f) + +0x28c2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28C1 + +0x28c3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28C2 + +0x28c4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28C3 + list[1] = 0x1770 + +0x28c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28c4, This adjust = 0 + +0x28c6 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DViewport, UDT(0x0000293e) + +0x28c7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28C6 + +0x28c8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28C7 + +0x28c9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28C8 + list[1] = 0x1770 + +0x28ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28c9, This adjust = 0 + +0x28cb : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DFINDDEVICESEARCH, UDT(0x00002941) + +0x28cc : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28CB + +0x28cd : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DFINDDEVICERESULT, UDT(0x00002943) + +0x28ce : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28CD + +0x28cf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28CC + list[1] = 0x28CE + +0x28d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE1, This type = 0x28B1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28cf, This adjust = 0 + +0x28d1 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28B2, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28B3, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28B3, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28B4, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28BB, + vfptr offset = 16, name = 'EnumDevices' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28C0, + vfptr offset = 20, name = 'CreateLight' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28C5, + vfptr offset = 24, name = 'CreateMaterial' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28CA, + vfptr offset = 28, name = 'CreateViewport' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28D0, + vfptr offset = 32, name = 'FindDevice' + +0x28d2 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x28d1, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = IDirect3D, UDT(0x000028d2) + +0x28d3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1FE3 + +0x28d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x28d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x28d6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1FE2 + list[1] = 0x1762 + list[2] = 0x28B6 + +0x28d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x28d6, This adjust = 0 + +0x28d8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28B6 + list[1] = 0x28B6 + +0x28d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28d8, This adjust = 0 + +0x28da : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DTexture, UDT(0x00002965) + +0x28db : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28DA + +0x28dc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x28DB + list[1] = 0x28DB + +0x28dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28dc, This adjust = 0 + +0x28de : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DExecuteBufferDesc, UDT(0x00002967) + +0x28df : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28DE + +0x28e0 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DExecuteBuffer, UDT(0x0000297a) + +0x28e1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28E0 + +0x28e2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28E1 + +0x28e3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x28DF + list[1] = 0x28E2 + list[2] = 0x1770 + +0x28e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x28e3, This adjust = 0 + +0x28e5 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DSTATS, UDT(0x0000297c) + +0x28e6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28E5 + +0x28e7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28E6 + +0x28e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x28e7, This adjust = 0 + +0x28e9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x28E1 + list[1] = 0x28C7 + list[2] = T_ULONG(0022) + +0x28ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x28e9, This adjust = 0 + +0x28eb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28C7 + +0x28ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x28eb, This adjust = 0 + +0x28ed : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x28C7 + list[1] = 0x28C8 + list[2] = T_ULONG(0022) + +0x28ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x28ed, This adjust = 0 + +0x28ef : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRECT, UDT(0x00002bd4) + +0x28f0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28EF + +0x28f1 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x28E1 + list[1] = 0x28C7 + list[2] = T_ULONG(0022) + list[3] = 0x28F0 + +0x28f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x28f1, This adjust = 0 + +0x28f3 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DPICKRECORD, UDT(0x0000297e) + +0x28f4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28F3 + +0x28f5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PULONG(0422) + list[1] = 0x28F4 + +0x28f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28f5, This adjust = 0 + +0x28f7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1E1C + list[1] = T_32PVOID(0403) + +0x28f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28f7, This adjust = 0 + +0x28f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x28fa : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DMATRIX, UDT(0x00002980) + +0x28fb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28FA + +0x28fc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x28FB + +0x28fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28fc, This adjust = 0 + +0x28fe : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x28FA + +0x28ff : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x28FE + +0x2900 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28ff, This adjust = 0 + +0x2901 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2902 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2903 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FE2 + +0x2904 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2903 + +0x2905 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1FE3, This type = 0x28D3, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2904, This adjust = 0 + +0x2906 : Length = 558, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28D4, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28D5, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x28D5, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28D7, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28D9, + vfptr offset = 16, name = 'GetCaps' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28DD, + vfptr offset = 20, name = 'SwapTextureHandles' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28E4, + vfptr offset = 24, name = 'CreateExecuteBuffer' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28E8, + vfptr offset = 28, name = 'GetStats' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28EA, + vfptr offset = 32, name = 'Execute' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28EC, + vfptr offset = 36, name = 'AddViewport' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28EC, + vfptr offset = 40, name = 'DeleteViewport' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28EE, + vfptr offset = 44, name = 'NextViewport' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28F2, + vfptr offset = 48, name = 'Pick' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28F6, + vfptr offset = 52, name = 'GetPickRecords' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28F8, + vfptr offset = 56, name = 'EnumTextureFormats' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28F9, + vfptr offset = 60, name = 'CreateMatrix' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x28FD, + vfptr offset = 64, name = 'SetMatrix' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2900, + vfptr offset = 68, name = 'GetMatrix' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2901, + vfptr offset = 72, name = 'DeleteMatrix' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2902, + vfptr offset = 76, name = 'BeginScene' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2902, + vfptr offset = 80, name = 'EndScene' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2905, + vfptr offset = 84, name = 'GetDirect3D' + +0x2907 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 23, field list type 0x2906, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 4, class name = IDirect3DDevice, UDT(0x00002907) + +0x2908 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28BC + +0x2909 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28BC, This type = 0x2908, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x290a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x28BC, This type = 0x2908, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x290b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1FE2 + +0x290c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28BC, This type = 0x2908, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x290b, This adjust = 0 + +0x290d : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DLIGHT, UDT(0x00002947) + +0x290e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x290D + +0x290f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x290E + +0x2910 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28BC, This type = 0x2908, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x290f, This adjust = 0 + +0x2911 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2909, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x290A, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x290A, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x290C, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2910, + vfptr offset = 16, name = 'SetLight' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2910, + vfptr offset = 20, name = 'GetLight' + +0x2912 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2911, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 4, class name = IDirect3DLight, UDT(0x00002912) + +0x2913 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28C1 + +0x2914 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2915 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2916 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x290b, This adjust = 0 + +0x2917 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DMATERIAL, UDT(0x00002957) + +0x2918 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2917 + +0x2919 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2918 + +0x291a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2919, This adjust = 0 + +0x291b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1FE4 + list[1] = T_32PULONG(0422) + +0x291c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x291b, This adjust = 0 + +0x291d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C1, This type = 0x2913, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x291e : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2914, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2915, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2915, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2916, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x291A, + vfptr offset = 16, name = 'SetMaterial' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x291A, + vfptr offset = 20, name = 'GetMaterial' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x291C, + vfptr offset = 24, name = 'GetHandle' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x291D, + vfptr offset = 28, name = 'Reserve' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x291D, + vfptr offset = 32, name = 'Unreserve' + +0x291f : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x291e, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = IDirect3DMaterial, UDT(0x0000291f) + +0x2920 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28C6 + +0x2921 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2922 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2923 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x290b, This adjust = 0 + +0x2924 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DVIEWPORT, UDT(0x0000294b) + +0x2925 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2924 + +0x2926 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2925 + +0x2927 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2926, This adjust = 0 + +0x2928 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DTRANSFORMDATA, UDT(0x0000294f) + +0x2929 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2928 + +0x292a : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x2929 + list[2] = T_ULONG(0022) + list[3] = T_32PULONG(0422) + +0x292b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x292a, This adjust = 0 + +0x292c : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DLIGHTDATA, UDT(0x00002955) + +0x292d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x292C + +0x292e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x292D + +0x292f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x292e, This adjust = 0 + +0x2930 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2931 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PULONG(0422) + list[1] = T_32PINT4(0474) + +0x2932 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2931, This adjust = 0 + +0x2933 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x2934 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x176E + list[1] = T_32PINT4(0474) + +0x2935 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2934, This adjust = 0 + +0x2936 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = 0x28F0 + list[2] = T_ULONG(0022) + +0x2937 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2936, This adjust = 0 + +0x2938 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28BD + +0x2939 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2938, This adjust = 0 + +0x293a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x28BD + list[1] = 0x28BE + list[2] = T_ULONG(0022) + +0x293b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28C6, This type = 0x2920, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x293a, This adjust = 0 + +0x293c : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2921, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2922, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2922, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2923, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2927, + vfptr offset = 16, name = 'GetViewport' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2927, + vfptr offset = 20, name = 'SetViewport' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x292B, + vfptr offset = 24, name = 'TransformVertices' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x292F, + vfptr offset = 28, name = 'LightElements' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2930, + vfptr offset = 32, name = 'SetBackground' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2932, + vfptr offset = 36, name = 'GetBackground' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2933, + vfptr offset = 40, name = 'SetBackgroundDepth' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2935, + vfptr offset = 44, name = 'GetBackgroundDepth' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2937, + vfptr offset = 48, name = 'Clear' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2939, + vfptr offset = 52, name = 'AddLight' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2939, + vfptr offset = 56, name = 'DeleteLight' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x293B, + vfptr offset = 60, name = 'NextLight' + +0x293d : Length = 14, Leaf = 0x000a LF_VTSHAPE + Number of entries : 16 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + +0x293e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 17, field list type 0x293c, + Derivation list type 0x0000, VT shape type 0x293d + Size = 4, class name = IDirect3DViewport, UDT(0x0000293e) + +0x293f : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DPrimCaps, UDT(0x00002949) + +0x2940 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'bHardware' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dcmColorModel' + list[4] = LF_MEMBER, public, type = 0x1761, offset = 16 + member name = 'guid' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwCaps' + list[6] = LF_MEMBER, public, type = 0x293F, offset = 36 + member name = 'dpcPrimCaps' + +0x2941 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2940, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 92, class name = _D3DFINDDEVICESEARCH, UDT(0x00002941) + +0x2942 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x1761, offset = 4 + member name = 'guid' + list[2] = LF_MEMBER, public, type = 0x28B5, offset = 20 + member name = 'ddHwDesc' + list[3] = LF_MEMBER, public, type = 0x28B5, offset = 224 + member name = 'ddSwDesc' + +0x2943 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2942, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = _D3DFINDDEVICERESULT, UDT(0x00002943) + +0x2944 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DCOLORVALUE, UDT(0x0000298b) + +0x2945 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DVECTOR, UDT(0x00002982) + +0x2946 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x101E, offset = 4 + member name = 'dltType' + list[2] = LF_MEMBER, public, type = 0x2944, offset = 8 + member name = 'dcvColor' + list[3] = LF_MEMBER, public, type = 0x2945, offset = 24 + member name = 'dvPosition' + list[4] = LF_MEMBER, public, type = 0x2945, offset = 36 + member name = 'dvDirection' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 48 + member name = 'dvRange' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 52 + member name = 'dvFalloff' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 56 + member name = 'dvAttenuation0' + list[8] = LF_MEMBER, public, type = T_REAL32(0040), offset = 60 + member name = 'dvAttenuation1' + list[9] = LF_MEMBER, public, type = T_REAL32(0040), offset = 64 + member name = 'dvAttenuation2' + list[10] = LF_MEMBER, public, type = T_REAL32(0040), offset = 68 + member name = 'dvTheta' + list[11] = LF_MEMBER, public, type = T_REAL32(0040), offset = 72 + member name = 'dvPhi' + +0x2947 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x2946, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 76, class name = _D3DLIGHT, UDT(0x00002947) + +0x2948 : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwMiscCaps' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwRasterCaps' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwZCmpCaps' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwSrcBlendCaps' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwDestBlendCaps' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwAlphaCmpCaps' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwShadeCaps' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwTextureCaps' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 36 + member name = 'dwTextureFilterCaps' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dwTextureBlendCaps' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 44 + member name = 'dwTextureAddressCaps' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 48 + member name = 'dwStippleWidth' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'dwStippleHeight' + +0x2949 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x2948, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 56, class name = _D3DPrimCaps, UDT(0x00002949) + +0x294a : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwX' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwY' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwWidth' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwHeight' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'dvScaleX' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'dvScaleY' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'dvMaxX' + list[8] = LF_MEMBER, public, type = T_REAL32(0040), offset = 32 + member name = 'dvMaxY' + list[9] = LF_MEMBER, public, type = T_REAL32(0040), offset = 36 + member name = 'dvMinZ' + list[10] = LF_MEMBER, public, type = T_REAL32(0040), offset = 40 + member name = 'dvMaxZ' + +0x294b : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x294a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 44, class name = _D3DVIEWPORT, UDT(0x0000294b) + +0x294c : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DHVERTEX, UDT(0x00002959) + +0x294d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x294C + +0x294e : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'lpIn' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwInSize' + list[3] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 12 + member name = 'lpOut' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwOutSize' + list[5] = LF_MEMBER, public, type = 0x294D, offset = 20 + member name = 'lpHOut' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 24 + member name = 'dwClip' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwClipIntersection' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'dwClipUnion' + list[9] = LF_MEMBER, public, type = 0x28EF, offset = 36 + member name = 'drExtent' + +0x294f : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x294e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = _D3DTRANSFORMDATA, UDT(0x0000294f) + +0x2950 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DLIGHTINGELEMENT, UDT(0x00002984) + +0x2951 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2950 + +0x2952 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DTLVERTEX, UDT(0x00002986) + +0x2953 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2952 + +0x2954 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x2951, offset = 4 + member name = 'lpIn' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwInSize' + list[3] = LF_MEMBER, public, type = 0x2953, offset = 12 + member name = 'lpOut' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwOutSize' + +0x2955 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2954, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _D3DLIGHTDATA, UDT(0x00002955) + +0x2956 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = 0x2944, offset = 4 + member name = 'diffuse' + list[2] = LF_MEMBER, public, type = 0x2944, offset = 4 + member name = 'dcvDiffuse' + list[3] = LF_MEMBER, public, type = 0x2944, offset = 20 + member name = 'ambient' + list[4] = LF_MEMBER, public, type = 0x2944, offset = 20 + member name = 'dcvAmbient' + list[5] = LF_MEMBER, public, type = 0x2944, offset = 36 + member name = 'specular' + list[6] = LF_MEMBER, public, type = 0x2944, offset = 36 + member name = 'dcvSpecular' + list[7] = LF_MEMBER, public, type = 0x2944, offset = 52 + member name = 'emissive' + list[8] = LF_MEMBER, public, type = 0x2944, offset = 52 + member name = 'dcvEmissive' + list[9] = LF_MEMBER, public, type = T_REAL32(0040), offset = 68 + member name = 'power' + list[10] = LF_MEMBER, public, type = T_REAL32(0040), offset = 68 + member name = 'dvPower' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 72 + member name = 'hTexture' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 76 + member name = 'dwRampSize' + +0x2957 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x2956, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 80, class name = _D3DMATERIAL, UDT(0x00002957) + +0x2958 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwFlags' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'hx' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'dvHX' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'hy' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'dvHY' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'hz' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'dvHZ' + +0x2959 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2958, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DHVERTEX, UDT(0x00002959) + +0x295a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28DA + +0x295b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x295c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x295d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1FE4 + list[1] = 0x11E7 + +0x295e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x295d, This adjust = 0 + +0x295f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x291b, This adjust = 0 + +0x2960 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x2961 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28DB + +0x2962 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2961, This adjust = 0 + +0x2963 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28DA, This type = 0x295A, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2964 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x295B, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x295C, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x295C, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x295E, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x295F, + vfptr offset = 16, name = 'GetHandle' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2960, + vfptr offset = 20, name = 'PaletteChanged' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2962, + vfptr offset = 24, name = 'Load' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2963, + vfptr offset = 28, name = 'Unload' + +0x2965 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x2964, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 4, class name = IDirect3DTexture, UDT(0x00002965) + +0x2966 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwCaps' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwBufferSize' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 16 + member name = 'lpData' + +0x2967 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2966, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _D3DExecuteBufferDesc, UDT(0x00002967) + +0x2968 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28E0 + +0x2969 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x296a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x296b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1FE4 + list[1] = 0x28DF + +0x296c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x296b, This adjust = 0 + +0x296d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28DF + +0x296e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x296d, This adjust = 0 + +0x296f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2970 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DEXECUTEDATA, UDT(0x00002989) + +0x2971 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2970 + +0x2972 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2971 + +0x2973 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2972, This adjust = 0 + +0x2974 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = STD Near + Func attr = none + # Parms = 2, Arg list type = 0x1e2e + +0x2975 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2974 + +0x2976 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PULONG(0422) + list[1] = 0x2975 + list[2] = T_32PVOID(0403) + list[3] = T_ULONG(0022) + +0x2977 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2976, This adjust = 0 + +0x2978 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x28E0, This type = 0x2968, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2979 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2969, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x296A, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x296A, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x296C, + vfptr offset = 12, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x296E, + vfptr offset = 16, name = 'Lock' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x296F, + vfptr offset = 20, name = 'Unlock' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2973, + vfptr offset = 24, name = 'SetExecuteData' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2973, + vfptr offset = 28, name = 'GetExecuteData' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2977, + vfptr offset = 32, name = 'Validate' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2978, + vfptr offset = 36, name = 'Optimize' + +0x297a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x2979, + Derivation list type 0x0000, VT shape type 0x2075 + Size = 4, class name = IDirect3DExecuteBuffer, UDT(0x0000297a) + +0x297b : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwTrianglesDrawn' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwLinesDrawn' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwPointsDrawn' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwSpansDrawn' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwVerticesProcessed' + +0x297c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x297b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _D3DSTATS, UDT(0x0000297c) + +0x297d : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'bOpcode' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1 + member name = 'bPad' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwOffset' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'dvZ' + +0x297e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x297d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = _D3DPICKRECORD, UDT(0x0000297e) + +0x297f : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = '_11' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = '_12' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = '_13' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = '_14' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 16 + member name = '_21' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = '_22' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = '_23' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = '_24' + list[8] = LF_MEMBER, public, type = T_REAL32(0040), offset = 32 + member name = '_31' + list[9] = LF_MEMBER, public, type = T_REAL32(0040), offset = 36 + member name = '_32' + list[10] = LF_MEMBER, public, type = T_REAL32(0040), offset = 40 + member name = '_33' + list[11] = LF_MEMBER, public, type = T_REAL32(0040), offset = 44 + member name = '_34' + list[12] = LF_MEMBER, public, type = T_REAL32(0040), offset = 48 + member name = '_41' + list[13] = LF_MEMBER, public, type = T_REAL32(0040), offset = 52 + member name = '_42' + list[14] = LF_MEMBER, public, type = T_REAL32(0040), offset = 56 + member name = '_43' + list[15] = LF_MEMBER, public, type = T_REAL32(0040), offset = 60 + member name = '_44' + +0x2980 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 16, field list type 0x297f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = _D3DMATRIX, UDT(0x00002980) + +0x2981 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'x' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'dvX' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'y' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'dvY' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'z' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'dvZ' + +0x2982 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2981, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = _D3DVECTOR, UDT(0x00002982) + +0x2983 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2945, offset = 0 + member name = 'dvPosition' + list[1] = LF_MEMBER, public, type = 0x2945, offset = 12 + member name = 'dvNormal' + +0x2984 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2983, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _D3DLIGHTINGELEMENT, UDT(0x00002984) + +0x2985 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'sx' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'dvSX' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'sy' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'dvSY' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'sz' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'dvSZ' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'rhw' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'dvRHW' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'color' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dcColor' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'specular' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dcSpecular' + list[12] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'tu' + list[13] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'dvTU' + list[14] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'tv' + list[15] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'dvTV' + +0x2986 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 16, field list type 0x2985, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _D3DTLVERTEX, UDT(0x00002986) + +0x2987 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DSTATUS, UDT(0x0000298d) + +0x2988 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwVertexOffset' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwVertexCount' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwInstructionOffset' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwInstructionLength' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwHVertexOffset' + list[6] = LF_MEMBER, public, type = 0x2987, offset = 24 + member name = 'dsStatus' + +0x2989 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2988, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 48, class name = _D3DEXECUTEDATA, UDT(0x00002989) + +0x298a : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'r' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'dvR' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'g' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'dvG' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'b' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'dvB' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'a' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'dvA' + +0x298b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x298a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DCOLORVALUE, UDT(0x0000298b) + +0x298c : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwFlags' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwStatus' + list[2] = LF_MEMBER, public, type = 0x28EF, offset = 8 + member name = 'drExtent' + +0x298d : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x298c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _D3DSTATUS, UDT(0x0000298d) + +0x298e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1E49 + +0x298f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x298E + +0x2990 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1E49, This type = 0x298F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2991 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1E49, This type = 0x298F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x2992 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1E49 + +0x2993 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E49, This type = 0x2992, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2994 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2990, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2991, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2993, name = 'SetUnknown8' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk8' + +0x2995 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2994, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +0x2996 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F0C + +0x2997 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F07, Class type = 0x1F05, This type = 0x2996, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f2a, This adjust = 0 + +0x2998 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x12AB + +0x2999 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F06, Class type = 0x1F05, This type = 0x2996, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2998, This adjust = 0 + +0x299a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2997, + list[1] = public, VANILLA, 0x2999, + +0x299b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F05 + +0x299c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F06, Class type = 0x1F05, This type = 0x299B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x299d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1F05, This type = 0x299B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x299e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F05, This type = 0x299B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x299f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F06 + list[1] = 0x1F08 + +0x29a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F05, This type = 0x299B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x299f, This adjust = 0 + +0x29a1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1F06 + +0x29a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F05, This type = 0x299B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29a1, This adjust = 0 + +0x29a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1F05, This type = 0x2996, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29a4 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x1F06, pointer + list[3] = LF_NESTTYPE, type = 0x1F07, const_pointer + list[4] = LF_NESTTYPE, type = 0x12AB, reference + list[5] = LF_NESTTYPE, type = 0x1F08, const_reference + list[6] = LF_NESTTYPE, type = 0x12A0, value_type + list[7] = LF_METHOD, count = 2, list = 0x299A, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x299C, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x299D, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x299E, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x29A0, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x29A2, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x29A3, name = 'max_size' + +0x29a5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x29a4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x000029a5) + +0x29a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1F09 + +0x29a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F09, This type = 0x29A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12b4, This adjust = 0 + +0x29a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F09, This type = 0x29A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12a7, This adjust = 0 + +0x29a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1F09, This type = 0x29A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29aa : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29A7, + list[1] = public, VANILLA, 0x29A8, + list[2] = public, VANILLA, 0x29A9, + +0x29ab : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1F09 + +0x29ac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x29AB + +0x29ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x1F09, This type = 0x29AC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F09, Class type = 0x1F09, This type = 0x29A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x29af : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1F09 + +0x29b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x29AF, Class type = 0x1F09, This type = 0x29A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29b1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29AE, + list[1] = public, VANILLA, 0x29B0, + +0x29b2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x29AB + +0x29b3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x29B2 + +0x29b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1F09, This type = 0x29AC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29b3, This adjust = 0 + +0x29b5 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12A3, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x29AA, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x29AD, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x29B1, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x29B1, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x29B4, name = 'operator==' + +0x29b6 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x29b5, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x000029b6) + +0x29b7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x103E + +0x29b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1FD9 + +0x29b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x29B7, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29ba : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 136 + Name = + +0x29bb : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[1] = LF_MEMBER, private, type = 0x29BA, offset = 0 + member name = 'unknown' + list[2] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + +0x29bc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x29bb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +0x29bd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x206B + +0x29be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x29BD + +0x29bf : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x29BD + +0x29c0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x29BF + +0x29c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x206B, This type = 0x29BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29c0, This adjust = 0 + +0x29c2 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'width' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'height' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'bitsPerPixel' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29C1, name = 'operator==' + +0x29c3 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x29c2, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +0x29c4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x20C7 + +0x29c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20C7, This type = 0x29C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20C7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x29c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x20C7, This type = 0x29C4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x29c8 : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x29C5, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x29C5, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x29C6, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x29C7, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x20CC, offset = 12 + member name = 'm_customDestructor' + +0x29c9 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x29c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003633) + +0x29ca : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2195 + +0x29cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2195, This type = 0x29CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1539, This adjust = 0 + +0x29cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2195, This type = 0x29CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x152c, This adjust = 0 + +0x29cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2195, This type = 0x29CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29ce : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29CB, + list[1] = public, VANILLA, 0x29CC, + list[2] = public, VANILLA, 0x29CD, + +0x29cf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2195 + +0x29d0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x29CF + +0x29d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x2195, This type = 0x29D0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2195, Class type = 0x2195, This type = 0x29CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x29d3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2195 + +0x29d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x29D3, Class type = 0x2195, This type = 0x29CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29d5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29D2, + list[1] = public, VANILLA, 0x29D4, + +0x29d6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x29CF + +0x29d7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x29D6 + +0x29d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2195, This type = 0x29D0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29d7, This adjust = 0 + +0x29d9 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1528, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x29CE, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x29D1, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x29D5, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x29D5, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x29D8, name = 'operator==' + +0x29da : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x29d9, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x000029da) + +0x29db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x223A + +0x29dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2236, Class type = 0x2234, This type = 0x29DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2257, This adjust = 0 + +0x29dd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x154E + +0x29de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2235, Class type = 0x2234, This type = 0x29DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29dd, This adjust = 0 + +0x29df : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29DC, + list[1] = public, VANILLA, 0x29DE, + +0x29e0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2234 + +0x29e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2235, Class type = 0x2234, This type = 0x29E0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x29e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2234, This type = 0x29E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x29e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2234, This type = 0x29E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x29e4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2235 + list[1] = 0x155D + +0x29e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2234, This type = 0x29E0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x29e4, This adjust = 0 + +0x29e6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2235 + +0x29e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2234, This type = 0x29E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29e6, This adjust = 0 + +0x29e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2234, This type = 0x29DB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29e9 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2235, pointer + list[3] = LF_NESTTYPE, type = 0x2236, const_pointer + list[4] = LF_NESTTYPE, type = 0x154E, reference + list[5] = LF_NESTTYPE, type = 0x155D, const_reference + list[6] = LF_NESTTYPE, type = 0x153F, value_type + list[7] = LF_METHOD, count = 2, list = 0x29DF, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x29E1, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x29E2, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x29E3, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x29E5, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x29E7, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x29E8, name = 'max_size' + +0x29ea : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x29e9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x000029ea) + +0x29eb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2237 + +0x29ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2237, This type = 0x29EB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1557, This adjust = 0 + +0x29ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2237, This type = 0x29EB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x154a, This adjust = 0 + +0x29ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2237, This type = 0x29EB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29ef : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29EC, + list[1] = public, VANILLA, 0x29ED, + list[2] = public, VANILLA, 0x29EE, + +0x29f0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2237 + +0x29f1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x29F0 + +0x29f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x2237, This type = 0x29F1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2237, Class type = 0x2237, This type = 0x29EB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x29f4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2237 + +0x29f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x29F4, Class type = 0x2237, This type = 0x29EB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x29f6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29F3, + list[1] = public, VANILLA, 0x29F5, + +0x29f7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x29F0 + +0x29f8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x29F7 + +0x29f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2237, This type = 0x29F1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29f8, This adjust = 0 + +0x29fa : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1546, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x29EF, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x29F2, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x29F6, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x29F6, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x29F9, name = 'operator==' + +0x29fb : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x29fa, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x000029fb) + +0x29fc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2337 + +0x29fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2332, Class type = 0x2330, This type = 0x29FC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2355, This adjust = 0 + +0x29fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2331, Class type = 0x2330, This type = 0x29FC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x269d, This adjust = 0 + +0x29ff : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x29FD, + list[1] = public, VANILLA, 0x29FE, + +0x2a00 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2330 + +0x2a01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2331, Class type = 0x2330, This type = 0x2A00, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2a02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2330, This type = 0x2A00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2a03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2330, This type = 0x2A00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2a04 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2331 + list[1] = 0x2333 + +0x2a05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2330, This type = 0x2A00, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2a04, This adjust = 0 + +0x2a06 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2331 + +0x2a07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2330, This type = 0x2A00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a06, This adjust = 0 + +0x2a08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2330, This type = 0x29FC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a09 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2331, pointer + list[3] = LF_NESTTYPE, type = 0x2332, const_pointer + list[4] = LF_NESTTYPE, type = 0x12F0, reference + list[5] = LF_NESTTYPE, type = 0x2333, const_reference + list[6] = LF_NESTTYPE, type = 0x109C, value_type + list[7] = LF_METHOD, count = 2, list = 0x29FF, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2A01, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2A02, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2A03, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2A05, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2A07, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2A08, name = 'max_size' + +0x2a0a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2a09, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002a0a) + +0x2a0b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2334 + +0x2a0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2334, This type = 0x2A0B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12f9, This adjust = 0 + +0x2a0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2334, This type = 0x2A0B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12ec, This adjust = 0 + +0x2a0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2334, This type = 0x2A0B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a0f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A0C, + list[1] = public, VANILLA, 0x2A0D, + list[2] = public, VANILLA, 0x2A0E, + +0x2a10 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2334 + +0x2a11 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2A10 + +0x2a12 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2333, Class type = 0x2334, This type = 0x2A11, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2334, Class type = 0x2334, This type = 0x2A0B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2a14 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2334 + +0x2a15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2A14, Class type = 0x2334, This type = 0x2A0B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a16 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A13, + list[1] = public, VANILLA, 0x2A15, + +0x2a17 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2A10 + +0x2a18 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2A17 + +0x2a19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2334, This type = 0x2A11, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a18, This adjust = 0 + +0x2a1a : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12E8, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2A0F, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2A12, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2A16, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2A16, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2A19, name = 'operator==' + +0x2a1b : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2a1a, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002a1b) + +0x2a1c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23D9 + +0x2a1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D4, Class type = 0x23D2, This type = 0x2A1C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x23f7, This adjust = 0 + +0x2a1e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x130D + +0x2a1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D3, Class type = 0x23D2, This type = 0x2A1C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a1e, This adjust = 0 + +0x2a20 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A1D, + list[1] = public, VANILLA, 0x2A1F, + +0x2a21 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23D2 + +0x2a22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D3, Class type = 0x23D2, This type = 0x2A21, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2a23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x23D2, This type = 0x2A21, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2a24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D2, This type = 0x2A21, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2a25 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x23D3 + list[1] = 0x23D5 + +0x2a26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D2, This type = 0x2A21, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2a25, This adjust = 0 + +0x2a27 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x23D3 + +0x2a28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D2, This type = 0x2A21, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a27, This adjust = 0 + +0x2a29 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x23D2, This type = 0x2A1C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a2a : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x23D3, pointer + list[3] = LF_NESTTYPE, type = 0x23D4, const_pointer + list[4] = LF_NESTTYPE, type = 0x130D, reference + list[5] = LF_NESTTYPE, type = 0x23D5, const_reference + list[6] = LF_NESTTYPE, type = 0x12FF, value_type + list[7] = LF_METHOD, count = 2, list = 0x2A20, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2A22, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2A23, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2A24, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2A26, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2A28, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2A29, name = 'max_size' + +0x2a2b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2a2a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002a2b) + +0x2a2c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x23D6 + +0x2a2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D6, This type = 0x2A2C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1316, This adjust = 0 + +0x2a2e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D6, This type = 0x2A2C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1309, This adjust = 0 + +0x2a2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x23D6, This type = 0x2A2C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a30 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A2D, + list[1] = public, VANILLA, 0x2A2E, + list[2] = public, VANILLA, 0x2A2F, + +0x2a31 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x23D6 + +0x2a32 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2A31 + +0x2a33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D5, Class type = 0x23D6, This type = 0x2A32, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a34 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x23D6, Class type = 0x23D6, This type = 0x2A2C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2a35 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x23D6 + +0x2a36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2A35, Class type = 0x23D6, This type = 0x2A2C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a37 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A34, + list[1] = public, VANILLA, 0x2A36, + +0x2a38 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2A31 + +0x2a39 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2A38 + +0x2a3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x23D6, This type = 0x2A32, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a39, This adjust = 0 + +0x2a3b : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1305, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2A30, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2A33, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2A37, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2A37, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2A3A, name = 'operator==' + +0x2a3c : Length = 102, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2a3b, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002a3c) + +0x2a3d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x247A + +0x2a3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2473, Class type = 0x2471, This type = 0x2A3D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2498, This adjust = 0 + +0x2a3f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2474 + +0x2a40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2472, Class type = 0x2471, This type = 0x2A3D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a3f, This adjust = 0 + +0x2a41 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A3E, + list[1] = public, VANILLA, 0x2A40, + +0x2a42 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2471 + +0x2a43 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2472, Class type = 0x2471, This type = 0x2A42, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2a44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2471, This type = 0x2A42, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2a45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2471, This type = 0x2A42, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2a46 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2472 + list[1] = 0x2475 + +0x2a47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2471, This type = 0x2A42, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2a46, This adjust = 0 + +0x2a48 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2472 + +0x2a49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2471, This type = 0x2A42, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a48, This adjust = 0 + +0x2a4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2471, This type = 0x2A3D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a4b : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2472, pointer + list[3] = LF_NESTTYPE, type = 0x2473, const_pointer + list[4] = LF_NESTTYPE, type = 0x2474, reference + list[5] = LF_NESTTYPE, type = 0x2475, const_reference + list[6] = LF_NESTTYPE, type = 0x1EEA, value_type + list[7] = LF_METHOD, count = 2, list = 0x2A41, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2A43, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2A44, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2A45, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2A47, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2A49, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2A4A, name = 'max_size' + +0x2a4c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2a4b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002a4c) + +0x2a4d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2476 + +0x2a4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2476, This type = 0x2A4D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24c4, This adjust = 0 + +0x2a4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2476, This type = 0x2A4D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a50 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A4E, + list[1] = public, VANILLA, 0x2A4F, + +0x2a51 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2476 + +0x2a52 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2A51 + +0x2a53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2474, Class type = 0x2476, This type = 0x2A52, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2476, Class type = 0x2476, This type = 0x2A4D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2a55 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2476 + +0x2a56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2A55, Class type = 0x2476, This type = 0x2A4D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a57 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A54, + list[1] = public, VANILLA, 0x2A56, + +0x2a58 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2A51 + +0x2a59 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2A58 + +0x2a5a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2476, This type = 0x2A52, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a59, This adjust = 0 + +0x2a5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1374, Class type = 0x2476, This type = 0x2A52, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a5c : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x24E8, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x2A50, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2A53, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2A57, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2A57, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2A5A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2A5B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x1374, offset = 0 + member name = '_Ptr' + +0x2a5d : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2a5c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00002a5d) + +0x2a5e : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00002a94) + +0x2a5f : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2A5E, offset = 0 + +0x2a60 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2a5f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002a60) + +0x2a61 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2477 + +0x2a62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2477, This type = 0x2A61, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a59, This adjust = 0 + +0x2a63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2477, This type = 0x2A61, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x24c4, This adjust = 0 + +0x2a64 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2477, This type = 0x2A61, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a65 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A62, + list[1] = public, VANILLA, 0x2A63, + list[2] = public, VANILLA, 0x2A64, + +0x2a66 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2477 + +0x2a67 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2A66 + +0x2a68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2475, Class type = 0x2477, This type = 0x2A67, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2477, Class type = 0x2477, This type = 0x2A61, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2a6a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2477 + +0x2a6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2A6A, Class type = 0x2477, This type = 0x2A61, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a6c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A69, + list[1] = public, VANILLA, 0x2A6B, + +0x2a6d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2A66 + +0x2a6e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2A6D + +0x2a6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2477, This type = 0x2A67, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a6e, This adjust = 0 + +0x2a70 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2476, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2A65, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2A68, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2A6C, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2A6C, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2A6F, name = 'operator==' + +0x2a71 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2a70, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002a71) + +0x2a72 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x252E + +0x2a73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2529, Class type = 0x2527, This type = 0x2A72, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x254c, This adjust = 0 + +0x2a74 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1346 + +0x2a75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2528, Class type = 0x2527, This type = 0x2A72, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a74, This adjust = 0 + +0x2a76 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A73, + list[1] = public, VANILLA, 0x2A75, + +0x2a77 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2527 + +0x2a78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2528, Class type = 0x2527, This type = 0x2A77, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2a79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2527, This type = 0x2A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2a7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2527, This type = 0x2A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2a7b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2528 + list[1] = 0x252A + +0x2a7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2527, This type = 0x2A77, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2a7b, This adjust = 0 + +0x2a7d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2528 + +0x2a7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2527, This type = 0x2A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a7d, This adjust = 0 + +0x2a7f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2527, This type = 0x2A72, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a80 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2528, pointer + list[3] = LF_NESTTYPE, type = 0x2529, const_pointer + list[4] = LF_NESTTYPE, type = 0x1346, reference + list[5] = LF_NESTTYPE, type = 0x252A, const_reference + list[6] = LF_NESTTYPE, type = 0x12DF, value_type + list[7] = LF_METHOD, count = 2, list = 0x2A76, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2A78, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2A79, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2A7A, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2A7C, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2A7E, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2A7F, name = 'max_size' + +0x2a81 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2a80, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002a81) + +0x2a82 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x252B + +0x2a83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252B, This type = 0x2A82, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x134f, This adjust = 0 + +0x2a84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252B, This type = 0x2A82, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1342, This adjust = 0 + +0x2a85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x252B, This type = 0x2A82, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a86 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A83, + list[1] = public, VANILLA, 0x2A84, + list[2] = public, VANILLA, 0x2A85, + +0x2a87 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x252B + +0x2a88 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2A87 + +0x2a89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252A, Class type = 0x252B, This type = 0x2A88, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x252B, Class type = 0x252B, This type = 0x2A82, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2a8b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x252B + +0x2a8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2A8B, Class type = 0x252B, This type = 0x2A82, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2a8d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A8A, + list[1] = public, VANILLA, 0x2A8C, + +0x2a8e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2A87 + +0x2a8f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2A8E + +0x2a90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x252B, This type = 0x2A88, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a8f, This adjust = 0 + +0x2a91 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x133E, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2A86, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2A89, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2A8D, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2A8D, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2A90, name = 'operator==' + +0x2a92 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2a91, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002a92) + +0x2a93 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x1EEA, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x2a94 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2a93, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00002a94) + +0x2a95 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25ED + +0x2a96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E6, Class type = 0x25E4, This type = 0x2A95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x260b, This adjust = 0 + +0x2a97 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25E7 + +0x2a98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E5, Class type = 0x25E4, This type = 0x2A95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a97, This adjust = 0 + +0x2a99 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2A96, + list[1] = public, VANILLA, 0x2A98, + +0x2a9a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25E4 + +0x2a9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E5, Class type = 0x25E4, This type = 0x2A9A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2a9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x25E4, This type = 0x2A9A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2a9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25E4, This type = 0x2A9A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2a9e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x25E5 + list[1] = 0x25E8 + +0x2a9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25E4, This type = 0x2A9A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2a9e, This adjust = 0 + +0x2aa0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x25E5 + +0x2aa1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25E4, This type = 0x2A9A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2aa0, This adjust = 0 + +0x2aa2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x25E4, This type = 0x2A95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2aa3 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x25E5, pointer + list[3] = LF_NESTTYPE, type = 0x25E6, const_pointer + list[4] = LF_NESTTYPE, type = 0x25E7, reference + list[5] = LF_NESTTYPE, type = 0x25E8, const_reference + list[6] = LF_NESTTYPE, type = 0x1619, value_type + list[7] = LF_METHOD, count = 2, list = 0x2A99, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2A9B, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2A9C, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2A9D, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2A9F, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2AA1, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2AA2, name = 'max_size' + +0x2aa4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2aa3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002aa4) + +0x2aa5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25E9 + +0x2aa6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25E9, This type = 0x2AA5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2637, This adjust = 0 + +0x2aa7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25E9, This type = 0x2AA5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2aa8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2AA6, + list[1] = public, VANILLA, 0x2AA7, + +0x2aa9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x25E9 + +0x2aaa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2AA9 + +0x2aab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E7, Class type = 0x25E9, This type = 0x2AAA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2aac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E9, Class type = 0x25E9, This type = 0x2AA5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2aad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25E9 + +0x2aae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AAD, Class type = 0x25E9, This type = 0x2AA5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2aaf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2AAC, + list[1] = public, VANILLA, 0x2AAE, + +0x2ab0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2AA9 + +0x2ab1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2AB0 + +0x2ab2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x25E9, This type = 0x2AAA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ab1, This adjust = 0 + +0x2ab3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1747, Class type = 0x25E9, This type = 0x2AAA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ab4 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x265B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x2AA8, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2AAB, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2AAF, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2AAF, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2AB2, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2AB3, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x1747, offset = 0 + member name = '_Ptr' + +0x2ab5 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2ab4, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00002ab5) + +0x2ab6 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00002acb) + +0x2ab7 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2AB6, offset = 0 + +0x2ab8 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2ab7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002ab8) + +0x2ab9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x25EA + +0x2aba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EA, This type = 0x2AB9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ab1, This adjust = 0 + +0x2abb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EA, This type = 0x2AB9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2637, This adjust = 0 + +0x2abc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x25EA, This type = 0x2AB9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2abd : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2ABA, + list[1] = public, VANILLA, 0x2ABB, + list[2] = public, VANILLA, 0x2ABC, + +0x2abe : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x25EA + +0x2abf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2ABE + +0x2ac0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25E8, Class type = 0x25EA, This type = 0x2ABF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ac1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x25EA, Class type = 0x25EA, This type = 0x2AB9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2ac2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x25EA + +0x2ac3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AC2, Class type = 0x25EA, This type = 0x2AB9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ac4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2AC1, + list[1] = public, VANILLA, 0x2AC3, + +0x2ac5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2ABE + +0x2ac6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2AC5 + +0x2ac7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x25EA, This type = 0x2ABF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ac6, This adjust = 0 + +0x2ac8 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x25E9, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2ABD, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2AC0, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2AC4, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2AC4, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2AC7, name = 'operator==' + +0x2ac9 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2ac8, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002ac9) + +0x2aca : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x1619, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x2acb : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2aca, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00002acb) + +0x2acc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2785 + +0x2acd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2786 + +0x2ace : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2ACD + +0x2acf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ace, This adjust = 0 + +0x2ad0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2ad1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x2ACF, + list[1] = protected, VANILLA, 0x2AD0, + +0x2ad2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x278B + +0x2ad3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x278B, Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ad2, This adjust = 0 + +0x2ad4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x278B, Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ad5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ad6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2786 + +0x2ad7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x278B, Class type = 0x2785, This type = 0x2AD6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2ad8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2785, This type = 0x2AD6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ad9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2785 + +0x2ada : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AD9, Class type = 0x2785, This type = 0x2ACC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ace, This adjust = 0 + +0x2adb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x278B + +0x2adc : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_METHOD, count = 2, list = 0x2AD1, name = 'LODListBase' + list[2] = LF_ONEMETHOD, protected, VANILLA, index = 0x2AD3, name = 'PushBack' + list[3] = LF_ONEMETHOD, protected, VANILLA, index = 0x2AD4, name = 'PopBack' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2AD5, + vfptr offset = 0, name = '~LODListBase' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2AD7, name = 'operator[]' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2AD8, name = 'Size' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2AD8, name = 'Capacity' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x2ADA, name = 'operator=' + list[9] = LF_MEMBER, private, type = 0x2ADB, offset = 4 + member name = 'm_ppLODObject' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_capacity' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_size' + +0x2add : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2adc, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = LODListBase, UDT(0x00002add) + +0x2ade : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x283A + +0x2adf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2789 + +0x2ae0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2789, This type = 0x2ADF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ae1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x278A + +0x2ae2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x2789, This type = 0x2AE1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x2ae3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x2789, This type = 0x2AE1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ae4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2789, This type = 0x2AE1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ae5 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x2ADE + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2AE0, + vfptr offset = 0, name = '~LODObject' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2AE2, + vfptr offset = 4, name = 'Cost' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2AE3, + vfptr offset = 8, name = 'AveragePolyArea' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2AE4, + vfptr offset = 12, name = 'NVerts' + +0x2ae6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2ae5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = LODObject, UDT(0x00002ae6) + +0x2ae7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1140 + +0x2ae8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x277D + +0x2ae9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x279D + +0x2aea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2AE9 + +0x2aeb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27A2 + +0x2aec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AE8, Class type = 0x279D, This type = 0x2AEA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2aeb, This adjust = 0 + +0x2aed : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1141 + +0x2aee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AE7, Class type = 0x279D, This type = 0x2AEA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2aed, This adjust = 0 + +0x2aef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2AEC, + list[1] = public, VANILLA, 0x2AEE, + +0x2af0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x279D + +0x2af1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AE7, Class type = 0x279D, This type = 0x2AF0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2af2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x279D, This type = 0x2AF0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2af3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279D, This type = 0x2AF0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2af4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2AE7 + list[1] = 0x27A2 + +0x2af5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279D, This type = 0x2AF0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2af4, This adjust = 0 + +0x2af6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2AE7 + +0x2af7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279D, This type = 0x2AF0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2af6, This adjust = 0 + +0x2af8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x279D, This type = 0x2AEA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2af9 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2AE7, pointer + list[3] = LF_NESTTYPE, type = 0x2AE8, const_pointer + list[4] = LF_NESTTYPE, type = 0x1141, reference + list[5] = LF_NESTTYPE, type = 0x27A2, const_reference + list[6] = LF_NESTTYPE, type = 0x1140, value_type + list[7] = LF_METHOD, count = 2, list = 0x2AEF, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF1, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF2, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF3, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF5, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF7, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2AF8, name = 'max_size' + +0x2afa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2af9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002afa) + +0x2afb : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00002b6c) + +0x2afc : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002bed) + +0x2afd : Length = 118, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,ROI *,ROI * &,ROI * *,int>, UDT(0x00002b7a) + +0x2afe : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,ROI *,ROI * const &,ROI * const *,int>, UDT(0x00002b89) + +0x2aff : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x279C + +0x2b00 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2AE9 + +0x2b01 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2AFC + list[1] = 0x2AFC + list[2] = 0x2B00 + +0x2b02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b01, This adjust = 0 + +0x2b03 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x279C + +0x2b04 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B03 + +0x2b05 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B04 + +0x2b06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b05, This adjust = 0 + +0x2b07 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x27A2 + list[2] = 0x2B00 + +0x2b08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b07, This adjust = 0 + +0x2b09 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B00 + +0x2b0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b09, This adjust = 0 + +0x2b0b : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B02, + list[1] = public, VANILLA, 0x2B06, + list[2] = public, VANILLA, 0x2B08, + list[3] = public, VANILLA, 0x2B0A, + +0x2b0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b0d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x279C + +0x2b0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B0D, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b05, This adjust = 0 + +0x2b0f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B03 + +0x2b10 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFC, Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b12 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B10, + list[1] = public, VANILLA, 0x2B11, + +0x2b13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFE, Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFD, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b15 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B13, + list[1] = public, VANILLA, 0x2B14, + +0x2b16 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x1140 + +0x2b17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b16, This adjust = 0 + +0x2b18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x279D, Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b1b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27A2, Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1141, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b1d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B1B, + list[1] = public, VANILLA, 0x2B1C, + +0x2b1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2aeb, This adjust = 0 + +0x2b1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x27a3, This adjust = 0 + +0x2b20 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2AFC + list[1] = 0x2AFC + +0x2b21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b20, This adjust = 0 + +0x2b22 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B1F, + list[1] = public, VANILLA, 0x2B21, + +0x2b23 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1137 + list[1] = 0x2AFC + list[2] = 0x2AFC + +0x2b24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b23, This adjust = 0 + +0x2b25 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1137 + list[1] = 0x2AE8 + list[2] = 0x2AE8 + +0x2b26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b25, This adjust = 0 + +0x2b27 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1137 + list[1] = T_UINT4(0075) + list[2] = 0x27A2 + +0x2b28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b27, This adjust = 0 + +0x2b29 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1137 + list[1] = 0x27A2 + +0x2b2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b29, This adjust = 0 + +0x2b2b : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B24, + list[1] = public, VANILLA, 0x2B26, + list[2] = public, VANILLA, 0x2B28, + list[3] = public, VANILLA, 0x2B2A, + +0x2b2c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1137 + list[1] = 0x1137 + +0x2b2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b2c, This adjust = 0 + +0x2b2e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1137 + +0x2b2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b2e, This adjust = 0 + +0x2b30 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B2D, + list[1] = public, VANILLA, 0x2B2F, + +0x2b31 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B0D + +0x2b32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b31, This adjust = 0 + +0x2b33 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1137 + list[1] = 0x2B0D + list[2] = 0x1137 + list[3] = 0x1137 + +0x2b34 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2b33, This adjust = 0 + +0x2b35 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1137 + list[1] = 0x2B0D + list[2] = 0x1137 + +0x2b36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2b35, This adjust = 0 + +0x2b37 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1137 + list[1] = 0x2B0D + +0x2b38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b37, This adjust = 0 + +0x2b39 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B34, + list[1] = public, VANILLA, 0x2B36, + list[2] = public, VANILLA, 0x2B38, + +0x2b3a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00002b5e) + +0x2b3b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B3A + +0x2b3c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b3b, This adjust = 0 + +0x2b3d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00002b54) + +0x2b3e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B3D + +0x2b3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b3e, This adjust = 0 + +0x2b40 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B3F, + list[1] = public, VANILLA, 0x2B0C, + +0x2b41 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002b67) + +0x2b42 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2B0D + list[1] = 0x2B41 + +0x2b43 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b42, This adjust = 0 + +0x2b44 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B43, + list[1] = public, VANILLA, 0x2B32, + +0x2b45 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B41 + +0x2b46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b45, This adjust = 0 + +0x2b47 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B46, + list[1] = public, VANILLA, 0x2B0C, + +0x2b48 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x113A + list[1] = 0x113A + +0x2b49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x113A, Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b48, This adjust = 0 + +0x2b4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2AFF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x113b, This adjust = 0 + +0x2b4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x279C, This type = 0x2B0F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b4c : Length = 1098, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x1139, _Node + list[2] = LF_NESTTYPE, type = 0x113A, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2AFB, _Acc + list[4] = LF_NESTTYPE, type = 0x279C, _Myt + list[5] = LF_NESTTYPE, type = 0x279D, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2AE7, _Tptr + list[9] = LF_NESTTYPE, type = 0x2AE8, _Ctptr + list[10] = LF_NESTTYPE, type = 0x1141, reference + list[11] = LF_NESTTYPE, type = 0x27A2, const_reference + list[12] = LF_NESTTYPE, type = 0x1140, value_type + list[13] = LF_NESTTYPE, type = 0x1137, iterator + list[14] = LF_NESTTYPE, type = 0x2AFC, const_iterator + list[15] = LF_NESTTYPE, type = 0x2AFD, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2AFE, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x2B0B, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2AFC, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0C, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0E, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x2B12, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x2B12, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x2B15, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x2B15, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2B17, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2B18, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2B18, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2B19, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2B1A, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x2B1D, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x2B1D, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2B1E, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0C, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x2B1E, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0C, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x2B22, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x2B2B, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x2B30, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0C, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2B32, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2B39, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x2B1E, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2B3A, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2B3C, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x2B40, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x2B3D, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x2B44, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x2B41, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2B47, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x2B0C, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x2B49, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2B4A, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x2B34, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2B4B, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x279D, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x113A, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x2b4d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x2b4c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00002b4d) + +0x2b4e : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002b62) + +0x2b4f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2B3D + +0x2b50 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B4F + +0x2b51 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x27A2 + list[1] = 0x27A2 + +0x2b52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2B3D, This type = 0x2B50, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b51, This adjust = 0 + +0x2b53 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2B4E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2B52, name = 'operator()' + +0x2b54 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2b53, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00002b54) + +0x2b55 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002b60) + +0x2b56 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B3A + +0x2b57 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B4F + +0x2b58 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2B57 + list[1] = 0x27A2 + +0x2b59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2B3A, This type = 0x2B56, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b58, This adjust = 0 + +0x2b5a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2B3A + +0x2b5b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B5A + +0x2b5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2B3A, This type = 0x2B5B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2aeb, This adjust = 0 + +0x2b5d : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2B55, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2B59, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2B5C, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x2B3D, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x1140, offset = 4 + member name = 'value' + +0x2b5e : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2b5d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00002b5e) + +0x2b5f : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1140, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2b60 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2b5f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002b60) + +0x2b61 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1140, first_argument_type + list[1] = LF_NESTTYPE, type = 0x1140, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2b62 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2b61, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002b62) + +0x2b63 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2B41 + +0x2b64 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B63 + +0x2b65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2B41, This type = 0x2B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b51, This adjust = 0 + +0x2b66 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2B4E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2B65, name = 'operator()' + +0x2b67 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2b66, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002b67) + +0x2b68 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x113A + +0x2b69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B68, Class type = 0x2AFB, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x113b, This adjust = 0 + +0x2b6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1141, Class type = 0x2AFB, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x113b, This adjust = 0 + +0x2b6b : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2B68, _Nodepref + list[1] = LF_NESTTYPE, type = 0x1141, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2B69, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2B69, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x2B6A, name = '_Value' + +0x2b6c : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2b6b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00002b6c) + +0x2b6d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2AFD + +0x2b6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFD, This type = 0x2B6D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b2e, This adjust = 0 + +0x2b6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFD, This type = 0x2B6D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b70 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B6E, + list[1] = public, VANILLA, 0x2B6F, + +0x2b71 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2AFD + +0x2b72 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B71 + +0x2b73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1137, Class type = 0x2AFD, This type = 0x2B72, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1141, Class type = 0x2AFD, This type = 0x2B72, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFD, Class type = 0x2AFD, This type = 0x2B6D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2b76 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2AFD + +0x2b77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B76, Class type = 0x2AFD, This type = 0x2B6D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b78 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B75, + list[1] = public, VANILLA, 0x2B77, + +0x2b79 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1136, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2AFD, _Myt + list[2] = LF_NESTTYPE, type = 0x1137, iter_type + list[3] = LF_NESTTYPE, type = 0x1140, value_type + list[4] = LF_NESTTYPE, type = 0x1141, reference_type + list[5] = LF_NESTTYPE, type = 0x2AE7, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2B70, name = 'reverse_bidirectional_iterator >::iterator,ROI *,ROI * &,ROI * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2B73, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2B74, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2B78, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2B78, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x1137, offset = 0 + member name = 'current' + +0x2b7a : Length = 118, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2b79, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,ROI *,ROI * &,ROI * *,int>, UDT(0x00002b7a) + +0x2b7b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2AFE + +0x2b7c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2AFC + +0x2b7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFE, This type = 0x2B7B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b7c, This adjust = 0 + +0x2b7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFE, This type = 0x2B7B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b7f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B7D, + list[1] = public, VANILLA, 0x2B7E, + +0x2b80 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2AFE + +0x2b81 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B80 + +0x2b82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFC, Class type = 0x2AFE, This type = 0x2B81, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27A2, Class type = 0x2AFE, This type = 0x2B81, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFE, Class type = 0x2AFE, This type = 0x2B7B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2b85 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2AFE + +0x2b86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B85, Class type = 0x2AFE, This type = 0x2B7B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b87 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B84, + list[1] = public, VANILLA, 0x2B86, + +0x2b88 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1136, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2AFE, _Myt + list[2] = LF_NESTTYPE, type = 0x2AFC, iter_type + list[3] = LF_NESTTYPE, type = 0x1140, value_type + list[4] = LF_NESTTYPE, type = 0x27A2, reference_type + list[5] = LF_NESTTYPE, type = 0x2AE8, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2B7F, name = 'reverse_bidirectional_iterator >::const_iterator,ROI *,ROI * const &,ROI * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2B82, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2B83, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2B87, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2B87, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2AFC, offset = 0 + member name = 'current' + +0x2b89 : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2b88, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,ROI *,ROI * const &,ROI * const *,int>, UDT(0x00002b89) + +0x2b8a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Array,4>, UDT(0x00002ba8) + +0x2b8b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x286B + +0x2b8c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x286D + list[1] = 0x286D + +0x2b8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x286B, This type = 0x2B8B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2b8c, This adjust = 0 + +0x2b8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x286B, This type = 0x2B8B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2b8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x286B, This type = 0x2B8B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b90 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B8D, + list[1] = public, VANILLA, 0x2B8E, + list[2] = public, VANILLA, 0x2B8F, + +0x2b91 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x286B + +0x2b92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B91, Class type = 0x286B, This type = 0x2B8B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2b93 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2B8A, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2B90, name = 'FloatMatrix4' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2B8E, name = 'operator*=' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2B92, name = 'operator=' + +0x2b94 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x2b93, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = Tgl::FloatMatrix4, UDT(0x00002b94) + +0x2b95 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B8A + +0x2b96 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2B8A + +0x2b97 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B96 + +0x2b98 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2B97 + +0x2b99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2B8A, This type = 0x2B95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b98, This adjust = 0 + +0x2b9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2B8A, This type = 0x2B95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2b9b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B99, + list[1] = public, VANILLA, 0x2B9A, + +0x2b9c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Array, UDT(0x00002bb4) + +0x2b9d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B9C + +0x2b9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B9D, Class type = 0x2B8A, This type = 0x2B95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2b9f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2B9C + +0x2ba0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B9F + +0x2ba1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B96 + +0x2ba2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BA0, Class type = 0x2B8A, This type = 0x2BA1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2ba3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2B9E, + list[1] = public, VANILLA, 0x2BA2, + +0x2ba4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2B8A + +0x2ba5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BA4, Class type = 0x2B8A, This type = 0x2B95, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2b98, This adjust = 0 + +0x2ba6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x2B9C + Index type = T_SHORT(0011) + length = 64 + Name = + +0x2ba7 : Length = 166, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2B9B, name = 'Array,4>' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2B9A, name = '~Array,4>' + list[2] = LF_METHOD, count = 2, list = 0x2BA3, name = 'operator[]' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2BA5, name = 'operator=' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2B99, name = 'operator+=' + list[5] = LF_MEMBER, protected, type = 0x2BA6, offset = 0 + member name = 'm_elements' + +0x2ba8 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2ba7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = Tgl::Array,4>, UDT(0x00002ba8) + +0x2ba9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B9C + +0x2baa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BA0 + +0x2bab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2B9C, This type = 0x2BA9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2baa, This adjust = 0 + +0x2bac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2B9C, This type = 0x2BA9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2bad : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BAB, + list[1] = public, VANILLA, 0x2BAC, + +0x2bae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x2B9C, This type = 0x2BA9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2baf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2B9F + +0x2bb0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BFC, Class type = 0x2B9C, This type = 0x2BAF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2bb1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BAE, + list[1] = public, VANILLA, 0x2BB0, + +0x2bb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2B9D, Class type = 0x2B9C, This type = 0x2BA9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2baa, This adjust = 0 + +0x2bb3 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2BAD, name = 'Array' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2BAC, name = '~Array' + list[2] = LF_METHOD, count = 2, list = 0x2BB1, name = 'operator[]' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2BB2, name = 'operator=' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2BAB, name = 'operator+=' + list[5] = LF_MEMBER, protected, type = 0x1031, offset = 0 + member name = 'm_elements' + +0x2bb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2bb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Tgl::Array, UDT(0x00002bb4) + +0x2bb5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x27DA + +0x2bb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27DA, This type = 0x2BB5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2bb7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x27DA, This type = 0x2BB5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2bb8 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x2009 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2BB6, + vfptr offset = 0, name = '~Object' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2BB7, + vfptr offset = 4, name = 'ImplementationDataPtr' + +0x2bb9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2bb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 4, class name = Tgl::Object, UDT(0x00002fff) + +0x2bba : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = map >, UDT(0x00002c49) + +0x2bbb : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002c08) + +0x2bbc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2811 + +0x2bbd : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ROINameComparator, UDT(0x00002bf2) + +0x2bbe : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2BBD + +0x2bbf : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2BBE + +0x2bc0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BBF + +0x2bc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2811, This type = 0x2BBC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2bc0, This adjust = 0 + +0x2bc2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2811 + +0x2bc3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BC2 + +0x2bc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2811, This type = 0x2BBC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2bc3, This adjust = 0 + +0x2bc5 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2BBA, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2811, _Myt + list[2] = LF_NESTTYPE, type = 0x2BBB, _A + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2BC1, name = 'Map' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2BC4, name = 'swap' + +0x2bc6 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2bc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Map, UDT(0x00004470) + +0x2bc7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28A8 + +0x2bc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x28A8, This type = 0x2BC7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x2bc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x28A8, This type = 0x2BC7, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x2bca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x28A8, This type = 0x2BC7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2bcb : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BC8, + list[1] = public, VANILLA, 0x2BC9, + list[2] = public, VANILLA, 0x2BCA, + +0x2bcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x18A9, Class type = 0x28A8, This type = 0x2BC7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x2bcd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x28A8 + +0x2bce : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2BCD + +0x2bcf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1BFC, Class type = 0x28A8, This type = 0x2BCE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x2bd0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BCC, + list[1] = public, VANILLA, 0x2BCF, + +0x2bd1 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1031, offset = 0 + member name = 'elements' + list[1] = LF_METHOD, count = 3, list = 0x2BCB, name = 'Vector4' + list[2] = LF_METHOD, count = 2, list = 0x2BD0, name = 'operator[]' + +0x2bd2 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2bd1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Vector4, UDT(0x00002bd2) + +0x2bd3 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_LONG(0012), offset = 0 + member name = 'x1' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 0 + member name = 'lX1' + list[2] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'y1' + list[3] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'lY1' + list[4] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'x2' + list[5] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'lX2' + list[6] = LF_MEMBER, public, type = T_LONG(0012), offset = 12 + member name = 'y2' + list[7] = LF_MEMBER, public, type = T_LONG(0012), offset = 12 + member name = 'lY2' + +0x2bd4 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x2bd3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DRECT, UDT(0x00002bd4) + +0x2bd5 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DTRANSFORMCAPS, UDT(0x00002bda) + +0x2bd6 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DLIGHTINGCAPS, UDT(0x00002bdc) + +0x2bd7 : Length = 578, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwFlags' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dcmColorModel' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwDevCaps' + list[4] = LF_MEMBER, public, type = 0x2BD5, offset = 16 + member name = 'dtcTransformCaps' + list[5] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'bClipping' + list[6] = LF_MEMBER, public, type = 0x2BD6, offset = 28 + member name = 'dlcLightingCaps' + list[7] = LF_MEMBER, public, type = 0x293F, offset = 44 + member name = 'dpcLineCaps' + list[8] = LF_MEMBER, public, type = 0x293F, offset = 100 + member name = 'dpcTriCaps' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 156 + member name = 'dwDeviceRenderBitDepth' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 160 + member name = 'dwDeviceZBufferBitDepth' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 164 + member name = 'dwMaxBufferSize' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 168 + member name = 'dwMaxVertexCount' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 172 + member name = 'dwMinTextureWidth' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 176 + member name = 'dwMinTextureHeight' + list[15] = LF_MEMBER, public, type = T_ULONG(0022), offset = 180 + member name = 'dwMaxTextureWidth' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 184 + member name = 'dwMaxTextureHeight' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 188 + member name = 'dwMinStippleWidth' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 192 + member name = 'dwMaxStippleWidth' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 196 + member name = 'dwMinStippleHeight' + list[20] = LF_MEMBER, public, type = T_ULONG(0022), offset = 200 + member name = 'dwMaxStippleHeight' + +0x2bd8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 21, field list type 0x2bd7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 204, class name = _D3DDeviceDesc, UDT(0x00002bd8) + +0x2bd9 : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwCaps' + +0x2bda : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2bd9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = _D3DTRANSFORMCAPS, UDT(0x00002bda) + +0x2bdb : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwCaps' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwLightingModel' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwNumLights' + +0x2bdc : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2bdb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DLIGHTINGCAPS, UDT(0x00002bdc) + +0x2bdd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2AFC + +0x2bde : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFC, This type = 0x2BDD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x114a, This adjust = 0 + +0x2bdf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFC, This type = 0x2BDD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x113b, This adjust = 0 + +0x2be0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2AFC, This type = 0x2BDD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2be1 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BDE, + list[1] = public, VANILLA, 0x2BDF, + list[2] = public, VANILLA, 0x2BE0, + +0x2be2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2AFC + +0x2be3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2BE2 + +0x2be4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27A2, Class type = 0x2AFC, This type = 0x2BE3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2be5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2AFC, Class type = 0x2AFC, This type = 0x2BDD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2be6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2AFC + +0x2be7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BE6, Class type = 0x2AFC, This type = 0x2BDD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2be8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BE5, + list[1] = public, VANILLA, 0x2BE7, + +0x2be9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2BE2 + +0x2bea : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BE9 + +0x2beb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2AFC, This type = 0x2BE3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2bea, This adjust = 0 + +0x2bec : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1137, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2BE1, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2BE4, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2BE8, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2BE8, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2BEB, name = 'operator==' + +0x2bed : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2bec, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002bed) + +0x2bee : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2BBE + +0x2bef : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2816 + list[1] = 0x2816 + +0x2bf0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2BBD, This type = 0x2BEE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2bef, This adjust = 0 + +0x2bf1 : Length = 22, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2BF0, name = 'operator()' + +0x2bf2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2bf1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = ROINameComparator, UDT(0x00002bf2) + +0x2bf3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2081 + +0x2bf4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x27C4 + +0x2bf5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2081 + +0x2bf6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x27C4 + +0x2bf7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2BBB + +0x2bf8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2BF7 + +0x2bf9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BF6 + +0x2bfa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BF4, Class type = 0x2BBB, This type = 0x2BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2bf9, This adjust = 0 + +0x2bfb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BF5 + +0x2bfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BF3, Class type = 0x2BBB, This type = 0x2BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2bfb, This adjust = 0 + +0x2bfd : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2BFA, + list[1] = public, VANILLA, 0x2BFC, + +0x2bfe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2BBB + +0x2bff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BF3, Class type = 0x2BBB, This type = 0x2BFE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2c00 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2BBB, This type = 0x2BFE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2c01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2BBB, This type = 0x2BFE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2c02 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2BF3 + list[1] = 0x2BF6 + +0x2c03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2BBB, This type = 0x2BFE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c02, This adjust = 0 + +0x2c04 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BF3 + +0x2c05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2BBB, This type = 0x2BFE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c04, This adjust = 0 + +0x2c06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2BBB, This type = 0x2BF8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c07 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2BF3, pointer + list[3] = LF_NESTTYPE, type = 0x2BF4, const_pointer + list[4] = LF_NESTTYPE, type = 0x2BF5, reference + list[5] = LF_NESTTYPE, type = 0x2BF6, const_reference + list[6] = LF_NESTTYPE, type = 0x2081, value_type + list[7] = LF_METHOD, count = 2, list = 0x2BFD, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2BFF, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2C00, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2C01, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2C03, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2C05, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2C06, name = 'max_size' + +0x2c08 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2c07, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002c08) + +0x2c09 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = pair, UDT(0x00002c50) + +0x2c0a : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = map >::_Kfn, UDT(0x00002c56) + +0x2c0b : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = map >::value_compare, UDT(0x00002c60) + +0x2c0c : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >, UDT(0x00002ccd) + +0x2c0d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C09 + +0x2c0e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C09 + +0x2c0f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C0E + +0x2c10 : Length = 218, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::iterator, UDT(0x00002c75) + +0x2c11 : Length = 222, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::const_iterator, UDT(0x00002c89) + +0x2c12 : Length = 278, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator<_Tree,map >::_Kfn,ROINameComparator,allocator >::iterator,pair,map >::_Kfn,ROINameComparator,allocator >::const_iterator,pair,map >::_Kfn,ROINameComparator,allocator >::iterator,int>, UDT(0x00002cd4) + +0x2c15 : Length = 278, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = pair<_Tree,map >::_Kfn,ROINameComparator,allocator >::iterator,_Tree,map >::_Kfn,ROINameComparator,allocator >::const_iterator,_Tree >, UDT(0x00002c49) + +0x2c4a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C09 + +0x2c4b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2816 + list[1] = 0x2BF6 + +0x2c4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C09, This type = 0x2C4A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c4b, This adjust = 0 + +0x2c4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C09, This type = 0x2C4A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c4e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C4C, + list[1] = public, VANILLA, 0x2C4D, + +0x2c4f : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2815, first_type + list[1] = LF_NESTTYPE, type = 0x2081, second_type + list[2] = LF_METHOD, count = 2, list = 0x2C4E, name = 'pair' + list[3] = LF_MEMBER, public, type = 0x2815, offset = 0 + member name = 'first' + list[4] = LF_MEMBER, public, type = 0x2081, offset = 4 + member name = 'second' + +0x2c50 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2c4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = pair, UDT(0x00002c50) + +0x2c51 : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function,char const *>, UDT(0x00002cd8) + +0x2c52 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C0A + +0x2c53 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C52 + +0x2c54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2816, Class type = 0x2C0A, This type = 0x2C53, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c32, This adjust = 0 + +0x2c55 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2C51, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2C54, name = 'operator()' + +0x2c56 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2c55, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = map >::_Kfn, UDT(0x00002c56) + +0x2c57 : Length = 122, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function,pair,int>, UDT(0x00002cda) + +0x2c58 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C0B + +0x2c59 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C58 + +0x2c5a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2C0F + list[1] = 0x2C0F + +0x2c5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2C0B, This type = 0x2C59, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c5a, This adjust = 0 + +0x2c5c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C0B + +0x2c5d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2BBD + +0x2c5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0B, This type = 0x2C5C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c5d, This adjust = 0 + +0x2c5f : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2C57, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2C5B, name = 'operator()' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2C5E, name = 'value_compare' + list[3] = LF_MEMBER, public, type = 0x2BBD, offset = 0 + member name = 'comp' + +0x2c60 : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2c5f, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = map >::value_compare, UDT(0x00002c60) + +0x2c61 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit,int>, UDT(0x00002c78) + +0x2c62 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C10 + +0x2c63 : Length = 214, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::_Node, UDT(0x00002cdc) + +0x2c64 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2C63 + +0x2c65 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2C64 + +0x2c66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C10, This type = 0x2C62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C10, This type = 0x2C62, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c68 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C66, + list[1] = public, VANILLA, 0x2C67, + +0x2c69 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C10 + +0x2c6a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C69 + +0x2c6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C0D, Class type = 0x2C10, This type = 0x2C6A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C10, This type = 0x2C62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2c6d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C10 + +0x2c6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C6D, Class type = 0x2C10, This type = 0x2C62, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c6f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C6C, + list[1] = public, VANILLA, 0x2C6E, + +0x2c70 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C69 + +0x2c71 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2C70 + +0x2c72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2C10, This type = 0x2C6A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c71, This adjust = 0 + +0x2c73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C64, Class type = 0x2C10, This type = 0x2C6A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c74 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2C61, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x2C68, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2C6B, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2C6F, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2C6F, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2C72, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2C67, name = '_Dec' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2C67, name = '_Inc' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2C73, name = '_Mynode' + list[9] = LF_MEMBER, protected, type = 0x2C64, offset = 0 + member name = '_Ptr' + +0x2c75 : Length = 218, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2c74, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::iterator, UDT(0x00002c75) + +0x2c76 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator,int>, UDT(0x00002cd6) + +0x2c77 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2C76, offset = 0 + +0x2c78 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2c77, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit,int>, UDT(0x00002c78) + +0x2c79 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C11 + +0x2c7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C11, This type = 0x2C79, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c71, This adjust = 0 + +0x2c7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C11, This type = 0x2C79, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C11, This type = 0x2C79, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c7d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C7A, + list[1] = public, VANILLA, 0x2C7B, + list[2] = public, VANILLA, 0x2C7C, + +0x2c7e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C11 + +0x2c7f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C7E + +0x2c80 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C0F, Class type = 0x2C11, This type = 0x2C7F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C11, Class type = 0x2C11, This type = 0x2C79, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2c82 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C11 + +0x2c83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C82, Class type = 0x2C11, This type = 0x2C79, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c84 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C81, + list[1] = public, VANILLA, 0x2C83, + +0x2c85 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C7E + +0x2c86 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2C85 + +0x2c87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2C11, This type = 0x2C7F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c86, This adjust = 0 + +0x2c88 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2C10, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2C7D, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2C80, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2C84, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2C84, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2C87, name = 'operator==' + +0x2c89 : Length = 222, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2c88, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::const_iterator, UDT(0x00002c89) + +0x2c8a : Length = 210, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x1b60 +NESTED, enum name = _Tree,map >::_Kfn,ROINameComparator,allocator >::_Redbl, UDT(0x00002c8a) + +0x2c8b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C64 + +0x2c8c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C8A + +0x2c8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C8C, Class type = 0x2C0C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2816, Class type = 0x2C0C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C8B, Class type = 0x2C0C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C0D, Class type = 0x2C0C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2c91 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2C09 + +0x2c92 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C0C + +0x2c93 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2C0C + +0x2c94 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C93 + +0x2c95 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2C94 + +0x2c96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c95, This adjust = 0 + +0x2c97 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x2C1C + list[1] = 0x2C1C + list[2] = 0x2BBF + list[3] = T_INT4(0074) + list[4] = 0x2C1D + +0x2c98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x2c97, This adjust = 0 + +0x2c99 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2BBF + list[1] = T_INT4(0074) + list[2] = 0x2C1D + +0x2c9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2c99, This adjust = 0 + +0x2c9b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2C96, + list[1] = public, VANILLA, 0x2C98, + list[2] = public, VANILLA, 0x2C9A, + +0x2c9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2c9d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2C0C + +0x2c9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C9D, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c95, This adjust = 0 + +0x2c9f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C93 + +0x2ca0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C11, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CA0, + list[1] = public, VANILLA, 0x2CA1, + +0x2ca3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C13, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C12, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CA3, + list[1] = public, VANILLA, 0x2CA4, + +0x2ca6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BBB, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ca9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BBD, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2caa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c2e, This adjust = 0 + +0x2cab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c36, This adjust = 0 + +0x2cac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c30, This adjust = 0 + +0x2cad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C14, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c32, This adjust = 0 + +0x2cae : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CAA, + list[1] = public, VANILLA, 0x2CAB, + list[2] = public, VANILLA, 0x2CAC, + list[3] = public, VANILLA, 0x2CAD, + +0x2caf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2815 + +0x2cb0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2CAF + list[1] = 0x2CAF + +0x2cb1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2cb0, This adjust = 0 + +0x2cb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cb3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c36, This adjust = 0 + +0x2cb4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c38, This adjust = 0 + +0x2cb5 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CB1, + list[1] = public, VANILLA, 0x2CB2, + list[2] = public, VANILLA, 0x2CB3, + list[3] = public, VANILLA, 0x2CB4, + +0x2cb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C11, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cb7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cb8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CB6, + list[1] = public, VANILLA, 0x2CB7, + +0x2cb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C16, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C15, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cbc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CBA, + list[1] = public, VANILLA, 0x2CBB, + +0x2cbd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2C9D + +0x2cbe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2cbd, This adjust = 0 + +0x2cbf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2C64 + list[1] = 0x2C8A + +0x2cc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C64, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2cbf, This adjust = 0 + +0x2cc1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2C64 + list[1] = 0x2C64 + +0x2cc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C64, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2cc1, This adjust = 0 + +0x2cc3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x2CC2, + list[1] = protected, VANILLA, 0x2C96, + +0x2cc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2cc5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2C64 + list[1] = 0x2C64 + list[2] = 0x2C0F + +0x2cc6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C10, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2cc5, This adjust = 0 + +0x2cc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C64, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x2cc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C8B, Class type = 0x2C0C, This type = 0x2C9F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C8B, Class type = 0x2C0C, This type = 0x2C92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cca : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x2CC8, + list[1] = protected, VANILLA, 0x2CC9, + +0x2ccb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2C64, Class type = 0x2C0C, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2c65, This adjust = 0 + +0x2ccc : Length = 1654, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x2C8A, _Redbl + list[2] = LF_NESTTYPE, type = 0x2C63, _Node + list[3] = LF_NESTTYPE, type = 0x2C64, _Nodeptr + list[4] = LF_NESTTYPE, type = 0x2C8B, _Nodepref + list[5] = LF_NESTTYPE, type = 0x2816, _Keyref + list[6] = LF_NESTTYPE, type = 0x2C8C, _Rbref + list[7] = LF_NESTTYPE, type = 0x2C0D, _Vref + list[8] = LF_ONEMETHOD, protected, STATIC, index = 0x2C8D, name = '_Color' + list[9] = LF_ONEMETHOD, protected, STATIC, index = 0x2C8E, name = '_Key' + list[10] = LF_ONEMETHOD, protected, STATIC, index = 0x2C8F, name = '_Left' + list[11] = LF_ONEMETHOD, protected, STATIC, index = 0x2C8F, name = '_Parent' + list[12] = LF_ONEMETHOD, protected, STATIC, index = 0x2C8F, name = '_Right' + list[13] = LF_ONEMETHOD, protected, STATIC, index = 0x2C90, name = '_Value' + list[14] = LF_NESTTYPE, type = 0x2C0C, _Myt + list[15] = LF_NESTTYPE, type = T_32PRCHAR(0470), key_type + list[16] = LF_NESTTYPE, type = 0x2C09, value_type + list[17] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[18] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[19] = LF_NESTTYPE, type = 0x2C91, _Tptr + list[20] = LF_NESTTYPE, type = 0x2C1C, _Ctptr + list[21] = LF_NESTTYPE, type = 0x2C0D, reference + list[22] = LF_NESTTYPE, type = 0x2C0F, const_reference + list[23] = LF_NESTTYPE, type = 0x2C10, iterator + list[24] = LF_NESTTYPE, type = 0x2C11, const_iterator + list[25] = LF_NESTTYPE, type = 0x2C12, reverse_iterator + list[26] = LF_NESTTYPE, type = 0x2C13, const_reverse_iterator + list[27] = LF_NESTTYPE, type = 0x2C14, _Pairib + list[28] = LF_NESTTYPE, type = 0x2C15, _Pairii + list[29] = LF_NESTTYPE, type = 0x2C16, _Paircc + list[30] = LF_METHOD, count = 3, list = 0x2C9B, name = '_Tree,map >::_Kfn,ROINameComparator,allocator >' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x2C9C, name = '~_Tree,map >::_Kfn,ROINameComparator,allocator >' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2C9E, name = 'operator=' + list[33] = LF_METHOD, count = 2, list = 0x2CA2, name = 'begin' + list[34] = LF_METHOD, count = 2, list = 0x2CA2, name = 'end' + list[35] = LF_METHOD, count = 2, list = 0x2CA5, name = 'rbegin' + list[36] = LF_METHOD, count = 2, list = 0x2CA5, name = 'rend' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x2CA6, name = 'size' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x2CA6, name = 'max_size' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x2CA7, name = 'empty' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2CA8, name = 'get_allocator' + list[41] = LF_ONEMETHOD, public, VANILLA, index = 0x2CA9, name = 'key_comp' + list[42] = LF_METHOD, count = 4, list = 0x2CAE, name = 'insert' + list[43] = LF_METHOD, count = 4, list = 0x2CB5, name = 'erase' + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2C9C, name = 'clear' + list[45] = LF_METHOD, count = 2, list = 0x2CB8, name = 'find' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x2CB9, name = 'count' + list[47] = LF_METHOD, count = 2, list = 0x2CB8, name = 'lower_bound' + list[48] = LF_METHOD, count = 2, list = 0x2CB8, name = 'upper_bound' + list[49] = LF_METHOD, count = 2, list = 0x2CBC, name = 'equal_range' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x2CBE, name = 'swap' + list[51] = LF_STATICMEMBER, protected, type = 0x2C64 member name = '_Nil' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC0, name = '_Buynode' + list[53] = LF_METHOD, count = 2, list = 0x2CC3, name = '_Copy' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC4, name = '_Erase' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC4, name = '_Freenode' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x2C9C, name = '_Init' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC6, name = '_Insert' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC7, name = '_Lbound' + list[59] = LF_METHOD, count = 2, list = 0x2CCA, name = '_Lmost' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC4, name = '_Lrotate' + list[61] = LF_ONEMETHOD, protected, STATIC, index = 0x2CCB, name = '_Max' + list[62] = LF_ONEMETHOD, protected, STATIC, index = 0x2CCB, name = '_Min' + list[63] = LF_METHOD, count = 2, list = 0x2CCA, name = '_Rmost' + list[64] = LF_METHOD, count = 2, list = 0x2CCA, name = '_Root' + list[65] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC4, name = '_Rrotate' + list[66] = LF_ONEMETHOD, protected, VANILLA, index = 0x2CC7, name = '_Ubound' + list[67] = LF_MEMBER, protected, type = 0x2BBB, offset = 0 + member name = 'allocator' + list[68] = LF_MEMBER, protected, type = 0x2BBD, offset = 1 + member name = 'key_compare' + list[69] = LF_MEMBER, protected, type = 0x2C64, offset = 4 + member name = '_Head' + list[70] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = '_Multi' + list[71] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = '_Size' + +0x2ccd : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 92, field list type 0x2ccc, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >, UDT(0x00002ccd) + +0x2cce : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2C14 + +0x2ccf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2C70 + list[1] = 0x1BAD + +0x2cd0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C14, This type = 0x2CCE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2ccf, This adjust = 0 + +0x2cd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2C14, This type = 0x2CCE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cd2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2CD0, + list[1] = public, VANILLA, 0x2CD1, + +0x2cd3 : Length = 294, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2C10, first_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), second_type + list[2] = LF_METHOD, count = 2, list = 0x2CD2, name = 'pair<_Tree,map >::_Kfn,ROINameComparator,allocator >::iterator,int>' + list[3] = LF_MEMBER, public, type = 0x2C10, offset = 0 + member name = 'first' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + +0x2cd4 : Length = 226, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2cd3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = pair<_Tree,map >::_Kfn,ROINameComparator,allocator >::iterator,int>, UDT(0x00002cd4) + +0x2cd5 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x2C09, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x2cd6 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2cd5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator,int>, UDT(0x00002cd6) + +0x2cd7 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2C09, argument_type + list[1] = LF_NESTTYPE, type = T_32PRCHAR(0470), result_type + +0x2cd8 : Length = 90, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2cd7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function,char const *>, UDT(0x00002cd8) + +0x2cd9 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2C09, first_argument_type + list[1] = LF_NESTTYPE, type = 0x2C09, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2cda : Length = 122, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2cd9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function,pair,int>, UDT(0x00002cda) + +0x2cdb : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Left' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Parent' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 8 + member name = '_Right' + list[3] = LF_MEMBER, public, type = 0x2C09, offset = 12 + member name = '_Value' + list[4] = LF_MEMBER, public, type = 0x2C8A, offset = 20 + member name = '_Color' + +0x2cdc : Length = 214, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2cdb, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _Tree,map >::_Kfn,ROINameComparator,allocator >::_Node, UDT(0x00002cdc) + +0x2cdd : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrListCursor, UDT(0x00002d2f) + +0x2cde : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPresenterListCursor, UDT(0x00002ce4) + +0x2cdf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CDE + +0x2ce0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2072 + +0x2ce1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CDE, This type = 0x2CDF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ce0, This adjust = 0 + +0x2ce2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CDE, This type = 0x2CDF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ce3 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2CDD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2CE1, name = 'MxPresenterListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CE2, name = '~MxPresenterListCursor' + +0x2ce4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2ce3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxPresenterListCursor, UDT(0x00002ce4) + +0x2ce5 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrListCursor, UDT(0x00002d37) + +0x2ce6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionListCursor, UDT(0x00002d71) + +0x2ce7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CE6 + +0x2ce8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2040 + +0x2ce9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE6, This type = 0x2CE7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ce8, This adjust = 0 + +0x2cea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE6, This type = 0x2CE7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ceb : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2CE5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2CE9, name = 'MxRegionListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CEA, name = '~MxRegionListCursor' + +0x2cec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2ceb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +0x2ced : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CE5 + +0x2cee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE5, This type = 0x2CED, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cef : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrListCursor, UDT(0x00002d41) + +0x2cf0 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionLeftRightListCursor, UDT(0x00002cf6) + +0x2cf1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CF0 + +0x2cf2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x201A + +0x2cf3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CF0, This type = 0x2CF1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2cf2, This adjust = 0 + +0x2cf4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CF0, This type = 0x2CF1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cf5 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2CEF, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2CF3, name = 'MxRegionLeftRightListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CF4, name = '~MxRegionLeftRightListCursor' + +0x2cf6 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2cf5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionLeftRightListCursor, UDT(0x00002cf6) + +0x2cf7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CEF + +0x2cf8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CEF, This type = 0x2CF7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cf9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamChunkListCursor, UDT(0x00002cff) + +0x2cfa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CF9 + +0x2cfb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1EEB + +0x2cfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CF9, This type = 0x2CFA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2cfb, This adjust = 0 + +0x2cfd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CF9, This type = 0x2CFA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2cfe : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1583, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2CFC, name = 'MxStreamChunkListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CFD, name = '~MxStreamChunkListCursor' + +0x2cff : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2cfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxStreamChunkListCursor, UDT(0x00002cff) + +0x2d00 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2CDD + +0x2d01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CDD, This type = 0x2D00, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d02 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDSActionListCursor, UDT(0x00002d08) + +0x2d03 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D02 + +0x2d04 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x26B3 + +0x2d05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D02, This type = 0x2D03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d04, This adjust = 0 + +0x2d06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D02, This type = 0x2D03, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d07 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x163A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D05, name = 'MxDSActionListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D06, name = '~MxDSActionListCursor' + +0x2d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxDSActionListCursor, UDT(0x00002d08) + +0x2d09 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStringListCursor, UDT(0x00002d0f) + +0x2d0a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D09 + +0x2d0b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x26C5 + +0x2d0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D09, This type = 0x2D0A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d0b, This adjust = 0 + +0x2d0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D09, This type = 0x2D0A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d0e : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1659, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D0C, name = 'MxStringListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D0D, name = '~MxStringListCursor' + +0x2d0f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxStringListCursor, UDT(0x00002d0f) + +0x2d10 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoWorldList, UDT(0x00003628) + +0x2d11 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D10 + +0x2d12 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x128A + list[1] = 0x128A + +0x2d13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x2D10, This type = 0x2D11, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2d12, This adjust = 0 + +0x2d14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D10, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x2d15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000362b) + +0x2d16 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D15 + +0x2d17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D15, This type = 0x2D16, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D15, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x2d19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x2D15, This type = 0x2D16, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2d12, This adjust = 0 + +0x2d1a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x00003630) + +0x2d1b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D1A + +0x2d1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1A, This type = 0x2D1B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d1d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x0000371b) + +0x2d1e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D1D + +0x2d1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d20 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2D10 + +0x2d21 : Length = 1302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x128A, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_unkLegoSaveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk13c' + +0x2d22 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x2d21, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x2d23 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2CF9 + +0x2d24 : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1581, name = 'MxMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = '~MxMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1598, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A36, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A37, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'StreamingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'RepeatingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'DoneTickle' + list[9] = LF_METHOD, count = 2, list = 0x1EE9, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x158F, name = 'StartAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'EndAction' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1582, name = 'Enable' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1599, + vfptr offset = 88, name = 'AppendChunk' + list[14] = LF_MEMBER, protected, type = 0x1EEA, offset = 64 + member name = 'm_subscriber' + list[15] = LF_MEMBER, protected, type = 0x1EEB, offset = 68 + member name = 'm_chunks' + list[16] = LF_MEMBER, protected, type = 0x2D23, offset = 72 + member name = 'm_cursor' + list[17] = LF_MEMBER, protected, type = 0x11CE, offset = 76 + member name = 'm_currentChunk' + list[18] = LF_ONEMETHOD, protected, VANILLA, index = 0x1581, name = 'Init' + list[19] = LF_ONEMETHOD, protected, VANILLA, index = 0x158E, name = 'FUN_100b5650' + list[20] = LF_ONEMETHOD, protected, VANILLA, index = 0x158E, name = 'NextChunk' + +0x2d25 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x2d24, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +0x2d26 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2D02 + +0x2d27 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1699, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x162E, name = 'MxDSSerialAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x162E, name = '~MxDSSerialAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1636, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1637, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1631, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1632, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1639, name = 'GetDuration' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1633, name = 'SetDuration' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1638, name = 'Clone' + list[10] = LF_MEMBER, private, type = 0x2D26, offset = 156 + member name = 'm_cursor' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 160 + member name = 'm_unk0xa0' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 164 + member name = 'm_unk0xa4' + +0x2d28 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2d27, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 168, class name = MxDSSerialAction, UDT(0x00002d28) + +0x2d29 : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[13] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[14] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[15] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x2d2a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2d29, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x2d2b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1837 + +0x2d2c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D2B + +0x2d2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CDD, This type = 0x2D00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d2c, This adjust = 0 + +0x2d2e : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D2D, name = 'MxPtrListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D01, name = '~MxPtrListCursor' + +0x2d2f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d2e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxPtrListCursor, UDT(0x00002d2f) + +0x2d30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D10, This type = 0x2D11, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d31 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D1A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D30, name = 'LegoWorldList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D13, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2D14, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D30, name = '~LegoWorldList' + +0x2d32 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2d31, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoWorldList, UDT(0x00003628) + +0x2d33 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x13E3 + +0x2d34 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D33 + +0x2d35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE5, This type = 0x2CED, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d34, This adjust = 0 + +0x2d36 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13F2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D35, name = 'MxPtrListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CEE, name = '~MxPtrListCursor' + +0x2d37 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d36, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxPtrListCursor, UDT(0x00002d37) + +0x2d38 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1401 + +0x2d39 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D38 + +0x2d3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CEF, This type = 0x2CF7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d39, This adjust = 0 + +0x2d3b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2CEF + +0x2d3c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2CEF + +0x2d3d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D3C + +0x2d3e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D3D + +0x2d3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D3B, Class type = 0x2CEF, This type = 0x2CF7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d3e, This adjust = 0 + +0x2d40 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x140F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D3A, name = 'MxPtrListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D3F, name = 'operator=' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CF8, name = '~MxPtrListCursor' + +0x2d41 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2d40, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxPtrListCursor, UDT(0x00002d41) + +0x2d42 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x19b1 + +0x2d43 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2D42 + +0x2d44 : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D17, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D17, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2D18, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D19, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x2D43, offset = 12 + member name = 'm_customDestructor' + +0x2d45 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2d44, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000362b) + +0x2d46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x2d47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d48 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D43 + +0x2d49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d48, This adjust = 0 + +0x2d4a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00002d60) + +0x2d4b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2D4A + +0x2d4c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D4B + +0x2d4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d4c, This adjust = 0 + +0x2d4e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x128A + list[1] = 0x2D4B + list[2] = 0x2D4B + +0x2d4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D4B, Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2d4e, This adjust = 0 + +0x2d50 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x2D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D1F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D47, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D49, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2D4B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2D4B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4D, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4F, name = '_InsertEntry' + +0x2d51 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2d50, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +0x2d52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1A, This type = 0x2D1B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d48, This adjust = 0 + +0x2d53 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D1D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D52, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D1C, name = '~MxPtrList' + +0x2d54 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d53, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003630) + +0x2d55 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D4A + +0x2d56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2d4e, This adjust = 0 + +0x2d57 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x128A + list[1] = 0x2D4B + +0x2d58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2d57, This adjust = 0 + +0x2d59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d5a : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2D56, + list[1] = public, VANILLA, 0x2D58, + list[2] = public, VANILLA, 0x2D59, + +0x2d5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x128A, Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D4B, Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x2d5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D4A, This type = 0x2D55, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d4c, This adjust = 0 + +0x2d5f : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x2D5A, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5B, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5C, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5C, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5D, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5E, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D5E, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x128A, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x2D4B, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x2D4B, offset = 8 + member name = 'm_next' + +0x2d60 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2d5f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00002d60) + +0x2d61 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChild, UDT(0x00002d6b) + +0x2d62 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursorChildChild, UDT(0x00002d66) + +0x2d63 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D62 + +0x2d64 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D62, This type = 0x2D63, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x2d65 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D61, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D64, name = 'MxListCursorChildChild' + +0x2d66 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2d65, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x00002d66) + +0x2d67 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D61 + +0x2d68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D61, This type = 0x2D67, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D61, This type = 0x2D67, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x2d6a : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13F2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D69, name = 'MxListCursorChild' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D68, name = '~MxListCursorChild' + +0x2d6b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00002d6b) + +0x2d6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE6, This type = 0x2CE7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13ee, This adjust = 0 + +0x2d6d : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D61, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D6C, name = 'MxRegionListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CEA, name = '~MxRegionListCursor' + +0x2d6e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +0x2d6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2CE6, This type = 0x2CE7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d34, This adjust = 0 + +0x2d70 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2CE5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D6F, name = 'MxRegionListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2CEA, name = '~MxRegionListCursor' + +0x2d71 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +0x2d72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x139D, This type = 0x139E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x2d73 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00002e00) + +0x2d74 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D73 + +0x2d75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d76 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCompositePresenterList, UDT(0x00003e08) + +0x2d77 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D76 + +0x2d78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D76, This type = 0x2D77, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d79 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00002e47) + +0x2d7a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D79 + +0x2d7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D79, This type = 0x2D7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x2d7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x2d7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x2d7f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00002da8) + +0x2d80 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00002d94) + +0x2d81 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D80 + +0x2d82 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00002da5) + +0x2d83 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2D82 + +0x2d84 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D83 + +0x2d85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D80, This type = 0x2D81, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d84, This adjust = 0 + +0x2d86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D80, This type = 0x2D81, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d87 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2D85, + list[1] = public, VANILLA, 0x2D86, + +0x2d88 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2D80 + +0x2d89 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2D88 + +0x2d8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x2D80, This type = 0x2D89, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2D80, This type = 0x2D81, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2d8c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D80 + +0x2d8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D8C, Class type = 0x2D80, This type = 0x2D81, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d8e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2D8B, + list[1] = public, VANILLA, 0x2D8D, + +0x2d8f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D88 + +0x2d90 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D8F + +0x2d91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2D80, This type = 0x2D89, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d90, This adjust = 0 + +0x2d92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D83, Class type = 0x2D80, This type = 0x2D89, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2d93 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D7F, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x2D87, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2D8A, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2D8E, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2D8E, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D91, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D92, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x2D83, offset = 0 + member name = '_Ptr' + +0x2d94 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2d93, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00002d94) + +0x2d95 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1442, This adjust = 0 + +0x2d96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x2d97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1442, This adjust = 0 + +0x2d98 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AF, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AF, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, private, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x2d99 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2d98, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x2d9a : Length = 774, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FC7, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x11E5, name = 'MxVideoPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = '~MxVideoPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3A, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3B, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StreamingTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'RepeatingTickle' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'Unk5Tickle' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'AddToManager' + list[12] = LF_METHOD, count = 2, list = 0x1FC8, name = 'Destroy' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'EndAction' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'PutData' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121B, name = 'IsHit' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 92, name = 'LoadHeader' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 96, name = 'CreateBitmap' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 100, name = 'NextFrame' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 104, name = 'LoadFrame' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 108, name = 'VTable0x6c' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 112, name = 'RealizePalette' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 116, name = 'VTable0x74' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E8, + vfptr offset = 120, name = 'VTable0x78' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 124, name = 'VTable0x7c' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 128, name = 'GetWidth' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 132, name = 'GetHeight' + list[27] = LF_NESTTYPE, type = 0x11EB, AlphaMask + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC9, name = 'GetBitmap' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x11E5, name = 'Init' + list[30] = LF_MEMBER, protected, type = 0x1718, offset = 80 + member name = 'm_bitmap' + list[31] = LF_MEMBER, protected, type = 0x1FCA, offset = 84 + member name = 'm_alpha' + list[32] = LF_MEMBER, protected, type = 0x11E7, offset = 88 + member name = 'm_unk58' + list[33] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 92 + member name = 'm_unk5c' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 94 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 96 + member name = 'm_unk60' + +0x2d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x2d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x2d9c : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15D8, name = 'MxFlcPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = '~MxFlcPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E5, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DB, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15DC, name = 'LoadHeader' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = 'CreateBitmap' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15D8, name = 'RealizePalette' + list[8] = LF_MEMBER, protected, type = 0x2095, offset = 100 + member name = 'm_flicHeader' + +0x2d9d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2d9c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = MxFlcPresenter, UDT(0x00002d9d) + +0x2d9e : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x139F, name = 'MxStillPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = '~MxStillPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1509, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x150A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'StartingTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'StreamingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'RepeatingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'ParseExtra' + list[9] = LF_METHOD, count = 2, list = 0x217D, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A0, name = 'Enable' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A1, name = 'LoadHeader' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'CreateBitmap' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'NextFrame' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13A1, name = 'LoadFrame' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x139F, name = 'RealizePalette' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D72, + vfptr offset = 136, name = 'VTable0x88' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13A4, + vfptr offset = 140, name = 'Clone' + list[18] = LF_MEMBER, private, type = T_LONG(0012), offset = 100 + member name = 'm_chunkTime' + list[19] = LF_MEMBER, private, type = 0x17C2, offset = 104 + member name = 'm_bitmapInfo' + +0x2d9f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x2d9e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 108, class name = MxStillPresenter, UDT(0x00002d9f) + +0x2da0 : Length = 490, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16BA, name = 'MxDSMediaAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BA, name = '~MxDSMediaAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16C1, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16C2, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C4, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C5, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x16C3, name = 'CopyMediaSrcPath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetMediaFormat' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetPaletteManagement' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x231B, name = 'GetSustainTime' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[14] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 152 + member name = 'm_mediaSrcPath' + list[15] = LF_MEMBER, private, type = 0x231D, offset = 156 + member name = 'm_unk9c' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 164 + member name = 'm_framesPerSecond' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 168 + member name = 'm_mediaFormat' + list[18] = LF_MEMBER, private, type = T_INT4(0074), offset = 172 + member name = 'm_paletteManagement' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 176 + member name = 'm_sustainTime' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 180 + member name = 'm_unkb4' + +0x2da1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x2da0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +0x2da2 : Length = 322, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_MEMBER, public, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[13] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + +0x2da3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x2da2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x2da4 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x1243, offset = 8 + member name = '_Value' + +0x2da5 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2da4, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x00002da5) + +0x2da6 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00002e49) + +0x2da7 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2DA6, offset = 0 + +0x2da8 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x2da7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00002da8) + +0x2da9 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00002e1f) + +0x2daa : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00002e5a) + +0x2dab : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1243 + +0x2dac : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x143D + +0x2dad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x143D + +0x2dae : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00002e6b) + +0x2daf : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxPresenter *,MxPresenter * &,MxPresenter * *,int>, UDT(0x00002e2d) + +0x2db0 : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxPresenter *,MxPresenter * const &,MxPresenter * const *,int>, UDT(0x00002e3c) + +0x2db1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DAA + +0x2db2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2DB1 + +0x2db3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2DAE + list[1] = 0x2DAE + list[2] = 0x2DB2 + +0x2db4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2db3, This adjust = 0 + +0x2db5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2D73 + +0x2db6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2DB5 + +0x2db7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DB6 + +0x2db8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2db7, This adjust = 0 + +0x2db9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x2DAD + list[2] = 0x2DB2 + +0x2dba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2db9, This adjust = 0 + +0x2dbb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DB2 + +0x2dbc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dbb, This adjust = 0 + +0x2dbd : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DB4, + list[1] = public, VANILLA, 0x2DB8, + list[2] = public, VANILLA, 0x2DBA, + list[3] = public, VANILLA, 0x2DBC, + +0x2dbe : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D73 + +0x2dbf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DBE, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2db7, This adjust = 0 + +0x2dc0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DB5 + +0x2dc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAE, Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dc3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DC1, + list[1] = public, VANILLA, 0x2DC2, + +0x2dc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DB0, Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dc5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAF, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dc6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DC4, + list[1] = public, VANILLA, 0x2DC5, + +0x2dc7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x1243 + +0x2dc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dc7, This adjust = 0 + +0x2dc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dcb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAA, Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dce : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DCC, + list[1] = public, VANILLA, 0x2DCD, + +0x2dcf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DAD + +0x2dd0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dcf, This adjust = 0 + +0x2dd1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x2DAD + +0x2dd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dd1, This adjust = 0 + +0x2dd3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2DAE + list[1] = 0x2DAE + +0x2dd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dd3, This adjust = 0 + +0x2dd5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DD2, + list[1] = public, VANILLA, 0x2DD4, + +0x2dd6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2D80 + list[1] = 0x2DAE + list[2] = 0x2DAE + +0x2dd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2dd6, This adjust = 0 + +0x2dd8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2D80 + list[1] = 0x2DAC + list[2] = 0x2DAC + +0x2dd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2dd8, This adjust = 0 + +0x2dda : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2D80 + list[1] = T_UINT4(0075) + list[2] = 0x2DAD + +0x2ddb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2dda, This adjust = 0 + +0x2ddc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2D80 + list[1] = 0x2DAD + +0x2ddd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2ddc, This adjust = 0 + +0x2dde : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DD7, + list[1] = public, VANILLA, 0x2DD9, + list[2] = public, VANILLA, 0x2DDB, + list[3] = public, VANILLA, 0x2DDD, + +0x2ddf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2D80 + list[1] = 0x2D80 + +0x2de0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2ddf, This adjust = 0 + +0x2de1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2D80 + +0x2de2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2de1, This adjust = 0 + +0x2de3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DE0, + list[1] = public, VANILLA, 0x2DE2, + +0x2de4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DBE + +0x2de5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2de4, This adjust = 0 + +0x2de6 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x2D80 + list[1] = 0x2DBE + list[2] = 0x2D80 + list[3] = 0x2D80 + +0x2de7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2de6, This adjust = 0 + +0x2de8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2D80 + list[1] = 0x2DBE + list[2] = 0x2D80 + +0x2de9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2de8, This adjust = 0 + +0x2dea : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2D80 + list[1] = 0x2DBE + +0x2deb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dea, This adjust = 0 + +0x2dec : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DE7, + list[1] = public, VANILLA, 0x2DE9, + list[2] = public, VANILLA, 0x2DEB, + +0x2ded : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00002e11) + +0x2dee : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DED + +0x2def : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dee, This adjust = 0 + +0x2df0 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00002e07) + +0x2df1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DF0 + +0x2df2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2df1, This adjust = 0 + +0x2df3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DF2, + list[1] = public, VANILLA, 0x2D75, + +0x2df4 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00002e1a) + +0x2df5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2DBE + list[1] = 0x2DF4 + +0x2df6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2df5, This adjust = 0 + +0x2df7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DF6, + list[1] = public, VANILLA, 0x2DE5, + +0x2df8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DF4 + +0x2df9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2df8, This adjust = 0 + +0x2dfa : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2DF9, + list[1] = public, VANILLA, 0x2D75, + +0x2dfb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2D83 + list[1] = 0x2D83 + +0x2dfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D83, Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dfb, This adjust = 0 + +0x2dfd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2D74, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d84, This adjust = 0 + +0x2dfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D73, This type = 0x2DC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2dff : Length = 1130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x2D82, _Node + list[2] = LF_NESTTYPE, type = 0x2D83, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x2DA9, _Acc + list[4] = LF_NESTTYPE, type = 0x2D73, _Myt + list[5] = LF_NESTTYPE, type = 0x2DAA, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x2DAB, _Tptr + list[9] = LF_NESTTYPE, type = 0x2DAC, _Ctptr + list[10] = LF_NESTTYPE, type = 0x270F, reference + list[11] = LF_NESTTYPE, type = 0x2DAD, const_reference + list[12] = LF_NESTTYPE, type = 0x1243, value_type + list[13] = LF_NESTTYPE, type = 0x2D80, iterator + list[14] = LF_NESTTYPE, type = 0x2DAE, const_iterator + list[15] = LF_NESTTYPE, type = 0x2DAF, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x2DB0, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x2DBD, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x2DAE, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2D75, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x2DBF, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x2DC3, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x2DC3, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x2DC6, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x2DC6, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x2DC8, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x2DC9, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x2DC9, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x2DCA, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2DCB, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x2DCE, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x2DCE, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x2DD0, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x2D75, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x2DD0, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x2D75, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x2DD5, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x2DDE, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x2DE3, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x2D75, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x2DE5, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x2DEC, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x2DD0, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x2DED, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x2DEF, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x2DF3, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x2DF0, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x2DF7, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x2DF4, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x2DFA, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x2D75, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x2DFC, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x2DFD, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x2DE7, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x2DFE, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x2DAA, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x2D83, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x2e00 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x2dff, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00002e00) + +0x2e01 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00002e15) + +0x2e02 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DF0 + +0x2e03 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E02 + +0x2e04 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2DAD + list[1] = 0x2DAD + +0x2e05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2DF0, This type = 0x2E03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2e04, This adjust = 0 + +0x2e06 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2E01, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2E05, name = 'operator()' + +0x2e07 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2e06, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00002e07) + +0x2e08 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00002e13) + +0x2e09 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DED + +0x2e0a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2E02 + +0x2e0b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E0A + list[1] = 0x2DAD + +0x2e0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DED, This type = 0x2E09, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2e0b, This adjust = 0 + +0x2e0d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DED + +0x2e0e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E0D + +0x2e0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2DED, This type = 0x2E0E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dcf, This adjust = 0 + +0x2e10 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2E08, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2E0C, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2E0F, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x2DF0, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x1243, offset = 4 + member name = 'value' + +0x2e11 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2e10, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = binder2nd >, UDT(0x00002e11) + +0x2e12 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1243, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2e13 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2e12, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00002e13) + +0x2e14 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1243, first_argument_type + list[1] = LF_NESTTYPE, type = 0x1243, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x2e15 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2e14, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00002e15) + +0x2e16 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DF4 + +0x2e17 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E16 + +0x2e18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2DF4, This type = 0x2E17, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2e04, This adjust = 0 + +0x2e19 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2E01, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2E18, name = 'operator()' + +0x2e1a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2e19, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00002e1a) + +0x2e1b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D83 + +0x2e1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E1B, Class type = 0x2DA9, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2d84, This adjust = 0 + +0x2e1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x2DA9, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x2d84, This adjust = 0 + +0x2e1e : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x2E1B, _Nodepref + list[1] = LF_NESTTYPE, type = 0x270F, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2E1C, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x2E1C, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x2E1D, name = '_Value' + +0x2e1f : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2e1e, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00002e1f) + +0x2e20 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DAF + +0x2e21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAF, This type = 0x2E20, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2de1, This adjust = 0 + +0x2e22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAF, This type = 0x2E20, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e23 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E21, + list[1] = public, VANILLA, 0x2E22, + +0x2e24 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DAF + +0x2e25 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E24 + +0x2e26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2D80, Class type = 0x2DAF, This type = 0x2E25, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x2DAF, This type = 0x2E25, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAF, Class type = 0x2DAF, This type = 0x2E20, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2e29 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2DAF + +0x2e2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E29, Class type = 0x2DAF, This type = 0x2E20, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e2b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E28, + list[1] = public, VANILLA, 0x2E2A, + +0x2e2c : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D7F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2DAF, _Myt + list[2] = LF_NESTTYPE, type = 0x2D80, iter_type + list[3] = LF_NESTTYPE, type = 0x1243, value_type + list[4] = LF_NESTTYPE, type = 0x270F, reference_type + list[5] = LF_NESTTYPE, type = 0x2DAB, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2E23, name = 'reverse_bidirectional_iterator >::iterator,MxPresenter *,MxPresenter * &,MxPresenter * *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2E26, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2E27, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2E2B, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2E2B, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2D80, offset = 0 + member name = 'current' + +0x2e2d : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2e2c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxPresenter *,MxPresenter * &,MxPresenter * *,int>, UDT(0x00002e2d) + +0x2e2e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DB0 + +0x2e2f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DAE + +0x2e30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DB0, This type = 0x2E2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e2f, This adjust = 0 + +0x2e31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DB0, This type = 0x2E2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e32 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E30, + list[1] = public, VANILLA, 0x2E31, + +0x2e33 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DB0 + +0x2e34 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E33 + +0x2e35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAE, Class type = 0x2DB0, This type = 0x2E34, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x2DB0, This type = 0x2E34, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e37 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DB0, Class type = 0x2DB0, This type = 0x2E2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2e38 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2DB0 + +0x2e39 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E38, Class type = 0x2DB0, This type = 0x2E2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e3a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E37, + list[1] = public, VANILLA, 0x2E39, + +0x2e3b : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D7F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2DB0, _Myt + list[2] = LF_NESTTYPE, type = 0x2DAE, iter_type + list[3] = LF_NESTTYPE, type = 0x1243, value_type + list[4] = LF_NESTTYPE, type = 0x2DAD, reference_type + list[5] = LF_NESTTYPE, type = 0x2DAC, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x2E32, name = 'reverse_bidirectional_iterator >::const_iterator,MxPresenter *,MxPresenter * const &,MxPresenter * const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2E35, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2E36, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x2E3A, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x2E3A, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x2DAE, offset = 0 + member name = 'current' + +0x2e3c : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2e3b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxPresenter *,MxPresenter * const &,MxPresenter * const *,int>, UDT(0x00002e3c) + +0x2e3d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2D79 + +0x2e3e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2E3D + +0x2e3f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E3E + +0x2e40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D79, This type = 0x2D7A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e3f, This adjust = 0 + +0x2e41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D79, This type = 0x2D7A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dd1, This adjust = 0 + +0x2e42 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E40, + list[1] = public, VANILLA, 0x2E41, + list[2] = public, VANILLA, 0x2D7B, + +0x2e43 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2D79 + +0x2e44 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E43 + +0x2e45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D79, This type = 0x2D7A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e44, This adjust = 0 + +0x2e46 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D73, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2D79, _Myt + list[2] = LF_NESTTYPE, type = 0x2DAA, _A + list[3] = LF_METHOD, count = 2, list = 0x2E42, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2E45, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D7B, name = '~List' + +0x2e47 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00002e47) + +0x2e48 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x1243, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x2e49 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2e48, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00002e49) + +0x2e4a : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D79, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D78, name = 'MxCompositePresenterList' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D78, name = '~MxCompositePresenterList' + +0x2e4b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2e4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxCompositePresenterList, UDT(0x00003e08) + +0x2e4c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DB1 + +0x2e4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAC, Class type = 0x2DAA, This type = 0x2E4C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dcf, This adjust = 0 + +0x2e4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAB, Class type = 0x2DAA, This type = 0x2E4C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2710, This adjust = 0 + +0x2e4f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E4D, + list[1] = public, VANILLA, 0x2E4E, + +0x2e50 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DAA + +0x2e51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAB, Class type = 0x2DAA, This type = 0x2E50, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x2e52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x2DAA, This type = 0x2E50, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x2e53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAA, This type = 0x2E50, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x2e54 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2DAB + list[1] = 0x2DAD + +0x2e55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAA, This type = 0x2E50, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2e54, This adjust = 0 + +0x2e56 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2DAB + +0x2e57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAA, This type = 0x2E50, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e56, This adjust = 0 + +0x2e58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x2DAA, This type = 0x2E4C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e59 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x2DAB, pointer + list[3] = LF_NESTTYPE, type = 0x2DAC, const_pointer + list[4] = LF_NESTTYPE, type = 0x270F, reference + list[5] = LF_NESTTYPE, type = 0x2DAD, const_reference + list[6] = LF_NESTTYPE, type = 0x1243, value_type + list[7] = LF_METHOD, count = 2, list = 0x2E4F, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2E51, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2E52, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2E53, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2E55, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2E57, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2E58, name = 'max_size' + +0x2e5a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2e59, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00002e5a) + +0x2e5b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2DAE + +0x2e5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAE, This type = 0x2E5B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d90, This adjust = 0 + +0x2e5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAE, This type = 0x2E5B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d84, This adjust = 0 + +0x2e5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2DAE, This type = 0x2E5B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e5f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E5C, + list[1] = public, VANILLA, 0x2E5D, + list[2] = public, VANILLA, 0x2E5E, + +0x2e60 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2DAE + +0x2e61 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E60 + +0x2e62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x2DAE, This type = 0x2E61, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAE, Class type = 0x2DAE, This type = 0x2E5B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2e64 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2DAE + +0x2e65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E64, Class type = 0x2DAE, This type = 0x2E5B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e66 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2E63, + list[1] = public, VANILLA, 0x2E65, + +0x2e67 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2E60 + +0x2e68 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E67 + +0x2e69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2DAE, This type = 0x2E61, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e68, This adjust = 0 + +0x2e6a : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D80, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x2E5F, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2E62, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x2E66, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x2E66, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2E69, name = 'operator==' + +0x2e6b : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2e6a, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00002e6b) + +0x2e6c : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'FromParent' + list[1] = LF_ENUMERATE, public, value = 1, name = 'FromFrame' + list[2] = LF_ENUMERATE, public, value = 2, name = 'FromMesh' + +0x2e6d : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x2e6c + enum name = Tgl::MaterialMode, UDT(0x00002e6d) + +0x2e6e : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMWRAP_FLAT' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMWRAP_CYLINDER' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMWRAP_SPHERE' + list[3] = LF_ENUMERATE, public, value = 3, name = 'D3DRMWRAP_CHROME' + +0x2e6f : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x2e6e + enum name = _D3DRMWRAPTYPE, UDT(0x00002e6f) + +0x2e70 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMXOF_BINARY' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMXOF_COMPRESSED' + list[2] = LF_ENUMERATE, public, value = 2, name = 'D3DRMXOF_TEXT' + +0x2e71 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 3, type = T_INT4(0074) field list type 0x2e70 + enum name = _D3DRMXOFFORMAT, UDT(0x00002e71) + +0x2e72 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'D3DRMCOLOR_FROMFACE' + list[1] = LF_ENUMERATE, public, value = 1, name = 'D3DRMCOLOR_FROMVERTEX' + +0x2e73 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x2e72 + enum name = _D3DRMCOLORSOURCE, UDT(0x00002e73) + +0x2e74 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ViewportAppData, UDT(0x00004d4d) + +0x2e75 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E74 + +0x2e76 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRM, UDT(0x000030c3) + +0x2e77 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E76 + +0x2e78 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E77 + +0x2e79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E74, This type = 0x2E75, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e78, This adjust = 0 + +0x2e7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E74, This type = 0x2E75, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e7b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMFrame, UDT(0x00002fb2) + +0x2e7c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E7B + +0x2e7d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMFrameArray, UDT(0x00002fd6) + +0x2e7e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E7D + +0x2e7f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::ViewImpl, UDT(0x00004d3c) + +0x2e80 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMViewport, UDT(0x00002f53) + +0x2e81 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E80 + +0x2e82 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E77 + list[1] = 0x2E81 + list[2] = 0x2E7C + +0x2e83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 3, Arg list type = 0x2e82, This adjust = 0 + +0x2e84 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = 0x2E81 + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = 0x2864 + list[4] = T_INT4(0074) + list[5] = 0x2865 + list[6] = 0x1934 + +0x2e85 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x100D, Call type = C Near + Func attr = none + # Parms = 7, Arg list type = 0x2e84 + +0x2e86 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E7F + +0x2e87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2858, This adjust = 0 + +0x2e89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285a, This adjust = 0 + +0x2e8a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E74 + +0x2e8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285c, This adjust = 0 + +0x2e8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x2e8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x2e8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2861, This adjust = 0 + +0x2e90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x2866, This adjust = 0 + +0x2e91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x2e92 : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 'x' + list[1] = LF_MEMBER, public, type = T_REAL32(0040), offset = 4 + member name = 'y' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'z' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'w' + +0x2e93 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2e92, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DRMVECTOR4D, UDT(0x00002e93) + +0x2e94 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::UnkImpl, UDT(0x00003058) + +0x2e95 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E94 + +0x2e96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2E94, This type = 0x2E95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e97 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x27FD + list[3] = 0x27FD + list[4] = 0x27FF + list[5] = T_ULONG(0022) + list[6] = T_32PULONG(0422) + +0x2e98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E94, This type = 0x2E95, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x2e97, This adjust = 0 + +0x2e99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E94, This type = 0x2E95, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x2e9a : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2945, offset = 0 + member name = 'min' + list[1] = LF_MEMBER, public, type = 0x2945, offset = 12 + member name = 'max' + +0x2e9b : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2e9a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _D3DRMBOX, UDT(0x00002e9b) + +0x2e9c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Tgl::Unk, UDT(0x0000305d) + +0x2e9d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E9C + +0x2e9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E9D, Class type = 0x2E94, This type = 0x2E95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2e9f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E94 + +0x2ea0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::TextureImpl, UDT(0x00004d4b) + +0x2ea1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DA2 + +0x2ea2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::TglD3DRMIMAGE, UDT(0x0000305f) + +0x2ea3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EA2 + +0x2ea4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2EA1 + list[1] = 0x2EA3 + +0x2ea5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x2ea4, This adjust = 0 + +0x2ea6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EA2 + +0x2ea7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2808 + +0x2ea8 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_32PVOID(0403) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = 0x2EA7 + +0x2ea9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA2, This type = 0x2EA6, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x2ea8, This adjust = 0 + +0x2eaa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA2, This type = 0x2EA6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2eab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA2, This type = 0x2EA6, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x2835, This adjust = 0 + +0x2eac : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_32PRCHAR(0470) + +0x2ead : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA2, This type = 0x2EA6, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2eac, This adjust = 0 + +0x2eae : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = 0x2EA7 + +0x2eaf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA2, This type = 0x2EA6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2eae, This adjust = 0 + +0x2eb0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EA0 + +0x2eb1 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_32PVOID(0403) + +0x2eb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2eb1, This adjust = 0 + +0x2eb3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_32PVOID(0403) + +0x2eb4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2eb3, This adjust = 0 + +0x2eb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x2eb6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EA7 + +0x2eb7 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_32PINT4(0474) + list[1] = T_32PINT4(0474) + list[2] = T_32PINT4(0474) + list[3] = 0x1714 + list[4] = T_32PINT4(0474) + list[5] = 0x2EB6 + +0x2eb8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x2eb7, This adjust = 0 + +0x2eb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2eae, This adjust = 0 + +0x2eba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ebb : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x207F, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x2ebc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::RendererImpl, UDT(0x00004d35) + +0x2ebd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EBC + +0x2ebe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EBC + +0x2ebf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ec0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27e1, This adjust = 0 + +0x2ec1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::DeviceImpl, UDT(0x00004d3a) + +0x2ec2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EC1 + +0x2ec3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EC1 + +0x2ec4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ec5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27e6, This adjust = 0 + +0x2ec6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27EA, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x27f0, This adjust = 0 + +0x2ec7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E7F + +0x2ec8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ec9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1029, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27f8, This adjust = 0 + +0x2eca : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::GroupImpl, UDT(0x00004d44) + +0x2ecb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2ECA + +0x2ecc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2ECA + +0x2ecd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ece : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27F2, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ecf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::CameraImpl, UDT(0x00004d3f) + +0x2ed0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2ECF + +0x2ed1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2ECF + +0x2ed2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27ED, This type = 0x286A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ed3 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1007 + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x2ed4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27F5, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2ed3, This adjust = 0 + +0x2ed5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::LightImpl, UDT(0x00004d42) + +0x2ed6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2ED5 + +0x2ed7 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMLight, UDT(0x00002fcf) + +0x2ed8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2ED7 + +0x2ed9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2ED5 + +0x2eda : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27F4, This type = 0x2872, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2edb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E9D, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2edc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E9C + +0x2edd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E9C, This type = 0x2EDC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ede : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2806, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x280b, This adjust = 0 + +0x2edf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EA0 + +0x2ee0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2806, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ee1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2ee2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ee3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::MeshImpl, UDT(0x0000304c) + +0x2ee4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EE3 + +0x2ee5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ee6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x2ee7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2826, This adjust = 0 + +0x2ee8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285c, This adjust = 0 + +0x2ee9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2841, This adjust = 0 + +0x2eea : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E9D + +0x2eeb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27FB, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2eea, This adjust = 0 + +0x2eec : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EE3 + +0x2eed : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMVERTEX, UDT(0x00003184) + +0x2eee : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EED + +0x2eef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ef0 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglImpl::MeshImpl::MeshData, UDT(0x000030c5) + +0x2ef1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EF0 + +0x2ef2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x2806 + +0x2ef3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2EF2 + +0x2ef4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ef3, This adjust = 0 + +0x2ef5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2ED5, This type = 0x2ED9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ef6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ED5, This type = 0x2ED9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2ef7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ED5, This type = 0x2ED9, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x2ef8 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMLightArray, UDT(0x00002fde) + +0x2ef9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EF8 + +0x2efa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2efb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2efc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x2efd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2826, This adjust = 0 + +0x2efe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ef3, This adjust = 0 + +0x2eff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f00 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E6D + +0x2f01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f00, This adjust = 0 + +0x2f02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x282a, This adjust = 0 + +0x2f03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x27f8, This adjust = 0 + +0x2f04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2847, This adjust = 0 + +0x2f08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2841, This adjust = 0 + +0x2f09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2f0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2f0b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x27DC + +0x2f0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f0b, This adjust = 0 + +0x2f0d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMWinDevice, UDT(0x00003199) + +0x2f0e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F0D + +0x2f0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f10 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PVOID(0403), Class type = 0x2ECF, This type = 0x2ED1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2ECF, This type = 0x2ED1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x2f12 : Length = 1030, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnkTimingField' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnkTimingField' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[38] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[41] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[42] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[43] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk84' + list[44] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk88' + list[45] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[46] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unkTimingField' + +0x2f13 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x2f12, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x2f14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x2f15 : Length = 630, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'unk14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[23] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk14' + list[25] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[27] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[28] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk24' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk28' + +0x2f16 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x2f15, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x2f17 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1C43, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = '_InsertEntry' + +0x2f18 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2f17, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x2f19 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1C68 + +0x2f1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f19, This adjust = 0 + +0x2f1b : Length = 990, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1441, TickleState + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x143E, name = 'MxPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143E, name = '~MxPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143F, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A32, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A33, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 20, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 24, name = 'ReadyTickle' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 28, name = 'StartingTickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 32, name = 'StreamingTickle' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 36, name = 'RepeatingTickle' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 40, name = 'Unk5Tickle' + list[13] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 44, name = 'DoneTickle' + list[14] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 48, name = 'ParseExtra' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 52, name = 'AddToManager' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 56, name = 'Destroy' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1447, + vfptr offset = 60, name = 'StartAction' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 64, name = 'EndAction' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1443, + vfptr offset = 68, name = 'SetTickleState' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1444, + vfptr offset = 72, name = 'HasTickleStatePassed' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 76, name = 'PutData' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1445, + vfptr offset = 80, name = 'IsHit' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x144C, + vfptr offset = 84, name = 'Enable' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1450, name = 'IsEnabled' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetCurrentTickleState' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C66, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetLocationX' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetLocationY' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetDisplayZ' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C67, name = 'GetAction' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x2F1A, name = 'SetCompositePresenter' + list[32] = LF_ONEMETHOD, protected, VANILLA, index = 0x143E, name = 'Init' + list[33] = LF_ONEMETHOD, protected, VANILLA, index = 0x144B, name = 'SendToCompositePresenter' + list[34] = LF_MEMBER, protected, type = 0x1441, offset = 8 + member name = 'm_currentTickleState' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_previousTickleStates' + list[36] = LF_MEMBER, protected, type = 0x1200, offset = 16 + member name = 'm_location' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 24 + member name = 'm_displayZ' + list[38] = LF_MEMBER, protected, type = 0x109C, offset = 28 + member name = 'm_action' + list[39] = LF_MEMBER, protected, type = 0x11D9, offset = 32 + member name = 'm_criticalSection' + list[40] = LF_MEMBER, protected, type = 0x1C68, offset = 60 + member name = 'm_compositePresenter' + +0x2f1c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x2f1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +0x2f1d : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1C73, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = '_InsertEntry' + +0x2f1e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2f1d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x2f1f : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F14, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F14, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, private, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x2f20 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2f1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x2f21 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E80 + +0x2f22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2f23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x2f25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x2f26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2f27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x2f28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x2f29 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMDevice, UDT(0x000031bd) + +0x2f2a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F29 + +0x2f2b : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x2F2A + list[1] = 0x2E7C + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = T_ULONG(0022) + +0x2f2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x2f2b, This adjust = 0 + +0x2f2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f2e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E7C + +0x2f2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x2f30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x2f31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2f32 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x106D + +0x2f33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f32, This adjust = 0 + +0x2f34 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMVECTOR4D, UDT(0x00002e93) + +0x2f35 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F34 + +0x2f36 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2945 + +0x2f37 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2F35 + list[1] = 0x2F36 + +0x2f38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f37, This adjust = 0 + +0x2f39 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2F36 + list[1] = 0x2F35 + +0x2f3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f39, This adjust = 0 + +0x2f3b : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_LONG(0012) + list[1] = T_LONG(0012) + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + +0x2f3c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2f3b, This adjust = 0 + +0x2f3d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2861, This adjust = 0 + +0x2f3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x2f3f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E7C + +0x2f40 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F3F + +0x2f41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f40, This adjust = 0 + +0x2f42 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F2A + +0x2f43 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F42 + +0x2f44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f43, This adjust = 0 + +0x2f45 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PREAL32(0440) + list[1] = T_32PREAL32(0440) + list[2] = T_32PREAL32(0440) + list[3] = T_32PREAL32(0440) + +0x2f46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2f45, This adjust = 0 + +0x2f47 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMPickedArray, UDT(0x00002fbd) + +0x2f48 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F47 + +0x2f49 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F48 + +0x2f4a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_LONG(0012) + list[1] = T_LONG(0012) + list[2] = 0x2F49 + +0x2f4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f4a, This adjust = 0 + +0x2f4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x106D, Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f4f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x28C8 + +0x2f50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E80, This type = 0x2F21, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f4f, This adjust = 0 + +0x2f51 : Length = 922, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F22, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F23, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F23, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F24, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F25, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F25, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F26, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F23, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F27, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F28, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F28, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2C, + vfptr offset = 44, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2D, + vfptr offset = 48, name = 'Clear' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2F, + vfptr offset = 52, name = 'Render' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F30, + vfptr offset = 56, name = 'SetFront' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F30, + vfptr offset = 60, name = 'SetBack' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F30, + vfptr offset = 64, name = 'SetField' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F31, + vfptr offset = 68, name = 'SetUniformScaling' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2F, + vfptr offset = 72, name = 'SetCamera' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F33, + vfptr offset = 76, name = 'SetProjection' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F38, + vfptr offset = 80, name = 'Transform' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F3A, + vfptr offset = 84, name = 'InverseTransform' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F3C, + vfptr offset = 88, name = 'Configure' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F3D, + vfptr offset = 92, name = 'ForceUpdate' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F3E, + vfptr offset = 96, name = 'SetPlane' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F41, + vfptr offset = 100, name = 'GetCamera' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F44, + vfptr offset = 104, name = 'GetDevice' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F46, + vfptr offset = 108, name = 'GetPlane' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4B, + vfptr offset = 112, name = 'Pick' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4C, + vfptr offset = 116, name = 'GetUniformScaling' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2D, + vfptr offset = 120, name = 'GetX' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F2D, + vfptr offset = 124, name = 'GetY' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F23, + vfptr offset = 128, name = 'GetWidth' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F23, + vfptr offset = 132, name = 'GetHeight' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4D, + vfptr offset = 136, name = 'GetField' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4D, + vfptr offset = 140, name = 'GetBack' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4D, + vfptr offset = 144, name = 'GetFront' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F4E, + vfptr offset = 148, name = 'GetProjection' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F50, + vfptr offset = 152, name = 'GetDirect3DViewport' + +0x2f52 : Length = 26, Leaf = 0x000a LF_VTSHAPE + Number of entries : 39 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR + +0x2f53 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 40, field list type 0x2f51, + Derivation list type 0x0000, VT shape type 0x2f52 + Size = 4, class name = IDirect3DRMViewport, UDT(0x00002f53) + +0x2f54 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E7B + +0x2f55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2f56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x2f58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x2f59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2f5a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x2f5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x2f5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x2f5d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2ED8 + +0x2f5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f5d, This adjust = 0 + +0x2f5f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E7C + list[1] = T_32PVOID(0403) + list[2] = T_REAL32(0040) + +0x2f60 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x2f5f + +0x2f61 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F60 + +0x2f62 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2F61 + list[1] = T_32PVOID(0403) + +0x2f63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f62, This adjust = 0 + +0x2f64 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1031 + +0x2f65 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x106B + list[1] = 0x2F64 + +0x2f66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f65, This adjust = 0 + +0x2f67 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x106B + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x2f68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2f67, This adjust = 0 + +0x2f69 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x106B + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + +0x2f6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f69, This adjust = 0 + +0x2f6b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DD1 + +0x2f6c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F6B + +0x2f6d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f6c, This adjust = 0 + +0x2f6e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E7E + +0x2f6f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F6E + +0x2f70 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f6f, This adjust = 0 + +0x2f71 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EF9 + +0x2f72 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F71 + +0x2f73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f72, This adjust = 0 + +0x2f74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1071, Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f40, This adjust = 0 + +0x2f76 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E7C + list[1] = 0x2F36 + +0x2f77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f76, This adjust = 0 + +0x2f78 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E7C + list[1] = 0x2F36 + list[2] = T_32PREAL32(0440) + +0x2f79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f78, This adjust = 0 + +0x2f7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1077, Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f7b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2EA1 + +0x2f7c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F7B + +0x2f7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f7c, This adjust = 0 + +0x2f7e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F64 + +0x2f7f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f7e, This adjust = 0 + +0x2f80 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E7C + list[1] = 0x2F36 + list[2] = T_INT4(0074) + +0x2f81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f80, This adjust = 0 + +0x2f82 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E7C + list[1] = 0x2F36 + list[2] = 0x2F36 + +0x2f83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f82, This adjust = 0 + +0x2f84 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMVisualArray, UDT(0x00002fe5) + +0x2f85 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F84 + +0x2f86 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F85 + +0x2f87 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F86 + +0x2f88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f87, This adjust = 0 + +0x2f89 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PINT4(0474) + list[1] = T_32PINT4(0474) + +0x2f8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f89, This adjust = 0 + +0x2f8b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2F36 + list[1] = 0x2F36 + +0x2f8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f8b, This adjust = 0 + +0x2f8d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_32PVOID(0403) + list[2] = 0x2F7B + +0x2f8e : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x2f8d + +0x2f8f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F8E + +0x2f90 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = T_32PVOID(0403) + list[1] = T_32PVOID(0403) + list[2] = T_ULONG(0022) + list[3] = 0x2F8F + list[4] = T_32PVOID(0403) + +0x2f91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f90, This adjust = 0 + +0x2f92 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2E7C + list[1] = 0x2E7C + list[2] = 0x106F + +0x2f93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f92, This adjust = 0 + +0x2f94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x2f95 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e28, This adjust = 0 + +0x2f96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1073, Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2f98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x2f99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x2f9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x2f9b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2EA1 + +0x2f9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x2f9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x2f9e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1073 + +0x2f9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9e, This adjust = 0 + +0x2fa0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1075, Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fa1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1071 + +0x2fa2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fa1, This adjust = 0 + +0x2fa3 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = 0x2E7C + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + list[6] = T_REAL32(0040) + +0x2fa4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x2fa3, This adjust = 0 + +0x2fa5 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x2E7C + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x2fa6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2fa5, This adjust = 0 + +0x2fa7 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x2E7C + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + +0x2fa8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2fa7, This adjust = 0 + +0x2fa9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1077 + +0x2faa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fa9, This adjust = 0 + +0x2fab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x2fac : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x2E7C + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_INT4(0074) + +0x2fad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2fac, This adjust = 0 + +0x2fae : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1075 + +0x2faf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7B, This type = 0x2F54, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fae, This adjust = 0 + +0x2fb0 : Length = 1818, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F55, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F56, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F56, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F57, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F58, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F58, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F59, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F56, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F5A, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F5B, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F5B, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F5C, + vfptr offset = 44, name = 'AddChild' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F5E, + vfptr offset = 48, name = 'AddLight' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F63, + vfptr offset = 52, name = 'AddMoveCallback' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F66, + vfptr offset = 56, name = 'AddTransform' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F68, + vfptr offset = 60, name = 'AddTranslation' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F68, + vfptr offset = 64, name = 'AddScale' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F6A, + vfptr offset = 68, name = 'AddRotation' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F6D, + vfptr offset = 72, name = 'AddVisual' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F70, + vfptr offset = 76, name = 'GetChildren' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F56, + vfptr offset = 80, name = 'GetColor' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F73, + vfptr offset = 84, name = 'GetLights' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F74, + vfptr offset = 88, name = 'GetMaterialMode' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F75, + vfptr offset = 92, name = 'GetParent' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F77, + vfptr offset = 96, name = 'GetPosition' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F79, + vfptr offset = 100, name = 'GetRotation' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F75, + vfptr offset = 104, name = 'GetScene' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F7A, + vfptr offset = 108, name = 'GetSortMode' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F7D, + vfptr offset = 112, name = 'GetTexture' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F7F, + vfptr offset = 116, name = 'GetTransform' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F81, + vfptr offset = 120, name = 'GetVelocity' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F83, + vfptr offset = 124, name = 'GetOrientation' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F88, + vfptr offset = 128, name = 'GetVisuals' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F8A, + vfptr offset = 132, name = 'GetTextureTopology' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F8C, + vfptr offset = 136, name = 'InverseTransform' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F91, + vfptr offset = 140, name = 'Load' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F93, + vfptr offset = 144, name = 'LookAt' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F94, + vfptr offset = 148, name = 'Move' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F5C, + vfptr offset = 152, name = 'DeleteChild' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F5E, + vfptr offset = 156, name = 'DeleteLight' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F63, + vfptr offset = 160, name = 'DeleteMoveCallback' + list[42] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F6D, + vfptr offset = 164, name = 'DeleteVisual' + list[43] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F56, + vfptr offset = 168, name = 'GetSceneBackground' + list[44] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F95, + vfptr offset = 172, name = 'GetSceneBackgroundDepth' + list[45] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F56, + vfptr offset = 176, name = 'GetSceneFogColor' + list[46] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F96, + vfptr offset = 180, name = 'GetSceneFogEnable' + list[47] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F97, + vfptr offset = 184, name = 'GetSceneFogMode' + list[48] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F98, + vfptr offset = 188, name = 'GetSceneFogParams' + list[49] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F59, + vfptr offset = 192, name = 'SetSceneBackground' + list[50] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F99, + vfptr offset = 196, name = 'SetSceneBackgroundRGB' + list[51] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F9A, + vfptr offset = 200, name = 'SetSceneBackgroundDepth' + list[52] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F9C, + vfptr offset = 204, name = 'SetSceneBackgroundImage' + list[53] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F9D, + vfptr offset = 208, name = 'SetSceneFogEnable' + list[54] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F59, + vfptr offset = 212, name = 'SetSceneFogColor' + list[55] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F9F, + vfptr offset = 216, name = 'SetSceneFogMode' + list[56] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F99, + vfptr offset = 220, name = 'SetSceneFogParams' + list[57] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F59, + vfptr offset = 224, name = 'SetColor' + list[58] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F99, + vfptr offset = 228, name = 'SetColorRGB' + list[59] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FA0, + vfptr offset = 232, name = 'GetZbufferMode' + list[60] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FA2, + vfptr offset = 236, name = 'SetMaterialMode' + list[61] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FA4, + vfptr offset = 240, name = 'SetOrientation' + list[62] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FA6, + vfptr offset = 244, name = 'SetPosition' + list[63] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FA8, + vfptr offset = 248, name = 'SetRotation' + list[64] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FAA, + vfptr offset = 252, name = 'SetSortMode' + list[65] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F9C, + vfptr offset = 256, name = 'SetTexture' + list[66] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FAB, + vfptr offset = 260, name = 'SetTextureTopology' + list[67] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FAD, + vfptr offset = 264, name = 'SetVelocity' + list[68] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FAF, + vfptr offset = 268, name = 'SetZbufferMode' + list[69] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F8C, + vfptr offset = 272, name = 'Transform' + +0x2fb1 : Length = 42, Leaf = 0x000a LF_VTSHAPE + Number of entries : 69 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR32 + [39]: NEAR32 + [40]: NEAR32 + [41]: NEAR32 + [42]: NEAR32 + [43]: NEAR32 + [44]: NEAR32 + [45]: NEAR32 + [46]: NEAR32 + [47]: NEAR32 + [48]: NEAR32 + [49]: NEAR32 + [50]: NEAR32 + [51]: NEAR32 + [52]: NEAR32 + [53]: NEAR32 + [54]: NEAR32 + [55]: NEAR32 + [56]: NEAR32 + [57]: NEAR32 + [58]: NEAR32 + [59]: NEAR32 + [60]: NEAR32 + [61]: NEAR32 + [62]: NEAR32 + [63]: NEAR32 + [64]: NEAR32 + [65]: NEAR32 + [66]: NEAR32 + [67]: NEAR32 + [68]: NEAR + +0x2fb2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 70, field list type 0x2fb0, + Derivation list type 0x0000, VT shape type 0x2fb1 + Size = 4, class name = IDirect3DRMFrame, UDT(0x00002fb2) + +0x2fb3 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMArray, UDT(0x00002fea) + +0x2fb4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2F47 + +0x2fb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F47, This type = 0x2FB4, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2F47, This type = 0x2FB4, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fb7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2F6B + +0x2fb8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMPICKDESC, UDT(0x00002fec) + +0x2fb9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2FB8 + +0x2fba : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x2FB7 + list[2] = 0x2F6E + list[3] = 0x2FB9 + +0x2fbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F47, This type = 0x2FB4, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2fba, This adjust = 0 + +0x2fbc : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FB5, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FB6, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FB6, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FB6, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FBB, + vfptr offset = 16, name = 'GetPick' + +0x2fbd : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2fbc, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMPickedArray, UDT(0x00002fbd) + +0x2fbe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2ED7 + +0x2fbf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x2fc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x2fc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x2fc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x2fc5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x2fc6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1067 + +0x2fc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fc6, This adjust = 0 + +0x2fc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x2fc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x2fca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fcb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1067, Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x2fcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2ED7, This type = 0x2FBE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f40, This adjust = 0 + +0x2fce : Length = 770, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FBF, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC0, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC0, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC1, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC2, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC2, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC3, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC0, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC4, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC5, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FC5, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC7, + vfptr offset = 44, name = 'SetType' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC3, + vfptr offset = 48, name = 'SetColor' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC8, + vfptr offset = 52, name = 'SetColorRGB' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 56, name = 'SetRange' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 60, name = 'SetUmbra' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 64, name = 'SetPenumbra' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 68, name = 'SetConstantAttenuation' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 72, name = 'SetLinearAttenuation' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC9, + vfptr offset = 76, name = 'SetQuadraticAttenuation' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 80, name = 'GetRange' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 84, name = 'GetUmbra' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 88, name = 'GetPenumbra' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 92, name = 'GetConstantAttenuation' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 96, name = 'GetLinearAttenuation' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCA, + vfptr offset = 100, name = 'GetQuadraticAttenuation' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FC0, + vfptr offset = 104, name = 'GetColor' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCB, + vfptr offset = 108, name = 'GetType' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCC, + vfptr offset = 112, name = 'SetEnableFrame' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FCD, + vfptr offset = 116, name = 'GetEnableFrame' + +0x2fcf : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 31, field list type 0x2fce, + Derivation list type 0x0000, VT shape type 0x1de5 + Size = 4, class name = IDirect3DRMLight, UDT(0x00002fcf) + +0x2fd0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E7D + +0x2fd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7D, This type = 0x2FD0, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2E7D, This type = 0x2FD0, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fd3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x2F3F + +0x2fd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E7D, This type = 0x2FD0, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2fd3, This adjust = 0 + +0x2fd5 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD1, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD2, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD2, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD2, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FD4, + vfptr offset = 16, name = 'GetElement' + +0x2fd6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2fd5, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMFrameArray, UDT(0x00002fd6) + +0x2fd7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2EF8 + +0x2fd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2EF8, This type = 0x2FD7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2EF8, This type = 0x2FD7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fda : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2ED8 + +0x2fdb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x2FDA + +0x2fdc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2EF8, This type = 0x2FD7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2fdb, This adjust = 0 + +0x2fdd : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD8, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD9, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD9, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FD9, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FDC, + vfptr offset = 16, name = 'GetElement' + +0x2fde : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2fdd, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMLightArray, UDT(0x00002fde) + +0x2fdf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2F84 + +0x2fe0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F84, This type = 0x2FDF, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fe1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2F84, This type = 0x2FDF, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fe2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x2FB7 + +0x2fe3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F84, This type = 0x2FDF, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2fe2, This adjust = 0 + +0x2fe4 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE0, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE1, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE1, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE1, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FE3, + vfptr offset = 16, name = 'GetElement' + +0x2fe5 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x2fe4, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMVisualArray, UDT(0x00002fe5) + +0x2fe6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2FB3 + +0x2fe7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2FB3, This type = 0x2FE6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x2fe8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2FB3, This type = 0x2FE6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2fe9 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE7, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE8, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2FE8, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2FE8, + vfptr offset = 12, name = 'GetSize' + +0x2fea : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2fe9, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = IDirect3DRMArray, UDT(0x00002fea) + +0x2feb : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'ulFaceIdx' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'lGroupIdx' + list[2] = LF_MEMBER, public, type = 0x2945, offset = 8 + member name = 'vPosition' + +0x2fec : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x2feb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = _D3DRMPICKDESC, UDT(0x00002fec) + +0x2fed : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EE0, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = '_InsertEntry' + +0x2fee : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2fed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x2fef : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2020, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = '_InsertEntry' + +0x2ff0 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2fef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x2ff1 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2039, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = '_InsertEntry' + +0x2ff2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x2ff3 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x20AB, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = '_InsertEntry' + +0x2ff4 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x2ff5 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x20CE, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = '_InsertEntry' + +0x2ff6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x2ff7 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2692, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = '_InsertEntry' + +0x2ff8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x2ff9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x26B3, Class type = 0x1699, This type = 0x16A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x2ffa : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169B, name = 'MxDSMultiAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169B, name = '~MxDSMultiAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AB, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AE, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A7, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A8, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'unk14' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B4, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B6, name = 'SetAtomId' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B2, name = 'Clone' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B0, name = 'MergeFrom' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B1, name = 'HasId' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16AF, name = 'SetUnkTimingField' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2FF9, name = 'GetActionList' + list[16] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[17] = LF_MEMBER, protected, type = 0x26B3, offset = 152 + member name = 'm_actions' + +0x2ffb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x2ffa, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +0x2ffc : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'ClearAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26C0, name = 'SetDestroy' + list[8] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[9] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = '_DeleteEntry' + list[11] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = '_InsertEntry' + +0x2ffd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ffc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x2ffe : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x2009 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2BB6, + vfptr offset = 0, name = '~Object' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2BB7, + vfptr offset = 4, name = 'ImplementationDataPtr' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2BB6, name = 'Object' + +0x2fff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2ffe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 4, class name = Tgl::Object, UDT(0x00002fff) + +0x3000 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x27E7, vfptr offset = 12 + list[1] = public, INTRODUCING VIRTUAL, 0x27E2, vfptr offset = 12 + +0x3001 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27F5, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2ed3, This adjust = 0 + +0x3002 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E9D, Class type = 0x207E, This type = 0x27DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3003 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x280C, vfptr offset = 40 + list[1] = public, INTRODUCING VIRTUAL, 0x2807, vfptr offset = 40 + +0x3004 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x3000, name = 'CreateDevice' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F1, + vfptr offset = 16, name = 'CreateView' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F3, + vfptr offset = 20, name = 'CreateCamera' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3001, + vfptr offset = 24, name = 'CreateLight' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x27F9, + vfptr offset = 28, name = 'CreateGroup' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3002, + vfptr offset = 32, name = 'CreateUnk' + list[7] = LF_METHOD, count = 2, list = 0x3003, name = 'CreateTexture' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x280E, + vfptr offset = 44, name = 'SetTextureDefaultShadeCount' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x280E, + vfptr offset = 48, name = 'SetTextureDefaultColorCount' + +0x3005 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3004, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::Renderer, UDT(0x00003005) + +0x3006 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x286e, This adjust = 0 + +0x3007 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x3008 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ef3, This adjust = 0 + +0x3009 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x1025, This type = 0x2820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f00, This adjust = 0 + +0x300a : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x282B, vfptr offset = 40 + list[1] = public, INTRODUCING VIRTUAL, 0x282C, vfptr offset = 40 + +0x300b : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3006, + vfptr offset = 8, name = 'SetTransformation' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3007, + vfptr offset = 12, name = 'SetColor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2827, + vfptr offset = 16, name = 'SetTexture' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3008, + vfptr offset = 20, name = 'GetTexture' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3009, + vfptr offset = 24, name = 'SetMaterialMode' + list[6] = LF_METHOD, count = 2, list = 0x282E, name = 'Add' + list[7] = LF_METHOD, count = 2, list = 0x300A, name = 'Remove' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x282F, + vfptr offset = 44, name = 'RemoveAll' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x282F, + vfptr offset = 48, name = 'Unknown' + +0x300c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x300b, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::Group, UDT(0x0000300c) + +0x300d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x2eb1, This adjust = 0 + +0x300e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x2eb3, This adjust = 0 + +0x300f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x3010 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x2eb7, This adjust = 0 + +0x3011 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2805, This type = 0x2834, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2eae, This adjust = 0 + +0x3012 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x300D, + vfptr offset = 8, name = 'SetTexels' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x300E, + vfptr offset = 12, name = 'FillRowsOfTexture' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x300F, + vfptr offset = 16, name = 'Changed' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3010, + vfptr offset = 20, name = 'GetBufferAndPalette' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3011, + vfptr offset = 24, name = 'SetPalette' + +0x3013 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3012, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 4, class name = Tgl::Texture, UDT(0x00003013) + +0x3014 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x3015 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2ef3, This adjust = 0 + +0x3016 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x285c, This adjust = 0 + +0x3017 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27FB, Class type = 0x27FA, This type = 0x283C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2eea, This adjust = 0 + +0x3018 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3014, + vfptr offset = 8, name = 'SetColor' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x283E, + vfptr offset = 12, name = 'SetTexture' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3015, + vfptr offset = 16, name = 'GetTexture' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3016, + vfptr offset = 20, name = 'SetTextureMappingMode' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2842, + vfptr offset = 24, name = 'SetShadingModel' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3017, + vfptr offset = 28, name = 'DeepClone' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3017, + vfptr offset = 32, name = 'ShallowClone' + +0x3019 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3018, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = Tgl::Mesh, UDT(0x00003019) + +0x301a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x27DB, This type = 0x2845, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f0b, This adjust = 0 + +0x301b : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2846, + vfptr offset = 8, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2846, + vfptr offset = 12, name = 'GetHeight' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2848, + vfptr offset = 16, name = 'SetColorModel' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2849, + vfptr offset = 20, name = 'SetShadingModel' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284A, + vfptr offset = 24, name = 'SetShadeCount' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284B, + vfptr offset = 28, name = 'SetDither' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x284C, + vfptr offset = 32, name = 'Update' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x301A, + vfptr offset = 36, name = 'InitFromD3DDevice' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x301A, + vfptr offset = 40, name = 'InitFromWindowsDevice' + +0x301c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x301b, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Device, UDT(0x0000301c) + +0x301d : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_driverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hWnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_pDirectDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_pFrontBuffer' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_pBackBuffer' + +0x301e : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x301d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +0x301f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x3020 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x3021 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27E9, This type = 0x2855, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x3022 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2859, + vfptr offset = 8, name = 'Add' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2859, + vfptr offset = 12, name = 'Remove' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285B, + vfptr offset = 16, name = 'SetCamera' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285D, + vfptr offset = 20, name = 'SetProjection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x301F, + vfptr offset = 24, name = 'SetFrustrum' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x301F, + vfptr offset = 28, name = 'SetBackgroundColor' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3020, + vfptr offset = 32, name = 'GetBackgroundColor' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x285F, + vfptr offset = 36, name = 'Clear' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2859, + vfptr offset = 40, name = 'Render' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2862, + vfptr offset = 44, name = 'ForceUpdate' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3021, + vfptr offset = 48, name = 'TransformWorldToScreen' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3021, + vfptr offset = 52, name = 'TransformScreenToWorld' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2867, + vfptr offset = 56, name = 'Pick' + +0x3023 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3022, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 4, class name = Tgl::View, UDT(0x00003023) + +0x3024 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x286F, + vfptr offset = 8, name = 'SetTransformation' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2ED2, name = 'Camera' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2ED2, name = '~Camera' + +0x3025 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3024, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Camera, UDT(0x00003025) + +0x3026 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x27F4, This type = 0x2872, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x3027 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2873, + vfptr offset = 8, name = 'SetTransformation' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3026, + vfptr offset = 12, name = 'SetColor' + +0x3028 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3027, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = Tgl::Light, UDT(0x00003028) + +0x3029 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x302a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x2EC5, + list[1] = public, VIRTUAL, 0x2EC0, + +0x302b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x2EDE, + list[1] = public, VIRTUAL, 0x2EE0, + +0x302c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EBC, This type = 0x2EBE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x302d : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x207E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3029, name = 'RendererImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3029, name = '~RendererImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE2, name = 'ImplementationDataPtr' + list[4] = LF_METHOD, count = 2, list = 0x302A, name = 'CreateDevice' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EC6, name = 'CreateView' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2ECE, name = 'CreateCamera' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2ED4, name = 'CreateLight' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EC9, name = 'CreateGroup' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EDB, name = 'CreateUnk' + list[10] = LF_METHOD, count = 2, list = 0x302B, name = 'CreateTexture' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE1, name = 'SetTextureDefaultShadeCount' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE1, name = 'SetTextureDefaultColorCount' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x302C, name = 'Create' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3029, name = 'Destroy' + list[15] = LF_MEMBER, private, type = 0x2E77, offset = 4 + member name = 'm_data' + +0x302e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x302d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::RendererImpl, UDT(0x00004d35) + +0x302f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EC1, This type = 0x2EC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3030 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2EC1 + +0x3031 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3030 + +0x3032 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2F2A, Class type = 0x2EC1, This type = 0x3031, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3033 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x302F, name = 'DeviceImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x302F, name = '~DeviceImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F05, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F06, name = 'GetWidth' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F06, name = 'GetHeight' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F07, name = 'SetColorModel' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F08, name = 'SetShadingModel' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F09, name = 'SetShadeCount' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0A, name = 'SetDither' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0F, name = 'Update' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0C, name = 'InitFromD3DDevice' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0C, name = 'InitFromWindowsDevice' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3032, name = 'ImplementationData' + list[14] = LF_MEMBER, private, type = 0x2F2A, offset = 4 + member name = 'm_data' + +0x3034 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3033, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 8, class name = TglImpl::DeviceImpl, UDT(0x00004d3a) + +0x3035 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E7F, This type = 0x2E86, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3036 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2E7F + +0x3037 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3036 + +0x3038 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E81, Class type = 0x2E7F, This type = 0x3037, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3039 : Length = 446, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3035, name = 'ViewImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3035, name = '~ViewImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E87, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Add' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Remove' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E89, name = 'SetCamera' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8B, name = 'SetProjection' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8C, name = 'SetFrustrum' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8C, name = 'SetBackgroundColor' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8D, name = 'GetBackgroundColor' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8E, name = 'Clear' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Render' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8F, name = 'ForceUpdate' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E91, name = 'TransformWorldToScreen' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E91, name = 'TransformScreenToWorld' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E90, name = 'Pick' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3038, name = 'ImplementationData' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x2E83, name = 'ViewportCreateAppData' + list[19] = LF_MEMBER, private, type = 0x2E81, offset = 4 + member name = 'm_data' + +0x303a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3039, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 8, class name = TglImpl::ViewImpl, UDT(0x00004d3c) + +0x303b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2ECF, This type = 0x2ED1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x303c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2ECF + +0x303d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x303C + +0x303e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E7C, Class type = 0x2ECF, This type = 0x303D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x303f : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27ED, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x303B, name = 'CameraImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x303B, name = '~CameraImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F10, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F11, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x303E, name = 'ImplementationData' + list[6] = LF_MEMBER, private, type = 0x2E7C, offset = 4 + member name = 'm_data' + +0x3040 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x303f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 8, class name = TglImpl::CameraImpl, UDT(0x00004d3f) + +0x3041 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2ED5, This type = 0x2ED9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3042 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2ED5 + +0x3043 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3042 + +0x3044 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E7C, Class type = 0x2ED5, This type = 0x3043, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3045 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27F4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3041, name = 'LightImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3041, name = '~LightImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF5, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF6, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF7, name = 'SetColor' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3044, name = 'ImplementationData' + list[7] = LF_MEMBER, private, type = 0x2E7C, offset = 4 + member name = 'm_data' + +0x3046 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3045, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x283a + Size = 8, class name = TglImpl::LightImpl, UDT(0x00004d42) + +0x3047 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EE3, This type = 0x2EE4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3048 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2EE3 + +0x3049 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3048 + +0x304a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2EF1, Class type = 0x2EE3, This type = 0x3049, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x304b : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3047, name = 'MeshImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3047, name = '~MeshImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE5, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE6, name = 'SetColor' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE7, name = 'SetTexture' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF4, name = 'GetTexture' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE8, name = 'SetTextureMappingMode' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE9, name = 'SetShadingModel' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EEB, name = 'DeepClone' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EEB, name = 'ShallowClone' + list[11] = LF_NESTTYPE, type = 0x2EF0, MeshData + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x304A, name = 'ImplementationData' + list[13] = LF_MEMBER, private, type = 0x2EF1, offset = 4 + member name = 'm_data' + +0x304c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x304b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 8, class name = TglImpl::MeshImpl, UDT(0x0000304c) + +0x304d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2ECA, This type = 0x2ECC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x304e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x2F02, + list[1] = public, VIRTUAL, 0x2F03, + +0x304f : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1025, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x304D, name = 'GroupImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x304D, name = '~GroupImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFA, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFB, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFC, name = 'SetColor' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFD, name = 'SetTexture' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFE, name = 'GetTexture' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F01, name = 'SetMaterialMode' + list[9] = LF_METHOD, count = 2, list = 0x304E, name = 'Add' + list[10] = LF_METHOD, count = 2, list = 0x304E, name = 'Remove' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F04, name = 'RemoveAll' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F04, name = 'Unknown' + list[13] = LF_MEMBER, private, type = 0x2E7C, offset = 4 + member name = 'm_data' + +0x3050 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x304f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::GroupImpl, UDT(0x00004d44) + +0x3051 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E94, This type = 0x2E95, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3052 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMMesh, UDT(0x000030ea) + +0x3053 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3052 + +0x3054 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2E94 + +0x3055 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3054 + +0x3056 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3053, Class type = 0x2E94, This type = 0x3055, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3057 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2E9C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3051, name = 'UnkImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3051, name = '~UnkImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E96, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E98, name = 'SetMeshData' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E99, name = 'GetBoundingBox' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E9E, name = 'Clone' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3056, name = 'ImplementationData' + list[8] = LF_MEMBER, private, type = 0x3053, offset = 4 + member name = 'm_data' + +0x3058 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3057, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = TglImpl::UnkImpl, UDT(0x00003058) + +0x3059 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E9C, This type = 0x2EDC, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x2e97, This adjust = 0 + +0x305a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E9C, This type = 0x2EDC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x10e7, This adjust = 0 + +0x305b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E9D, Class type = 0x2E9C, This type = 0x2EDC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x305c : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DA, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3059, + vfptr offset = 8, name = 'SetMeshData' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x305A, + vfptr offset = 12, name = 'GetBoundingBox' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x305B, + vfptr offset = 16, name = 'Clone' + +0x305d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x305c, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = Tgl::Unk, UDT(0x0000305d) + +0x305e : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2EA9, name = 'TglD3DRMIMAGE' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2EAA, name = '~TglD3DRMIMAGE' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2EAB, name = 'CreateBuffer' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2EAA, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2EAD, name = 'FillRowsOfTexture' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2EAF, name = 'InitializePalette' + list[6] = LF_MEMBER, public, type = 0x1DBC, offset = 0 + member name = 'm_image' + list[7] = LF_MEMBER, public, type = T_INT4(0074), offset = 60 + member name = 'm_texelsAllocatedByClient' + +0x305f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x305e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 64, class name = TglImpl::TglD3DRMIMAGE, UDT(0x0000305f) + +0x3060 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3061 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x2EA0 + +0x3062 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3061 + +0x3063 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2EA1, Class type = 0x2EA0, This type = 0x3062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3064 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x3065 : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2805, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3060, name = 'TextureImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3060, name = '~TextureImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EBA, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB2, name = 'SetTexels' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB4, name = 'FillRowsOfTexture' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB5, name = 'Changed' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB8, name = 'GetBufferAndPalette' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB9, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3063, name = 'ImplementationData' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3064, name = 'SetImplementation' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x2EA5, name = 'SetImage' + list[12] = LF_MEMBER, private, type = 0x2EA1, offset = 4 + member name = 'm_data' + +0x3066 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3065, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 8, class name = TglImpl::TextureImpl, UDT(0x00004d4b) + +0x3067 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2E76 + +0x3068 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3069 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x306a : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1CB6 + list[1] = 0x1770 + list[2] = 0x1CB6 + list[3] = 0x1714 + +0x306b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x306a, This adjust = 0 + +0x306c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E7C + list[1] = 0x2F3F + +0x306d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x306c, This adjust = 0 + +0x306e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3053 + +0x306f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x306E + +0x3070 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x306f, This adjust = 0 + +0x3071 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMMeshBuilder, UDT(0x00003120) + +0x3072 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3071 + +0x3073 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3072 + +0x3074 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3073 + +0x3075 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3074, This adjust = 0 + +0x3076 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMFace, UDT(0x0000313d) + +0x3077 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3076 + +0x3078 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3077 + +0x3079 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3078 + +0x307a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3079, This adjust = 0 + +0x307b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMAnimation, UDT(0x0000314e) + +0x307c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x307B + +0x307d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x307C + +0x307e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x307D + +0x307f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x307e, This adjust = 0 + +0x3080 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMAnimationSet, UDT(0x0000315d) + +0x3081 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3080 + +0x3082 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3081 + +0x3083 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3082 + +0x3084 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3083, This adjust = 0 + +0x3085 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1DBD + list[1] = 0x2F7B + +0x3086 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3085, This adjust = 0 + +0x3087 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1067 + list[1] = T_ULONG(0022) + list[2] = 0x2FDA + +0x3088 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3087, This adjust = 0 + +0x3089 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1067 + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = 0x2FDA + +0x308a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x3089, This adjust = 0 + +0x308b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMMaterial, UDT(0x0000316b) + +0x308c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x308B + +0x308d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x308C + +0x308e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_REAL32(0040) + list[1] = 0x308D + +0x308f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x308e, This adjust = 0 + +0x3090 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x2F42 + +0x3091 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3090, This adjust = 0 + +0x3092 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1762 + list[1] = 0x1245 + list[2] = 0x11E7 + list[3] = 0x2F42 + +0x3093 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x3092, This adjust = 0 + +0x3094 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1FE2 + list[1] = 0x1FE4 + list[2] = 0x2F42 + +0x3095 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3094, This adjust = 0 + +0x3096 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1247 + list[1] = 0x1762 + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = 0x2F42 + +0x3097 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x3096, This adjust = 0 + +0x3098 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11E7 + list[1] = 0x2F7B + +0x3099 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3098, This adjust = 0 + +0x309a : Length = 42, Leaf = 0x1201 LF_ARGLIST argument count = 9 + list[0] = 0x2F6B + list[1] = 0x2ED8 + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + list[6] = T_REAL32(0040) + list[7] = T_REAL32(0040) + list[8] = 0x2FB7 + +0x309b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 9, Arg list type = 0x309a, This adjust = 0 + +0x309c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2E81 + +0x309d : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = 0x2F2A + list[1] = 0x2E7C + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = T_ULONG(0022) + list[6] = 0x309C + +0x309e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x309d, This adjust = 0 + +0x309f : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMWrap, UDT(0x0000317b) + +0x30a0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x309F + +0x30a1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30A0 + +0x30a2 : Length = 70, Leaf = 0x1201 LF_ARGLIST argument count = 16 + list[0] = 0x2E6F + list[1] = 0x2E7C + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + list[6] = T_REAL32(0040) + list[7] = T_REAL32(0040) + list[8] = T_REAL32(0040) + list[9] = T_REAL32(0040) + list[10] = T_REAL32(0040) + list[11] = T_REAL32(0040) + list[12] = T_REAL32(0040) + list[13] = T_REAL32(0040) + list[14] = T_REAL32(0040) + list[15] = 0x30A1 + +0x30a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 16, Arg list type = 0x30a2, This adjust = 0 + +0x30a4 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMUserVisual, UDT(0x000031c9) + +0x30a5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30A4 + +0x30a6 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x30A5 + list[1] = T_32PVOID(0403) + list[2] = 0x1079 + list[3] = 0x2F2A + list[4] = 0x2E81 + +0x30a7 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = C Near + Func attr = none + # Parms = 5, Arg list type = 0x30a6 + +0x30a8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30A7 + +0x30a9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30A5 + +0x30aa : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x30A8 + list[1] = T_32PVOID(0403) + list[2] = 0x30A9 + +0x30ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x30aa, This adjust = 0 + +0x30ac : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = 0x2F7B + +0x30ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30ac, This adjust = 0 + +0x30ae : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PVOID(0403) + list[1] = 0x2F7B + +0x30af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30ae, This adjust = 0 + +0x30b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x30b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x30b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x30b3 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMDeviceArray, UDT(0x00003182) + +0x30b4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30B3 + +0x30b5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30B4 + +0x30b6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x30B5 + +0x30b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30b6, This adjust = 0 + +0x30b8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1DA9 + +0x30b9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = 0x30B8 + +0x30ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30b9, This adjust = 0 + +0x30bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x30bc : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1DA9 + list[1] = 0x1CB6 + list[2] = T_32PVOID(0403) + +0x30bd : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x30bc + +0x30be : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30BD + +0x30bf : Length = 46, Leaf = 0x1201 LF_ARGLIST argument count = 10 + list[0] = T_32PVOID(0403) + list[1] = T_32PVOID(0403) + list[2] = 0x1763 + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = 0x30BE + list[6] = T_32PVOID(0403) + list[7] = 0x2F8F + list[8] = T_32PVOID(0403) + list[9] = 0x2E7C + +0x30c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 10, Arg list type = 0x30bf, This adjust = 0 + +0x30c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2E76, This type = 0x3067, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x30c2 : Length = 994, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3068, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3069, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3069, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x306B, + vfptr offset = 12, name = 'CreateObject' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x306D, + vfptr offset = 16, name = 'CreateFrame' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3070, + vfptr offset = 20, name = 'CreateMesh' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3075, + vfptr offset = 24, name = 'CreateMeshBuilder' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x307A, + vfptr offset = 28, name = 'CreateFace' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x307F, + vfptr offset = 32, name = 'CreateAnimation' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3084, + vfptr offset = 36, name = 'CreateAnimationSet' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3086, + vfptr offset = 40, name = 'CreateTexture' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3088, + vfptr offset = 44, name = 'CreateLight' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x308A, + vfptr offset = 48, name = 'CreateLightRGB' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x308F, + vfptr offset = 52, name = 'CreateMaterial' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3091, + vfptr offset = 56, name = 'CreateDevice' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3093, + vfptr offset = 60, name = 'CreateDeviceFromSurface' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3095, + vfptr offset = 64, name = 'CreateDeviceFromD3D' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3097, + vfptr offset = 68, name = 'CreateDeviceFromClipper' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3099, + vfptr offset = 72, name = 'CreateTextureFromSurface' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x309B, + vfptr offset = 76, name = 'CreateShadow' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x309E, + vfptr offset = 80, name = 'CreateViewport' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30A3, + vfptr offset = 84, name = 'CreateWrap' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30AB, + vfptr offset = 88, name = 'CreateUserVisual' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30AD, + vfptr offset = 92, name = 'LoadTexture' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30AF, + vfptr offset = 96, name = 'LoadTextureFromResource' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B0, + vfptr offset = 100, name = 'SetSearchPath' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B0, + vfptr offset = 104, name = 'AddSearchPath' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B1, + vfptr offset = 108, name = 'GetSearchPath' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B2, + vfptr offset = 112, name = 'SetDefaultTextureColors' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B2, + vfptr offset = 116, name = 'SetDefaultTextureShades' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30B7, + vfptr offset = 120, name = 'GetDevices' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30BA, + vfptr offset = 124, name = 'GetNamedObject' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30BB, + vfptr offset = 128, name = 'EnumerateObjects' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30C0, + vfptr offset = 132, name = 'Load' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30C1, + vfptr offset = 136, name = 'Tick' + +0x30c3 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 36, field list type 0x30c2, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 4, class name = IDirect3DRM, UDT(0x000030c3) + +0x30c4 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3053, offset = 0 + member name = 'groupMesh' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'groupIndex' + +0x30c5 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x30c4, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = TglImpl::MeshImpl::MeshData, UDT(0x000030c5) + +0x30c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3052 + +0x30c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x30c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x30c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x30ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x30cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x30cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x30cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x30ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x30cf : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMBOX, UDT(0x00002e9b) + +0x30d0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x30CF + +0x30d1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x30D0 + +0x30d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30d1, This adjust = 0 + +0x30d3 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_32PUINT4(0475) + list[4] = T_32PLONG(0412) + +0x30d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x30d3, This adjust = 0 + +0x30d5 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_LONG(0012) + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = 0x2EEE + +0x30d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x30d5, This adjust = 0 + +0x30d7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = T_ULONG(0022) + +0x30d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30d7, This adjust = 0 + +0x30d9 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_LONG(0012) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x30da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x30d9, This adjust = 0 + +0x30db : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = 0x308C + +0x30dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30db, This adjust = 0 + +0x30dd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = 0x2EA1 + +0x30de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30dd, This adjust = 0 + +0x30df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x30e0 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_LONG(0012) + list[1] = T_32PUINT4(0475) + list[2] = T_32PUINT4(0475) + list[3] = T_32PUINT4(0475) + list[4] = T_32PULONG(0422) + list[5] = T_32PUINT4(0475) + +0x30e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x30e0, This adjust = 0 + +0x30e2 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_LONG(0012) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + list[3] = 0x2EEE + +0x30e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x30e2, This adjust = 0 + +0x30e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x30e5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = 0x308D + +0x30e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30e5, This adjust = 0 + +0x30e7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_LONG(0012) + list[1] = 0x2F7B + +0x30e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3052, This type = 0x30C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30e7, This adjust = 0 + +0x30e9 : Length = 750, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30C7, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30C8, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30C8, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30C9, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CA, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CA, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CB, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30C8, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CC, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CD, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30CD, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30CE, + vfptr offset = 44, name = 'Scale' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30CE, + vfptr offset = 48, name = 'Translate' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D2, + vfptr offset = 52, name = 'GetBox' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D4, + vfptr offset = 56, name = 'AddGroup' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D6, + vfptr offset = 60, name = 'SetVertices' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D8, + vfptr offset = 64, name = 'SetGroupColor' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30DA, + vfptr offset = 68, name = 'SetGroupColorRGB' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D8, + vfptr offset = 72, name = 'SetGroupMapping' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30D8, + vfptr offset = 76, name = 'SetGroupQuality' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30DC, + vfptr offset = 80, name = 'SetGroupMaterial' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30DE, + vfptr offset = 84, name = 'SetGroupTexture' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30DF, + vfptr offset = 88, name = 'GetGroupCount' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E1, + vfptr offset = 92, name = 'GetGroup' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E3, + vfptr offset = 96, name = 'GetVertices' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E4, + vfptr offset = 100, name = 'GetGroupColor' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E4, + vfptr offset = 104, name = 'GetGroupMapping' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E4, + vfptr offset = 108, name = 'GetGroupQuality' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E6, + vfptr offset = 112, name = 'GetGroupMaterial' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30E8, + vfptr offset = 116, name = 'GetGroupTexture' + +0x30ea : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 31, field list type 0x30e9, + Derivation list type 0x0000, VT shape type 0x1de5 + Size = 4, class name = IDirect3DRMMesh, UDT(0x000030ea) + +0x30eb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3071 + +0x30ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x30ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x30ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x30ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x30f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x30f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x30f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x30f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f90, This adjust = 0 + +0x30f4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = 0x2E71 + list[2] = T_ULONG(0022) + +0x30f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x30f4, This adjust = 0 + +0x30f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x30f7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2E73 + +0x30f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30f7, This adjust = 0 + +0x30f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30d1, This adjust = 0 + +0x30fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x30fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E73, Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x30fc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3053 + +0x30fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30fc, This adjust = 0 + +0x30fe : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3072 + +0x30ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30fe, This adjust = 0 + +0x3100 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x3101 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3077 + +0x3102 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3101, This adjust = 0 + +0x3103 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMFaceArray, UDT(0x0000318b) + +0x3104 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3103 + +0x3105 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3104 + +0x3106 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_ULONG(0022) + list[1] = 0x2F36 + list[2] = T_ULONG(0022) + list[3] = 0x2F36 + list[4] = T_32PULONG(0422) + list[5] = 0x3105 + +0x3107 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x3106, This adjust = 0 + +0x3108 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1e30, This adjust = 0 + +0x3109 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x310a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x308C + +0x310b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x310a, This adjust = 0 + +0x310c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x310d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x310e : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + +0x310f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x310e, This adjust = 0 + +0x3110 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + +0x3111 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3110, This adjust = 0 + +0x3112 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x3113 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3105 + +0x3114 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3113, This adjust = 0 + +0x3115 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_32PULONG(0422) + list[1] = 0x2F36 + list[2] = T_32PULONG(0422) + list[3] = 0x2F36 + list[4] = T_32PULONG(0422) + list[5] = T_32PULONG(0422) + +0x3116 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x3115, This adjust = 0 + +0x3117 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_32PREAL32(0440) + list[2] = T_32PREAL32(0440) + +0x3118 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3117, This adjust = 0 + +0x3119 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x311a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3079, This adjust = 0 + +0x311b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x311c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x311d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3071, This type = 0x30EB, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x306f, This adjust = 0 + +0x311e : Length = 1214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30EC, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30ED, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30ED, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30EE, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30EF, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30EF, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30F0, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30ED, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30F1, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30F2, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x30F2, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F3, + vfptr offset = 44, name = 'Load' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F5, + vfptr offset = 48, name = 'Save' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F6, + vfptr offset = 52, name = 'Scale' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F6, + vfptr offset = 56, name = 'Translate' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F8, + vfptr offset = 60, name = 'SetColorSource' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F9, + vfptr offset = 64, name = 'GetBox' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30FA, + vfptr offset = 68, name = 'GenerateNormals' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30FB, + vfptr offset = 72, name = 'GetColorSource' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30FD, + vfptr offset = 76, name = 'AddMesh' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30FF, + vfptr offset = 80, name = 'AddMeshBuilder' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3100, + vfptr offset = 84, name = 'AddFrame' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3102, + vfptr offset = 88, name = 'AddFace' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3107, + vfptr offset = 92, name = 'AddFaces' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3108, + vfptr offset = 96, name = 'ReserveSpace' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F6, + vfptr offset = 100, name = 'SetColorRGB' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F0, + vfptr offset = 104, name = 'SetColor' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3109, + vfptr offset = 108, name = 'SetTexture' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310B, + vfptr offset = 112, name = 'SetMaterial' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310C, + vfptr offset = 116, name = 'SetTextureTopology' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30F0, + vfptr offset = 120, name = 'SetQuality' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310D, + vfptr offset = 124, name = 'SetPerspective' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310F, + vfptr offset = 128, name = 'SetVertex' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310F, + vfptr offset = 132, name = 'SetNormal' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3111, + vfptr offset = 136, name = 'SetTextureCoordinates' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3112, + vfptr offset = 140, name = 'SetVertexColor' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x310F, + vfptr offset = 144, name = 'SetVertexColorRGB' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3114, + vfptr offset = 148, name = 'GetFaces' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3116, + vfptr offset = 152, name = 'GetVertices' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3118, + vfptr offset = 156, name = 'GetTextureCoordinates' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3119, + vfptr offset = 160, name = 'AddVertex' + list[42] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3119, + vfptr offset = 164, name = 'AddNormal' + list[43] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311A, + vfptr offset = 168, name = 'CreateFace' + list[44] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x30ED, + vfptr offset = 172, name = 'GetQuality' + list[45] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311B, + vfptr offset = 176, name = 'GetPerspective' + list[46] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311B, + vfptr offset = 180, name = 'GetFaceCount' + list[47] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311B, + vfptr offset = 184, name = 'GetVertexCount' + list[48] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311C, + vfptr offset = 188, name = 'GetVertexColor' + list[49] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x311D, + vfptr offset = 192, name = 'CreateMesh' + +0x311f : Length = 30, Leaf = 0x000a LF_VTSHAPE + Number of entries : 49 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR32 + [39]: NEAR32 + [40]: NEAR32 + [41]: NEAR32 + [42]: NEAR32 + [43]: NEAR32 + [44]: NEAR32 + [45]: NEAR32 + [46]: NEAR32 + [47]: NEAR32 + [48]: NEAR + +0x3120 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 50, field list type 0x311e, + Derivation list type 0x0000, VT shape type 0x311f + Size = 4, class name = IDirect3DRMMeshBuilder, UDT(0x00003120) + +0x3121 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3076 + +0x3122 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3123 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3124 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3125 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3126 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3127 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3128 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3129 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x312a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x312b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x312c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3110, This adjust = 0 + +0x312d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x310a, This adjust = 0 + +0x312e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x312f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = 0x2F36 + list[2] = 0x2F36 + +0x3130 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x312f, This adjust = 0 + +0x3131 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PULONG(0422) + list[1] = 0x2F36 + list[2] = 0x2F36 + +0x3132 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3131, This adjust = 0 + +0x3133 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3117, This adjust = 0 + +0x3134 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f89, This adjust = 0 + +0x3135 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x2F36 + +0x3136 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3135, This adjust = 0 + +0x3137 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f7c, This adjust = 0 + +0x3138 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x308D + +0x3139 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3138, This adjust = 0 + +0x313a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x313b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3076, This type = 0x3121, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x313c : Length = 778, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3122, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3123, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3123, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3124, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3125, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3125, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3126, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3123, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3127, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3128, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3128, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3129, + vfptr offset = 44, name = 'AddVertex' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x312A, + vfptr offset = 48, name = 'AddVertexAndNormalIndexed' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3129, + vfptr offset = 52, name = 'SetColorRGB' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3126, + vfptr offset = 56, name = 'SetColor' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x312B, + vfptr offset = 60, name = 'SetTexture' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x312C, + vfptr offset = 64, name = 'SetTextureCoordinates' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x312D, + vfptr offset = 68, name = 'SetMaterial' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x312E, + vfptr offset = 72, name = 'SetTextureTopology' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3130, + vfptr offset = 76, name = 'GetVertex' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3132, + vfptr offset = 80, name = 'GetVertices' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3133, + vfptr offset = 84, name = 'GetTextureCoordinates' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3134, + vfptr offset = 88, name = 'GetTextureTopology' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3136, + vfptr offset = 92, name = 'GetNormal' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3137, + vfptr offset = 96, name = 'GetTexture' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3139, + vfptr offset = 100, name = 'GetMaterial' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x313A, + vfptr offset = 104, name = 'GetVertexCount' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x313B, + vfptr offset = 108, name = 'GetVertexIndex' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x313B, + vfptr offset = 112, name = 'GetTextureCoordinateIndex' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3123, + vfptr offset = 116, name = 'GetColor' + +0x313d : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 31, field list type 0x313c, + Derivation list type 0x0000, VT shape type 0x1de5 + Size = 4, class name = IDirect3DRMFace, UDT(0x0000313d) + +0x313e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x307B + +0x313f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3140 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3141 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3142 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3143 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3144 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3145 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3146 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMQUATERNION, UDT(0x0000318d) + +0x3147 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3146 + +0x3148 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_REAL32(0040) + list[1] = 0x3147 + +0x3149 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3148, This adjust = 0 + +0x314a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x195c, This adjust = 0 + +0x314b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x314c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x307B, This type = 0x313E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x314d : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x313F, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3140, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3140, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3141, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3142, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3142, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3143, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3140, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3144, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3145, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3145, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3143, + vfptr offset = 44, name = 'SetOptions' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3149, + vfptr offset = 48, name = 'AddRotateKey' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x314A, + vfptr offset = 52, name = 'AddPositionKey' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x314A, + vfptr offset = 56, name = 'AddScaleKey' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x314B, + vfptr offset = 60, name = 'DeleteKey' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x314C, + vfptr offset = 64, name = 'SetFrame' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x314B, + vfptr offset = 68, name = 'SetTime' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3140, + vfptr offset = 72, name = 'GetOptions' + +0x314e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 20, field list type 0x314d, + Derivation list type 0x0000, VT shape type 0x1134 + Size = 4, class name = IDirect3DRMAnimation, UDT(0x0000314e) + +0x314f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3080 + +0x3150 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3151 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3152 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3153 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3154 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3155 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3156 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3157 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x307C + +0x3158 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3157, This adjust = 0 + +0x3159 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_32PVOID(0403) + list[1] = T_32PVOID(0403) + list[2] = T_ULONG(0022) + list[3] = 0x2F8F + list[4] = T_32PVOID(0403) + list[5] = 0x2E7C + +0x315a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x3159, This adjust = 0 + +0x315b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3080, This type = 0x314F, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x315c : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3150, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3151, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3151, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3152, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3153, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3153, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3154, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3151, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3155, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3156, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3156, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3158, + vfptr offset = 44, name = 'AddAnimation' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x315A, + vfptr offset = 48, name = 'Load' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3158, + vfptr offset = 52, name = 'DeleteAnimation' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x315B, + vfptr offset = 56, name = 'SetTime' + +0x315d : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 16, field list type 0x315c, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 4, class name = IDirect3DRMAnimationSet, UDT(0x0000315d) + +0x315e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x308B + +0x315f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3160 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3161 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3162 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3163 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3164 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3165 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3166 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x3167 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x3168 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3169 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x308B, This type = 0x315E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x316a : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x315F, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3160, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3160, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3161, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3162, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3162, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3163, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3160, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3164, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3165, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3165, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3166, + vfptr offset = 44, name = 'SetPower' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3167, + vfptr offset = 48, name = 'SetSpecular' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3167, + vfptr offset = 52, name = 'SetEmissive' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3168, + vfptr offset = 56, name = 'GetPower' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3169, + vfptr offset = 60, name = 'GetSpecular' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3169, + vfptr offset = 64, name = 'GetEmissive' + +0x316b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 18, field list type 0x316a, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 4, class name = IDirect3DRMMaterial, UDT(0x0000316b) + +0x316c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x309F + +0x316d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x316e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x316f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3170 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3171 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3172 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3173 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3174 : Length = 66, Leaf = 0x1201 LF_ARGLIST argument count = 15 + list[0] = 0x2E6F + list[1] = 0x2E7C + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + list[6] = T_REAL32(0040) + list[7] = T_REAL32(0040) + list[8] = T_REAL32(0040) + list[9] = T_REAL32(0040) + list[10] = T_REAL32(0040) + list[11] = T_REAL32(0040) + list[12] = T_REAL32(0040) + list[13] = T_REAL32(0040) + list[14] = T_REAL32(0040) + +0x3175 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 15, Arg list type = 0x3174, This adjust = 0 + +0x3176 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1DA9 + +0x3177 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3176, This adjust = 0 + +0x3178 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E7C + list[1] = 0x1DA9 + +0x3179 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x309F, This type = 0x316C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3178, This adjust = 0 + +0x317a : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x316D, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x316E, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x316E, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x316F, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3170, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3170, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3171, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x316E, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3172, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3173, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3173, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3175, + vfptr offset = 44, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3177, + vfptr offset = 48, name = 'Apply' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3179, + vfptr offset = 52, name = 'ApplyRelative' + +0x317b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 15, field list type 0x317a, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 4, class name = IDirect3DRMWrap, UDT(0x0000317b) + +0x317c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x30B3 + +0x317d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30B3, This type = 0x317C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x317e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x30B3, This type = 0x317C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x317f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x2F42 + +0x3180 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30B3, This type = 0x317C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x317f, This adjust = 0 + +0x3181 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x317D, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x317E, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x317E, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x317E, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3180, + vfptr offset = 16, name = 'GetElement' + +0x3182 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x3181, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMDeviceArray, UDT(0x00003182) + +0x3183 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2945, offset = 0 + member name = 'position' + list[1] = LF_MEMBER, public, type = 0x2945, offset = 12 + member name = 'normal' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'tu' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'tv' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 32 + member name = 'color' + +0x3184 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x3183, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = _D3DRMVERTEX, UDT(0x00003184) + +0x3185 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3103 + +0x3186 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3103, This type = 0x3185, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3187 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3103, This type = 0x3185, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3188 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x3078 + +0x3189 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3103, This type = 0x3185, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3188, This adjust = 0 + +0x318a : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3186, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3187, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3187, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3187, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3189, + vfptr offset = 16, name = 'GetElement' + +0x318b : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x318a, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMFaceArray, UDT(0x0000318b) + +0x318c : Length = 26, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL32(0040), offset = 0 + member name = 's' + list[1] = LF_MEMBER, public, type = 0x2945, offset = 4 + member name = 'v' + +0x318d : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x318c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = _D3DRMQUATERNION, UDT(0x0000318d) + +0x318e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2F0D + +0x318f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x3190 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3191 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x3192 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x3193 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x3194 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3195 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x3196 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x3197 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F0D, This type = 0x318E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x3198 : Length = 294, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x318F, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3190, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3190, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3191, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3192, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3192, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3193, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3190, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3194, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3195, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3195, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3196, + vfptr offset = 44, name = 'HandlePaint' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3197, + vfptr offset = 48, name = 'HandleActivate' + +0x3199 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x3198, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = IDirect3DRMWinDevice, UDT(0x00003199) + +0x319a : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2E79, name = 'ViewportAppData' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2E7A, name = '~ViewportAppData' + list[2] = LF_MEMBER, public, type = 0x2E7C, offset = 0 + member name = 'm_pLightFrame' + list[3] = LF_MEMBER, public, type = 0x2E7C, offset = 4 + member name = 'm_pCamera' + list[4] = LF_MEMBER, public, type = 0x2E7C, offset = 8 + member name = 'm_pLastRenderedFrame' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'm_backgroundColorRed' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 16 + member name = 'm_backgroundColorGreen' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'm_backgroundColorBlue' + +0x319b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x319a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = ViewportAppData, UDT(0x00004d4d) + +0x319c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x2F29 + +0x319d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x319e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x319f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x31a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x31a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x31a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x31a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x31a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x31a5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1FE2 + list[1] = 0x1FE4 + +0x31a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31a5, This adjust = 0 + +0x31a7 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1247 + list[1] = 0x1762 + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + +0x31a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x31a7, This adjust = 0 + +0x31a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x31aa : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x2F2A + list[1] = T_32PVOID(0403) + list[2] = T_INT4(0074) + list[3] = 0x28F0 + +0x31ab : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 4, Arg list type = 0x31aa + +0x31ac : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x31AB + +0x31ad : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x31AC + list[1] = T_32PVOID(0403) + +0x31ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31ad, This adjust = 0 + +0x31af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x31b0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1069 + +0x31b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31b0, This adjust = 0 + +0x31b2 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMViewportArray, UDT(0x000031d0) + +0x31b3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x31B2 + +0x31b4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x31B3 + +0x31b5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x31B4 + +0x31b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31b5, This adjust = 0 + +0x31b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x31b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1069, Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x31b9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1FE4 + +0x31ba : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x31B9 + +0x31bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x2F29, This type = 0x319C, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31ba, This adjust = 0 + +0x31bc : Length = 866, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DA8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x319D, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x319E, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x319E, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x319F, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A0, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A0, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A1, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x319E, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A2, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A3, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31A3, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A4, + vfptr offset = 44, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A6, + vfptr offset = 48, name = 'InitFromD3D' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A8, + vfptr offset = 52, name = 'InitFromClipper' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A9, + vfptr offset = 56, name = 'Update' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31AE, + vfptr offset = 60, name = 'AddUpdateCallback' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31AE, + vfptr offset = 64, name = 'DeleteUpdateCallback' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A1, + vfptr offset = 68, name = 'SetBufferCount' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 72, name = 'GetBufferCount' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31AF, + vfptr offset = 76, name = 'SetDither' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A1, + vfptr offset = 80, name = 'SetShades' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31A1, + vfptr offset = 84, name = 'SetQuality' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31B1, + vfptr offset = 88, name = 'SetTextureQuality' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31B6, + vfptr offset = 92, name = 'GetViewports' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31B7, + vfptr offset = 96, name = 'GetDither' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 100, name = 'GetShades' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 104, name = 'GetHeight' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 108, name = 'GetWidth' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 112, name = 'GetTrianglesDrawn' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 116, name = 'GetWireframeOptions' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 120, name = 'GetQuality' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x319E, + vfptr offset = 124, name = 'GetColorModel' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31B8, + vfptr offset = 128, name = 'GetTextureQuality' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31BB, + vfptr offset = 132, name = 'GetDirect3DDevice' + +0x31bd : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 35, field list type 0x31bc, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 4, class name = IDirect3DRMDevice, UDT(0x000031bd) + +0x31be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x30A4 + +0x31bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x31c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x31c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x31c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x31c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x31c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x31c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x31c6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x30A8 + list[1] = T_32PVOID(0403) + +0x31c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x30A4, This type = 0x31BE, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31c6, This adjust = 0 + +0x31c8 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31BF, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C0, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C0, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C1, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C2, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C2, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C3, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C0, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C4, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C5, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31C5, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31C7, + vfptr offset = 44, name = 'Init' + +0x31c9 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x31c8, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 4, class name = IDirect3DRMUserVisual, UDT(0x000031c9) + +0x31ca : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x31B2 + +0x31cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x31B2, This type = 0x31CA, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x31cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x31B2, This type = 0x31CA, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x31cd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_ULONG(0022) + list[1] = 0x309C + +0x31ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x31B2, This type = 0x31CA, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31cd, This adjust = 0 + +0x31cf : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31CB, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31CC, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31CC, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x31CC, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31CE, + vfptr offset = 16, name = 'GetElement' + +0x31d0 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x31cf, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMViewportArray, UDT(0x000031d0) + +0x31d1 : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[33] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31d2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31d1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31d3 : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31d4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31d5 : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[33] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31d6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31d7 : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31d8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31d9 : Length = 690, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[30] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31da : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31db : Length = 670, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[29] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[30] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31dc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x31db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31dd : Length = 650, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[28] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[29] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x31dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31df : Length = 630, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[27] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[28] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31e0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x31df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31e1 : Length = 610, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[26] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[27] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31e2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x31e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31e3 : Length = 610, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[26] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[27] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31e4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x31e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31e5 : Length = 590, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[25] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[26] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31e6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x31e5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31e7 : Length = 570, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[24] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[25] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31e8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 26, field list type 0x31e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31e9 : Length = 550, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[23] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[24] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31ea : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x31e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31eb : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[22] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[23] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31ec : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x31eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31ed : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[33] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31ee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31ef : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[32] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31f0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31f1 : Length = 690, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[30] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31f2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31f1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31f3 : Length = 1034, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnkTimingField' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnkTimingField' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown8c' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown8c' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'dong' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[38] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[41] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[42] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[43] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk84' + list[44] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk88' + list[45] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_unk8c' + list[46] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unkTimingField' + +0x31f4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x31f3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x31f5 : Length = 1050, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnkTimingField' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnkTimingField' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown8c' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown8c' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'dong' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'dong2' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[37] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[42] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[43] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk84' + list[45] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk88' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_unk8c' + list[47] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unkTimingField' + +0x31f6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x31f5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x31f7 : Length = 690, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_MEMBER, private, type = 0x1E9D, offset = 0 + member name = 'm_flags1' + list[31] = LF_MEMBER, private, type = 0x1E9D, offset = 1 + member name = 'm_flags2' + +0x31f8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31f7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x31f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10bc, This adjust = 0 + +0x31fa : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31F9, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F14, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, private, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x31fb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x31fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x31fc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1CD3 + +0x31fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17AC, This type = 0x17AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x31fc, This adjust = 0 + +0x31fe : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31F9, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31FD, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, private, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x31ff : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x31fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x3200 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x2e54 + +0x3201 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182D, This type = 0x182E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3202 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3201, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C43, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = '_InsertEntry' + +0x3203 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3202, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x3204 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x123B, This type = 0x1836, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3205 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3204, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C73, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = '_InsertEntry' + +0x3206 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3205, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x3207 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1586, This type = 0x1595, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3208 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3207, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EE0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = '_InsertEntry' + +0x3209 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3208, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x320a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E6, This type = 0x13E7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x320b : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320A, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2020, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = '_InsertEntry' + +0x320c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x320b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x320d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1404, This type = 0x1405, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x320e : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320D, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2039, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = '_InsertEntry' + +0x320f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x320e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x3210 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x199D, This type = 0x199E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3211 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3210, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20AB, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = '_InsertEntry' + +0x3212 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3211, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x3213 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E89, This type = 0x20C8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3214 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3213, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20CE, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = '_InsertEntry' + +0x3215 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3214, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x3216 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x163D, This type = 0x16A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3217 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3216, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2692, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = '_InsertEntry' + +0x3218 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3217, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x3219 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x164E, This type = 0x164F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x321a : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3219, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26C0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = '_InsertEntry' + +0x321b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x321a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x321c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1D, This type = 0x2D1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x321d : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x2D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D1F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x321C, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D47, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D49, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2D4B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2D4B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4D, name = '_DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4F, name = '_InsertEntry' + +0x321e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x321d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +0x321f : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3220 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x321f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3221 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x3222 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3221, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x3223 : Length = 330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3224 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3223, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3225 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3226 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3225, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3227 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3228 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3227, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3229 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[17] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x322a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3229, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x322b : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x322c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x322d : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x322e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x322f : Length = 330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3230 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3231 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3232 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3231, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3233 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3234 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3233, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3235 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'dong' + list[14] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[17] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3236 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3235, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3237 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3238 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3237, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3239 : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x323a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3239, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x323b : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x323c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x323d : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x323e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x323f : Length = 350, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3240 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3241 : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[17] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3242 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3241, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3243 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17B5, This type = 0x17B6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x3244 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17B5, This type = 0x17B6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3245 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17B7, name = 'MxCompositeMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = '~MxCompositeMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BA, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BB, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3243, name = 'StartAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'PutData' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk4c' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 78 + member name = 'm_unk4e' + +0x3246 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3245, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +0x3247 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F14, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2F14, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, protected, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x3248 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3247, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x3249 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'vtable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'vtable0x1C' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'vtable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'vtable0x24' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'vtable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'vtable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'vtable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[18] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'atom' + list[20] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk2c' + list[22] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[23] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unkList0x3c' + list[24] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unkList0x54' + list[26] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x324a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x3249, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x324b : Length = 478, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'vtable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'vtable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'vtable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'vtable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 56, name = 'vtable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 60, name = 'vtable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unkc4' + +0x324c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x324b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x324d : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x271F, name = 'MxRAMStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1339, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x133A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1434, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'vtable0x20' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'vtable0x24' + list[7] = LF_MEMBER, private, type = 0x1618, offset = 100 + member name = 'm_buffer' + list[8] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x271F, name = '~MxRAMStreamController' + +0x324e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x324d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +0x324f : Length = 1034, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnkTimingField' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnkTimingField' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[38] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[41] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[42] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[43] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[44] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[45] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[46] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0xTimingField' + +0x3250 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x324f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x3251 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1993, name = 'LegoEventNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1992, name = '~LegoEventNotificationParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1995, name = 'GetKey' + list[4] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 12 + member name = 'm_modifier' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 16 + member name = 'm_x' + list[6] = LF_MEMBER, protected, type = T_INT4(0074), offset = 20 + member name = 'm_y' + list[7] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 24 + member name = 'm_key' + list[8] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + +0x3252 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3251, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 32, class name = LegoEventNotificationParam, UDT(0x00003252) + +0x3253 : Length = 630, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'unk14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[23] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[25] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[27] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[28] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk0x28' + +0x3254 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3253, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x3255 : Length = 762, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x149B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'LegoEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19F3, name = '~LegoEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19FC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AEE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F8, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 28, name = 'Destroy' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FB, + vfptr offset = 32, name = 'ParseAction' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FA, + vfptr offset = 36, name = 'SetROI' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F7, + vfptr offset = 40, name = 'SetWorldTransform' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 44, name = 'ResetWorldTransform' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B25, + vfptr offset = 48, name = 'SetWorldSpeed' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 56, name = 'VTable0x38' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 60, name = 'VTable0x3c' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 64, name = 'VTable0x40' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 72, name = 'VTable0x48' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 76, name = 'VTable0x4c' + list[20] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'Init' + list[21] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'SetWorld' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[23] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 17 + member name = 'm_unk0x11' + list[24] = LF_MEMBER, protected, type = 0x10A9, offset = 20 + member name = 'm_worldLocation' + list[25] = LF_MEMBER, protected, type = 0x10A9, offset = 40 + member name = 'm_worldDirection' + list[26] = LF_MEMBER, protected, type = 0x10A9, offset = 60 + member name = 'm_worldUp' + list[27] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 80 + member name = 'm_worldSpeed' + list[28] = LF_MEMBER, protected, type = 0x1910, offset = 84 + member name = 'm_roi' + list[29] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 88 + member name = 'm_cameraFlag' + list[30] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 89 + member name = 'm_unk0x59' + list[31] = LF_MEMBER, protected, type = 0x1050, offset = 92 + member name = 'm_actionType' + list[32] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 96 + member name = 'm_actionArgString' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 100 + member name = 'm_actionArgNumber' + +0x3256 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3255, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +0x3257 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18E6, name = 'LegoActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A57, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A58, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A51, + vfptr offset = 80, name = 'VTable0x50' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A52, + vfptr offset = 84, name = 'VTable0x54' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A52, + vfptr offset = 88, name = 'VTable0x58' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A51, + vfptr offset = 92, name = 'VTable0x5c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A53, + vfptr offset = 96, name = 'VTable0x60' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A54, + vfptr offset = 100, name = 'VTable0x64' + list[10] = LF_MEMBER, private, type = T_REAL32(0040), offset = 104 + member name = 'm_unk0x68' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[12] = LF_MEMBER, private, type = T_REAL32(0040), offset = 112 + member name = 'm_unk0x70' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 116 + member name = 'm_unk0x74' + list[14] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x18E6, name = '~LegoActor' + +0x3258 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3257, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = LegoActor, UDT(0x00003258) + +0x3259 : Length = 854, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18E4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18DF, name = 'LegoPathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DF, name = '~LegoPathActor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 104, name = 'VTable0x68' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 108, name = 'VTable0x6c' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 112, name = 'VTable0x70' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 116, name = 'VTable0x74' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 120, name = 'VTable0x78' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 124, name = 'VTable0x7c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 128, name = 'VTable0x80' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 132, name = 'VTable0x84' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 136, name = 'VTable0x88' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 140, name = 'VTable0x8c' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 144, name = 'VTable0x90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 148, name = 'VTable0x94' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 152, name = 'VTable0x98' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 156, name = 'VTable0x9c' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 160, name = 'VTable0xa0' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 164, name = 'VTable0xa4' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 168, name = 'VTable0xa8' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 172, name = 'VTable0xac' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 176, name = 'VTable0xb0' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 180, name = 'VTable0xb4' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 184, name = 'VTable0xb8' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 188, name = 'VTable0xbc' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 192, name = 'VTable0xc0' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 196, name = 'VTable0xc4' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 200, name = 'VTable0xc8' + list[30] = LF_MEMBER, protected, type = 0x1C25, offset = 120 + member name = 'unk78' + list[31] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 316 + member name = 'm_unk0x13c' + list[32] = LF_MEMBER, protected, type = T_INT4(0074), offset = 320 + member name = 'm_unk0x140' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 324 + member name = 'm_unk0x144' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 328 + member name = 'm_unk0x148' + list[35] = LF_MEMBER, protected, type = T_INT4(0074), offset = 332 + member name = 'm_unk0x14c' + list[36] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 336 + member name = 'm_unk0x150' + +0x325a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3259, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +0x325b : Length = 486, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1843, name = 'EndAction' + list[15] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[16] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[18] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[19] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[20] = LF_MEMBER, protected, type = 0x1C80, offset = 208 + member name = 'm_unk0xd0' + list[21] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x325c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x325b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x325d : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B1A, name = 'Act3' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1A, name = '~Act3' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1D, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1E, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C85, name = 'SetUnkown420c' + list[6] = LF_MEMBER, protected, type = 0x1C86, offset = 248 + member name = 'm_unk0xf8' + list[7] = LF_MEMBER, protected, type = 0x149C, offset = 16908 + member name = 'm_unk0x420c' + list[8] = LF_MEMBER, protected, type = 0x1C87, offset = 16912 + member name = 'm_unk0x4210' + +0x325e : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x325d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +0x325f : Length = 626, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'vtable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'vtable0x1C' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'vtable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'vtable0x24' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'vtable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'vtable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'vtable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[18] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'atom' + list[20] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[22] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[23] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0xList0x3c' + list[24] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0xList0x54' + list[26] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x3260 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x325f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3261 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_MEMBER, private, type = 0x14F1, offset = 8 + member name = 'm_queue' + list[2] = LF_MEMBER, private, type = 0x14F1, offset = 12 + member name = 'm_sendList' + list[3] = LF_MEMBER, private, type = 0x11D9, offset = 16 + member name = 'm_lock' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 44 + member name = 'm_unk0x2c' + list[5] = LF_MEMBER, private, type = 0x1519, offset = 48 + member name = 'm_listenerIds' + list[6] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 60 + member name = 'm_active' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1515, name = 'MxNotificationManager' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1515, name = '~MxNotificationManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x153E, name = 'Tickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1525, + vfptr offset = 20, name = 'Create' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Register' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Unregister' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1526, name = 'Send' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD9, name = 'GetQueue' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CDA, name = 'SetActive' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x1540, name = 'FlushPending' + +0x3262 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3261, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 64, class name = MxNotificationManager, UDT(0x0000374c) + +0x3263 : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17F1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13AD, name = 'MxSoundManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13AD, name = '~MxSoundManager' + list[3] = LF_METHOD, count = 2, list = 0x1CEB, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B1, name = 'SetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B0, + vfptr offset = 48, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13AD, + vfptr offset = 52, name = 'Pause' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13AD, + vfptr offset = 56, name = 'Resume' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1CEE, name = 'GetDirectSound' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x13B6, name = 'FUN_100aecf0' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x13AD, name = 'Init' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x13B5, name = 'FUN_100aebd0' + list[12] = LF_MEMBER, private, type = 0x1CED, offset = 48 + member name = 'm_directSound' + list[13] = LF_MEMBER, private, type = 0x1CF0, offset = 52 + member name = 'm_dsBuffer' + list[14] = LF_MEMBER, private, type = 0x1CF1, offset = 56 + member name = 'm_unk0x38' + +0x3264 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3263, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 60, class name = MxSoundManager, UDT(0x00003264) + +0x3265 : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1249, + vfptr offset = 40, name = 'vtable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'vtable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[17] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[18] = LF_MEMBER, protected, type = 0x11E7, offset = 84 + member name = 'm_pDDSurface' + list[19] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[20] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[21] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk0x60' + +0x3266 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3265, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x3267 : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17F1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'MxMusicManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x156E, name = '~MxMusicManager' + list[3] = LF_METHOD, count = 2, list = 0x1CFD, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1571, name = 'SetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1570, + vfptr offset = 48, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1CFE, name = 'GetMIDIInitialized' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'DeinitializeMIDI' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1574, name = 'FUN_100c09c0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1571, name = 'SetMultiplier' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1572, name = 'CalculateVolume' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x156E, name = 'SetMIDIVolume' + list[12] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 48 + member name = 'm_MIDIStreamH' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_MIDIInitialized' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 56 + member name = 'm_unk0x38' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'm_unk0x3c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'm_unk0x40' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_unk0x44' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_unk0x48' + list[19] = LF_MEMBER, private, type = 0x1D00, offset = 76 + member name = 'm_MIDIHdrP' + list[20] = LF_MEMBER, private, type = T_INT4(0074), offset = 80 + member name = 'm_multiplier' + list[21] = LF_MEMBER, private, type = T_ULONG(0022), offset = 84 + member name = 'm_MIDIVolume' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'Init' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'InitData' + +0x3268 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x3267, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +0x3269 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1D13, name = 'Act3State' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D16, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D17, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B17, name = 'VTable0x14' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + list[6] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1D13, name = '~Act3State' + +0x326a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3269, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = Act3State, UDT(0x0000326a) + +0x326b : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A78, name = 'IslePathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B0F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B10, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A78, name = '~IslePathActor' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A79, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 204, name = 'VTable0xcc' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 208, name = 'VTable0xd0' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 212, name = 'VTable0xd4' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 216, name = 'VTable0xd8' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 220, name = 'VTable0xdc' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 224, name = 'VTable0xe0' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 228, name = 'VTable0xe4' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A7B, + vfptr offset = 232, name = 'VTable0xe8' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 236, name = 'VTable0xec' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1A, name = 'SetWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1B, name = 'GetWorld' + list[17] = LF_MEMBER, private, type = 0x128A, offset = 340 + member name = 'm_pLegoWorld' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 344 + member name = 'm_unk0x158' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 348 + member name = 'm_unk0x15c' + +0x326c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x326b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +0x326d : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B0C, name = 'Ambulance' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B13, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B14, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk0x168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk0x16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk0x16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk0x16e' + list[10] = LF_MEMBER, private, type = T_SHORT(0011), offset = 368 + member name = 'm_unk0x170' + list[11] = LF_MEMBER, private, type = T_SHORT(0011), offset = 370 + member name = 'm_unk0x172' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk0x174' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 376 + member name = 'm_unk0x178' + list[14] = LF_MEMBER, private, type = T_REAL32(0040), offset = 380 + member name = 'm_unk0x17c' + list[15] = LF_MEMBER, private, type = 0x1CF1, offset = 384 + member name = 'm_unk0x180' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1B0C, name = '~Ambulance' + +0x326e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x326d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +0x326f : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B05, name = 'AmbulanceMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B08, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B09, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1D21, name = 'GetColor' + list[5] = LF_MEMBER, protected, type = 0x1D22, offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 26 + member name = 'm_color1' + list[7] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_color2' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color3' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color4' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color5' + +0x3270 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x326f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +0x3271 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AF5, name = 'Bike' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF8, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF9, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1AF5, name = '~Bike' + +0x3272 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3271, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +0x3273 : Length = 674, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18B6, name = 'LegoRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B6, name = '~LegoRace' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B9, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BA, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BB, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x5c' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x64' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BD, name = 'VTable0x68' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 108, name = 'VTable0x6c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 112, name = 'VTable0x70' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 116, name = 'VTable0x74' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 120, name = 'VTable0x78' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B4, + vfptr offset = 124, name = 'VTable0x7c' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 248 + member name = 'm_unk0xf8' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 256 + member name = 'm_unk0x100' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 264 + member name = 'm_unk0x108' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 280 + member name = 'm_unk0x118' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 292 + member name = 'm_unk0x124' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 296 + member name = 'm_unk0x128' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 300 + member name = 'm_unk0x12c' + list[29] = LF_MEMBER, private, type = 0x1D31, offset = 304 + member name = 'm_unk0x130' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 320 + member name = 'm_unk0x140' + +0x3274 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3273, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +0x3275 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ADA, name = 'DuneBuggy' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADD, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADE, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 360 + member name = 'm_unk0x168' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1ADA, name = '~DuneBuggy' + +0x3276 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3275, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +0x3277 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1ABF, name = 'FindNode' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1D42, name = 'Get' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x0' + list[3] = LF_MEMBER, public, type = 0x1ABA, offset = 4 + member name = 'm_unk0x4' + +0x3278 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3277, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = GifMap, UDT(0x00003278) + +0x3279 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x191F, + vfptr offset = 0, name = '~GifManagerBase' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1D4B, name = 'Get' + list[3] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x0' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x4' + list[5] = LF_MEMBER, protected, type = 0x1ABB, offset = 12 + member name = 'm_unk0x8' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x191F, name = 'GifManagerBase' + +0x327a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3279, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = GifManagerBase, UDT(0x0000327a) + +0x327b : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x191D, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D4E, name = '~GifManager' + list[2] = LF_MEMBER, protected, type = 0x1C7F, offset = 20 + member name = 'm_unk0x' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1D4E, name = 'GifManager' + +0x327c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x327b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +0x327d : Length = 330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AB3, name = 'Helicopter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB6, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB7, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB8, name = 'Create' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = 'VTable0xe4' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = '~Helicopter' + list[7] = LF_MEMBER, protected, type = 0x102C, offset = 352 + member name = 'm_unk0x160' + list[8] = LF_MEMBER, protected, type = 0x102C, offset = 424 + member name = 'm_unk0x1a8' + list[9] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 496 + member name = 'm_unk0x1f0' + list[10] = LF_MEMBER, protected, type = 0x1E48, offset = 500 + member name = 'm_unk0x1f4' + list[11] = LF_MEMBER, protected, type = 0x1E48, offset = 524 + member name = 'm_unk0x20c' + list[12] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 548 + member name = 'm_unk0x224' + list[13] = LF_MEMBER, protected, type = 0x1E4A, offset = 552 + member name = 'm_state' + list[14] = LF_MEMBER, protected, type = 0x1064, offset = 556 + member name = 'm_unk0x22c' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x1AB3, name = 'GetState' + +0x327e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x327d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +0x327f : Length = 770, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[18] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[19] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[20] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xC' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[24] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[25] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[26] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[28] = LF_MEMBER, private, type = 0x1E5F, offset = 38 + member name = 'm_unk0x28' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x3280 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x327f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x3281 : Length = 1306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x128A, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_unk0xLegoSaveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x3282 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3281, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x3283 : Length = 1058, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk0x64' + list[14] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[17] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[18] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[20] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[22] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[23] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk0x4e8' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[26] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[27] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[28] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[32] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[34] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[36] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[39] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[40] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[41] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[42] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[43] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[45] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x3284 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3283, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x3285 : Length = 998, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x1953, name = 'GetDefaults' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1955, name = 'SetDefaults' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'LegoNavController' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194C, name = '~LegoNavController' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1950, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1951, name = 'SetControlMax' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'ResetToDefault' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1957, name = 'SetTargets' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1959, name = 'CalculateNewTargetSpeed' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x195B, name = 'CalculateNewAccel' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x195D, name = 'CalculateNewVel' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_hMax' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_vMax' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 16 + member name = 'm_mouseDeadzone' + list[16] = LF_MEMBER, private, type = T_REAL32(0040), offset = 20 + member name = 'm_zeroThreshold' + list[17] = LF_MEMBER, private, type = T_REAL32(0040), offset = 24 + member name = 'unk_18' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 28 + member name = 'unk_1C' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 32 + member name = 'm_targetMovementSpeed' + list[20] = LF_MEMBER, private, type = T_REAL32(0040), offset = 36 + member name = 'm_targetTurnSpeed' + list[21] = LF_MEMBER, private, type = T_REAL32(0040), offset = 40 + member name = 'm_movementMaxSpeed' + list[22] = LF_MEMBER, private, type = T_REAL32(0040), offset = 44 + member name = 'm_turnMaxSpeed' + list[23] = LF_MEMBER, private, type = T_REAL32(0040), offset = 48 + member name = 'm_movementAccel' + list[24] = LF_MEMBER, private, type = T_REAL32(0040), offset = 52 + member name = 'm_turnAccel' + list[25] = LF_MEMBER, private, type = T_REAL32(0040), offset = 56 + member name = 'm_movementMaxAccel' + list[26] = LF_MEMBER, private, type = T_REAL32(0040), offset = 60 + member name = 'm_turnMaxAccel' + list[27] = LF_MEMBER, private, type = T_REAL32(0040), offset = 64 + member name = 'm_movementMinAccel' + list[28] = LF_MEMBER, private, type = T_REAL32(0040), offset = 68 + member name = 'm_turnMinAccel' + list[29] = LF_MEMBER, private, type = T_REAL32(0040), offset = 72 + member name = 'm_movementDecel' + list[30] = LF_MEMBER, private, type = T_REAL32(0040), offset = 76 + member name = 'm_turnDecel' + list[31] = LF_MEMBER, private, type = T_REAL32(0040), offset = 80 + member name = 'm_turnSensitivity' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 84 + member name = 'm_turnUseVelocity' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 88 + member name = 'm_time' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 92 + member name = 'm_trackDefault' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 93 + member name = 'm_unk0x5D' + list[36] = LF_MEMBER, private, type = 0x19D6, offset = 94 + member name = 'm_unk0x5E' + list[37] = LF_MEMBER, private, type = T_INT4(0074), offset = 96 + member name = 'm_unk0x60' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 100 + member name = 'm_unk0x64' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 104 + member name = 'm_unk0x68' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 108 + member name = 'm_unk0x6C' + +0x3286 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3285, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +0x3287 : Length = 666, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'MxBackgroundAudioManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17DE, name = '~MxBackgroundAudioManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E7, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E1, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17E2, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x17E9, name = 'StartAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x17E9, name = 'StopAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x17EB, name = 'PlayMusic' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FUN_1007ee70' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FUN_1007ef40' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'FadeInOrFadeOut' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x17EC, name = 'Enable' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17E4, + vfptr offset = 20, name = 'Create' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'Stop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'LowerVolume' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x17DE, name = 'RaiseVolume' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x17DE, name = 'Init' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x17E6, name = 'OpenMusic' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x17DE, name = 'DestroyMusic' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 8 + member name = 'm_musicEnabled' + list[22] = LF_MEMBER, private, type = 0x108B, offset = 12 + member name = 'm_action1' + list[23] = LF_MEMBER, private, type = 0x1E9A, offset = 160 + member name = 'm_unk0xa0' + list[24] = LF_MEMBER, private, type = 0x108B, offset = 164 + member name = 'm_action2' + list[25] = LF_MEMBER, private, type = 0x1E9A, offset = 312 + member name = 'm_unk0x138' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 316 + member name = 'm_unk0x13c' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 320 + member name = 'm_unk0x140' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 324 + member name = 'm_targetVolume' + list[29] = LF_MEMBER, private, type = T_SHORT(0011), offset = 328 + member name = 'm_unk0x148' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 332 + member name = 'm_script' + +0x3288 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3287, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 336, class name = MxBackgroundAudioManager, UDT(0x00003288) + +0x3289 : Length = 798, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x127C, name = 'MxTransitionManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127C, name = '~MxTransitionManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x128D, name = 'SetWaitIndicator' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1281, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1280, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1281, + vfptr offset = 20, name = 'GetDDrawSurfaceFromVideoManager' + list[8] = LF_NESTTYPE, type = 0x1283, TransitionType + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1285, name = 'StartTransition' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1288, name = 'EndTransition' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_None' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Dissolve' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Pixelation' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Wipe' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Windows' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'Transition_Broken' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SubmitCopyRect' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SetupCopyRect' + list[19] = LF_MEMBER, private, type = 0x128B, offset = 8 + member name = 'm_waitIndicator' + list[20] = LF_MEMBER, private, type = 0x1D56, offset = 12 + member name = 'm_copyRect' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 28 + member name = 'm_copyBuffer' + list[22] = LF_MEMBER, private, type = 0x1E9D, offset = 32 + member name = 'm_copyFlags' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 36 + member name = 'm_unk0x24' + list[24] = LF_MEMBER, private, type = 0x1E9D, offset = 40 + member name = 'm_unk0x28' + list[25] = LF_MEMBER, private, type = 0x1283, offset = 44 + member name = 'm_transitionType' + list[26] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 52 + member name = 'm_animationTimer' + list[28] = LF_MEMBER, private, type = 0x1E9E, offset = 54 + member name = 'm_columnOrder' + list[29] = LF_MEMBER, private, type = 0x1E9F, offset = 1334 + member name = 'm_randomShift' + list[30] = LF_MEMBER, private, type = T_ULONG(0022), offset = 2296 + member name = 'm_systemTime' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 2300 + member name = 'm_animationSpeed' + +0x328a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3289, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +0x328b : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A71, name = 'Jetski' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A74, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A75, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A71, name = '~Jetski' + +0x328c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x328b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +0x328d : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0x0c' + list[17] = LF_MEMBER, private, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[19] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x328e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x328d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x328f : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 28 + member name = 'm_unk0x1c' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1ED0, name = '~MxStreamChunk' + +0x3290 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x328f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3291 : Length = 774, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FC7, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x11E5, name = 'MxVideoPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = '~MxVideoPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3A, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3B, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StreamingTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'RepeatingTickle' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'Unk5Tickle' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'AddToManager' + list[12] = LF_METHOD, count = 2, list = 0x1FC8, name = 'Destroy' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'EndAction' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'PutData' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121B, name = 'IsHit' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 92, name = 'LoadHeader' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 96, name = 'CreateBitmap' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 100, name = 'NextFrame' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 104, name = 'LoadFrame' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 108, name = 'VTable0x6c' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 112, name = 'RealizePalette' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 116, name = 'VTable0x74' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E8, + vfptr offset = 120, name = 'VTable0x78' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 124, name = 'VTable0x7c' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 128, name = 'GetWidth' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 132, name = 'GetHeight' + list[27] = LF_NESTTYPE, type = 0x11EB, AlphaMask + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC9, name = 'GetBitmap' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x11E5, name = 'Init' + list[30] = LF_MEMBER, protected, type = 0x1718, offset = 80 + member name = 'm_bitmap' + list[31] = LF_MEMBER, protected, type = 0x1FCA, offset = 84 + member name = 'm_alpha' + list[32] = LF_MEMBER, protected, type = 0x11E7, offset = 88 + member name = 'm_unk0x58' + list[33] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 92 + member name = 'm_unk0x5c' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 94 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 96 + member name = 'm_unk0x60' + +0x3292 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3291, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x3293 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[1] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_unk0x04' + list[3] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + +0x3294 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3293, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +0x3295 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'Clear' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x1797, name = 'BuildErrorString' + list[10] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[11] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[12] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x3296 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3295, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x3297 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1FFB, name = 'MxVideoParam' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1230, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1222, name = '~MxVideoParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x122C, name = 'SetDeviceName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFC, name = 'flags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFD, name = 'SetPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFE, name = 'SetBackBuffers' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFF, name = 'GetRect' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2000, name = 'GetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2001, name = 'GetBackBuffers' + list[10] = LF_MEMBER, private, type = 0x11FA, offset = 0 + member name = 'm_rect' + list[11] = LF_MEMBER, private, type = 0x1225, offset = 16 + member name = 'm_palette' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_backBuffers' + list[13] = LF_MEMBER, private, type = 0x121D, offset = 24 + member name = 'm_flags' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 28 + member name = 'm_unk0x1c' + list[15] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 32 + member name = 'm_deviceId' + +0x3298 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3297, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +0x3299 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[2] = LF_MEMBER, public, type = 0x206F, offset = 0 + member name = 'm_unk0xnown' + list[3] = LF_MEMBER, public, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x329a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3299, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x329b : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F0, + vfptr offset = 108, name = 'vtable6c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 76 + member name = 'm_unk0x4c' + +0x329c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x329b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x329d : Length = 722, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13A5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11C6, name = 'MxWavePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = '~MxWavePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1975, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1976, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'StreamingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'DoneTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'ParseExtra' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C8, name = 'AddToManager' + list[11] = LF_METHOD, count = 2, list = 0x213A, name = 'Destroy' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C6, name = 'EndAction' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C8, name = 'PutData' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C9, name = 'Enable' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11D6, name = 'AppendChunk' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E0, name = 'SetVolume' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C6, + vfptr offset = 100, name = 'Pause' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C6, + vfptr offset = 104, name = 'Resume' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11C7, + vfptr offset = 108, name = 'IsPaused' + list[20] = LF_NESTTYPE, type = 0x213B, WaveFormat + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x11C6, name = 'Init' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x11CA, name = 'GetPlayedChunks' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x11C7, name = 'FUN_100b1ba0' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x11CC, name = 'WriteToSoundBuffer' + list[25] = LF_MEMBER, private, type = 0x213C, offset = 84 + member name = 'm_waveFormat' + list[26] = LF_MEMBER, private, type = 0x1CF0, offset = 88 + member name = 'm_dsBuffer' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 92 + member name = 'm_chunkLength' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 96 + member name = 'm_lockSize' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 100 + member name = 'm_writtenChunks' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 101 + member name = 'm_started' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 102 + member name = 'm_unk0x66' + list[32] = LF_MEMBER, private, type = T_CHAR(0010), offset = 103 + member name = 'm_silenceData' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 104 + member name = 'm_paused' + +0x329e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x329d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = MxWavePresenter, UDT(0x0000329e) + +0x329f : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[9] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[10] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[11] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_unk0x20' + list[16] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk0x30' + +0x32a0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x329f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x32a1 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18C7, name = 'LegoPhonemePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18C7, name = '~LegoPhonemePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CA, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x18C7, name = 'Init' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 104 + member name = 'm_unk0x68' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 108 + member name = 'm_unk0x6c' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[8] = LF_MEMBER, private, type = 0x1272, offset = 116 + member name = 'm_string' + list[9] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 132 + member name = 'm_unk0x84' + +0x32a2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 136, class name = LegoPhonemePresenter, UDT(0x000032a2) + +0x32a3 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_name' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_red' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_green' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'm_blue' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 16 + member name = 'm_unk0x10' + +0x32a4 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32a3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = ROIColorAlias, UDT(0x000032a4) + +0x32a5 : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1857, name = 'LegoVehicleBuildState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x185A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x185B, name = 'IsA' + list[4] = LF_NESTTYPE, type = 0x1852, UnkStruct + list[5] = LF_MEMBER, private, type = 0x2308, offset = 8 + member name = 'm_unk0x08' + list[6] = LF_MEMBER, private, type = 0x1272, offset = 56 + member name = 'm_className' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_animationState' + list[8] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 76 + member name = 'm_unk0x4c' + list[9] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 77 + member name = 'm_unk0x4d' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 78 + member name = 'm_unk0x4e' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 79 + member name = 'm_placedPartCount' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2309, name = '~LegoVehicleBuildState' + +0x32a6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x32a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 80, class name = LegoVehicleBuildState, UDT(0x000032a6) + +0x32a7 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'm_unk0x04' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 6 + member name = 'm_unk0x06' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 8 + member name = 'm_unk0x08' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1854, name = 'UnkStruct' + +0x32a8 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32a7, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = LegoVehicleBuildState::UnkStruct, UDT(0x000032a8) + +0x32a9 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1813, name = 'LegoWorldPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = '~LegoWorldPresenter' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1811, name = 'configureLegoWorldPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1816, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1817, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 80 + member name = 'm_unk0x50' + +0x32aa : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +0x32ab : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x180B, name = 'Motorcycle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180E, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180F, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = 0x1CF1, offset = 360 + member name = 'm_unk0x168' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x180B, name = '~Motorcycle' + +0x32ac : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32ab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +0x32ad : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x04' + +0x32ae : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x32ad, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxDSMediaAction::__unnamed + +0x32af : Length = 490, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16BA, name = 'MxDSMediaAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BA, name = '~MxDSMediaAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16C1, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16C2, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C4, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C5, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x16C3, name = 'CopyMediaSrcPath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetMediaFormat' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetPaletteManagement' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x231B, name = 'GetSustainTime' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[14] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 152 + member name = 'm_mediaSrcPath' + list[15] = LF_MEMBER, private, type = 0x32AE, offset = 156 + member name = 'm_unk0x9c' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 164 + member name = 'm_framesPerSecond' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 168 + member name = 'm_mediaFormat' + list[18] = LF_MEMBER, private, type = T_INT4(0074), offset = 172 + member name = 'm_paletteManagement' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 176 + member name = 'm_sustainTime' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 180 + member name = 'm_unk0xb4' + +0x32b0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x32af, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +0x32b1 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2324, name = 'MxNextActionDataStart' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1394, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1395, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2325, name = 'GetObjectId' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2326, name = 'GetUnknown24' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_objectId' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 12 + member name = 'm_unk0x24val' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_data' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2327, name = '~MxNextActionDataStart' + +0x32b2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +0x32b3 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetUnk08' + list[6] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + +0x32b4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32b3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x32b5 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[8] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[11] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x32b6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x32b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x32b7 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = '_DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x004' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x008' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0x00c' + list[8] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x010_flag' + list[9] = LF_MEMBER, public, type = 0x25DC, offset = 20 + member name = 'm_unk0xnown' + +0x32b8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32b7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x32b9 : Length = 478, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'vtable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'vtable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'vtable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'vtable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 56, name = 'vtable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 60, name = 'vtable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + +0x32ba : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x32b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x32bb : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetStreamBuffersNum' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1733, name = 'vtable0x20' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[13] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[14] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[15] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[17] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x32bc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32bb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x32bd : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x163D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2688, name = 'MxDSActionList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1704, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1705, name = 'Destroy' + list[4] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_unk0x18' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2688, name = '~MxDSActionList' + +0x32be : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32bd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 28, class name = MxDSActionList, UDT(0x000032be) + +0x32bf : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100CD2D0' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[12] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[13] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[14] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[16] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x32c0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32bf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x32c1 : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15B8, name = 'MxLoopingFlcPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B8, name = '~MxLoopingFlcPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15BB, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B8, name = 'NextFrame' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x15B8, name = 'Init' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x15BC, name = 'Destroy' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk0x68' + +0x32c2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 108, class name = MxLoopingFlcPresenter, UDT(0x000032c2) + +0x32c3 : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13B7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15AE, name = 'MxLoopingSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = '~MxLoopingSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B2, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x15AE, name = 'Init' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x15B3, name = 'Destroy' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1824 + member name = 'm_unk0x720' + +0x32c4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +0x32c5 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2743, name = 'GetUnknown20' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2744, name = 'GetUnknown28' + list[3] = LF_MEMBER, protected, type = 0x2745, offset = 12 + member name = 'm_unk0xc' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 32 + member name = 'm_unk0x20' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 36 + member name = 'm_unk0x24' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 40 + member name = 'm_unk0x28' + +0x32c6 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32c5, + Derivation list type 0x0000, VT shape type 0x135e + Size = 44, class name = MxType17NotificationParam, UDT(0x000032c6) + +0x32c7 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11B7, name = 'Pizza' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11B7, name = '~Pizza' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C3, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11BF, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11C0, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 120 + member name = 'm_unk0x78' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 124 + member name = 'm_unk0x7c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 128 + member name = 'm_unk0x80' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 132 + member name = 'm_unk0x84' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 140 + member name = 'm_unk0x8c' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 144 + member name = 'm_unk0x90' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 152 + member name = 'm_unk0x98' + +0x32c8 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x32c7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 156, class name = Pizza, UDT(0x000032c8) + +0x32c9 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274C, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274D, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x274E, name = 'GetColor' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x11B4, name = 'GetState' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0xc' + list[7] = LF_MEMBER, protected, type = 0x274F, offset = 16 + member name = 'm_state' + +0x32ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32c9, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +0x32cb : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_unk0x0' + list[1] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 2 + member name = 'm_id' + list[2] = LF_MEMBER, public, type = 0x2752, offset = 3 + member name = 'm_unk0x3' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 24 + member name = 'm_color' + list[4] = LF_MEMBER, public, type = 0x2753, offset = 26 + member name = 'm_unk0x18' + +0x32cc : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32cb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = PizzaMissionStateEntry, UDT(0x000032cc) + +0x32cd : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1196, name = 'RaceCar' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1196, name = '~RaceCar' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1199, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x119A, name = 'IsA' + list[5] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + +0x32ce : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = RaceCar, UDT(0x000032ce) + +0x32cf : Length = 166, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x118C, name = 'RaceState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x118F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1190, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x275E, name = 'GetColor' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1193, name = 'GetState' + list[6] = LF_MEMBER, protected, type = 0x275F, offset = 8 + member name = 'm_state' + list[7] = LF_MEMBER, protected, type = 0x2760, offset = 38 + member name = 'm_unk0x26' + list[8] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x28' + +0x32d0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = RaceState, UDT(0x000032d0) + +0x32d1 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 0 + member name = 'm_id' + list[1] = LF_MEMBER, public, type = 0x2763, offset = 1 + member name = 'm_unk0x1' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'm_unk0x2' + list[3] = LF_MEMBER, public, type = T_USHORT(0021), offset = 4 + member name = 'm_color' + +0x32d2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x32d1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 6, class name = RaceStateEntry, UDT(0x000032d2) + +0x32d3 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x276E, name = 'Min' + list[1] = LF_METHOD, count = 2, list = 0x276E, name = 'Max' + list[2] = LF_MEMBER, private, type = 0x10A9, offset = 0 + member name = 'min' + list[3] = LF_MEMBER, private, type = 0x10A9, offset = 20 + member name = 'max' + list[4] = LF_MEMBER, private, type = 0x10A9, offset = 40 + member name = 'm_unk0x28' + list[5] = LF_MEMBER, private, type = 0x10A9, offset = 60 + member name = 'm_unk0x3c' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x276F, name = 'BoundingBox' + +0x32d4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 80, class name = BoundingBox, UDT(0x000032d4) + +0x32d5 : Length = 534, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x113F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1124, name = 'OrientableROI' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1154, name = 'GetWorldVelocity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1158, name = 'GetWorldBoundingBox' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x115C, name = 'GetWorldBoundingSphere' + list[5] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 20, name = 'VTable0x14' + list[6] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 24, name = 'UpdateWorldBoundingVolumes' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1128, + vfptr offset = 32, name = 'SetLocalTransform' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 40, name = 'UpdateWorldData' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 44, name = 'UpdateWorldVelocity' + list[12] = LF_MEMBER, protected, type = T_RCHAR(0070), offset = 12 + member name = 'm_unk0xc' + list[13] = LF_MEMBER, protected, type = 0x102C, offset = 16 + member name = 'm_local2world' + list[14] = LF_MEMBER, protected, type = 0x1155, offset = 88 + member name = 'm_world_bounding_box' + list[15] = LF_MEMBER, protected, type = 0x1159, offset = 168 + member name = 'm_world_bounding_sphere' + list[16] = LF_MEMBER, protected, type = 0x10A9, offset = 192 + member name = 'm_world_velocity' + list[17] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 212 + member name = 'm_unk0xd4' + list[18] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 216 + member name = 'm_unk0xd8' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1124, name = '~OrientableROI' + +0x32d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x32d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +0x32d7 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x107C, name = 'Score' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107C, name = '~Score' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10B9, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107F, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1080, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1085, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x107C, name = 'Stop' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1081, name = 'VTable0x5c' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1081, name = 'VTable0x64' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x10C5, name = 'VTable0x68' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x107C, name = 'Paint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x10BD, name = 'FUN_10001510' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x10C1, name = 'FUN_100016d0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x10D5, name = 'FillArea' + list[15] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 248 + member name = 'm_unk0xf8' + list[16] = LF_MEMBER, protected, type = 0x1086, offset = 252 + member name = 'm_state' + list[17] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 256 + member name = 'm_surface' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x107C, name = 'DeleteScript' + +0x32d8 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = Score, UDT(0x000032d8) + +0x32d9 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1045, name = 'TowTrackMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1048, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x104A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x27BB, name = 'GetColor' + list[5] = LF_MEMBER, protected, type = 0x2745, offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_color1' + list[7] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color2' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color3' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color4' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 36 + member name = 'm_color5' + list[11] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1045, name = '~TowTrackMissionState' + +0x32da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x32d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +0x32db : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x105C, name = 'SkateBoard' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x105F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1060, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = 0x27BE, offset = 353 + member name = 'm_unk0x161' + list[6] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x105C, name = '~SkateBoard' + +0x32dc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +0x32dd : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1053, name = 'TowTrack' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1056, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1057, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x154' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk0x168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk0x16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk0x16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk0x16e' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 368 + member name = 'm_unk0x170' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk0x174' + list[12] = LF_MEMBER, private, type = T_REAL32(0040), offset = 376 + member name = 'm_unk0x178' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 380 + member name = 'm_unk0x17c' + list[14] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1053, name = '~TowTrack' + +0x32de : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x32dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +0x32df : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2990, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2991, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2993, name = 'SetUnknown8' + list[4] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + +0x32e0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x32df, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +0x32e1 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x191D, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D4E, name = '~GifManager' + list[2] = LF_MEMBER, protected, type = 0x1C7F, offset = 20 + member name = 'm_unk0x14' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1D4E, name = 'GifManager' + +0x32e2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x32e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +0x32e3 : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2324, name = 'MxNextActionDataStart' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1394, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1395, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2325, name = 'GetObjectId' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2326, name = 'GetUnknown24' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_objectId' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 12 + member name = 'm_unk0x24' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_data' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2327, name = '~MxNextActionDataStart' + +0x32e4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +0x32e5 : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[22] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[23] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[24] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[25] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[27] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x32e6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x32e5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x32e7 : Length = 634, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1713, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[21] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[23] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[25] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[26] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x32e8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x32e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x32e9 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DB, name = 'MxRegion' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DB, name = '~MxRegion' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13DB, + vfptr offset = 20, name = 'Reset' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E9, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13F7, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E8, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x203F, name = 'GetRect' + list[8] = LF_MEMBER, private, type = 0x2040, offset = 8 + member name = 'm_list' + list[9] = LF_MEMBER, private, type = 0x11FA, offset = 12 + member name = 'm_rect' + +0x32ea : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +0x32eb : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F0, + vfptr offset = 108, name = 'VTable0x6c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 76 + member name = 'm_unk0x4c' + +0x32ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x32ed : Length = 626, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'vtable0x1C' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[18] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'atom' + list[20] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[22] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[23] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0xList0x3c' + list[24] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0xList0x54' + list[26] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x32ee : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x32ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x32ef : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1249, + vfptr offset = 40, name = 'VTable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'VTable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[17] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[18] = LF_MEMBER, protected, type = 0x11E7, offset = 84 + member name = 'm_pDDSurface' + list[19] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[20] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[21] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk0x60' + +0x32f0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x32ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x32f1 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x172C, name = 'MxStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172B, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E1, + vfptr offset = 20, name = 'SetResourceToGet' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 24, name = 'GetFileSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 28, name = 'GetStreamBuffersNum' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E2, + vfptr offset = 32, name = 'VTable0x20' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 36, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2512, + vfptr offset = 40, name = 'GetBufferForDWords' + list[10] = LF_MEMBER, protected, type = 0x12DF, offset = 8 + member name = 'm_pLookup' + list[11] = LF_MEMBER, protected, type = 0x193F, offset = 12 + member name = 'm_pFile' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x172C, name = '~MxStreamProvider' + +0x32f2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x32f1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +0x32f3 : Length = 478, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 56, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 60, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + +0x32f4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x32f3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x32f5 : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetStreamBuffersNum' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1733, name = 'VTable0x20' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[13] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[14] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[15] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[17] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x32f6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32f5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x32f7 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x271F, name = 'MxRAMStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1339, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x133A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1434, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'VTable0x20' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'VTable0x24' + list[7] = LF_MEMBER, private, type = 0x1618, offset = 100 + member name = 'm_buffer' + list[8] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x271F, name = '~MxRAMStreamController' + +0x32f8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32f7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +0x32f9 : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A84, name = 'InfocenterState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A84, name = '~InfocenterState' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A87, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A88, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EAE, name = 'GetInfocenterBufferElement' + list[6] = LF_MEMBER, private, type = 0x1EAF, offset = 8 + member name = 'm_pad' + list[7] = LF_MEMBER, private, type = 0x1EB0, offset = 120 + member name = 'm_buffer' + +0x32fa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32f9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 148, class name = InfocenterState, UDT(0x000032fa) + +0x32fb : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A78, name = 'IslePathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B0F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B10, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A78, name = '~IslePathActor' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A79, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 204, name = 'VTable0xcc' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 208, name = 'VTable0xd0' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 212, name = 'VTable0xd4' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 216, name = 'VTable0xd8' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 220, name = 'VTable0xdc' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 224, name = 'VTable0xe0' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 228, name = 'VTable0xe4' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A7B, + vfptr offset = 232, name = 'VTable0xe8' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 236, name = 'VTable0xec' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1A, name = 'SetWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1B, name = 'GetWorld' + list[17] = LF_MEMBER, private, type = 0x128A, offset = 340 + member name = 'm_world' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 344 + member name = 'm_unk0x158' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 348 + member name = 'm_unk0x15c' + +0x32fc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x32fb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +0x32fd : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[1] = LF_MEMBER, private, type = 0x29BA, offset = 0 + member name = 'm_pad' + list[2] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + +0x32fe : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x32fd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +0x32ff : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1254, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A2E, name = 'LegoBackgroundColor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A2F, name = 'SetValue' + list[3] = LF_MEMBER, private, type = T_REAL32(0040), offset = 36 + member name = 'm_h' + list[4] = LF_MEMBER, private, type = T_REAL32(0040), offset = 40 + member name = 'm_s' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 44 + member name = 'm_v' + +0x3300 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 48, class name = LegoBackgroundColor, UDT(0x00003300) + +0x3301 : Length = 998, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x1953, name = 'GetDefaults' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1955, name = 'SetDefaults' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'LegoNavController' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194C, name = '~LegoNavController' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1950, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1951, name = 'SetControlMax' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x194C, name = 'ResetToDefault' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1957, name = 'SetTargets' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1959, name = 'CalculateNewTargetSpeed' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x195B, name = 'CalculateNewAccel' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x195D, name = 'CalculateNewVel' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_hMax' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_vMax' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 16 + member name = 'm_mouseDeadzone' + list[16] = LF_MEMBER, private, type = T_REAL32(0040), offset = 20 + member name = 'm_zeroThreshold' + list[17] = LF_MEMBER, private, type = T_REAL32(0040), offset = 24 + member name = 'm_unk0x18' + list[18] = LF_MEMBER, private, type = T_REAL32(0040), offset = 28 + member name = 'm_unk0x1c' + list[19] = LF_MEMBER, private, type = T_REAL32(0040), offset = 32 + member name = 'm_targetMovementSpeed' + list[20] = LF_MEMBER, private, type = T_REAL32(0040), offset = 36 + member name = 'm_targetTurnSpeed' + list[21] = LF_MEMBER, private, type = T_REAL32(0040), offset = 40 + member name = 'm_movementMaxSpeed' + list[22] = LF_MEMBER, private, type = T_REAL32(0040), offset = 44 + member name = 'm_turnMaxSpeed' + list[23] = LF_MEMBER, private, type = T_REAL32(0040), offset = 48 + member name = 'm_movementAccel' + list[24] = LF_MEMBER, private, type = T_REAL32(0040), offset = 52 + member name = 'm_turnAccel' + list[25] = LF_MEMBER, private, type = T_REAL32(0040), offset = 56 + member name = 'm_movementMaxAccel' + list[26] = LF_MEMBER, private, type = T_REAL32(0040), offset = 60 + member name = 'm_turnMaxAccel' + list[27] = LF_MEMBER, private, type = T_REAL32(0040), offset = 64 + member name = 'm_movementMinAccel' + list[28] = LF_MEMBER, private, type = T_REAL32(0040), offset = 68 + member name = 'm_turnMinAccel' + list[29] = LF_MEMBER, private, type = T_REAL32(0040), offset = 72 + member name = 'm_movementDecel' + list[30] = LF_MEMBER, private, type = T_REAL32(0040), offset = 76 + member name = 'm_turnDecel' + list[31] = LF_MEMBER, private, type = T_REAL32(0040), offset = 80 + member name = 'm_turnSensitivity' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 84 + member name = 'm_turnUseVelocity' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 88 + member name = 'm_time' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 92 + member name = 'm_trackDefault' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 93 + member name = 'm_unk0x5d' + list[36] = LF_MEMBER, private, type = 0x19D6, offset = 94 + member name = 'm_unk0x5e' + list[37] = LF_MEMBER, private, type = T_INT4(0074), offset = 96 + member name = 'm_unk0x60' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 100 + member name = 'm_unk0x64' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 104 + member name = 'm_unk0x68' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 108 + member name = 'm_unk0x6c' + +0x3302 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3301, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +0x3303 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1895, name = '~LegoState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B31, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B32, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1896, + vfptr offset = 20, name = 'VTable0x14' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1896, + vfptr offset = 24, name = 'SetFlag' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1899, + vfptr offset = 28, name = 'VTable0x1c' + +0x3304 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3303, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = LegoState, UDT(0x00003304) + +0x3305 : Length = 854, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18E4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18DF, name = 'LegoPathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DF, name = '~LegoPathActor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 104, name = 'VTable0x68' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 108, name = 'VTable0x6c' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 112, name = 'VTable0x70' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 116, name = 'VTable0x74' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 120, name = 'VTable0x78' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 124, name = 'VTable0x7c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 128, name = 'VTable0x80' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 132, name = 'VTable0x84' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 136, name = 'VTable0x88' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 140, name = 'VTable0x8c' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 144, name = 'VTable0x90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 148, name = 'VTable0x94' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 152, name = 'VTable0x98' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 156, name = 'VTable0x9c' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 160, name = 'VTable0xa0' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 164, name = 'VTable0xa4' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 168, name = 'VTable0xa8' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 172, name = 'VTable0xac' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 176, name = 'VTable0xb0' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 180, name = 'VTable0xb4' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 184, name = 'VTable0xb8' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 188, name = 'VTable0xbc' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 192, name = 'VTable0xc0' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 196, name = 'VTable0xc4' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 200, name = 'VTable0xc8' + list[30] = LF_MEMBER, protected, type = 0x1C25, offset = 120 + member name = 'm_pad' + list[31] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 316 + member name = 'm_unk0x13c' + list[32] = LF_MEMBER, protected, type = T_INT4(0074), offset = 320 + member name = 'm_unk0x140' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 324 + member name = 'm_unk0x144' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 328 + member name = 'm_unk0x148' + list[35] = LF_MEMBER, protected, type = T_INT4(0074), offset = 332 + member name = 'm_unk0x14c' + list[36] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 336 + member name = 'm_unk0x150' + +0x3306 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3305, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +0x3307 : Length = 770, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[18] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[19] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[20] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[24] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[25] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[26] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[28] = LF_MEMBER, private, type = 0x1E5F, offset = 38 + member name = 'm_unk0x28' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x3308 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3307, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x3309 : Length = 1298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x128A, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x330a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3309, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x330b : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13AB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x189D, name = 'LegoSoundManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x189D, name = '~LegoSoundManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18A0, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1E83, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x189F, name = 'Create' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x189D, name = 'Init' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'm_unk0x3c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'm_unk0x40' + +0x330c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x330b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 68, class name = LegoSoundManager, UDT(0x0000330c) + +0x330d : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1FBE, offset = 0 + member name = 'm_bmiHeader' + list[1] = LF_MEMBER, public, type = 0x1FD4, offset = 40 + member name = 'm_bmiColors' + +0x330e : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x330d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +0x330f : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17F4, name = 'MxAudioManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F4, name = '~MxAudioManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F6, name = 'InitPresenters' + list[4] = LF_METHOD, count = 2, list = 0x22EB, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F3, + vfptr offset = 40, name = 'GetVolume' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F7, + vfptr offset = 44, name = 'SetVolume' + list[7] = LF_STATICMEMBER, private, type = T_INT4(0074) member name = 'g_count' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x17F4, name = 'Init' + list[9] = LF_MEMBER, protected, type = T_INT4(0074), offset = 44 + member name = 'm_volume' + +0x3310 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x330f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +0x3311 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17F4, name = 'MxAudioManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F4, name = '~MxAudioManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17F6, name = 'InitPresenters' + list[4] = LF_METHOD, count = 2, list = 0x22EB, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F3, + vfptr offset = 40, name = 'GetVolume' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17F7, + vfptr offset = 44, name = 'SetVolume' + list[7] = LF_STATICMEMBER, private, type = T_INT4(0074) member name = 's_count' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x17F4, name = 'Init' + list[9] = LF_MEMBER, protected, type = T_INT4(0074), offset = 44 + member name = 'm_volume' + +0x3312 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3311, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +0x3313 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x004' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x008' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0x00c' + list[8] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x010' + list[9] = LF_MEMBER, public, type = 0x25DC, offset = 20 + member name = 'm_unk0x014' + +0x3314 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3313, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x3315 : Length = 1638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWM_SIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'a_850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[43] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[44] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x3316 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x3315, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x3317 : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[1] = LF_MEMBER, public, type = 0x2077, offset = 4 + member name = 'm_modeArray' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'count' + list[3] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddcaps' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 376 + member name = 'm_178' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = 'DeviceModesInfo' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = '~DeviceModesInfo' + +0x3318 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x3317, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x3319 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_height' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_bitsPerPixel' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29C1, name = 'operator==' + +0x331a : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x3319, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +0x331b : Length = 1638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'a_850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[43] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[44] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x331c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x331b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x331d : Length = 1638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'm_850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[43] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[44] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x331e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x331d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x331f : Length = 626, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'vtable0x1C' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[18] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'atom' + list[20] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[22] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[23] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0xList0x3c' + list[24] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0xList0x54' + list[26] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x3320 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x331f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3321 : Length = 470, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + +0x3322 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3321, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x3323 : Length = 1014, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[38] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[41] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[42] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[43] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[44] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[45] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[46] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x3324 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3323, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x3325 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169B, name = 'MxDSMultiAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169B, name = '~MxDSMultiAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AB, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AE, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A7, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A8, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'unk14' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B4, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B6, name = 'SetAtomId' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B2, name = 'Clone' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B0, name = 'MergeFrom' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B1, name = 'HasId' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16AF, name = 'SetUnknown90' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2FF9, name = 'GetActionList' + list[16] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[17] = LF_MEMBER, protected, type = 0x26B3, offset = 152 + member name = 'm_actions' + +0x3326 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3325, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +0x3327 : Length = 1646, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'm_unk0x850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[43] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[44] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x3328 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x3327, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x3329 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[2] = LF_MEMBER, public, type = 0x206F, offset = 0 + member name = 'm_pad' + list[3] = LF_MEMBER, public, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x332a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3329, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x332b : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[1] = LF_MEMBER, public, type = 0x2077, offset = 4 + member name = 'm_modeArray' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_count' + list[3] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddcaps' + list[4] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 376 + member name = 'm_unk0x178' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = 'DeviceModesInfo' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = '~DeviceModesInfo' + +0x332c : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x332b, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x332d : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x22D5, name = 'ChunkHeader' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_majorVersion' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'm_minorVersion' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'm_bufferSize' + list[4] = LF_MEMBER, public, type = T_SHORT(0011), offset = 8 + member name = 'm_streamBuffersNum' + list[5] = LF_MEMBER, public, type = T_SHORT(0011), offset = 10 + member name = 'm_reserved' + +0x332e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x332d, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDSFile::ChunkHeader, UDT(0x0000332e) + +0x332f : Length = 634, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'VTable0x14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[23] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[25] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[27] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[28] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk0x28' + +0x3330 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x332f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x3331 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3201, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C43, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = 'InsertEntry' + +0x3332 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3331, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x3333 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3204, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C73, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = 'InsertEntry' + +0x3334 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3333, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x3335 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3207, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EE0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = 'InsertEntry' + +0x3336 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3335, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x3337 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x14C9, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FF2, HashTableOpt + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'MxHashTable' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x126E, name = '~MxHashTable' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'Resize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF3, name = 'Add' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x126E, name = 'DeleteAll' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14CE, + vfptr offset = 24, name = 'Hash' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1271, name = 'NodeInsert' + list[9] = LF_MEMBER, protected, type = 0x126F, offset = 16 + member name = 'm_slots' + list[10] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_numSlots' + list[11] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 24 + member name = 'm_autoResizeRatio' + list[12] = LF_MEMBER, protected, type = 0x1FF2, offset = 28 + member name = 'm_resizeOption' + list[13] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 32 + member name = 'm_increaseAmount' + list[14] = LF_MEMBER, protected, type = T_REAL64(0041), offset = 32 + member name = 'm_increaseFactor' + +0x3338 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3337, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 40, class name = MxHashTable, UDT(0x00003338) + +0x3339 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320A, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2020, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = 'InsertEntry' + +0x333a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3339, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x333b : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320D, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2039, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = 'InsertEntry' + +0x333c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x333d : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3210, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20AB, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = 'InsertEntry' + +0x333e : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x333f : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3213, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20CE, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = 'InsertEntry' + +0x3340 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x3341 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3216, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2692, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = 'InsertEntry' + +0x3342 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3341, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x3343 : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169B, name = 'MxDSMultiAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169B, name = '~MxDSMultiAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AB, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AE, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A7, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A8, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B4, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B6, name = 'SetAtomId' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B2, name = 'Clone' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B0, name = 'MergeFrom' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B1, name = 'HasId' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16AF, name = 'SetUnknown90' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2FF9, name = 'GetActionList' + list[16] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[17] = LF_MEMBER, protected, type = 0x26B3, offset = 152 + member name = 'm_actions' + +0x3344 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3343, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +0x3345 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3219, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26C0, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = 'InsertEntry' + +0x3346 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3345, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x3347 : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[12] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[13] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[14] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[16] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x3348 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3347, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x3349 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x2D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D1F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x321C, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D47, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D49, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x2D4B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2D4B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4D, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4F, name = 'InsertEntry' + +0x334a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3349, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +0x334b : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17F1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'MxMusicManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x156E, name = '~MxMusicManager' + list[3] = LF_METHOD, count = 2, list = 0x1CFD, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1571, name = 'SetVolume' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1570, + vfptr offset = 48, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1CFE, name = 'GetMIDIInitialized' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x156E, name = 'DeinitializeMIDI' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1574, name = 'FUN_100c09c0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1571, name = 'SetMultiplier' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1572, name = 'CalculateVolume' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x156E, name = 'SetMIDIVolume' + list[12] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 48 + member name = 'm_midiStreamH' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_midiInitialized' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 56 + member name = 'm_unk0x38' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'm_unk0x3c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'm_unk0x40' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_unk0x44' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_unk0x48' + list[19] = LF_MEMBER, private, type = 0x1D00, offset = 76 + member name = 'm_midiHdrP' + list[20] = LF_MEMBER, private, type = T_INT4(0074), offset = 80 + member name = 'm_multiplier' + list[21] = LF_MEMBER, private, type = T_ULONG(0022), offset = 84 + member name = 'm_midiVolume' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'Init' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x156E, name = 'InitData' + +0x334c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x334b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +0x334d : Length = 614, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[18] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[20] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[22] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[23] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[24] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[26] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x334e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x334d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x334f : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'MxTimer' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'Start' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1298, name = 'Stop' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1299, name = 'GetRealTime' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1299, name = 'GetTime' + list[6] = LF_MEMBER, private, type = T_LONG(0012), offset = 8 + member name = 'm_startTime' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_isRunning' + list[8] = LF_STATICMEMBER, private, type = T_LONG(0012) member name = 'g_lastTimeCalculated' + list[9] = LF_STATICMEMBER, private, type = T_LONG(0012) member name = 'g_lastTimeTimerStarted' + list[10] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1298, name = '~MxTimer' + +0x3350 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x334f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxTimer, UDT(0x00003350) + +0x3351 : Length = 26, Leaf = 0x1506 LF_UNION + # members = 0, field list type 0x0000, FORWARD REF, Size = 0 ,class name = FlagBitfield, UDT(0x00003357) + +0x3352 : Length = 798, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x127C, name = 'MxTransitionManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127C, name = '~MxTransitionManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x128D, name = 'SetWaitIndicator' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1281, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1280, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1281, + vfptr offset = 20, name = 'GetDDrawSurfaceFromVideoManager' + list[8] = LF_NESTTYPE, type = 0x1283, TransitionType + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1285, name = 'StartTransition' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1288, name = 'EndTransition' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionNone' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionDissolve' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionPixelation' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionWipe' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionWindows' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionBroken' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SubmitCopyRect' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SetupCopyRect' + list[19] = LF_MEMBER, private, type = 0x128B, offset = 8 + member name = 'm_waitIndicator' + list[20] = LF_MEMBER, private, type = 0x1D56, offset = 12 + member name = 'm_copyRect' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 28 + member name = 'm_copyBuffer' + list[22] = LF_MEMBER, private, type = 0x3351, offset = 32 + member name = 'm_copyFlags' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 36 + member name = 'm_unk0x24' + list[24] = LF_MEMBER, private, type = 0x3351, offset = 40 + member name = 'm_unk0x28' + list[25] = LF_MEMBER, private, type = 0x1283, offset = 44 + member name = 'm_transitionType' + list[26] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 52 + member name = 'm_animationTimer' + list[28] = LF_MEMBER, private, type = 0x1E9E, offset = 54 + member name = 'm_columnOrder' + list[29] = LF_MEMBER, private, type = 0x1E9F, offset = 1334 + member name = 'm_randomShift' + list[30] = LF_MEMBER, private, type = T_ULONG(0022), offset = 2296 + member name = 'm_systemTime' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 2300 + member name = 'm_animationSpeed' + +0x3353 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3352, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +0x3354 : Length = 750, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'Set_f2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[33] = LF_MEMBER, private, type = 0x3351, offset = 0 + member name = 'm_flags1' + list[34] = LF_MEMBER, private, type = 0x3351, offset = 1 + member name = 'm_flags2' + +0x3355 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3354, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x3356 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x205E, offset = 0 + member name = 'm_bit0' + list[1] = LF_MEMBER, public, type = 0x205F, offset = 0 + member name = 'm_bit1' + list[2] = LF_MEMBER, public, type = 0x2060, offset = 0 + member name = 'm_bit2' + list[3] = LF_MEMBER, public, type = 0x2061, offset = 0 + member name = 'm_bit3' + list[4] = LF_MEMBER, public, type = 0x2062, offset = 0 + member name = 'm_bit4' + list[5] = LF_MEMBER, public, type = 0x2063, offset = 0 + member name = 'm_bit5' + list[6] = LF_MEMBER, public, type = 0x2064, offset = 0 + member name = 'm_bit6' + list[7] = LF_MEMBER, public, type = 0x2065, offset = 0 + member name = 'm_bit7' + +0x3357 : Length = 26, Leaf = 0x1506 LF_UNION + # members = 8, field list type 0x3356, Size = 1 ,class name = FlagBitfield, UDT(0x00003357) + +0x3358 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1FFB, name = 'MxVideoParam' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1230, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1222, name = '~MxVideoParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x122C, name = 'SetDeviceName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFC, name = 'Flags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFD, name = 'SetPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFE, name = 'SetBackBuffers' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFF, name = 'GetRect' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2000, name = 'GetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2001, name = 'GetBackBuffers' + list[10] = LF_MEMBER, private, type = 0x11FA, offset = 0 + member name = 'm_rect' + list[11] = LF_MEMBER, private, type = 0x1225, offset = 16 + member name = 'm_palette' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_backBuffers' + list[13] = LF_MEMBER, private, type = 0x121D, offset = 24 + member name = 'm_flags' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 28 + member name = 'm_unk0x1c' + list[15] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 32 + member name = 'm_deviceId' + +0x3359 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3358, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +0x335a : Length = 750, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit5' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit6' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get_f2bit7' + list[33] = LF_MEMBER, private, type = 0x3351, offset = 0 + member name = 'm_flags1' + list[34] = LF_MEMBER, private, type = 0x3351, offset = 1 + member name = 'm_flags2' + +0x335b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x335a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x335c : Length = 750, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit3' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit4' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit5' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit6' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit7' + list[33] = LF_MEMBER, private, type = 0x3351, offset = 0 + member name = 'm_flags1' + list[34] = LF_MEMBER, private, type = 0x3351, offset = 1 + member name = 'm_flags2' + +0x335d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x335c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x335e : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17B7, name = 'MxCompositeMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = '~MxCompositeMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BA, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BB, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3243, name = 'StartAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'PutData' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 78 + member name = 'm_unk0x4e' + +0x335f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x335e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +0x3360 : Length = 1038, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x108A, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[37] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[42] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[43] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[45] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[47] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x3361 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3360, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x3362 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1607 + +0x3363 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x3364 : Length = 682, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'VTable0x14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetUnknown28' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetUnknown28' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[24] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[25] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[27] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[29] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[30] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk0x28' + +0x3365 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3364, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x3366 : Length = 494, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + +0x3367 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3366, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x3368 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3369 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1619, Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x336a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x161a, This adjust = 0 + +0x336b : Length = 470, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[16] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[17] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[18] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[19] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[20] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x336c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x336b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x336d : Length = 470, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[16] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[17] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[18] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[19] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[20] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x336e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x336d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x336f : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17AF, name = 'MxCompositePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = '~MxCompositePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7D, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B2, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B3, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D7C, name = 'StartAction' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AF, name = 'EndAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D95, name = 'SetTickleState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D97, name = 'HasTickleStatePassed' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D96, name = 'Enable' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31F9, + vfptr offset = 88, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x31FD, + vfptr offset = 92, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D7E, + vfptr offset = 96, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17AE, + vfptr offset = 100, name = 'VTable0x64' + list[15] = LF_MEMBER, protected, type = 0x2D76, offset = 64 + member name = 'm_list' + +0x3370 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +0x3371 : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1242, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1581, name = 'MxMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = '~MxMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1598, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A36, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A37, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'StreamingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'RepeatingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'DoneTickle' + list[9] = LF_METHOD, count = 2, list = 0x1EE9, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x158F, name = 'StartAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1581, name = 'EndAction' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1582, name = 'Enable' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1599, + vfptr offset = 88, name = 'AppendChunk' + list[14] = LF_MEMBER, protected, type = 0x1EEA, offset = 64 + member name = 'm_subscriber' + list[15] = LF_MEMBER, protected, type = 0x1EEB, offset = 68 + member name = 'm_chunks' + list[16] = LF_MEMBER, protected, type = 0x2D23, offset = 72 + member name = 'm_cursor' + list[17] = LF_MEMBER, protected, type = 0x11CE, offset = 76 + member name = 'm_currentChunk' + list[18] = LF_ONEMETHOD, protected, VANILLA, index = 0x1581, name = 'Init' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x158E, name = 'FUN_100b5650' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x158E, name = 'NextChunk' + +0x3372 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3371, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +0x3373 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Looping' + list[1] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[2] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[3] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[4] = LF_ENUMERATE, public, value = 32, name = 'Flag_Enabled' + list[5] = LF_ENUMERATE, public, value = 64, name = 'Flag_Bit7' + list[6] = LF_ENUMERATE, public, value = 128, name = 'Flag_World' + list[7] = LF_ENUMERATE, public, value = 256, name = 'Flag_Bit9' + list[8] = LF_ENUMERATE, public, value = 512, name = 'Flag_Bit10' + list[9] = LF_ENUMERATE, public, value = 512, name = 'Flag_Bit11' + +0x3374 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 10, type = T_INT4(0074) field list type 0x3373 +NESTED, enum name = MxDSAction::__unnamed + +0x3375 : Length = 1038, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3374, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[37] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[42] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[43] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[45] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[47] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x3376 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3375, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x3377 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Looping' + list[1] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[2] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[3] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[4] = LF_ENUMERATE, public, value = 32, name = 'Flag_Enabled' + list[5] = LF_ENUMERATE, public, value = 64, name = 'Flag_Bit7' + list[6] = LF_ENUMERATE, public, value = 128, name = 'Flag_World' + list[7] = LF_ENUMERATE, public, value = 256, name = 'Flag_Bit9' + list[8] = LF_ENUMERATE, public, value = 512, name = 'Flag_Bit10' + list[9] = LF_ENUMERATE, public, value = 1024, name = 'Flag_Bit11' + +0x3378 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 10, type = T_INT4(0074) field list type 0x3377 +NESTED, enum name = MxDSAction::__unnamed + +0x3379 : Length = 1038, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3378, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1099, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[37] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[42] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[43] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[45] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[47] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x337a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3379, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x337b : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17B7, name = 'MxCompositeMediaPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = '~MxCompositeMediaPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BA, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BB, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17B7, name = 'StartingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3243, name = 'StartAction' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3244, name = 'PutData' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 76 + member name = 'm_unk0x4c' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 78 + member name = 'm_unk0x4e' + +0x337c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x337b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +0x337d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x18A9 + +0x337e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x337d, This adjust = 0 + +0x337f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1105 + +0x3380 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x337F + +0x3381 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x111D, This type = 0x115D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3380, This adjust = 0 + +0x3382 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1336, This type = 0x133B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1603, This adjust = 0 + +0x3383 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12DF + list[1] = 0x109C + list[2] = T_32PUINT4(0475) + +0x3384 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3383, This adjust = 0 + +0x3385 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1A76 + +0x3386 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3385 + +0x3387 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3386, This adjust = 0 + +0x3388 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3389 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_UINT4(0075) + list[1] = 0x1C1A + list[2] = 0x1C1A + list[3] = 0x1C1A + +0x338a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3389, This adjust = 0 + +0x338b : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1050 + list[1] = 0x1361 + list[2] = T_INT4(0074) + list[3] = 0x1913 + +0x338c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 4, Arg list type = 0x338b + +0x338d : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x338e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x111E + +0x338f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = 0x18AF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x338e, This adjust = 0 + +0x3390 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x338e, This adjust = 0 + +0x3391 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x3392 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x3385, Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x3393 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19AD, This type = 0x1A18, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x19f6, This adjust = 0 + +0x3394 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x112B + list[1] = T_UINT4(0075) + +0x3395 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19AD, This type = 0x1A18, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3394, This adjust = 0 + +0x3396 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C1A, Class type = 0x19AD, This type = 0x1A18, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3397 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3398 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c0, This adjust = 0 + +0x3399 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1B2C + +0x339a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1C1A + list[1] = 0x1C1A + +0x339b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10A9, This type = 0x181D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x339a, This adjust = 0 + +0x339c : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10F7, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x1C19, name = 'Vector3Data' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1C1C, name = 'CopyFrom' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x339B, name = 'EqualsCross' + list[4] = LF_MEMBER, private, type = 0x114F, offset = 8 + member name = 'm_vector' + +0x339d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x339c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 20, class name = Vector3Data, UDT(0x0000339d) + +0x339e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxType18NotificationParam, UDT(0x000033f0) + +0x339f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x339E + +0x33a0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x339F + +0x33a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x33a0, This adjust = 0 + +0x33a2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x111C + +0x33a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x19F5, Class type = 0x10F7, This type = 0x10F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x33a2, This adjust = 0 + +0x33a4 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10DF, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1111, name = 'Vector3Impl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1112, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1115, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1111, name = 'EqualsImpl' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1116, name = 'Clear' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1117, name = 'LenSquared' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F9, + vfptr offset = 116, name = 'EqualsCrossImpl' + list[13] = LF_METHOD, count = 3, list = 0x1C0F, name = 'EqualsCross' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1111, + vfptr offset = 132, name = 'EqualsScalar' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1112, name = 'Fill' + list[16] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x33A3, name = 'operator=' + +0x33a5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33a4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 8, class name = Vector3Impl, UDT(0x000033a5) + +0x33a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x338e, This adjust = 0 + +0x33a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AB1, This type = 0x1AB2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x33a8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HelicopterSubclass, UDT(0x00003466) + +0x33a9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x33A8 + +0x33aa : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1101 + +0x33ab : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x33AA + list[1] = T_REAL32(0040) + +0x33ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x33A8, This type = 0x33A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x33ab, This adjust = 0 + +0x33ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c0, This adjust = 0 + +0x33af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x33a0, This adjust = 0 + +0x33b0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxType19NotificationParam, UDT(0x000033f2) + +0x33b1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x33B0 + +0x33b2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x33B1 + +0x33b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1A76, This type = 0x1A77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x33b2, This adjust = 0 + +0x33b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x33b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL32(0040), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B2C, This type = 0x1B2D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x33b9 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B2E, name = 'Act1State' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B35, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B36, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33B8, name = 'SetUnknown18' + list[5] = LF_MEMBER, protected, type = 0x1E7F, offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + +0x33ba : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x33b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = Act1State, UDT(0x0000346c) + +0x33bb : Length = 38, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x10E4, vfptr offset = 80 + list[1] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 80 + list[2] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 80 + +0x33bc : Length = 38, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x337E, vfptr offset = 100 + list[1] = public, INTRODUCING VIRTUAL, 0x10F6, vfptr offset = 100 + list[2] = public, INTRODUCING VIRTUAL, 0x10E2, vfptr offset = 100 + +0x33bd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10DF + +0x33be : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x10E5 + +0x33bf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x33BE + +0x33c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x33BD, Class type = 0x10DF, This type = 0x10E0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x33bf, This adjust = 0 + +0x33c1 : Length = 486, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1C03 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x10E2, name = 'Vector2Impl' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E4, + vfptr offset = 0, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 4, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 8, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 12, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 16, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 20, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E8, + vfptr offset = 24, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 28, name = 'SetData' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10E2, + vfptr offset = 32, name = 'EqualsImpl' + list[11] = LF_METHOD, count = 2, list = 0x1C04, name = 'GetData' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10EB, + vfptr offset = 44, name = 'Clear' + list[13] = LF_METHOD, count = 4, list = 0x1C05, name = 'Dot' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F3, + vfptr offset = 64, name = 'LenSquared' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x10F4, + vfptr offset = 68, name = 'Unitize' + list[16] = LF_METHOD, count = 3, list = 0x33BB, name = 'Add' + list[17] = LF_METHOD, count = 2, list = 0x1C07, name = 'Sub' + list[18] = LF_METHOD, count = 3, list = 0x33BC, name = 'Mul' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x337E, + vfptr offset = 104, name = 'Div' + list[20] = LF_METHOD, count = 2, list = 0x1C09, name = 'SetVector' + list[21] = LF_METHOD, count = 2, list = 0x1C0C, name = 'operator[]' + list[22] = LF_MEMBER, protected, type = T_32PREAL32(0440), offset = 4 + member name = 'm_data' + list[23] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x33C0, name = 'operator=' + +0x33c2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x33c1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c02 + Size = 8, class name = Vector2Impl, UDT(0x000033c2) + +0x33c3 : Length = 786, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x149B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'LegoEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19F3, name = '~LegoEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19FC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AEE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F8, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 28, name = 'Destroy' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FB, + vfptr offset = 32, name = 'ParseAction' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FA, + vfptr offset = 36, name = 'SetROI' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F7, + vfptr offset = 40, name = 'SetWorldTransform' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 44, name = 'ResetWorldTransform' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B25, + vfptr offset = 48, name = 'SetWorldSpeed' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 56, name = 'VTable0x38' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 60, name = 'VTable0x3c' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 64, name = 'VTable0x40' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 72, name = 'VTable0x48' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 76, name = 'VTable0x4c' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'FUN_10010c30' + list[21] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'Init' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'SetWorld' + list[23] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[24] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 17 + member name = 'm_unk0x11' + list[25] = LF_MEMBER, protected, type = 0x10A9, offset = 20 + member name = 'm_worldLocation' + list[26] = LF_MEMBER, protected, type = 0x10A9, offset = 40 + member name = 'm_worldDirection' + list[27] = LF_MEMBER, protected, type = 0x10A9, offset = 60 + member name = 'm_worldUp' + list[28] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 80 + member name = 'm_worldSpeed' + list[29] = LF_MEMBER, protected, type = 0x1910, offset = 84 + member name = 'm_roi' + list[30] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 88 + member name = 'm_cameraFlag' + list[31] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 89 + member name = 'm_unk0x59' + list[32] = LF_MEMBER, protected, type = 0x1050, offset = 92 + member name = 'm_actionType' + list[33] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 96 + member name = 'm_actionArgString' + list[34] = LF_MEMBER, protected, type = T_INT4(0074), offset = 100 + member name = 'm_actionArgNumber' + +0x33c4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x33c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +0x33c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18DD, This type = 0x18DE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x33c6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 10 + Name = + +0x33c7 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 77 + Name = + +0x33c8 : Length = 986, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18E4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18DF, name = 'LegoPathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18DF, name = '~LegoPathActor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18E3, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 104, name = 'VTable0x68' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 108, name = 'VTable0x6c' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3391, + vfptr offset = 112, name = 'VTable0x70' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3390, + vfptr offset = 116, name = 'VTable0x74' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B4, + vfptr offset = 120, name = 'VTable0x78' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B5, + vfptr offset = 124, name = 'VTable0x7c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 128, name = 'VTable0x80' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 132, name = 'VTable0x84' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 136, name = 'VTable0x88' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 140, name = 'VTable0x8c' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B6, + vfptr offset = 144, name = 'VTable0x90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B6, + vfptr offset = 148, name = 'VTable0x94' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 152, name = 'VTable0x98' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 156, name = 'VTable0x9c' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B6, + vfptr offset = 160, name = 'VTable0xa0' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 164, name = 'VTable0xa4' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 168, name = 'VTable0xa8' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3391, + vfptr offset = 172, name = 'VTable0xac' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B7, + vfptr offset = 176, name = 'VTable0xb0' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B7, + vfptr offset = 180, name = 'VTable0xb4' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B7, + vfptr offset = 184, name = 'VTable0xb8' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3391, + vfptr offset = 188, name = 'VTable0xbc' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3391, + vfptr offset = 192, name = 'VTable0xc0' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18DF, + vfptr offset = 196, name = 'VTable0xc4' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B4, + vfptr offset = 200, name = 'VTable0xc8' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x33C5, name = 'SetUnknownDC' + list[31] = LF_MEMBER, protected, type = 0x1C87, offset = 120 + member name = 'm_unk0x78' + list[32] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 220 + member name = 'm_unk0xdc' + list[33] = LF_MEMBER, protected, type = 0x33C6, offset = 224 + member name = 'm_unk0xe0' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 234 + member name = 'm_unk0xea' + list[35] = LF_MEMBER, protected, type = 0x33C7, offset = 235 + member name = 'm_unk0xef' + list[36] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 312 + member name = 'm_unk0x138' + list[37] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 316 + member name = 'm_unk0x13c' + list[38] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 320 + member name = 'm_unk0x140' + list[39] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 324 + member name = 'm_unk0x144' + list[40] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 328 + member name = 'm_unk0x148' + list[41] = LF_MEMBER, protected, type = T_INT4(0074), offset = 332 + member name = 'm_unk0x14c' + list[42] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 336 + member name = 'm_unk0x150' + +0x33c9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 43, field list type 0x33c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +0x33ca : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1020, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a46b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a58f0' + +0x33cb : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33ca, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = LegoROI, UDT(0x00004493) + +0x33cc : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A19, name = 'LegoCameraController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A19, name = '~LegoCameraController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A1C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A1D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3393, name = 'LookAt' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3395, name = 'FUN_100123e0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3396, name = 'FUN_10012740' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3396, name = 'FUN_100127f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3396, name = 'FUN_100128a0' + +0x33cd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33cc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoCameraController, UDT(0x000033cd) + +0x33ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x19AE, Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33cf : Length = 642, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3388, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33CE, name = 'GetCamera' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1843, name = 'EndAction' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3387, name = 'FUN_1001fc80' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_100727e0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_10072980' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073400' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073430' + list[22] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[23] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[24] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[25] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[26] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[27] = LF_MEMBER, protected, type = 0x1C80, offset = 208 + member name = 'm_unk0xd0' + list[28] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[29] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x33d0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x33cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x33d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B18, This type = 0x1B19, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x33d2 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 96 + Name = + +0x33d3 : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B1A, name = 'Act3' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1A, name = '~Act3' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1D, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B1E, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C85, name = 'SetUnkown420c' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x33D1, name = 'SetUnkown4270' + list[7] = LF_MEMBER, protected, type = 0x1C86, offset = 248 + member name = 'm_unk0xf8' + list[8] = LF_MEMBER, protected, type = 0x149C, offset = 16908 + member name = 'm_unk0x420c' + list[9] = LF_MEMBER, protected, type = 0x33D2, offset = 16912 + member name = 'm_unk0x4210' + list[10] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 17008 + member name = 'm_unk0x4270' + +0x33d4 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x33d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +0x33d5 : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A78, name = 'IslePathActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A78, name = '~IslePathActor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B0F, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B10, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A79, name = 'Create' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33AD, + vfptr offset = 204, name = 'VTable0xcc' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33AD, + vfptr offset = 208, name = 'VTable0xd0' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33AE, + vfptr offset = 212, name = 'VTable0xd4' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33AF, + vfptr offset = 216, name = 'VTable0xd8' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x33B3, + vfptr offset = 220, name = 'VTable0xdc' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 224, name = 'VTable0xe0' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 228, name = 'VTable0xe4' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A7B, + vfptr offset = 232, name = 'VTable0xe8' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1A78, + vfptr offset = 236, name = 'VTable0xec' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1A, name = 'SetWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1D1B, name = 'GetWorld' + list[17] = LF_MEMBER, protected, type = 0x128A, offset = 340 + member name = 'm_world' + list[18] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 344 + member name = 'm_unk0x158' + list[19] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 348 + member name = 'm_unk0x15c' + +0x33d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +0x33d7 : Length = 474, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1E42 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1165, name = 'Matrix4Impl' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1163, + vfptr offset = 0, name = 'EqualsMatrixImpl' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1160, + vfptr offset = 4, name = 'EqualsMatrixData' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1165, + vfptr offset = 8, name = 'SetData' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1165, + vfptr offset = 12, name = 'AnotherSetData' + list[6] = LF_METHOD, count = 2, list = 0x1E43, name = 'GetData' + list[7] = LF_METHOD, count = 2, list = 0x1E44, name = 'Element' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x116E, + vfptr offset = 32, name = 'Clear' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x116E, + vfptr offset = 36, name = 'SetIdentity' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x117C, + vfptr offset = 40, name = 'operator=' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1170, + vfptr offset = 44, name = 'operator+=' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1172, + vfptr offset = 48, name = 'TranslateBy' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1172, + vfptr offset = 52, name = 'SetTranslation' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1176, + vfptr offset = 56, name = 'EqualsMxProduct' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1174, + vfptr offset = 60, name = 'EqualsDataProduct' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1178, + vfptr offset = 64, name = 'ToQuaternion' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3381, + vfptr offset = 68, name = 'FromQuaternion' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1E45, name = 'operator[]' + list[19] = LF_MEMBER, protected, type = 0x1169, offset = 4 + member name = 'm_data' + +0x33d8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x33d7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 8, class name = Matrix4Impl, UDT(0x000033d8) + +0x33d9 : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AB3, name = 'Helicopter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = '~Helicopter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB6, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB7, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB8, name = 'Create' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x33A7, name = 'VTable0x70' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x33A6, name = 'VTable0x74' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3397, name = 'VTable0xcc' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3398, name = 'VTable0xd4' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x33A1, name = 'VTable0xd8' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AB3, name = 'VTable0xe4' + list[12] = LF_MEMBER, protected, type = 0x102C, offset = 352 + member name = 'm_unk0x160' + list[13] = LF_MEMBER, protected, type = 0x102C, offset = 424 + member name = 'm_unk0x1a8' + list[14] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 496 + member name = 'm_unk0x1f0' + list[15] = LF_MEMBER, protected, type = 0x33A8, offset = 500 + member name = 'm_unk0x1f4' + list[16] = LF_MEMBER, protected, type = 0x1E4A, offset = 552 + member name = 'm_state' + list[17] = LF_MEMBER, protected, type = 0x1064, offset = 556 + member name = 'm_script' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x1AB3, name = 'GetState' + +0x33da : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +0x33db : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A49, name = 'LegoAnimationManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A49, name = '~LegoAnimationManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4F, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A50, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A4D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1A4E, name = 'FUN_1005f6d0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1A4E, name = 'FUN_10064670' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x1A47, name = 'configureLegoAnimationManager' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x1A49, name = 'Init' + +0x33dc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x33db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoAnimationManager, UDT(0x000033dc) + +0x33dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33de : Length = 790, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[19] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[20] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[21] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[25] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[26] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[27] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[28] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[29] = LF_MEMBER, private, type = 0x1E5F, offset = 38 + member name = 'm_unk0x28' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[32] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x33df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x33de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x33e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3385, Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33e1 : Length = 1298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x33e2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x33e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x33e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x33e4 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[5] = LF_MEMBER, protected, type = 0x1ED3, offset = 248 + member name = 'm_unk0xf8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A7E, name = '~Isle' + +0x33e5 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 320, class name = Isle, UDT(0x00003478) + +0x33e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x16C6, This type = 0x16C7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33e7 : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1616, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16CE, name = 'MxDSFile' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C8, name = '~MxDSFile' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16CC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16CD, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D3, name = 'Open' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D5, name = 'Close' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D8, name = 'Read' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DA, name = 'Seek' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DB, name = 'GetBufferSize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16DB, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x22D0, name = 'SetFileName' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33E6, name = 'CalcFileSize' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x16D5, name = 'ReadChunks' + list[14] = LF_NESTTYPE, type = 0x22D1, ChunkHeader + list[15] = LF_MEMBER, private, type = 0x1272, offset = 20 + member name = 'm_filename' + list[16] = LF_MEMBER, private, type = 0x15BD, offset = 36 + member name = 'm_io' + list[17] = LF_MEMBER, private, type = 0x22D1, offset = 108 + member name = 'm_header' + list[18] = LF_MEMBER, private, type = T_ULONG(0022), offset = 120 + member name = 'm_skipReadingChunks' + +0x33e8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 124, class name = MxDSFile, UDT(0x000033e8) + +0x33e9 : Length = 462, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3384, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[10] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[11] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[12] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[16] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_unk0x20' + list[17] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[20] = LF_MEMBER, private, type = 0x109C, offset = 48 + member name = 'm_unk0x30' + +0x33ea : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x33e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x33eb : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x271F, name = 'MxRAMStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1339, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x133A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1434, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'VTable0x20' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1435, name = 'VTable0x24' + list[7] = LF_MEMBER, private, type = 0x1618, offset = 100 + member name = 'm_buffer' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x3382, name = 'DeserializeObject' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x271F, name = '~MxRAMStreamController' + +0x33ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +0x33ed : Length = 534, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x113F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1124, name = 'OrientableROI' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1154, name = 'GetWorldVelocity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1158, name = 'GetWorldBoundingBox' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x115C, name = 'GetWorldBoundingSphere' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 20, name = 'VTable0x14' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 24, name = 'UpdateWorldBoundingVolumes' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1128, + vfptr offset = 32, name = 'SetLocalTransform' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1129, + vfptr offset = 40, name = 'UpdateWorldData' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1124, + vfptr offset = 44, name = 'UpdateWorldVelocity' + list[12] = LF_MEMBER, protected, type = T_RCHAR(0070), offset = 12 + member name = 'm_unk0xc' + list[13] = LF_MEMBER, protected, type = 0x102C, offset = 16 + member name = 'm_local2world' + list[14] = LF_MEMBER, protected, type = 0x1155, offset = 88 + member name = 'm_world_bounding_box' + list[15] = LF_MEMBER, protected, type = 0x1159, offset = 168 + member name = 'm_world_bounding_sphere' + list[16] = LF_MEMBER, protected, type = 0x10A9, offset = 192 + member name = 'm_world_velocity' + list[17] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 212 + member name = 'm_unk0xd4' + list[18] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 216 + member name = 'm_unk0xd8' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1124, name = '~OrientableROI' + +0x33ee : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +0x33ef : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0xc' + +0x33f0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x33ef, + Derivation list type 0x0000, VT shape type 0x135e + Size = 16, class name = MxType18NotificationParam, UDT(0x000033f0) + +0x33f1 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1354, offset = 0 + list[1] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 12 + member name = 'm_unk0xc' + list[2] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 14 + member name = 'm_unk0xe' + +0x33f2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x33f1, + Derivation list type 0x0000, VT shape type 0x135e + Size = 16, class name = MxType19NotificationParam, UDT(0x000033f2) + +0x33f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x33A8, This type = 0x33A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33f4 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[3] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk0x30' + +0x33f5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x33f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x33f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1E49, This type = 0x2992, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x33f7 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2990, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2991, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2993, name = 'SetUnknown8' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33F6, name = 'GetUnkown8' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + +0x33f8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x33f7, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +0x33f9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x117D + +0x33fa : Length = 450, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 248 + member name = 'm_unk0xf8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[7] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 256 + member name = 'm_unk0x100' + list[8] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[9] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 264 + member name = 'm_unk0x108' + list[10] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[11] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[12] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[13] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 280 + member name = 'm_unk0x118' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[15] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[16] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 292 + member name = 'm_unk0x124' + list[17] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 296 + member name = 'm_unk0x128' + list[18] = LF_MEMBER, protected, type = 0x1184, offset = 300 + member name = 'm_radio' + list[19] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A7E, name = '~Isle' + +0x33fb : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x33fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 320, class name = Isle, UDT(0x00003478) + +0x33fc : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1186, name = 'Radio' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1186, name = '~Radio' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1189, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x118A, name = 'IsA' + list[5] = LF_MEMBER, private, type = 0x33F9, offset = 8 + member name = 'm_state' + list[6] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x1186, name = 'CreateRadioState' + +0x33fd : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = Radio, UDT(0x00003402) + +0x33fe : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x117F, name = 'RadioState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1182, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1183, name = 'IsA' + +0x33ff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x33fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = RadioState, UDT(0x000033ff) + +0x3400 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x33F9, Class type = 0x1184, This type = 0x1185, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3401 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1186, name = 'Radio' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1186, name = '~Radio' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1189, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x118A, name = 'IsA' + list[5] = LF_MEMBER, private, type = 0x33F9, offset = 8 + member name = 'm_state' + list[6] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x3400, name = 'CreateRadioState' + +0x3402 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3401, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = Radio, UDT(0x00003402) + +0x3403 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3404 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3405 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[11] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[12] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[13] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x3406 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3405, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x3407 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3408 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[10] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[12] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[13] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[14] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x3409 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3408, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x340a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x340b : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340A, name = 'StartAction' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[11] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[12] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[13] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[14] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[16] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x340c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x340b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x340d : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ParseExtra' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340A, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'EndAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[13] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[14] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[15] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[16] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[18] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x340e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x340d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x340f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1442, This adjust = 0 + +0x3410 : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ParseExtra' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340A, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'EndAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340F, name = 'HasTickleStatePassed' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[15] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[18] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[19] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x3411 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3410, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x3412 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = T_UINT4(0075) + list[2] = T_32PUINT4(0475) + +0x3413 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3412, This adjust = 0 + +0x3414 : Length = 466, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ParseExtra' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340A, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'EndAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340F, name = 'HasTickleStatePassed' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3404, name = 'Enable' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[15] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[16] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[18] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[19] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[20] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3413, name = 'FUN_10044270' + +0x3415 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3414, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x3416 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_32PUINT4(0475) + +0x3417 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3416, This adjust = 0 + +0x3418 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x17A5, This type = 0x17A6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x3419 : Length = 514, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17A7, name = 'MxControlPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = '~MxControlPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AA, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17AB, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'ParseExtra' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3407, name = 'AddToManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340A, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17A7, name = 'EndAction' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x340F, name = 'HasTickleStatePassed' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3404, name = 'Enable' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3403, name = 'VTable0x64' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3404, + vfptr offset = 104, name = 'VTable0x68' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3413, name = 'FUN_10044270' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3417, name = 'FUN_10044480' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3418, name = 'FUN_10044540' + list[18] = LF_MEMBER, private, type = T_USHORT(0021), offset = 76 + member name = 'm_unk0x4c' + list[19] = LF_MEMBER, private, type = T_SHORT(0011), offset = 78 + member name = 'm_unk0x4e' + list[20] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 80 + member name = 'm_unk0x50' + list[21] = LF_MEMBER, private, type = T_USHORT(0021), offset = 82 + member name = 'm_unk0x52' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 84 + member name = 'm_unk0x54' + list[23] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 88 + member name = 'm_unk0x58' + +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +0x341b : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1913, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x192b + +0x341c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PUSHORT(0421) + +0x341d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x341c, This adjust = 0 + +0x341e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1885 + +0x341f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUSHORT(0421) + list[1] = 0x341E + +0x3420 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x341f + +0x3421 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 128 + Name = + +0x3422 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 890 + Name = + +0x3423 : Length = 886, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x341D, name = 'WriteScoreHistory' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'FUN_1003ceb0' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[21] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[22] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[23] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_currentAct' + list[27] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[28] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[29] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[30] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[31] = LF_MEMBER, private, type = 0x3421, offset = 38 + member name = 'm_unk0x28' + list[32] = LF_MEMBER, private, type = T_USHORT(0021), offset = 166 + member name = 'm_unk0xa6' + list[33] = LF_MEMBER, private, type = 0x3422, offset = 168 + member name = 'm_unk0xa9' + list[34] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x3424 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3423, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x3425 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x341c + +0x3426 : Length = 858, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'FUN_1003ceb0' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[20] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[21] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[22] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[23] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_currentAct' + list[26] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[27] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[28] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[29] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[30] = LF_MEMBER, private, type = 0x3421, offset = 38 + member name = 'm_unk0x28' + list[31] = LF_MEMBER, private, type = T_USHORT(0021), offset = 166 + member name = 'm_unk0xa6' + list[32] = LF_MEMBER, private, type = 0x3422, offset = 168 + member name = 'm_unk0xa9' + list[33] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[34] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x3427 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3426, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x3428 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoGameState::ScoreStruct, UDT(0x00003431) + +0x3429 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3428 + +0x342a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3428, This type = 0x3429, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x342b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x341E + +0x342c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3428, This type = 0x3429, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x342b, This adjust = 0 + +0x342d : Length = 882, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'FUN_1003ceb0' + list[17] = LF_NESTTYPE, type = 0x3428, ScoreStruct + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[21] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[22] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[23] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_currentAct' + list[27] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[28] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[29] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[30] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[31] = LF_MEMBER, private, type = 0x3421, offset = 38 + member name = 'm_unk0x28' + list[32] = LF_MEMBER, private, type = 0x3428, offset = 166 + member name = 'm_unk0xa6' + list[33] = LF_MEMBER, private, type = 0x33C6, offset = 1048 + member name = 'm_unk0x41a' + list[34] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[36] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x342e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x342d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x342f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x2745 + Index type = T_SHORT(0011) + length = 880 + Name = + +0x3430 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x342A, name = 'WriteScoreHistory' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x342C, name = 'FUN_1003ccf0' + list[2] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_unk0x00' + list[3] = LF_MEMBER, public, type = 0x342F, offset = 2 + member name = 'm_unk0x02' + +0x3431 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x3430, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 882, class name = LegoGameState::ScoreStruct, UDT(0x00003431) + +0x3432 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3433 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x3434 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10b8, This adjust = 0 + +0x3435 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3436 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10af, This adjust = 0 + +0x3437 : Length = 642, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3388, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33CE, name = 'GetCamera' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1842, name = 'EndAction' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3387, name = 'FUN_1001fc80' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_100727e0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_10072980' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073400' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073430' + list[22] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[23] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[24] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[25] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[26] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[27] = LF_MEMBER, protected, type = 0x1C80, offset = 208 + member name = 'm_unk0xd0' + list[28] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[29] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x3438 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3437, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x3439 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x343a : Length = 970, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetCurrentAct' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown424' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3439, name = 'SetDirty' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'FUN_1003ceb0' + list[20] = LF_NESTTYPE, type = 0x3428, ScoreStruct + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[24] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[25] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[26] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_currentAct' + list[30] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[31] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[32] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[33] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[34] = LF_MEMBER, private, type = 0x3421, offset = 38 + member name = 'm_unk0x28' + list[35] = LF_MEMBER, private, type = 0x3428, offset = 166 + member name = 'm_unk0xa6' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1048 + member name = 'm_unk0x41a' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1056 + member name = 'm_isDirty' + list[38] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[39] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[40] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x343b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x343a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x343c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11B5 + +0x343d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Pizzeria, UDT(0x00003dd2) + +0x343e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x343D + +0x343f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1051 + +0x3440 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1B0A + +0x3441 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1A61 + +0x3442 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1AB1 + +0x3443 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1AF3 + +0x3444 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1AD8 + +0x3445 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1809 + +0x3446 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x105A + +0x3447 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1194 + +0x3448 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1A6F + +0x3449 : Length = 610, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = '~Isle' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3434, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3433, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'Stop' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3436, name = 'VTable0x58' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'VTable0x60' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3435, name = 'VTable0x68' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3436, + vfptr offset = 108, name = 'VTable0x6c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[15] = LF_MEMBER, protected, type = 0x3399, offset = 248 + member name = 'm_act1state' + list[16] = LF_MEMBER, protected, type = 0x343C, offset = 252 + member name = 'm_pizza' + list[17] = LF_MEMBER, protected, type = 0x343E, offset = 256 + member name = 'm_pizzeria' + list[18] = LF_MEMBER, protected, type = 0x343F, offset = 260 + member name = 'm_towtrack' + list[19] = LF_MEMBER, protected, type = 0x3440, offset = 264 + member name = 'm_ambulance' + list[20] = LF_MEMBER, protected, type = 0x3441, offset = 268 + member name = 'm_jukebox' + list[21] = LF_MEMBER, protected, type = 0x3442, offset = 272 + member name = 'm_helicopter' + list[22] = LF_MEMBER, protected, type = 0x3443, offset = 276 + member name = 'm_bike' + list[23] = LF_MEMBER, protected, type = 0x3444, offset = 280 + member name = 'm_dunebuggy' + list[24] = LF_MEMBER, protected, type = 0x3445, offset = 284 + member name = 'm_motorcycle' + list[25] = LF_MEMBER, protected, type = 0x3446, offset = 288 + member name = 'm_skateboard' + list[26] = LF_MEMBER, protected, type = 0x3447, offset = 292 + member name = 'm_racecar' + list[27] = LF_MEMBER, protected, type = 0x3448, offset = 296 + member name = 'm_jetski' + list[28] = LF_MEMBER, protected, type = 0x1184, offset = 300 + member name = 'm_radio' + list[29] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + +0x344a : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3449, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +0x344b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x343D + +0x344c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x344B + +0x344d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x343D, This type = 0x344C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x344e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x343D, This type = 0x344C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x344f : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x344D, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x344E, name = 'IsA' + +0x3450 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x344f, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = Pizzeria, UDT(0x00003dd2) + +0x3451 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1087, This type = 0x19C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3452 : Length = 970, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'LegoGameState' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = '~LegoGameState' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Load' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x19CC, name = 'Save' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializePlayersInfo' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x19D8, name = 'SerializeScoreHistory' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x19D2, name = 'SetSavePath' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'GetState' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x19DA, name = 'CreateState' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x19D5, name = 'GetFileSavePath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'FUN_1003a720' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'HandleAction' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x33DD, name = 'GetUnknownC' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown10' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3451, name = 'GetCurrentAct' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1E5C, name = 'GetUnknown424' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3439, name = 'SetDirty' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetUnknown424' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x19D9, name = 'SetSomeEnumState' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x19CA, name = 'FUN_1003ceb0' + list[20] = LF_NESTTYPE, type = 0x3428, ScoreStruct + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x19DC, name = 'RegisterState' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x19D3, name = 'WriteEndOfVariables' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x19CA, name = 'SetROIHandlerFunction' + list[24] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_savePath' + list[25] = LF_MEMBER, private, type = T_SHORT(0011), offset = 4 + member name = 'm_stateCount' + list[26] = LF_MEMBER, private, type = 0x19DD, offset = 8 + member name = 'm_stateArray' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_unk0xc' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_unk0x10' + list[29] = LF_MEMBER, private, type = T_INT4(0074), offset = 20 + member name = 'm_currentAct' + list[30] = LF_MEMBER, private, type = 0x1E5D, offset = 24 + member name = 'm_backgroundColor' + list[31] = LF_MEMBER, private, type = 0x1E5D, offset = 28 + member name = 'm_tempBackgroundColor' + list[32] = LF_MEMBER, private, type = 0x1E5E, offset = 32 + member name = 'm_fullScreenMovie' + list[33] = LF_MEMBER, private, type = T_USHORT(0021), offset = 36 + member name = 'm_unk0x24' + list[34] = LF_MEMBER, private, type = 0x3421, offset = 38 + member name = 'm_unk0x28' + list[35] = LF_MEMBER, private, type = 0x3428, offset = 166 + member name = 'm_unk0xa6' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1048 + member name = 'm_unk0x41a' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1056 + member name = 'm_isDirty' + list[38] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1060 + member name = 'm_unk0x424' + list[39] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1064 + member name = 'm_unk0x428' + list[40] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1068 + member name = 'm_unk0x42c' + +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +0x3454 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3386, This adjust = 0 + +0x3455 : Length = 610, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = '~Isle' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3434, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3433, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'Stop' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3436, name = 'VTable0x58' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'VTable0x60' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3435, name = 'VTable0x68' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3454, + vfptr offset = 108, name = 'VTable0x6c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[15] = LF_MEMBER, protected, type = 0x3399, offset = 248 + member name = 'm_act1state' + list[16] = LF_MEMBER, protected, type = 0x343C, offset = 252 + member name = 'm_pizza' + list[17] = LF_MEMBER, protected, type = 0x343E, offset = 256 + member name = 'm_pizzeria' + list[18] = LF_MEMBER, protected, type = 0x343F, offset = 260 + member name = 'm_towtrack' + list[19] = LF_MEMBER, protected, type = 0x3440, offset = 264 + member name = 'm_ambulance' + list[20] = LF_MEMBER, protected, type = 0x3441, offset = 268 + member name = 'm_jukebox' + list[21] = LF_MEMBER, protected, type = 0x3442, offset = 272 + member name = 'm_helicopter' + list[22] = LF_MEMBER, protected, type = 0x3443, offset = 276 + member name = 'm_bike' + list[23] = LF_MEMBER, protected, type = 0x3444, offset = 280 + member name = 'm_dunebuggy' + list[24] = LF_MEMBER, protected, type = 0x3445, offset = 284 + member name = 'm_motorcycle' + list[25] = LF_MEMBER, protected, type = 0x3446, offset = 288 + member name = 'm_skateboard' + list[26] = LF_MEMBER, protected, type = 0x3447, offset = 292 + member name = 'm_racecar' + list[27] = LF_MEMBER, protected, type = 0x3448, offset = 296 + member name = 'm_jetski' + list[28] = LF_MEMBER, protected, type = 0x1184, offset = 300 + member name = 'm_radio' + list[29] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + +0x3456 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3455, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +0x3457 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x28A8 + +0x3458 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3457, Class type = 0x1101, This type = 0x1102, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3459 : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10F7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1103, name = 'Vector4Impl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1104, name = 'AddScalarImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'AddVectorImpl' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'SubVectorImpl' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'MullScalarImpl' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'MullVectorImpl' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'DivScalarImpl' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1107, name = 'DotImpl' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'EqualsImpl' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x110C, name = 'Clear' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x110D, name = 'LenSquared' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1103, name = 'EqualsScalar' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x110B, + vfptr offset = 136, name = 'SetMatrixProduct' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1108, + vfptr offset = 140, name = 'SetMatrixProductImpl' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x110E, + vfptr offset = 144, name = 'NormalizeQuaternion' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1110, + vfptr offset = 148, name = 'UnknownQuaternionOp' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3458, name = 'GetVector' + +0x345a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3459, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c14 + Size = 8, class name = Vector4Impl, UDT(0x0000345a) + +0x345b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x33A8, This type = 0x33A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x33ab, This adjust = 0 + +0x345c : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong1' + list[3] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[4] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk0x30' + +0x345d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x345c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x345e : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong1' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong2' + list[4] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[5] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk0x30' + +0x345f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x345e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x3460 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong1' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong2' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong3' + list[5] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[6] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 48 + member name = 'm_unk0x30' + +0x3461 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3460, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x3462 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[3] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 48 + member name = 'm_unk0x30' + +0x3463 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3462, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x3464 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x33A8, This type = 0x33A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x33ab, This adjust = 0 + +0x3465 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x33F3, name = 'HelicopterSubclass' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x33AC, name = 'FUN_100040a0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3464, name = 'dong1' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3464, name = 'dong2' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x345B, name = 'dong3' + list[5] = LF_MEMBER, private, type = 0x1E48, offset = 0 + member name = 'm_unk0x0' + list[6] = LF_MEMBER, private, type = 0x1E48, offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, private, type = T_INT4(0074), offset = 48 + member name = 'm_unk0x30' + +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +0x3467 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A7C, This type = 0x1A7D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3468 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1AFD, This type = 0x1AFE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1898, This adjust = 0 + +0x3469 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1AFD, This type = 0x1AFE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x346a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1B2C, This type = 0x1B2D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x346b : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B2E, name = 'Act1State' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B35, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B36, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33B8, name = 'SetUnknown18' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x346A, name = 'GetUnknown18' + list[6] = LF_MEMBER, protected, type = 0x1E7F, offset = 8 + member name = 'm_unk0x8' + list[7] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + +0x346c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x346b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = Act1State, UDT(0x0000346c) + +0x346d : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B0C, name = 'Ambulance' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B13, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B14, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk0x168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk0x16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk0x16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk0x16e' + list[10] = LF_MEMBER, private, type = T_SHORT(0011), offset = 368 + member name = 'm_unk0x170' + list[11] = LF_MEMBER, private, type = T_SHORT(0011), offset = 370 + member name = 'm_unk0x172' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk0x174' + list[13] = LF_MEMBER, private, type = T_INT4(0074), offset = 376 + member name = 'm_unk0x178' + list[14] = LF_MEMBER, private, type = T_REAL32(0040), offset = 380 + member name = 'm_unk0x17c' + list[15] = LF_MEMBER, private, type = 0x1CF1, offset = 384 + member name = 'm_unk0x180' + +0x346e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x346d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +0x346f : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1B05, name = 'AmbulanceMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B08, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B09, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1D21, name = 'GetColor' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0xc' + list[7] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 16 + member name = 'm_unk0x10' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 18 + member name = 'm_unk0x12' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 20 + member name = 'm_unk0x14' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 22 + member name = 'm_unk0x16' + list[11] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 24 + member name = 'm_unk0x18' + list[12] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 26 + member name = 'm_color1' + list[13] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_color2' + list[14] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color3' + list[15] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color4' + list[16] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color5' + +0x3470 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x346f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +0x3471 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AFF, name = 'AnimState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AFF, name = '~AnimState' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B02, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B03, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3469, name = 'SetFlag' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3468, name = 'VTable0x1c' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0xc' + list[9] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 16 + member name = 'm_unk0x10' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[11] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 24 + member name = 'm_unk0x18' + +0x3472 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3471, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = AnimState, UDT(0x00003472) + +0x3473 : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = '~Isle' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3434, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'StopAction' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3433, name = 'Create' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'Stop' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'HandleType17Notification' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'HandleType19Notification' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3436, name = 'VTable0x58' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x5c' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'VTable0x60' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x64' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3435, name = 'VTable0x68' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3467, name = 'HandleTransitionEnd' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3454, + vfptr offset = 108, name = 'VTable0x6c' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[19] = LF_MEMBER, protected, type = 0x3399, offset = 248 + member name = 'm_act1state' + list[20] = LF_MEMBER, protected, type = 0x343C, offset = 252 + member name = 'm_pizza' + list[21] = LF_MEMBER, protected, type = 0x343E, offset = 256 + member name = 'm_pizzeria' + list[22] = LF_MEMBER, protected, type = 0x343F, offset = 260 + member name = 'm_towtrack' + list[23] = LF_MEMBER, protected, type = 0x3440, offset = 264 + member name = 'm_ambulance' + list[24] = LF_MEMBER, protected, type = 0x3441, offset = 268 + member name = 'm_jukebox' + list[25] = LF_MEMBER, protected, type = 0x3442, offset = 272 + member name = 'm_helicopter' + list[26] = LF_MEMBER, protected, type = 0x3443, offset = 276 + member name = 'm_bike' + list[27] = LF_MEMBER, protected, type = 0x3444, offset = 280 + member name = 'm_dunebuggy' + list[28] = LF_MEMBER, protected, type = 0x3445, offset = 284 + member name = 'm_motorcycle' + list[29] = LF_MEMBER, protected, type = 0x3446, offset = 288 + member name = 'm_skateboard' + list[30] = LF_MEMBER, protected, type = 0x3447, offset = 292 + member name = 'm_racecar' + list[31] = LF_MEMBER, protected, type = 0x3448, offset = 296 + member name = 'm_jetski' + list[32] = LF_MEMBER, protected, type = 0x1184, offset = 300 + member name = 'm_radio' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + +0x3474 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3473, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +0x3475 : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1053, name = 'TowTrack' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1056, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1057, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x154' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_SHORT(0011), offset = 360 + member name = 'm_unk0x168' + list[7] = LF_MEMBER, private, type = T_SHORT(0011), offset = 362 + member name = 'm_unk0x16a' + list[8] = LF_MEMBER, private, type = T_SHORT(0011), offset = 364 + member name = 'm_unk0x16c' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 366 + member name = 'm_unk0x16e' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 368 + member name = 'm_unk0x170' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 372 + member name = 'm_unk0x174' + list[12] = LF_MEMBER, private, type = T_REAL32(0040), offset = 376 + member name = 'm_unk0x178' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 380 + member name = 'm_unk0x17c' + +0x3476 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3475, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +0x3477 : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A7E, name = 'Isle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = '~Isle' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3434, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A81, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A82, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3433, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'Stop' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3436, name = 'VTable0x58' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A7E, name = 'VTable0x60' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3432, name = 'VTable0x64' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3435, name = 'VTable0x68' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3454, + vfptr offset = 108, name = 'VTable0x6c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33E3, name = 'SetUnknown13c' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'StopAction' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'HandleType17Notification' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3434, name = 'HandleType19Notification' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3467, name = 'HandleTransitionEnd' + list[19] = LF_MEMBER, protected, type = 0x3399, offset = 248 + member name = 'm_act1state' + list[20] = LF_MEMBER, protected, type = 0x343C, offset = 252 + member name = 'm_pizza' + list[21] = LF_MEMBER, protected, type = 0x343E, offset = 256 + member name = 'm_pizzeria' + list[22] = LF_MEMBER, protected, type = 0x343F, offset = 260 + member name = 'm_towtrack' + list[23] = LF_MEMBER, protected, type = 0x3440, offset = 264 + member name = 'm_ambulance' + list[24] = LF_MEMBER, protected, type = 0x3441, offset = 268 + member name = 'm_jukebox' + list[25] = LF_MEMBER, protected, type = 0x3442, offset = 272 + member name = 'm_helicopter' + list[26] = LF_MEMBER, protected, type = 0x3443, offset = 276 + member name = 'm_bike' + list[27] = LF_MEMBER, protected, type = 0x3444, offset = 280 + member name = 'm_dunebuggy' + list[28] = LF_MEMBER, protected, type = 0x3445, offset = 284 + member name = 'm_motorcycle' + list[29] = LF_MEMBER, protected, type = 0x3446, offset = 288 + member name = 'm_skateboard' + list[30] = LF_MEMBER, protected, type = 0x3447, offset = 292 + member name = 'm_racecar' + list[31] = LF_MEMBER, protected, type = 0x3448, offset = 296 + member name = 'm_jetski' + list[32] = LF_MEMBER, protected, type = 0x1184, offset = 300 + member name = 'm_radio' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 316 + member name = 'm_unk0x13c' + +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +0x3479 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1910, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x15c8, This adjust = 0 + +0x347a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x347b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x12DF + list[1] = 0x108E + +0x347c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x347b, This adjust = 0 + +0x347d : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStartActionNotificationParam, UDT(0x000034a2) + +0x347e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x347D + +0x347f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x347D, This type = 0x347E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3480 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxType4NotificationParam, UDT(0x000034c2) + +0x3481 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3480 + +0x3482 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3480, This type = 0x3481, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3483 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x347D, This type = 0x347E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3484 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x135A, Class type = 0x3480, This type = 0x3481, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3485 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1935, This adjust = 0 + +0x3486 : Length = 702, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'VTable0x14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetUnknown28' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetUnknown28' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'ClearAtom' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[26] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[28] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[31] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[32] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_unk0x28' + +0x3487 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3486, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x3488 : Length = 1294, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x14E9, name = 'DestroyInstance' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetCD' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetHD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14E8, name = 'GetInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x14ED, name = 'IsSound3D' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetCD' + list[7] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetHD' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x14EE, name = 'SetSound3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x149A, name = 'MxOmni' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x149A, name = '~MxOmni' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14EA, name = 'Notify' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 20, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A4, + vfptr offset = 24, name = 'Create' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 28, name = 'Destroy' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E6, + vfptr offset = 32, name = 'Start' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E7, + vfptr offset = 36, name = 'DeleteObject' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14EF, + vfptr offset = 40, name = 'DoesEntityExist' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x347C, + vfptr offset = 44, name = 'CreatePresenter' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149E, + vfptr offset = 48, name = 'FindWorld' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A0, + vfptr offset = 52, name = 'NotifyCurrentEntity' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 56, name = 'StartTimer' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 60, name = 'StopTimer' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x147F, + vfptr offset = 64, name = 'IsTimerRunning' + list[24] = LF_ONEMETHOD, public, STATIC, index = 0x14A1, name = 'SetInstance' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1C51, name = 'GetWindowHandle' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C52, name = 'GetObjectFactory' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C53, name = 'GetNotificationManager' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C54, name = 'GetTickleManager' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C55, name = 'GetTimer' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C56, name = 'GetStreamer' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1C57, name = 'GetSoundManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1C58, name = 'GetVideoManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1C59, name = 'GetVariableTable' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5A, name = 'GetMusicManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5B, name = 'GetEventManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5C, name = 'GetAtomIdCounterSet' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x14EA, name = 'HandleNotificationType2' + list[38] = LF_STATICMEMBER, protected, type = 0x1449 member name = 'g_instance' + list[39] = LF_MEMBER, protected, type = 0x1272, offset = 8 + member name = 'm_mediaPath' + list[40] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 24 + member name = 'm_windowHandle' + list[41] = LF_MEMBER, protected, type = 0x1481, offset = 28 + member name = 'm_objectFactory' + list[42] = LF_MEMBER, protected, type = 0x1491, offset = 32 + member name = 'm_variableTable' + list[43] = LF_MEMBER, protected, type = 0x1287, offset = 36 + member name = 'm_tickleManager' + list[44] = LF_MEMBER, protected, type = 0x1484, offset = 40 + member name = 'm_notificationManager' + list[45] = LF_MEMBER, protected, type = 0x148F, offset = 44 + member name = 'm_videoManager' + list[46] = LF_MEMBER, protected, type = 0x148D, offset = 48 + member name = 'm_soundManager' + list[47] = LF_MEMBER, protected, type = 0x1494, offset = 52 + member name = 'm_musicManager' + list[48] = LF_MEMBER, protected, type = 0x1497, offset = 56 + member name = 'm_eventManager' + list[49] = LF_MEMBER, protected, type = 0x12C0, offset = 60 + member name = 'm_timer' + list[50] = LF_MEMBER, protected, type = 0x148B, offset = 64 + member name = 'm_streamer' + list[51] = LF_MEMBER, protected, type = 0x1489, offset = 68 + member name = 'm_atomIdCounterSet' + list[52] = LF_MEMBER, protected, type = 0x11D9, offset = 72 + member name = 'm_criticalsection' + list[53] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 100 + member name = 'm_timerRunning' + +0x3489 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3488, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +0x348a : Length = 666, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3388, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33CE, name = 'GetCamera' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1842, name = 'EndAction' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3387, name = 'FUN_1001fc80' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_100727e0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_10072980' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073400' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073430' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x3485, name = 'GetCurrPathInfo' + list[23] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[24] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[25] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[26] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[27] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[28] = LF_MEMBER, protected, type = 0x1C80, offset = 208 + member name = 'm_unk0xd0' + list[29] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[30] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x348b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x348a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x348c : Length = 638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x347A, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[19] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[20] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[21] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[22] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[23] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[24] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[25] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[26] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[27] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x348d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x348c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x348e : Length = 1302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192D, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x348f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x348e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x3490 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[2] = LF_MEMBER, private, type = 0x29BA, offset = 0 + member name = 'm_pad' + list[3] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + +0x3491 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3490, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +0x3492 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x347D, This type = 0x347E, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x230e, This adjust = 0 + +0x3493 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3492, name = 'MxStartActionNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3483, name = 'Clone' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x347F, name = '~MxStartActionNotificationParam' + +0x3494 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3493, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxStartActionNotificationParam, UDT(0x000034a2) + +0x3495 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x10AE + list[1] = 0x109C + list[2] = T_UINT4(0075) + +0x3496 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3480, This type = 0x3481, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3495, This adjust = 0 + +0x3497 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3496, name = 'MxType4NotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3484, name = 'Clone' + list[3] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3482, name = '~MxType4NotificationParam' + +0x3498 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3497, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +0x3499 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1243, Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x349a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x349b : Length = 702, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'VTable0x14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1696, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3499, name = 'GetUnknown28' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x349A, name = 'SetUnknown28' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'ClearAtom' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[26] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[28] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[31] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[32] = LF_MEMBER, private, type = 0x1243, offset = 40 + member name = 'm_unk0x28' + +0x349c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x349b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x349d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x10AE + list[1] = 0x109C + list[2] = 0x1243 + +0x349e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3480, This type = 0x3481, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x349d, This adjust = 0 + +0x349f : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x349E, name = 'MxType4NotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3484, name = 'Clone' + list[3] = LF_MEMBER, private, type = 0x1243, offset = 20 + member name = 'm_unk0x14' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3482, name = '~MxType4NotificationParam' + +0x34a0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x349f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +0x34a1 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3492, name = 'MxStartActionNotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x347F, name = '~MxStartActionNotificationParam' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3483, name = 'Clone' + +0x34a2 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x34a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxStartActionNotificationParam, UDT(0x000034a2) + +0x34a3 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x349E, name = 'MxType4NotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3482, name = '~MxType4NotificationParam' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3484, name = 'Clone' + list[4] = LF_MEMBER, private, type = 0x1243, offset = 20 + member name = 'm_unk0x14' + +0x34a4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34a3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +0x34a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1243, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x34a6 : Length = 638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[19] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[20] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[21] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[22] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[23] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[24] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[25] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[26] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[27] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x34a7 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x34a6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x34a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x34a9 : Length = 1310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x14E9, name = 'DestroyInstance' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetCD' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetHD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14E8, name = 'GetInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x14ED, name = 'IsSound3D' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetCD' + list[7] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetHD' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x14EE, name = 'SetSound3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x149A, name = 'MxOmni' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x149A, name = '~MxOmni' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14EA, name = 'Notify' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 20, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A4, + vfptr offset = 24, name = 'Create' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 28, name = 'Destroy' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E6, + vfptr offset = 32, name = 'Start' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E7, + vfptr offset = 36, name = 'DeleteObject' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14EF, + vfptr offset = 40, name = 'DoesEntityExist' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x347C, + vfptr offset = 44, name = 'CreatePresenter' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149E, + vfptr offset = 48, name = 'FindWorld' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A0, + vfptr offset = 52, name = 'NotifyCurrentEntity' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 56, name = 'StartTimer' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 60, name = 'StopTimer' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x147F, + vfptr offset = 64, name = 'IsTimerRunning' + list[24] = LF_ONEMETHOD, public, STATIC, index = 0x14A1, name = 'SetInstance' + list[25] = LF_ONEMETHOD, public, STATIC, index = 0x34A8, name = 'FUN_100b06b0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C51, name = 'GetWindowHandle' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C52, name = 'GetObjectFactory' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C53, name = 'GetNotificationManager' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C54, name = 'GetTickleManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C55, name = 'GetTimer' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1C56, name = 'GetStreamer' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1C57, name = 'GetSoundManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1C58, name = 'GetVideoManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1C59, name = 'GetVariableTable' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5A, name = 'GetMusicManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5B, name = 'GetEventManager' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5C, name = 'GetAtomIdCounterSet' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x14EA, name = 'HandleActionEnd' + list[39] = LF_STATICMEMBER, protected, type = 0x1449 member name = 'g_instance' + list[40] = LF_MEMBER, protected, type = 0x1272, offset = 8 + member name = 'm_mediaPath' + list[41] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 24 + member name = 'm_windowHandle' + list[42] = LF_MEMBER, protected, type = 0x1481, offset = 28 + member name = 'm_objectFactory' + list[43] = LF_MEMBER, protected, type = 0x1491, offset = 32 + member name = 'm_variableTable' + list[44] = LF_MEMBER, protected, type = 0x1287, offset = 36 + member name = 'm_tickleManager' + list[45] = LF_MEMBER, protected, type = 0x1484, offset = 40 + member name = 'm_notificationManager' + list[46] = LF_MEMBER, protected, type = 0x148F, offset = 44 + member name = 'm_videoManager' + list[47] = LF_MEMBER, protected, type = 0x148D, offset = 48 + member name = 'm_soundManager' + list[48] = LF_MEMBER, protected, type = 0x1494, offset = 52 + member name = 'm_musicManager' + list[49] = LF_MEMBER, protected, type = 0x1497, offset = 56 + member name = 'm_eventManager' + list[50] = LF_MEMBER, protected, type = 0x12C0, offset = 60 + member name = 'm_timer' + list[51] = LF_MEMBER, protected, type = 0x148B, offset = 64 + member name = 'm_streamer' + list[52] = LF_MEMBER, protected, type = 0x1489, offset = 68 + member name = 'm_atomIdCounterSet' + list[53] = LF_MEMBER, protected, type = 0x11D9, offset = 72 + member name = 'm_criticalsection' + list[54] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 100 + member name = 'm_timerRunning' + +0x34aa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +0x34ab : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x12E3 + +0x34ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x34AB, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x34ad : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x347A, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[20] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[21] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[22] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[23] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[24] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[26] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[27] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[28] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x34ae : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x34ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x34af : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1CE2, OpenMode + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x131F, name = 'MxStreamer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x131F, name = '~MxStreamer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1335, name = 'Open' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x133C, name = 'Close' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1366, name = 'Notify' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1325, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1326, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1333, + vfptr offset = 20, name = 'Create' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1365, name = 'FUN_100b9b30' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1360, name = 'GetOpenStream' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1362, name = 'AddStreamControllerToOpenList' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1364, name = 'FUN_100b99b0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1364, name = 'DeleteObject' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE5, name = 'GetSubclass1' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE8, name = 'GetSubclass2' + list[17] = LF_MEMBER, private, type = 0x132A, offset = 8 + member name = 'm_openStreams' + list[18] = LF_MEMBER, private, type = 0x132D, offset = 20 + member name = 'm_subclass1' + list[19] = LF_MEMBER, private, type = 0x1330, offset = 32 + member name = 'm_subclass2' + +0x34b0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x34af, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +0x34b1 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[1] = LF_MEMBER, private, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x04' + list[3] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + +0x34b2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x34b1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +0x34b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1448, This type = 0x147E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x34b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x108f, This adjust = 0 + +0x34b5 : Length = 1310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x14E9, name = 'DestroyInstance' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetCD' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetHD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14E8, name = 'GetInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x14ED, name = 'IsSound3D' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetCD' + list[7] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetHD' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x14EE, name = 'SetSound3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x149A, name = 'MxOmni' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x149A, name = '~MxOmni' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14EA, name = 'Notify' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 20, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A4, + vfptr offset = 24, name = 'Create' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 28, name = 'Destroy' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E6, + vfptr offset = 32, name = 'Start' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x34B3, + vfptr offset = 36, name = 'DeleteObject' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14EF, + vfptr offset = 40, name = 'DoesEntityExist' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x347C, + vfptr offset = 44, name = 'CreatePresenter' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149E, + vfptr offset = 48, name = 'FindWorld' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A0, + vfptr offset = 52, name = 'NotifyCurrentEntity' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 56, name = 'StartTimer' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 60, name = 'StopTimer' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x147F, + vfptr offset = 64, name = 'IsTimerRunning' + list[24] = LF_ONEMETHOD, public, STATIC, index = 0x14A1, name = 'SetInstance' + list[25] = LF_ONEMETHOD, public, STATIC, index = 0x34A8, name = 'FUN_100b06b0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C51, name = 'GetWindowHandle' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C52, name = 'GetObjectFactory' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C53, name = 'GetNotificationManager' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C54, name = 'GetTickleManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C55, name = 'GetTimer' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1C56, name = 'GetStreamer' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1C57, name = 'GetSoundManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1C58, name = 'GetVideoManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1C59, name = 'GetVariableTable' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5A, name = 'GetMusicManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5B, name = 'GetEventManager' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5C, name = 'GetAtomIdCounterSet' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x14EA, name = 'HandleActionEnd' + list[39] = LF_STATICMEMBER, protected, type = 0x1449 member name = 'g_instance' + list[40] = LF_MEMBER, protected, type = 0x1272, offset = 8 + member name = 'm_mediaPath' + list[41] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 24 + member name = 'm_windowHandle' + list[42] = LF_MEMBER, protected, type = 0x1481, offset = 28 + member name = 'm_objectFactory' + list[43] = LF_MEMBER, protected, type = 0x1491, offset = 32 + member name = 'm_variableTable' + list[44] = LF_MEMBER, protected, type = 0x1287, offset = 36 + member name = 'm_tickleManager' + list[45] = LF_MEMBER, protected, type = 0x1484, offset = 40 + member name = 'm_notificationManager' + list[46] = LF_MEMBER, protected, type = 0x148F, offset = 44 + member name = 'm_videoManager' + list[47] = LF_MEMBER, protected, type = 0x148D, offset = 48 + member name = 'm_soundManager' + list[48] = LF_MEMBER, protected, type = 0x1494, offset = 52 + member name = 'm_musicManager' + list[49] = LF_MEMBER, protected, type = 0x1497, offset = 56 + member name = 'm_eventManager' + list[50] = LF_MEMBER, protected, type = 0x12C0, offset = 60 + member name = 'm_timer' + list[51] = LF_MEMBER, protected, type = 0x148B, offset = 64 + member name = 'm_streamer' + list[52] = LF_MEMBER, protected, type = 0x1489, offset = 68 + member name = 'm_atomIdCounterSet' + list[53] = LF_MEMBER, protected, type = 0x11D9, offset = 72 + member name = 'm_criticalsection' + list[54] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 100 + member name = 'm_timerRunning' + +0x34b6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +0x34b7 : Length = 1302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34B4, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x34b8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x34b7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x34b9 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x108f + +0x34ba : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x109C + list[1] = T_32PRCHAR(0470) + +0x34bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1448, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x34ba, This adjust = 0 + +0x34bc : Length = 1310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x14E9, name = 'DestroyInstance' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetCD' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x14EB, name = 'GetHD' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x14E8, name = 'GetInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x14ED, name = 'IsSound3D' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetCD' + list[7] = LF_ONEMETHOD, public, STATIC, index = 0x14EC, name = 'SetHD' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x14EE, name = 'SetSound3D' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x149A, name = 'MxOmni' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x149A, name = '~MxOmni' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14EA, name = 'Notify' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 20, name = 'Init' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A4, + vfptr offset = 24, name = 'Create' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 28, name = 'Destroy' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14E6, + vfptr offset = 32, name = 'Start' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x34B3, + vfptr offset = 36, name = 'DeleteObject' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14EF, + vfptr offset = 40, name = 'DoesEntityExist' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x347C, + vfptr offset = 44, name = 'CreatePresenter' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149E, + vfptr offset = 48, name = 'FindWorld' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14A0, + vfptr offset = 52, name = 'NotifyCurrentEntity' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 56, name = 'StartTimer' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x149A, + vfptr offset = 60, name = 'StopTimer' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x147F, + vfptr offset = 64, name = 'IsTimerRunning' + list[24] = LF_ONEMETHOD, public, STATIC, index = 0x14A1, name = 'SetInstance' + list[25] = LF_ONEMETHOD, public, STATIC, index = 0x34BB, name = 'FUN_100b06b0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C51, name = 'GetWindowHandle' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C52, name = 'GetObjectFactory' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C53, name = 'GetNotificationManager' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C54, name = 'GetTickleManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1C55, name = 'GetTimer' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1C56, name = 'GetStreamer' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1C57, name = 'GetSoundManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1C58, name = 'GetVideoManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1C59, name = 'GetVariableTable' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5A, name = 'GetMusicManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5B, name = 'GetEventManager' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x1C5C, name = 'GetAtomIdCounterSet' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x14EA, name = 'HandleActionEnd' + list[39] = LF_STATICMEMBER, protected, type = 0x1449 member name = 'g_instance' + list[40] = LF_MEMBER, protected, type = 0x1272, offset = 8 + member name = 'm_mediaPath' + list[41] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 24 + member name = 'm_windowHandle' + list[42] = LF_MEMBER, protected, type = 0x1481, offset = 28 + member name = 'm_objectFactory' + list[43] = LF_MEMBER, protected, type = 0x1491, offset = 32 + member name = 'm_variableTable' + list[44] = LF_MEMBER, protected, type = 0x1287, offset = 36 + member name = 'm_tickleManager' + list[45] = LF_MEMBER, protected, type = 0x1484, offset = 40 + member name = 'm_notificationManager' + list[46] = LF_MEMBER, protected, type = 0x148F, offset = 44 + member name = 'm_videoManager' + list[47] = LF_MEMBER, protected, type = 0x148D, offset = 48 + member name = 'm_soundManager' + list[48] = LF_MEMBER, protected, type = 0x1494, offset = 52 + member name = 'm_musicManager' + list[49] = LF_MEMBER, protected, type = 0x1497, offset = 56 + member name = 'm_eventManager' + list[50] = LF_MEMBER, protected, type = 0x12C0, offset = 60 + member name = 'm_timer' + list[51] = LF_MEMBER, protected, type = 0x148B, offset = 64 + member name = 'm_streamer' + list[52] = LF_MEMBER, protected, type = 0x1489, offset = 68 + member name = 'm_atomIdCounterSet' + list[53] = LF_MEMBER, protected, type = 0x11D9, offset = 72 + member name = 'm_criticalsection' + list[54] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 100 + member name = 'm_timerRunning' + +0x34bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +0x34be : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[20] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[21] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[22] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[23] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[24] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[25] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[26] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[27] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[28] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x34bf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x34be, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x34c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3480, This type = 0x3481, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x230e, This adjust = 0 + +0x34c1 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1804, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x34C0, name = 'MxType4NotificationParam' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3484, name = 'Clone' + list[3] = LF_MEMBER, private, type = 0x1243, offset = 20 + member name = 'm_unk0x14' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3482, name = '~MxType4NotificationParam' + +0x34c2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +0x34c3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1619 + list[1] = T_32PUCHAR(0420) + +0x34c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34c3, This adjust = 0 + +0x34c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x34c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x161a, This adjust = 0 + +0x34c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x34c8 : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[17] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[18] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[20] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[21] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x34c9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x34c8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x34ca : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12DF + list[1] = T_32PUINT4(0475) + list[2] = 0x109C + list[3] = T_UINT4(0075) + +0x34cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x34ca, This adjust = 0 + +0x34cc : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12DF + list[1] = 0x109C + list[2] = 0x109C + +0x34cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x34cc, This adjust = 0 + +0x34ce : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12DF + list[1] = T_32PUINT4(0475) + list[2] = 0x109C + list[3] = 0x11CE + +0x34cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x34ce, This adjust = 0 + +0x34d0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUINT4(0475) + list[1] = T_USHORT(0021) + +0x34d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34d0, This adjust = 0 + +0x34d2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x16E8 + +0x34d3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x34D2 + +0x34d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x34d3, This adjust = 0 + +0x34d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x34d3, This adjust = 0 + +0x34d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x161a, This adjust = 0 + +0x34d7 : Length = 690, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1369, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[21] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[22] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[23] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[24] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[25] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[26] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[27] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[28] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[29] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x34d8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x34d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x34d9 : Length = 410, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_objectid' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x34da : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x34db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1619, Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x34dc : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[9] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x34dd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x34dc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x34de : Length = 602, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3384, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34CB, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34CF, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x34D1, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[16] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[17] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[18] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[23] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[26] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x34df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x34e0 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'InsertToList74' + +0x34e1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x34e0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x34e2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1619 + list[1] = T_32PUINT4(0475) + list[2] = T_USHORT(0021) + +0x34e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x10AE, Class type = 0x1618, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 3, Arg list type = 0x34e2, This adjust = 0 + +0x34e4 : Length = 602, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3384, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34CB, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34CF, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[16] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[17] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[18] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[23] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[26] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x34e5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x34e6 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12DF + list[1] = T_32PINT4(0474) + list[2] = 0x109C + list[3] = T_UINT4(0075) + +0x34e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x34e6, This adjust = 0 + +0x34e8 : Length = 602, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3384, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34E7, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34CF, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[16] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[17] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[18] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[23] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[26] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x34e9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34e8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x34ea : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x12DF + list[1] = T_32PUINT4(0475) + list[2] = 0x109C + list[3] = T_UINT4(0075) + list[4] = 0x11CE + +0x34eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x34ea, This adjust = 0 + +0x34ec : Length = 602, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3384, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34CB, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34EB, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[16] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[17] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[18] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[23] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[26] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x34ed : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x34ee : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStreamChunk::Header, UDT(0x000034f7) + +0x34ef : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x34EE + +0x34f0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x34EF + +0x34f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x34f0, This adjust = 0 + +0x34f2 : Length = 410, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x34f3 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34f2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x34f4 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_NESTTYPE, type = 0x34EE, Header + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34F1, name = 'ReadChunkHeader' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x34f5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x34f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x34f6 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_flags' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_objectId' + list[2] = LF_MEMBER, public, type = T_LONG(0012), offset = 8 + member name = 'm_time' + list[3] = LF_MEMBER, public, type = T_UINT4(0075), offset = 12 + member name = 'm_length' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_data' + +0x34f7 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x34f6, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = MxStreamChunk::Header, UDT(0x000034f7) + +0x34f8 : Length = 410, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[17] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[18] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[19] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[20] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[21] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x34f9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34f8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x34fa : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : T_32PUCHAR(0420) + +0x34fb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x34FA + list[1] = T_SHORT(0011) + +0x34fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x34fd : Length = 1038, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3378, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34FC, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x10AC, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown84' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[35] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[37] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[39] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[40] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[42] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[43] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[44] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[45] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[47] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x34fe : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x34fd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x34ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x161E, This type = 0x161F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x3500 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1644, This type = 0x1645, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x3501 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1082, This type = 0x168C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x3502 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = 0x1697, Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x34fb + +0x3503 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1699, This type = 0x169A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x3504 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x16B8, This type = 0x16B9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x34fb, This adjust = 0 + +0x3505 : Length = 702, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'MxDSObject' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x168D, name = '~MxDSObject' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1692, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1693, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetObjectName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1694, name = 'SetSourceName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1690, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1691, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 20, name = 'VTable0x14' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1695, + vfptr offset = 24, name = 'GetSizeOnDisk' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3501, + vfptr offset = 28, name = 'Deserialize' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1706, + vfptr offset = 32, name = 'SetAtomId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1BED, name = 'GetType' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1690, name = 'GetSourceName' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1695, name = 'GetObjectId' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE7, name = 'GetAtomId' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE8, name = 'GetUnknown24' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3499, name = 'GetUnknown28' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEC, name = 'SetType' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1BE9, name = 'SetObjectId' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1BEA, name = 'SetUnknown24' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x349A, name = 'SetUnknown28' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x168D, name = 'ClearAtom' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_sizeOnDisk' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_type' + list[26] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 16 + member name = 'm_sourceName' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[28] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 24 + member name = 'm_objectName' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_objectId' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 32 + member name = 'm_atomId' + list[31] = LF_MEMBER, private, type = T_SHORT(0011), offset = 36 + member name = 'm_unk0x24' + list[32] = LF_MEMBER, private, type = 0x1243, offset = 40 + member name = 'm_unk0x28' + +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +0x3507 : Length = 490, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16BA, name = 'MxDSMediaAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BA, name = '~MxDSMediaAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16C1, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16C2, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C4, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3504, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x16C3, name = 'CopyMediaSrcPath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetMediaFormat' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetPaletteManagement' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x231B, name = 'GetSustainTime' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[14] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 152 + member name = 'm_mediaSrcPath' + list[15] = LF_MEMBER, private, type = 0x32AE, offset = 156 + member name = 'm_unk0x9c' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 164 + member name = 'm_framesPerSecond' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 168 + member name = 'm_mediaFormat' + list[18] = LF_MEMBER, private, type = T_INT4(0074), offset = 172 + member name = 'm_paletteManagement' + list[19] = LF_MEMBER, private, type = T_LONG(0012), offset = 176 + member name = 'm_sustainTime' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 180 + member name = 'm_unk0xb4' + +0x3508 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3507, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +0x3509 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1620, name = 'MxDSSound' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1620, name = '~MxDSSound' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1627, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1628, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1623, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1624, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x162B, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34FF, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1629, name = 'Clone' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2320, name = 'GetVolume' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 184 + member name = 'm_sizeOnDisk' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 188 + member name = 'm_volume' + +0x350a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3509, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 192, class name = MxDSSound, UDT(0x0000350a) + +0x350b : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169B, name = 'MxDSMultiAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169B, name = '~MxDSMultiAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AB, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AE, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A7, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16A8, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B3, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3503, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B6, name = 'SetAtomId' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B2, name = 'Clone' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B0, name = 'MergeFrom' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B1, name = 'HasId' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16AF, name = 'SetUnknown90' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2FF9, name = 'GetActionList' + list[16] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[17] = LF_MEMBER, protected, type = 0x26B3, offset = 152 + member name = 'm_actions' + +0x350c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x350b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +0x350d : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1671, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1646, name = 'MxDSSelectAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1646, name = '~MxDSSelectAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1658, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1664, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1652, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1653, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1666, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3500, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1665, name = 'Clone' + list[10] = LF_MEMBER, private, type = 0x1272, offset = 156 + member name = 'm_unk0x9c' + list[11] = LF_MEMBER, private, type = 0x26C5, offset = 172 + member name = 'm_unk0xac' + +0x350e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x350d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 176, class name = MxDSSelectAction, UDT(0x0000350e) + +0x350f : Length = 410, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[17] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[18] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[19] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[20] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[21] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x3510 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x350f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x3511 : Length = 322, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[14] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3512 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3511, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3513 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUCHAR(0420) + list[1] = 0x13C1 + +0x3514 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x3513, This adjust = 0 + +0x3515 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3516 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3515, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3517 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Smack::Header, UDT(0x0000351b) + +0x3518 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3517, Header + list[1] = LF_MEMBER, public, type = 0x3517, offset = 0 + member name = 'm_header' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 104 + member name = 'm_newPalette' + list[3] = LF_MEMBER, public, type = 0x2704, offset = 108 + member name = 'm_palette' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 880 + member name = 'm_frameNum' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 884 + member name = 'm_lastRectX' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 888 + member name = 'm_lastRectY' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 892 + member name = 'm_lastRectW' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 896 + member name = 'm_lastRectH' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 900 + member name = 'm_openFlags' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 904 + member name = 'm_leftOfs' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 908 + member name = 'm_topOfs' + +0x3519 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3518, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +0x351a : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'm_version' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'm_width' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'm_height' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'm_frames' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'm_msInAFrame' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'm_smkType' + list[6] = LF_MEMBER, public, type = 0x2703, offset = 24 + member name = 'm_audioTrackSize' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'm_treeSize' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'm_codeSize' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'm_abSize' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'm_detailSize' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'm_typeSize' + list[12] = LF_MEMBER, public, type = 0x2703, offset = 72 + member name = 'm_trackType' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 100 + member name = 'm_extra' + +0x351b : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x351a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 104, class name = Smack::Header, UDT(0x0000351b) + +0x351c : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1716 + member name = 'm_unk0x6b4' + +0x351d : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x351c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x351e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x351f : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3520 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x351f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3521 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1716 + member name = 'm_unk0x6b4' + +0x3522 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3521, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3523 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_32PUCHAR(0420) + list[1] = T_32PUCHAR(0420) + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + list[5] = T_ULONG(0022) + +0x3524 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 6, Arg list type = 0x3523, This adjust = 0 + +0x3525 : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3526 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3525, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3527 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x3528 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_ONEMETHOD, private, STATIC, index = 0x3527, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3529 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3528, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x352a : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + +0x352b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x352a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x352c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x352d : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x352C, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x352e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x352d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x352f : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_ULONG(0022), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x1780 + +0x3530 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_ULONG(0022), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x116b + +0x3531 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_ULONG(0022), Call type = STD Near + Func attr = none + # Parms = 2, Arg list type = 0x116b + +0x3532 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + +0x3533 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3532, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3534 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_ULONG(0022) + list[3] = T_ULONG(0022) + +0x3535 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 4, Arg list type = 0x3534, This adjust = 0 + +0x3536 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_ONEMETHOD, private, STATIC, index = 0x3535, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3537 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3536, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3538 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + +0x3539 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 3, Arg list type = 0x3538, This adjust = 0 + +0x353a : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_ONEMETHOD, private, STATIC, index = 0x3539, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x353b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x353a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x353c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x13B7, This type = T_NOTYPE(0000), + Call type = Fast Near, Func attr = none + Parms = 3, Arg list type = 0x3538, This adjust = 0 + +0x353d : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'FUN_100cd7e8' + list[17] = LF_ONEMETHOD, private, STATIC, index = 0x353C, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x353e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x353d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x353f : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1716 + member name = 'm_unk0x6b4' + +0x3540 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x353f, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3541 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_unk0x6b0' + list[7] = LF_MEMBER, public, type = T_32PINT4(0474), offset = 1716 + member name = 'm_unk0x6b4' + +0x3542 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3541, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3543 : Length = 190, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_unk0x6a0' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_unk0x6a4' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_unk0x6a8' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_unk0x6ac' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + +0x3544 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3543, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3545 : Length = 422, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_NESTTYPE, type = 0x13C0, MxSmack + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_ONEMETHOD, private, STATIC, index = 0x3514, name = 'FUN_100c5a90' + list[14] = LF_ONEMETHOD, private, STATIC, index = 0x13C3, name = 'FUN_100c5d40' + list[15] = LF_ONEMETHOD, private, STATIC, index = 0x351E, name = 'FUN_100cd782' + list[16] = LF_ONEMETHOD, private, STATIC, index = 0x3524, name = 'DecodeHuffmanTrees' + list[17] = LF_ONEMETHOD, private, STATIC, index = 0x3527, name = 'FUN_100d052c' + list[18] = LF_MEMBER, private, type = 0x13C0, offset = 100 + member name = 'm_mxSmack' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3546 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3545, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3547 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +0x3549 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSmack, UDT(0x000036a7) + +0x354a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3549 + +0x354b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUCHAR(0420) + list[1] = 0x354A + +0x354c : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_LONG(0012), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x354b + +0x354d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x354A + +0x354e : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x354d + +0x354f : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UINT4(0075), Call type = C Near + Func attr = none + # Parms = 0, Arg list type = 0x1023 + +0x3550 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 6, Arg list type = 0x3523 + +0x3551 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13BF, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[12] = LF_MEMBER, private, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x3552 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3551, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x3553 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3554 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x354b, This adjust = 0 + +0x3555 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x354d, This adjust = 0 + +0x3556 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3557 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 6, Arg list type = 0x3523, This adjust = 0 + +0x3558 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x3559 : Length = 322, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'FUN_100c5a90' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'FUN_100c5d40' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'FUN_100cd782' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'DecodeHuffmanTrees' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'FUN_100d052c' + +0x355a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3559, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x355b : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'FUN_100cd782' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'DecodeHuffmanTrees' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'FUN_100d052c' + +0x355c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x355b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x355d : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B9, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[12] = LF_MEMBER, private, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x355e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x355d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x355f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 768 + Name = + +0x3560 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3517, Header + list[1] = LF_MEMBER, public, type = 0x3517, offset = 0 + member name = 'm_header' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 104 + member name = 'unk' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 108 + member name = 'm_newPalette' + list[4] = LF_MEMBER, public, type = 0x355F, offset = 112 + member name = 'm_palette' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 880 + member name = 'm_frameNum' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 884 + member name = 'm_lastRectX' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 888 + member name = 'm_lastRectY' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 892 + member name = 'm_lastRectW' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 896 + member name = 'm_lastRectH' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 900 + member name = 'm_openFlags' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 904 + member name = 'm_leftOfs' + list[12] = LF_MEMBER, public, type = T_ULONG(0022), offset = 908 + member name = 'm_topOfs' + +0x3561 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3560, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +0x3562 : Length = 322, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'FUN_100cd782' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'DecodeHuffmanTrees' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'FUN_100d052c' + +0x3563 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3562, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3564 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 784 + Name = + +0x3565 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x3564, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PULONG(0422), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + +0x3566 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3565, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3567 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Header, UDT(0x0000356a) + +0x3568 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3567, offset = 0 + member name = 'm_header' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 104 + member name = 'm_newPalette' + list[2] = LF_MEMBER, public, type = 0x2704, offset = 108 + member name = 'm_palette' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 880 + member name = 'm_frameNum' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 884 + member name = 'm_lastRectX' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 888 + member name = 'm_lastRectY' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 892 + member name = 'm_lastRectW' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 896 + member name = 'm_lastRectH' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 900 + member name = 'm_openFlags' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 904 + member name = 'm_leftOfs' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 908 + member name = 'm_topOfs' + +0x3569 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3568, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +0x356a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x351a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 104, class name = Header, UDT(0x0000356a) + +0x356b : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'SmackGetSizeTables' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'SmackDoTables' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'SmackGetSizeDeltas' + +0x356c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x356b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x356d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3549 + +0x356e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x3549, This type = 0x356D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x356f : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x356E, name = 'FrameCount' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'SmackGetSizeTables' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'SmackDoTables' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'SmackGetSizeDeltas' + +0x3570 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x356f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3571 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3549, This type = 0x356D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x3572 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x356E, name = 'FrameCount' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3571, name = 'dong' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'SmackGetSizeTables' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'SmackDoTables' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x3558, name = 'SmackGetSizeDeltas' + +0x3573 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 15, field list type 0x3572, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3574 : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x26FF, offset = 0 + member name = 'm_smack' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3556, name = 'SmackGetSizeTables' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3557, name = 'SmackDoTables' + +0x3575 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3574, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3576 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = SmackTag, UDT(0x0000357a) + +0x3577 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x3f4' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + +0x3578 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x3577, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3579 : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'Version' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'Width' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'Height' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'Frames' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'MSPerFrame' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'SmackerType' + list[6] = LF_MEMBER, public, type = 0x2703, offset = 24 + member name = 'LargestInTrack' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 52 + member name = 'tablesize' + list[8] = LF_MEMBER, public, type = T_ULONG(0022), offset = 56 + member name = 'codesize' + list[9] = LF_MEMBER, public, type = T_ULONG(0022), offset = 60 + member name = 'absize' + list[10] = LF_MEMBER, public, type = T_ULONG(0022), offset = 64 + member name = 'detailsize' + list[11] = LF_MEMBER, public, type = T_ULONG(0022), offset = 68 + member name = 'typesize' + list[12] = LF_MEMBER, public, type = 0x2703, offset = 72 + member name = 'TrackType' + list[13] = LF_MEMBER, public, type = T_ULONG(0022), offset = 100 + member name = 'extra' + list[14] = LF_MEMBER, public, type = T_ULONG(0022), offset = 104 + member name = 'NewPalette' + list[15] = LF_MEMBER, public, type = 0x2704, offset = 108 + member name = 'Palette' + list[16] = LF_MEMBER, public, type = T_ULONG(0022), offset = 880 + member name = 'FrameNum' + list[17] = LF_MEMBER, public, type = T_ULONG(0022), offset = 884 + member name = 'LastRectx' + list[18] = LF_MEMBER, public, type = T_ULONG(0022), offset = 888 + member name = 'LastRecty' + list[19] = LF_MEMBER, public, type = T_ULONG(0022), offset = 892 + member name = 'LastRectw' + list[20] = LF_MEMBER, public, type = T_ULONG(0022), offset = 896 + member name = 'LastRecth' + list[21] = LF_MEMBER, public, type = T_ULONG(0022), offset = 900 + member name = 'OpenFlags' + list[22] = LF_MEMBER, public, type = T_ULONG(0022), offset = 904 + member name = 'LeftOfs' + list[23] = LF_MEMBER, public, type = T_ULONG(0022), offset = 908 + member name = 'TopOfs' + +0x357a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x3579, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = SmackTag, UDT(0x0000357a) + +0x357b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x17C2, Class type = 0x11ED, This type = 0x1FC0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x357c : Length = 682, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[23] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[24] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[25] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[26] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[28] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x357d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x357c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x357e : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + +0x357f : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x357e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x3580 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrList, UDT(0x0000363f) + +0x3581 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSmackList, UDT(0x00003636) + +0x3582 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3581 + +0x3583 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3581, This type = 0x3582, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3584 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x11FA + +0x3585 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3584 + +0x3586 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3581, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x3587 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3580, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3583, name = 'MxSmackList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3586, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3583, name = '~MxSmackList' + +0x3588 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3587, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +0x3589 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxPtrListCursor, UDT(0x000035c9) + +0x358a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxSmackListCursor, UDT(0x000035d9) + +0x358b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x358A + +0x358c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3581 + +0x358d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x358C + +0x358e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x358A, This type = 0x358B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x358d, This adjust = 0 + +0x358f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x358A, This type = 0x358B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3590 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3589, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x358E, name = 'MxSmackListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x358F, name = '~MxSmackListCursor' + +0x3591 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3590, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxSmackListCursor, UDT(0x000035d9) + +0x3592 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000363a) + +0x3593 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3592 + +0x3594 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3592, This type = 0x3593, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3595 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3592, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x3596 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3584 + list[1] = 0x3584 + +0x3597 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x3592, This type = 0x3593, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3596, This adjust = 0 + +0x3598 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3580 + +0x3599 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3580, This type = 0x3598, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x359a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x0000371d) + +0x359b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x359A + +0x359c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3589 + +0x359d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3589, This type = 0x359C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x359e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListCursor, UDT(0x00004e8f) + +0x359f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x359E + +0x35a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35a2 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x17C2 + list[1] = T_32PUCHAR(0420) + list[2] = 0x354A + list[3] = T_32PUCHAR(0420) + list[4] = T_UCHAR(0020) + list[5] = 0x358C + +0x35a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 6, Arg list type = 0x35a2, This adjust = 0 + +0x35a4 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x35A3, name = 'FUN_100c5db0' + +0x35a5 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x35a4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x35a6 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x3585 + +0x35a7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x35A6 + +0x35a8 : Length = 174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3594, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3594, name = '~MxCollection' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x3595, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3597, + vfptr offset = 20, name = 'Compare' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[6] = LF_MEMBER, protected, type = 0x35A7, offset = 12 + member name = 'm_customDestructor' + +0x35a9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x35a8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000363a) + +0x35aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x35ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x35ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35ad : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x35A7 + +0x35ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35ad, This adjust = 0 + +0x35af : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x000035d5) + +0x35b0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x35AF + +0x35b1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x35B0 + +0x35b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35b1, This adjust = 0 + +0x35b3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3584 + list[1] = 0x35B0 + list[2] = 0x35B0 + +0x35b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x35B0, Class type = 0x359A, This type = 0x359B, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x35b3, This adjust = 0 + +0x35b5 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x3592, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35A1, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x35A1, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35AA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35AB, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35AC, name = 'GetCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35AE, name = 'SetDestroy' + list[7] = LF_MEMBER, protected, type = 0x35B0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x35B0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B4, name = 'InsertEntry' + +0x35b6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x35b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +0x35b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3580, This type = 0x3598, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35ad, This adjust = 0 + +0x35b8 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x359A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35B7, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3599, name = '~MxPtrList' + +0x35b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000363f) + +0x35ba : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x359A + +0x35bb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x35BA + +0x35bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35bb, This adjust = 0 + +0x35bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x35be : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3584 + +0x35bf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x35BE + +0x35c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35bf, This adjust = 0 + +0x35c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x359E, This type = 0x359F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x35c3 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Head' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[14] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[16] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x35c4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x35c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x35c5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3580 + +0x35c6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x35C5 + +0x35c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3589, This type = 0x359C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35c6, This adjust = 0 + +0x35c8 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x359E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35C7, name = 'MxPtrListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x359D, name = '~MxPtrListCursor' + +0x35c9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxPtrListCursor, UDT(0x000035c9) + +0x35ca : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x35AF + +0x35cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x35b3, This adjust = 0 + +0x35cc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3584 + list[1] = 0x35B0 + +0x35cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x35cc, This adjust = 0 + +0x35ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35cf : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x35CB, + list[1] = public, VANILLA, 0x35CD, + list[2] = public, VANILLA, 0x35CE, + +0x35d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3584, Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x35B0, Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x35d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x35d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x35AF, This type = 0x35CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35b1, This adjust = 0 + +0x35d4 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x35CF, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35D0, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35D1, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35D1, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35D2, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35D3, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35D3, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x3584, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x35B0, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x35B0, offset = 8 + member name = 'm_next' + +0x35d5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x35d4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x000035d5) + +0x35d6 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x359A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3583, name = 'MxSmackList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3586, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3583, name = '~MxSmackList' + +0x35d7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35d6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +0x35d8 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x359E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x358E, name = 'MxSmackListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x358F, name = '~MxSmackListCursor' + +0x35d9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35d8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxSmackListCursor, UDT(0x000035d9) + +0x35da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d2, This adjust = 0 + +0x35db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1401, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x13d7, This adjust = 0 + +0x35dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182A, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1824, This adjust = 0 + +0x35dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1A, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x35de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1828, This type = 0x1829, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x35df : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x182A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35DE, name = 'LegoPathControllerList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D4, name = 'Compare' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x182F, name = '~LegoPathControllerList' + +0x35e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoPathControllerList, UDT(0x000035e0) + +0x35e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x181F, This type = 0x1820, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c42, This adjust = 0 + +0x35e2 : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1821, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1825, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35E1, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1821, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1827, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x1C3D, offset = 12 + member name = 'm_customDestructor' + +0x35e3 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35e2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035e3) + +0x35e4 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3201, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = 'InsertEntry' + +0x35e5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x35e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x182A, This type = 0x182B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x35e7 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x182D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35E6, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x35DC, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35E6, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x182C, name = '~MxPtrList' + +0x35e8 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x35e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035e8) + +0x35e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1830, This type = 0x1831, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1c72, This adjust = 0 + +0x35ea : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1832, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1834, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35E9, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1832, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1835, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x1C6D, offset = 12 + member name = 'm_customDestructor' + +0x35eb : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035eb) + +0x35ec : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3204, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = 'InsertEntry' + +0x35ed : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x35ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1837, This type = 0x1838, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x35ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1837, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x35f0 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x123B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35EE, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x35EF, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35EE, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1839, name = '~MxPtrList' + +0x35f1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x35f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035f1) + +0x35f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1439, This type = 0x143A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x35f3 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1837, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35F2, name = 'MxPresenterList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143C, name = 'Compare' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x183E, name = '~MxPresenterList' + +0x35f4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35f3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPresenterList, UDT(0x000035f4) + +0x35f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1590, This type = 0x1591, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1edf, This adjust = 0 + +0x35f6 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1592, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x1593, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35F5, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1592, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1594, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x1EDA, offset = 12 + member name = 'm_customDestructor' + +0x35f7 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35f6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035f7) + +0x35f8 : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3207, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = 'InsertEntry' + +0x35f9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35f8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x35fa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1FEE + +0x35fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x14C9, This type = 0x14CA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35fa, This adjust = 0 + +0x35fc : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14CB, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x14CC, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35FB, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x14CB, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x14CD, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x1FEE, offset = 12 + member name = 'm_customDestructor' + +0x35fd : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035fd) + +0x35fe : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13E3, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2010, name = 'MxRegionList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2010, name = '~MxRegionList' + +0x35ff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionList, UDT(0x000035ff) + +0x3600 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13DC, This type = 0x13DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x201f, This adjust = 0 + +0x3601 : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DE, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x13DF, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3600, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DE, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E1, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x2014, offset = 12 + member name = 'm_customDestructor' + +0x3602 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3601, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003602) + +0x3603 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13D0, This type = 0x13F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3604 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2017, name = 'MxRegionTopBottom' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3603, name = '~MxRegionTopBottom' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x141A, name = 'Clone' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F9, name = 'FUN_100c5280' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x141B, name = 'FUN_100c57b0' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetTop' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetBottom' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetTop' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetBottom' + list[9] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_top' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_bottom' + list[11] = LF_MEMBER, private, type = 0x201A, offset = 8 + member name = 'm_leftRightList' + +0x3605 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3604, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +0x3606 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320A, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = 'InsertEntry' + +0x3607 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3606, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x3608 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13E3, This type = 0x13E4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3609 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13E6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3608, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x35DA, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3608, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13E5, name = '~MxPtrList' + +0x360a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3609, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000360a) + +0x360b : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1401, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2028, name = 'MxRegionLeftRightList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2028, name = '~MxRegionLeftRightList' + +0x360c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x360b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionLeftRightList, UDT(0x0000360c) + +0x360d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x13FA, This type = 0x13FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2038, This adjust = 0 + +0x360e : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13FC, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x13FD, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x360D, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13FC, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13FF, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x202C, offset = 12 + member name = 'm_customDestructor' + +0x360f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x360e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000360f) + +0x3610 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x320D, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = 'InsertEntry' + +0x3611 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3610, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x3612 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1401, This type = 0x1402, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3613 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1404, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3612, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x35DB, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3612, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1403, name = '~MxPtrList' + +0x3614 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3613, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003614) + +0x3615 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1985, This type = 0x1986, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20aa, This adjust = 0 + +0x3616 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1987, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x198A, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3615, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1987, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x199C, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x20A5, offset = 12 + member name = 'm_customDestructor' + +0x3617 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3616, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003617) + +0x3618 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3210, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = 'InsertEntry' + +0x3619 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3618, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x361a : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3213, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = 'InsertEntry' + +0x361b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x361a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x361c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x169C, This type = 0x169D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2691, This adjust = 0 + +0x361d : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x169E, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x169F, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x361C, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x169E, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x16A1, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x268C, offset = 12 + member name = 'm_customDestructor' + +0x361e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x361d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000361e) + +0x361f : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3216, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = 'InsertEntry' + +0x3620 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x361f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x3621 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1647, This type = 0x1648, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x26bf, This adjust = 0 + +0x3622 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1649, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x164B, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3621, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1649, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x164D, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x26BB, offset = 12 + member name = 'm_customDestructor' + +0x3623 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3622, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003623) + +0x3624 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3219, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = 'InsertEntry' + +0x3625 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3624, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x3626 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D10, This type = 0x2D11, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3627 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D1A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3626, name = 'LegoWorldList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D13, name = 'Compare' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D30, name = '~LegoWorldList' + +0x3628 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3627, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoWorldList, UDT(0x00003628) + +0x3629 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D15, This type = 0x2D16, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d48, This adjust = 0 + +0x362a : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D17, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x2D18, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3629, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D17, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2D19, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x2D43, offset = 12 + member name = 'm_customDestructor' + +0x362b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x362a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000362b) + +0x362c : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x2D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D1F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x321C, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2D47, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x2D4B, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x2D4B, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4D, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4F, name = 'InsertEntry' + +0x362d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x362c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +0x362e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D1A, This type = 0x2D1B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x362f : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D1D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x362E, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x35DD, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x362E, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2D1C, name = '~MxPtrList' + +0x3630 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x362f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003630) + +0x3631 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x20C7, This type = 0x29C4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x20cd, This adjust = 0 + +0x3632 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x29C5, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x29C6, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3631, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x29C5, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x29C7, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x20CC, offset = 12 + member name = 'm_customDestructor' + +0x3633 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3632, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003633) + +0x3634 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3581, This type = 0x3582, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3635 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3580, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3634, name = 'MxSmackList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3583, name = '~MxSmackList' + +0x3636 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3635, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +0x3637 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3580, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3585, This adjust = 0 + +0x3638 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3592, This type = 0x3593, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x35ad, This adjust = 0 + +0x3639 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3594, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3595, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3638, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3594, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3597, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x35A7, offset = 12 + member name = 'm_customDestructor' + +0x363a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3639, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000363a) + +0x363b : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x3592, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35A1, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x35A1, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35AA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35AB, name = 'DeleteAll' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35AC, name = 'GetCount' + list[6] = LF_MEMBER, protected, type = 0x35B0, offset = 16 + member name = 'm_first' + list[7] = LF_MEMBER, protected, type = 0x35B0, offset = 20 + member name = 'm_last' + list[8] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B2, name = 'DeleteEntry' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B4, name = 'InsertEntry' + +0x363c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x363b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +0x363d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3580, This type = 0x3598, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x363e : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x359A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x363D, name = 'MxPtrList' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3637, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x363D, name = 'SetOwnership' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3599, name = '~MxPtrList' + +0x363f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x363e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000363f) + +0x3640 : Length = 462, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[19] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3641 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3640, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3642 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1201 + +0x3643 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1200, This type = 0x3642, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3644 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1C62, name = 'MxPoint32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetX' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetY' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x3645 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3644, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x3646 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1200 + +0x3647 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3646, This adjust = 0 + +0x3648 : Length = 462, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3647, name = 'AddPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[19] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3649 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3648, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x364a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1223, Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1211, This adjust = 0 + +0x364b : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[1] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3647, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x364c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x364d : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[1] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x364e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x364f : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3650 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3651 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1200, This type = 0x1C5F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3652 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1C62, name = 'MxPoint32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetX' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetY' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetX' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetY' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x3653 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3652, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x3654 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1204 + +0x3655 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1203, This type = 0x3654, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3656 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1FEA, name = 'MxSize32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetHeight' + list[3] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_height' + +0x3657 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3656, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +0x3658 : Length = 942, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1441, TickleState + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x143E, name = 'MxPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143E, name = '~MxPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143F, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A32, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A33, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 20, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 24, name = 'ReadyTickle' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 28, name = 'StartingTickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 32, name = 'StreamingTickle' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 36, name = 'RepeatingTickle' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 40, name = 'Unk5Tickle' + list[13] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 44, name = 'DoneTickle' + list[14] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 48, name = 'ParseExtra' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 52, name = 'AddToManager' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 56, name = 'Destroy' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1447, + vfptr offset = 60, name = 'StartAction' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 64, name = 'EndAction' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1443, + vfptr offset = 68, name = 'SetTickleState' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1444, + vfptr offset = 72, name = 'HasTickleStatePassed' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 76, name = 'PutData' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1445, + vfptr offset = 80, name = 'IsHit' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x144C, + vfptr offset = 84, name = 'Enable' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1450, name = 'IsEnabled' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetCurrentTickleState' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C66, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetDisplayZ' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C67, name = 'GetAction' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x2F1A, name = 'SetCompositePresenter' + list[30] = LF_ONEMETHOD, protected, VANILLA, index = 0x143E, name = 'Init' + list[31] = LF_ONEMETHOD, protected, VANILLA, index = 0x144B, name = 'SendToCompositePresenter' + list[32] = LF_MEMBER, protected, type = 0x1441, offset = 8 + member name = 'm_currentTickleState' + list[33] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_previousTickleStates' + list[34] = LF_MEMBER, protected, type = 0x1200, offset = 16 + member name = 'm_location' + list[35] = LF_MEMBER, protected, type = T_INT4(0074), offset = 24 + member name = 'm_displayZ' + list[36] = LF_MEMBER, protected, type = 0x109C, offset = 28 + member name = 'm_action' + list[37] = LF_MEMBER, protected, type = 0x11D9, offset = 32 + member name = 'm_criticalSection' + list[38] = LF_MEMBER, protected, type = 0x1C68, offset = 60 + member name = 'm_compositePresenter' + +0x3659 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 39, field list type 0x3658, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +0x365a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRectList, UDT(0x0000365f) + +0x365b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x365A + +0x365c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x365A, This type = 0x365B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x365d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x365A, This type = 0x365B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x365e : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3580, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x365C, name = 'MxRectList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x365D, name = '~MxRectList' + +0x365f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x365e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRectList, UDT(0x0000365f) + +0x3660 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRectListCursor, UDT(0x00003667) + +0x3661 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3660 + +0x3662 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x365A + +0x3663 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3662 + +0x3664 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3660, This type = 0x3661, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3663, This adjust = 0 + +0x3665 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3660, This type = 0x3661, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3666 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3589, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3664, name = 'MxRectListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3665, name = '~MxRectListCursor' + +0x3667 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3666, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRectListCursor, UDT(0x00003667) + +0x3668 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = 0x17C2 + list[1] = T_32PUCHAR(0420) + list[2] = 0x354A + list[3] = T_32PUCHAR(0420) + list[4] = T_UCHAR(0020) + list[5] = 0x3662 + +0x3669 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 6, Arg list type = 0x3668, This adjust = 0 + +0x366a : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3669, name = 'FUN_100c5db0' + +0x366b : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x366a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x366c : Length = 42, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1213, + list[1] = public, VANILLA, 0x11FF, + list[2] = public, VANILLA, 0x1207, + list[3] = public, VANILLA, 0x1209, + list[4] = public, VANILLA, 0x120A, + +0x366d : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x366e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x366d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x366f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x3670 : Length = 42, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x366F, + list[1] = public, VANILLA, 0x11FF, + list[2] = public, VANILLA, 0x1207, + list[3] = public, VANILLA, 0x1209, + list[4] = public, VANILLA, 0x120A, + +0x3671 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x3670, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1215, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1216, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3672 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3671, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3673 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x11FC + +0x3674 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1200, Class type = 0x11FA, This type = 0x3673, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3675 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1203, Class type = 0x11FA, This type = 0x3673, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3676 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3677 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3676, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3678 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 4, list = 0x120B, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3679 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3678, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x367a : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'dong' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x367b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x367c : Length = 502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x367d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x367e : Length = 502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x367f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3680 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'dong' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3681 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3680, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3682 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'CopyFrom' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1210, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1212, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1214, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3683 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3682, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3684 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11FA, This type = 0x3673, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3685 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x11FA, This type = 0x3673, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1211, This adjust = 0 + +0x3686 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11FA, This type = 0x3673, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3687 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1213, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3688 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3687, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3689 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'CopyFrom' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x368a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3689, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x368b : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'CopyFrom' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3647, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x368c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x368b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x368d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1200, This type = 0x1C5F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x120c, This adjust = 0 + +0x368e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x368D, + list[1] = public, VANILLA, 0x1C60, + list[2] = public, VANILLA, 0x1C61, + +0x368f : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x368E, name = 'MxPoint32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetX' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetY' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetX' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetY' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x3690 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x368f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x3691 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1229, Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3692 : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1713, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3693 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3692, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3694 : Length = 1058, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk0x64' + list[14] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[17] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[18] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[20] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[22] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[23] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk0x4e8' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[26] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[27] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[28] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[31] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[32] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[33] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[34] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[35] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[36] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[37] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[39] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[40] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[41] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[42] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[43] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[45] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x3695 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3694, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x3696 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PUCHAR(0420) + list[1] = T_32PSHORT(0411) + list[2] = T_32PUINT4(0475) + list[3] = 0x3584 + +0x3697 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 4, Arg list type = 0x3696, This adjust = 0 + +0x3698 : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3669, name = 'FUN_100c5db0' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3697, name = 'FUN_100c6050' + +0x3699 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3698, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x369a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 6, Arg list type = 0x3668, This adjust = 0 + +0x369b : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeaderAndTrees' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x369A, name = 'FUN_100c5db0' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3697, name = 'FUN_100c6050' + +0x369c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x369b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x369d : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeader' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x369A, name = 'LoadFrame' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3697, name = 'FUN_100c6050' + +0x369e : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x369d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x369f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_ULONG(0022) + Index type = T_SHORT(0011) + length = 16 + Name = + +0x36a0 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PUCHAR(0420) + list[1] = T_32PSHORT(0411) + list[2] = T_32PULONG(0422) + list[3] = 0x3584 + +0x36a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 4, Arg list type = 0x36a0, This adjust = 0 + +0x36a2 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeader' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x369A, name = 'LoadFrame' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x36A1, name = 'GetRect' + +0x36a3 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x36a4 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PUCHAR(0420) + list[1] = T_32PUSHORT(0421) + list[2] = T_32PULONG(0422) + list[3] = 0x3584 + +0x36a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3549, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 4, Arg list type = 0x36a4, This adjust = 0 + +0x36a6 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3576, offset = 0 + member name = 'm_smackTag' + list[1] = LF_MEMBER, public, type = 0x2700, offset = 912 + member name = 'm_unk0x390' + list[2] = LF_MEMBER, public, type = T_32PUINT4(0475), offset = 1696 + member name = 'm_frameSizes' + list[3] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1700 + member name = 'm_frameTypes' + list[4] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1704 + member name = 'm_huffmanTrees' + list[5] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1708 + member name = 'm_huffmanTables' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 1712 + member name = 'm_maxFrameSize' + list[7] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 1716 + member name = 'm_unk0x6b4' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3554, name = 'LoadHeader' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x3555, name = 'Destroy' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x369A, name = 'LoadFrame' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x36A5, name = 'GetRect' + +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +0x36a8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxUnknown100dbdbc, UDT(0x000043db) + +0x36a9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x36A8 + +0x36aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x36A8, This type = 0x36A9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36ab : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x36A8 + +0x36ac : Length = 1306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34B4, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[36] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[37] = LF_MEMBER, private, type = 0x36AB, offset = 108 + member name = 'm_renderMgr' + list[38] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[39] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[40] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[41] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[43] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[44] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[45] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[46] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[47] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[48] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[49] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[50] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[51] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[52] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x36ad : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x36ac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x36ae : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x36AA, name = 'MxUnknown100dbdbc' + list[1] = LF_MEMBER, private, type = 0x2745, offset = 0 + member name = 'm_unk0x4' + +0x36af : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x36ae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +0x36b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15AC, This type = 0x15AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36b1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x15B3, + list[1] = public, VIRTUAL, 0x15AE, + +0x36b2 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13B7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15AE, name = 'MxLoopingSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = '~MxLoopingSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'RepeatingTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36B0, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x36B1, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'NextFrame' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'VTable0x88' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15AE, + vfptr offset = 140, name = 'VTable0x8c' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x15AE, name = 'Init' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1824 + member name = 'm_unk0x720' + +0x36b3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +0x36b4 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B9, + vfptr offset = 136, name = 'VTable0x88' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[12] = LF_MEMBER, protected, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[13] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x36b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x36b4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x36b6 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16BA, name = 'MxDSMediaAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BA, name = '~MxDSMediaAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16C1, name = 'CopyFrom' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16C2, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BD, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16BE, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16C4, name = 'GetSizeOnDisk' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3504, name = 'Deserialize' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x16C3, name = 'CopyMediaSrcPath' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetFramesPerSecond' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetMediaFormat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x231A, name = 'GetPaletteManagement' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x231B, name = 'GetSustainTime' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_sizeOnDisk' + list[15] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 152 + member name = 'm_mediaSrcPath' + list[16] = LF_MEMBER, private, type = 0x32AE, offset = 156 + member name = 'm_unk0x9c' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 164 + member name = 'm_framesPerSecond' + list[18] = LF_MEMBER, private, type = T_INT4(0074), offset = 168 + member name = 'm_mediaFormat' + list[19] = LF_MEMBER, private, type = T_INT4(0074), offset = 172 + member name = 'm_paletteManagement' + list[20] = LF_MEMBER, private, type = T_LONG(0012), offset = 176 + member name = 'm_sustainTime' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 180 + member name = 'm_unk0xb4' + +0x36b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x36b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +0x36b8 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13B7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15AE, name = 'MxLoopingSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = '~MxLoopingSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15B2, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'RepeatingTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36B0, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x36B1, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'NextFrame' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AE, name = 'VTable0x88' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x15AE, + vfptr offset = 140, name = 'VTable0x8c' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x15AE, name = 'Init' + list[11] = LF_MEMBER, private, type = T_LONG(0012), offset = 1824 + member name = 'm_elapsedDuration' + +0x36b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +0x36ba : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x36bb : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36ba, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x36bc : Length = 358, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x36bd : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x36be : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x36bf : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36be, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x36c0 : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x36c1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x36c2 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x36c3 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x36c4 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x36c5 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36c4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x36c6 : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x36c7 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x36c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x13B7, This type = 0x13B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36c9 : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36C8, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B9, + vfptr offset = 136, name = 'VTable0x88' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_MEMBER, protected, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 1820 + member name = 'm_unk0x71c' + +0x36ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36c9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x36cb : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36C8, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B9, + vfptr offset = 136, name = 'VTable0x88' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_MEMBER, protected, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 1820 + member name = 'm_elapsedFrames' + +0x36cc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x36cd : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13B9, name = 'MxSmkPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = '~MxSmkPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BC, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15AF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36C8, name = 'AddToManager' + list[6] = LF_METHOD, count = 2, list = 0x26F9, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadHeader' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'CreateBitmap' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13BE, name = 'LoadFrame' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13B9, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13B9, + vfptr offset = 136, name = 'VTable0x88' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x13B9, name = 'Init' + list[13] = LF_MEMBER, protected, type = 0x3549, offset = 100 + member name = 'm_mxSmack' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 1820 + member name = 'm_currentFrame' + +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +0x36cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1607, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x36d1 : Length = 570, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown94' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetBufferOffset' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[19] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[20] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[21] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[22] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[23] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[24] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x36d2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x36d1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x36d3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1607 + +0x36d4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x12DF + list[1] = 0x109C + list[2] = 0x36D3 + +0x36d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x36d4, This adjust = 0 + +0x36d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x36d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1607, Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1737, This type = 0x1738, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x36d9 : Length = 690, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[21] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[22] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[23] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[24] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[25] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[26] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[27] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[28] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[29] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x36da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x36d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x36db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x131C, Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36dd : Length = 638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D5, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34CB, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34EB, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x36DB, name = 'GetRefCount' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x36DC, name = 'GetMode' + list[18] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[19] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[20] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[24] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[25] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[28] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x36de : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x36dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x36df : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36D7, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7cb0' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'FUN_100c7ce0' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x1757, name = 'FUN_100c7d10' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7980' + list[26] = LF_ONEMETHOD, private, VANILLA, index = 0x36D7, name = 'FUN_100c7db0' + list[27] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[28] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c8360' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'InsertToList74' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8540' + list[31] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8720' + +0x36e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x36e1 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D6, name = 'FUN_100d1780' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1733, name = 'VTable0x20' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[14] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[15] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[18] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x36e2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x36e3 : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36D7, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[15] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[17] = LF_MEMBER, private, type = T_SHORT(0011), offset = 140 + member name = 'm_unk0x8c' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[19] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[20] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7cb0' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'FUN_100c7ce0' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x1757, name = 'FUN_100c7d10' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7980' + list[26] = LF_ONEMETHOD, private, VANILLA, index = 0x36D7, name = 'FUN_100c7db0' + list[27] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[28] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c8360' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'InsertToList74' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8540' + list[31] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8720' + +0x36e4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x36e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x142A, This type = 0x142B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x36e8 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x172C, name = 'MxStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172B, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E1, + vfptr offset = 20, name = 'SetResourceToGet' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 24, name = 'GetFileSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36E7, + vfptr offset = 28, name = 'GetStreamBuffersNum' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E2, + vfptr offset = 32, name = 'VTable0x20' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 36, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2512, + vfptr offset = 40, name = 'GetBufferForDWords' + list[10] = LF_MEMBER, protected, type = 0x12DF, offset = 8 + member name = 'm_pLookup' + list[11] = LF_MEMBER, protected, type = 0x193F, offset = 12 + member name = 'm_pFile' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x172C, name = '~MxStreamProvider' + +0x36e9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36e8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +0x36ea : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D6, name = 'FUN_100d1780' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36E6, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1733, name = 'VTable0x20' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[14] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[15] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[18] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x36eb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x36ec : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x142C, name = 'MxRAMStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x142C, name = '~MxRAMStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x142F, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1430, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1433, name = 'SetResourceToGet' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1431, name = 'GetFileSize' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36E5, name = 'GetStreamBuffersNum' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1431, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1432, name = 'GetBufferForDWords' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1432, name = 'GetBufferOfFileSize' + list[11] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 16 + member name = 'm_bufferSize' + list[12] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_fileSize' + list[13] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 24 + member name = 'm_pBufferOfFileSize' + list[14] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 28 + member name = 'm_lengthInDWords' + list[15] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 32 + member name = 'm_bufferForDWords' + +0x36ed : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 36, class name = MxRAMStreamProvider, UDT(0x000036ed) + +0x36ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x269d, This adjust = 0 + +0x36ef : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x36EE, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x36f0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x36ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x36f1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1607 + +0x36f2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x36F1 + +0x36f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x36f2, This adjust = 0 + +0x36f4 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x36EE, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x36F3, name = 'PopFront2' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x36f5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x36f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x36f6 : Length = 330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'FUN_100b7ed0' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[9] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 32 + member name = 'm_unk0x20' + list[11] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 60 + member name = 'm_unk0x3c' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 64 + member name = 'm_unk0x40' + list[14] = LF_MEMBER, private, type = T_INT4(0074), offset = 68 + member name = 'm_unk0x44' + list[15] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x36f7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36f6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x36f8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1EEA + +0x36f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x36f8, This adjust = 0 + +0x36fa : Length = 714, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[22] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[23] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[24] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[25] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[26] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[27] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[28] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[29] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[30] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x36fb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x36fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x36fc : Length = 358, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'FUN_100b7ed0' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'FUN_100b8030' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[10] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[11] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[12] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[13] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[14] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 68 + member name = 'm_unk0x44' + list[16] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x36fd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x36fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x36fe : Length = 738, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c15d0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[23] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[24] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[25] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[26] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_unk0x2c' + list[27] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[28] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[29] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[30] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[31] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x36ff : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3700 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'FUN_100b8030' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[10] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[11] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[12] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[13] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[14] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_objectId' + list[16] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x3701 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3700, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x3702 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'DeleteChunks' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[10] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[11] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[12] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[13] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[14] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_objectId' + list[16] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x3703 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3702, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x3704 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11CE + list[1] = T_UCHAR(0020) + +0x3705 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3704, This adjust = 0 + +0x3706 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x181F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1845, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1845, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1C40, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3201, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C41, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x1C45, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C45, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C47, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C49, name = 'InsertEntry' + +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +0x3708 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1830, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1846, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1846, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1C70, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3204, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1C71, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x1C75, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1C75, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C77, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1C79, name = 'InsertEntry' + +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +0x370a : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'DeleteChunks' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3705, name = 'AddChunk' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[11] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[12] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[13] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[14] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[15] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_objectId' + list[17] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x370b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x370a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x370c : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1590, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x159F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDD, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3207, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EDE, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x1EE2, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1EE2, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE4, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1EE6, name = 'InsertEntry' + +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +0x370e : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x141C, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x141C, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x201D, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x320A, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x201E, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x141E, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x141E, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2022, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1420, name = 'InsertEntry' + +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +0x3710 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x13FA, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1421, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1421, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2036, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x320D, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2037, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x1423, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x1423, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x1429, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x1425, name = 'InsertEntry' + +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +0x3712 : Length = 254, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1985, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19B8, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19B8, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20A8, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3210, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20A9, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x20AC, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20AC, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20AE, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20B0, name = 'InsertEntry' + +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +0x3714 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x20C7, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x20C9, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x20C9, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x20CA, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3213, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x20CB, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x20D0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x20D0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x20D4, name = 'InsertEntry' + +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +0x3716 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x169C, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16B7, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16B7, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x268F, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3216, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2690, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x2694, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2694, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2696, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2698, name = 'InsertEntry' + +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +0x3718 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x1647, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1669, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1669, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1661, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3219, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26BE, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x166B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x166B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x26C2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x166D, name = 'InsertEntry' + +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +0x371a : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x2D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2D1F, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2D1F, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2D46, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x321C, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2D47, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x2D4B, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x2D4B, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4D, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x2D4F, name = 'InsertEntry' + +0x371b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +0x371c : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x3592, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35A1, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x35A1, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35AA, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35AA, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35AB, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35AC, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x35B0, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x35B0, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B2, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x35B4, name = 'InsertEntry' + +0x371d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +0x371e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3704, This adjust = 0 + +0x371f : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'DeleteChunks' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x371E, name = 'AddChunk' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[11] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[12] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[13] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[14] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[15] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_objectId' + list[17] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x3720 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x371f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x3721 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x1320, This type = 0x2517, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3722 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3721, name = 'GetUnk08' + list[6] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 8 + member name = 'm_unk0x08' + +0x3723 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3722, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x3724 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetUnk08' + list[6] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_unk0x08' + +0x3725 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3724, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x3726 : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1CE2, OpenMode + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x131F, name = 'MxStreamer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x131F, name = '~MxStreamer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1335, name = 'Open' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x133C, name = 'Close' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1366, name = 'Notify' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1325, name = 'ClassName' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1326, name = 'IsA' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1333, + vfptr offset = 20, name = 'Create' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1365, name = 'FUN_100b9b30' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1360, name = 'GetOpenStream' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1362, name = 'AddStreamControllerToOpenList' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1364, name = 'FUN_100b99b0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1364, name = 'DeleteObject' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE5, name = 'GetSubclass1' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1CE8, name = 'GetSubclass2' + list[17] = LF_MEMBER, public, type = 0x132A, offset = 8 + member name = 'm_openStreams' + list[18] = LF_MEMBER, public, type = 0x132D, offset = 20 + member name = 'm_subclass1' + list[19] = LF_MEMBER, public, type = 0x1330, offset = 32 + member name = 'm_subclass2' + +0x3727 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3726, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +0x3728 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetUnk08' + list[6] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_unk0x08' + +0x3729 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3728, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x372a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x137F, This type = 0x1380, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a3f, This adjust = 0 + +0x372b : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x372A, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = '~MxStreamList' + +0x372c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x372b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +0x372d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1382, This type = 0x1383, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2a1e, This adjust = 0 + +0x372e : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1388, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x372D, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = '~MxStreamList' + +0x372f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x372e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +0x3730 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x174E, This type = 0x174F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x269d, This adjust = 0 + +0x3731 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1751, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3730, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = '~MxStreamList' + +0x3732 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3731, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +0x3733 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12DC, This type = 0x12DD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x3734 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1722, This type = 0x1726, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1363, This adjust = 0 + +0x3735 : Length = 738, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c15d0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[23] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[24] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[25] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[26] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 44 + member name = 'm_unk0x2c' + list[27] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[28] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[29] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[30] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[31] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x3736 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3735, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3737 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x172C, name = 'MxStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172A, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x172B, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12E1, + vfptr offset = 20, name = 'SetResourceToGet' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 24, name = 'GetFileSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36E7, + vfptr offset = 28, name = 'GetStreamBuffersNum' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3733, + vfptr offset = 32, name = 'VTable0x20' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2511, + vfptr offset = 36, name = 'GetLengthInDWords' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2512, + vfptr offset = 40, name = 'GetBufferForDWords' + list[10] = LF_MEMBER, protected, type = 0x12DF, offset = 8 + member name = 'm_pLookup' + list[11] = LF_MEMBER, protected, type = 0x193F, offset = 12 + member name = 'm_pFile' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x172C, name = '~MxStreamProvider' + +0x3738 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3737, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +0x3739 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D6, name = 'FUN_100d1780' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36E6, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3734, name = 'VTable0x20' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[14] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[15] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[18] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[19] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x373a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3739, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x373b : Length = 754, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c15d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[24] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[25] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[26] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[27] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 44 + member name = 'm_unk0x2c' + list[28] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[29] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[30] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[31] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[32] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x373c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x373b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x373d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1EEA, Class type = 0x137F, This type = 0x1380, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x373e : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x373D, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = '~MxStreamList' + +0x373f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x373e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +0x3740 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12FF, Class type = 0x1382, This type = 0x1383, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3741 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1388, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3740, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = '~MxStreamList' + +0x3742 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3741, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +0x3743 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x174E, This type = 0x174F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3744 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1751, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3743, name = 'PopFront' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = 'MxStreamList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = '~MxStreamList' + +0x3745 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3744, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +0x3746 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1864, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1887, name = 'LegoFileStream' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1887, name = '~LegoFileStream' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1888, name = 'Read' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1888, name = 'Write' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x188A, name = 'Tell' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x188B, name = 'Seek' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x188F, name = 'Open' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x189A, name = 'FUN_10006030' + list[9] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 8 + member name = 'm_hFile' + +0x3747 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3746, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 12, class name = LegoFileStream, UDT(0x00003747) + +0x3748 : Length = 754, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c15d0' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[24] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[25] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[26] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[27] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 44 + member name = 'm_unk0x2c' + list[28] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[29] = LF_MEMBER, protected, type = 0x12E3, offset = 56 + member name = 'm_unk0x3c' + list[30] = LF_MEMBER, protected, type = 0x1300, offset = 64 + member name = 'm_nextActionList' + list[31] = LF_MEMBER, protected, type = 0x12E3, offset = 72 + member name = 'm_unk0x54' + list[32] = LF_MEMBER, protected, type = 0x109C, offset = 80 + member name = 'm_action0x60' + +0x3749 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3748, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 84, class name = MxStreamController, UDT(0x00003cb8) + +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +0x374b : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_MEMBER, private, type = 0x14F1, offset = 8 + member name = 'm_queue' + list[2] = LF_MEMBER, private, type = 0x14F1, offset = 12 + member name = 'm_sendList' + list[3] = LF_MEMBER, private, type = 0x11D9, offset = 16 + member name = 'm_lock' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 44 + member name = 'm_unk0x2c' + list[5] = LF_MEMBER, private, type = 0x1519, offset = 48 + member name = 'm_listenerIds' + list[6] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_active' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1515, name = 'MxNotificationManager' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1515, name = '~MxNotificationManager' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x153E, name = 'Tickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1525, + vfptr offset = 20, name = 'Create' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Register' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1540, name = 'Unregister' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1526, name = 'Send' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CD9, name = 'GetQueue' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CDA, name = 'SetActive' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x1540, name = 'FlushPending' + +0x374c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x374b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 60, class name = MxNotificationManager, UDT(0x0000374c) + +0x374d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list, UDT(0x000038ef) + +0x374e : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x129F, name = 'MxTickleManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x129F, name = '~MxTickleManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x12A1, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12B9, + vfptr offset = 20, name = 'RegisterClient' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12BA, + vfptr offset = 24, name = 'UnregisterClient' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12B9, + vfptr offset = 28, name = 'SetClientTickleInterval' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12BB, + vfptr offset = 32, name = 'GetClientTickleInterval' + list[8] = LF_MEMBER, private, type = 0x374D, offset = 8 + member name = 'm_clients' + +0x374f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x374e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 16, class name = MxTickleManager, UDT(0x0000374f) + +0x3750 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::set, UDT(0x00003a47) + +0x3751 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3750, offset = 0 + +0x3752 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x3751, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxAtomIdCounterSet, UDT(0x00003752) + +0x3753 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1fbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +0x3754 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F0, + vfptr offset = 108, name = 'VTable0x6c' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 72 + member name = 'm_unk0x4c' + +0x3755 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3754, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 76, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x3756 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list, UDT(0x00003858) + +0x3757 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3756, offset = 0 + +0x3758 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x3757, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxNotificationPtrList, UDT(0x00003758) + +0x3759 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list, UDT(0x000037c1) + +0x375a : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3759, offset = 0 + +0x375b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x375a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxIdList, UDT(0x0000375b) + +0x375c : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1813, name = 'LegoWorldPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = '~LegoWorldPresenter' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1811, name = 'configureLegoWorldPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1816, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1817, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 76 + member name = 'm_unk0x50' + +0x375d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x375c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoWorldPresenter, UDT(0x00003d0a) + +0x375e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x375f : Length = 30, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + +0x3760 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x375f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3761 : Length = 30, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1382, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'Find' + +0x3762 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x3761, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x3763 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x137F + +0x3764 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3763 + +0x3765 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x137F, This type = 0x3764, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3766 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1385, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3765, name = 'emptyNew' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x372A, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = 'MxStreamList' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1381, name = '~MxStreamList' + +0x3767 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +0x3768 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x1382 + +0x3769 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3768 + +0x376a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1382, This type = 0x3769, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x376b : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1388, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x376A, name = 'emptyNew' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x372D, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = 'MxStreamList' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1384, name = '~MxStreamList' + +0x376c : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x376b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +0x376d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x174E + +0x376e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x376D + +0x376f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x174E, This type = 0x376E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3770 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1751, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x376F, name = 'emptyNew' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3730, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = 'MxStreamList' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1750, name = '~MxStreamList' + +0x3771 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +0x3772 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::list + +0x3773 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3772 + +0x3774 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3773 + +0x3775 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3774, Class type = 0x113F, This type = 0x2780, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3776 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3772 + +0x3777 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x277E, name = 'ROI' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x277E, + vfptr offset = 0, name = '~ROI' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2781, + vfptr offset = 4, name = 'IntrinsicImportance' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2782, + vfptr offset = 8, name = 'GetWorldVelocity' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2783, + vfptr offset = 12, name = 'GetWorldBoundingBox' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2784, + vfptr offset = 16, name = 'GetWorldBoundingSphere' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2788, name = 'GetLODs' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x278C, name = 'GetLOD' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x278D, name = 'GetLODCount' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3775, name = 'GetComp' + list[11] = LF_MEMBER, protected, type = 0x3776, offset = 4 + member name = 'm_comp' + list[12] = LF_MEMBER, protected, type = 0x2792, offset = 8 + member name = 'm_lods' + +0x3778 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3777, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 12, class name = ROI, UDT(0x00003778) + +0x3779 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::map, UDT(0x00003a18) + +0x377a : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x3779, ViewLODListMap + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2813, name = 'ViewLODListManager' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x2813, + vfptr offset = 0, name = '~ViewLODListManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2818, name = 'Create' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x281C, name = 'Lookup' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x281D, name = 'Destroy' + list[7] = LF_MEMBER, private, type = 0x3779, offset = 4 + member name = 'm_map' + +0x377b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x377a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = ViewLODListManager, UDT(0x0000377b) + +0x377c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list, UDT(0x00003986) + +0x377d : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x377C, offset = 0 + +0x377e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x377d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxCompositePresenterList, UDT(0x00003e08) + +0x377f : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node, UDT(0x00003a70) + +0x3780 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node>, UDT(0x00003a6e) + +0x3781 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator, UDT(0x00003a7b) + +0x3782 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x377F + +0x3783 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3759 + +0x3784 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3785 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node_buffer, UDT(0x000037d5) + +0x3786 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node_buffer>, UDT(0x000037d3) + +0x3787 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3785 + +0x3788 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3789 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3782, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x378a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3782 + +0x378b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x378a, This adjust = 0 + +0x378c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::iterator, UDT(0x000037e6) + +0x378d : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::const_iterator, UDT(0x000037f8) + +0x378e : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::const_iterator,unsigned int,unsigned int const &,int>, UDT(0x00003815) + +0x378f : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::iterator,unsigned int,unsigned int &,int>, UDT(0x00003806) + +0x3790 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3759 + +0x3791 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3790 + +0x3792 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3791 + +0x3793 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3792, This adjust = 0 + +0x3794 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUINT4(0475) + list[1] = T_32PUINT4(0475) + +0x3795 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3794, This adjust = 0 + +0x3796 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x21b7, This adjust = 0 + +0x3797 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3793, + list[1] = public, VANILLA, 0x3795, + list[2] = public, VANILLA, 0x3796, + list[3] = public, VANILLA, 0x3788, + +0x3798 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3790 + +0x3799 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378D, Class type = 0x3759, This type = 0x3798, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x379a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378C, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x379b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3799, + list[1] = public, VANILLA, 0x379A, + +0x379c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378E, Class type = 0x3759, This type = 0x3798, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x379d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378F, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x379e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x379C, + list[1] = public, VANILLA, 0x379D, + +0x379f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3759, This type = 0x3798, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3759, This type = 0x3798, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x3759, This type = 0x3798, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37a3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37A1, + list[1] = public, VANILLA, 0x37A2, + +0x37a4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3759 + +0x37a5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x37A4 + +0x37a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37a5, This adjust = 0 + +0x37a7 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x378C + list[1] = T_UINT4(0075) + list[2] = 0x2194 + +0x37a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x37a7, This adjust = 0 + +0x37a9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x378C + list[1] = 0x378D + list[2] = 0x378D + +0x37aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x37a9, This adjust = 0 + +0x37ab : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x378C + list[1] = T_32PUINT4(0475) + list[2] = T_32PUINT4(0475) + +0x37ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x37ab, This adjust = 0 + +0x37ad : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x378C + list[1] = 0x2194 + +0x37ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378C, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x37ad, This adjust = 0 + +0x37af : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37A8, + list[1] = public, VANILLA, 0x37AA, + list[2] = public, VANILLA, 0x37AC, + list[3] = public, VANILLA, 0x37AE, + +0x37b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21b5, This adjust = 0 + +0x37b1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x378C + list[1] = 0x378C + +0x37b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x37b1, This adjust = 0 + +0x37b3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x378C + +0x37b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37b3, This adjust = 0 + +0x37b5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37B2, + list[1] = public, VANILLA, 0x37B4, + +0x37b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x37A4, Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3792, This adjust = 0 + +0x37b7 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x378C + list[1] = 0x378C + list[2] = 0x378C + +0x37b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x37b7, This adjust = 0 + +0x37b9 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x378C + list[1] = 0x37A4 + list[2] = 0x378C + list[3] = 0x378C + +0x37ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x37b9, This adjust = 0 + +0x37bb : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x378C + list[1] = 0x37A4 + list[2] = 0x378C + +0x37bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x37bb, This adjust = 0 + +0x37bd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x378C + list[1] = 0x37A4 + +0x37be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3759, This type = 0x3783, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x37bd, This adjust = 0 + +0x37bf : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37BA, + list[1] = public, VANILLA, 0x37BC, + list[2] = public, VANILLA, 0x37BE, + +0x37c0 : Length = 1238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[1] = LF_NESTTYPE, type = 0x377F, list_node + list[2] = LF_STATICMEMBER, protected, type = 0x3780 member name = 'list_node_allocator' + list[3] = LF_STATICMEMBER, protected, type = 0x3781 member name = 'value_allocator' + list[4] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[5] = LF_NESTTYPE, type = 0x3781, value_allocator_type + list[6] = LF_NESTTYPE, type = T_32PUINT4(0475), pointer + list[7] = LF_NESTTYPE, type = 0x1530, reference + list[8] = LF_NESTTYPE, type = 0x2194, const_reference + list[9] = LF_NESTTYPE, type = 0x3780, list_node_allocator_type + list[10] = LF_NESTTYPE, type = 0x3782, link_type + list[11] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[12] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[13] = LF_ONEMETHOD, protected, VANILLA, index = 0x3784, name = 'buffer_size' + list[14] = LF_NESTTYPE, type = 0x3785, list_node_buffer + list[15] = LF_NESTTYPE, type = 0x3786, buffer_allocator_type + list[16] = LF_NESTTYPE, type = 0x3787, buffer_pointer + list[17] = LF_STATICMEMBER, protected, type = 0x3786 member name = 'buffer_allocator' + list[18] = LF_STATICMEMBER, protected, type = 0x3787 member name = 'buffer_list' + list[19] = LF_STATICMEMBER, protected, type = 0x3782 member name = 'free_list' + list[20] = LF_STATICMEMBER, protected, type = 0x3782 member name = 'next_avail' + list[21] = LF_STATICMEMBER, protected, type = 0x3782 member name = 'last' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x3788, name = 'add_new_buffer' + list[23] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_lists' + list[24] = LF_ONEMETHOD, protected, VANILLA, index = 0x3788, name = 'deallocate_buffers' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x3789, name = 'get_node' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x378B, name = 'put_node' + list[27] = LF_MEMBER, protected, type = 0x3782, offset = 0 + member name = 'node' + list[28] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'length' + list[29] = LF_NESTTYPE, type = 0x378C, iterator + list[30] = LF_NESTTYPE, type = 0x378D, const_iterator + list[31] = LF_NESTTYPE, type = 0x378E, const_reverse_iterator + list[32] = LF_NESTTYPE, type = 0x378F, reverse_iterator + list[33] = LF_METHOD, count = 4, list = 0x3797, name = 'list' + list[34] = LF_METHOD, count = 2, list = 0x379B, name = 'begin' + list[35] = LF_METHOD, count = 2, list = 0x379B, name = 'end' + list[36] = LF_METHOD, count = 2, list = 0x379E, name = 'rbegin' + list[37] = LF_METHOD, count = 2, list = 0x379E, name = 'rend' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x379F, name = 'empty' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x37A0, name = 'size' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x37A0, name = 'max_size' + list[41] = LF_METHOD, count = 2, list = 0x37A3, name = 'front' + list[42] = LF_METHOD, count = 2, list = 0x37A3, name = 'back' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x37A6, name = 'swap' + list[44] = LF_METHOD, count = 4, list = 0x37AF, name = 'insert' + list[45] = LF_ONEMETHOD, public, VANILLA, index = 0x37B0, name = 'push_front' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x37B0, name = 'push_back' + list[47] = LF_METHOD, count = 2, list = 0x37B5, name = 'erase' + list[48] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = 'pop_front' + list[49] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = 'pop_back' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = '~list' + list[51] = LF_ONEMETHOD, public, VANILLA, index = 0x37B6, name = 'operator=' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x37B8, name = 'transfer' + list[53] = LF_METHOD, count = 3, list = 0x37BF, name = 'splice' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x37B0, name = 'remove' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = 'unique' + list[56] = LF_ONEMETHOD, public, VANILLA, index = 0x37A6, name = 'merge' + list[57] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = 'reverse' + list[58] = LF_ONEMETHOD, public, VANILLA, index = 0x3788, name = 'sort' + +0x37c1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 74, field list type 0x37c0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list, UDT(0x000037c1) + +0x37c2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3785 + +0x37c3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x37C2 + +0x37c4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3785 + +0x37c5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x37C2 + +0x37c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3786 + +0x37c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3787, Class type = 0x3786, This type = 0x37C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x37c8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3787 + +0x37c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3786, This type = 0x37C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37c8, This adjust = 0 + +0x37ca : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x37C4 + +0x37cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3787, Class type = 0x3786, This type = 0x37C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37ca, This adjust = 0 + +0x37cc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x37C5 + +0x37cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x37C3, Class type = 0x3786, This type = 0x37C6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37cc, This adjust = 0 + +0x37ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3786, This type = 0x37C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37cf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3786 + +0x37d0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x37CF + +0x37d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3786, This type = 0x37D0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37d2 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3785, value_type + list[1] = LF_NESTTYPE, type = 0x3787, pointer + list[2] = LF_NESTTYPE, type = 0x37C3, const_pointer + list[3] = LF_NESTTYPE, type = 0x37C4, reference + list[4] = LF_NESTTYPE, type = 0x37C5, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x37C7, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x37C9, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x37CB, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x37CD, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x37CE, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x37D1, name = 'max_size' + +0x37d3 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x37d2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node_buffer>, UDT(0x000037d3) + +0x37d4 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x3782, offset = 4 + member name = 'buffer' + +0x37d5 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x37d4, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list::list_node_buffer, UDT(0x000037d5) + +0x37d6 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::bidirectional_iterator, UDT(0x000037e7) + +0x37d7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x378C + +0x37d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378C, This type = 0x37D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378C, This type = 0x37D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x378a, This adjust = 0 + +0x37da : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x37D8, + list[1] = protected, VANILLA, 0x37D9, + +0x37db : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x378C + +0x37dc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x37DB + +0x37dd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x37DB + +0x37de : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x37DD + +0x37df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x378C, This type = 0x37DC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37de, This adjust = 0 + +0x37e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x378C, This type = 0x37DC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378C, Class type = 0x378C, This type = 0x37D7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x37e2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x378C + +0x37e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x37E2, Class type = 0x378C, This type = 0x37D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37e4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37E1, + list[1] = public, VANILLA, 0x37E3, + +0x37e5 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x37D6, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3782, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x37DA, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x37DF, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x37E0, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x37E4, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x37E4, name = 'operator--' + +0x37e6 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x37e5, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::iterator, UDT(0x000037e6) + +0x37e7 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::bidirectional_iterator, UDT(0x000037e7) + +0x37e8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x378D + +0x37e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378D, This type = 0x37E8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37de, This adjust = 0 + +0x37ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378D, This type = 0x37E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378D, This type = 0x37E8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x378a, This adjust = 0 + +0x37ec : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x37E9, + list[1] = protected, VANILLA, 0x37EA, + list[2] = protected, VANILLA, 0x37EB, + +0x37ed : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x378D + +0x37ee : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x37ED + +0x37ef : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x37ED + +0x37f0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x37EF + +0x37f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x378D, This type = 0x37EE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37f0, This adjust = 0 + +0x37f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x378D, This type = 0x37EE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378D, Class type = 0x378D, This type = 0x37E8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x37f4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x378D + +0x37f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x37F4, Class type = 0x378D, This type = 0x37E8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37f6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37F3, + list[1] = public, VANILLA, 0x37F5, + +0x37f7 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x37D6, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3782, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x37EC, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x37F1, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x37F2, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x37F6, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x37F6, name = 'operator--' + +0x37f8 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x37f7, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::const_iterator, UDT(0x000037f8) + +0x37f9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x378F + +0x37fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378F, This type = 0x37F9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x37b3, This adjust = 0 + +0x37fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378F, This type = 0x37F9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37fc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x37FA, + list[1] = public, VANILLA, 0x37FB, + +0x37fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378C, Class type = 0x378F, This type = 0x37F9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x37fe : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x378F + +0x37ff : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x37FE + +0x3800 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1530, Class type = 0x378F, This type = 0x37FF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3801 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378F, Class type = 0x378F, This type = 0x37F9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3802 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x378F + +0x3803 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3802, Class type = 0x378F, This type = 0x37F9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3804 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3801, + list[1] = public, VANILLA, 0x3803, + +0x3805 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x37D6, offset = 0 + list[1] = LF_NESTTYPE, type = 0x378F, self + list[2] = LF_MEMBER, protected, type = 0x378C, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x37FC, name = 'reverse_bidirectional_iterator::iterator,unsigned int,unsigned int &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x37FD, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3800, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3804, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3804, name = 'operator--' + +0x3806 : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3805, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::iterator,unsigned int,unsigned int &,int>, UDT(0x00003806) + +0x3807 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x378E + +0x3808 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x378D + +0x3809 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378E, This type = 0x3807, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3808, This adjust = 0 + +0x380a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x378E, This type = 0x3807, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x380b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3809, + list[1] = public, VANILLA, 0x380A, + +0x380c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378D, Class type = 0x378E, This type = 0x3807, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x380d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x378E + +0x380e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x380D + +0x380f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2194, Class type = 0x378E, This type = 0x380E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3810 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x378E, Class type = 0x378E, This type = 0x3807, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3811 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x378E + +0x3812 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3811, Class type = 0x378E, This type = 0x3807, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3813 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3810, + list[1] = public, VANILLA, 0x3812, + +0x3814 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x37D6, offset = 0 + list[1] = LF_NESTTYPE, type = 0x378E, self + list[2] = LF_MEMBER, protected, type = 0x378D, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x380B, name = 'reverse_bidirectional_iterator::const_iterator,unsigned int,unsigned int const &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x380C, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x380F, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3813, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3813, name = 'operator--' + +0x3815 : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3814, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::const_iterator,unsigned int,unsigned int const &,int>, UDT(0x00003815) + +0x3816 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node, UDT(0x00003a8e) + +0x3817 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node>, UDT(0x00003a8c) + +0x3818 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator, UDT(0x00003a99) + +0x3819 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3816 + +0x381a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3756 + +0x381b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x381c : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node_buffer, UDT(0x0000386c) + +0x381d : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node_buffer>, UDT(0x0000386a) + +0x381e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x381C + +0x381f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3820 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3819, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3821 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3819 + +0x3822 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3821, This adjust = 0 + +0x3823 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::iterator, UDT(0x0000387d) + +0x3824 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::const_iterator, UDT(0x0000388f) + +0x3825 : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::const_iterator,MxNotification *,MxNotification * const &,int>, UDT(0x000038ac) + +0x3826 : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::iterator,MxNotification *,MxNotification * &,int>, UDT(0x0000389d) + +0x3827 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3756 + +0x3828 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3827 + +0x3829 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3828 + +0x382a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3829, This adjust = 0 + +0x382b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2236 + list[1] = 0x2236 + +0x382c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x382b, This adjust = 0 + +0x382d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2259, This adjust = 0 + +0x382e : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x382A, + list[1] = public, VANILLA, 0x382C, + list[2] = public, VANILLA, 0x382D, + list[3] = public, VANILLA, 0x381F, + +0x382f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3827 + +0x3830 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3824, Class type = 0x3756, This type = 0x382F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3831 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3823, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3832 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3830, + list[1] = public, VANILLA, 0x3831, + +0x3833 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3825, Class type = 0x3756, This type = 0x382F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3834 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3826, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3835 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3833, + list[1] = public, VANILLA, 0x3834, + +0x3836 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3756, This type = 0x382F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3837 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3756, This type = 0x382F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3838 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x3756, This type = 0x382F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3839 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x383a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3838, + list[1] = public, VANILLA, 0x3839, + +0x383b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3756 + +0x383c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x383B + +0x383d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x383c, This adjust = 0 + +0x383e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3823 + list[1] = T_UINT4(0075) + list[2] = 0x155D + +0x383f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x383e, This adjust = 0 + +0x3840 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3823 + list[1] = 0x3824 + list[2] = 0x3824 + +0x3841 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3840, This adjust = 0 + +0x3842 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3823 + list[1] = 0x2236 + list[2] = 0x2236 + +0x3843 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3842, This adjust = 0 + +0x3844 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3823 + list[1] = 0x155D + +0x3845 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3823, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3844, This adjust = 0 + +0x3846 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x383F, + list[1] = public, VANILLA, 0x3841, + list[2] = public, VANILLA, 0x3843, + list[3] = public, VANILLA, 0x3845, + +0x3847 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2257, This adjust = 0 + +0x3848 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3823 + list[1] = 0x3823 + +0x3849 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3848, This adjust = 0 + +0x384a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3823 + +0x384b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x384a, This adjust = 0 + +0x384c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3849, + list[1] = public, VANILLA, 0x384B, + +0x384d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x383B, Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3829, This adjust = 0 + +0x384e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3823 + list[1] = 0x3823 + list[2] = 0x3823 + +0x384f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x384e, This adjust = 0 + +0x3850 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x3823 + list[1] = 0x383B + list[2] = 0x3823 + list[3] = 0x3823 + +0x3851 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3850, This adjust = 0 + +0x3852 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3823 + list[1] = 0x383B + list[2] = 0x3823 + +0x3853 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3852, This adjust = 0 + +0x3854 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3823 + list[1] = 0x383B + +0x3855 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3756, This type = 0x381A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3854, This adjust = 0 + +0x3856 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3851, + list[1] = public, VANILLA, 0x3853, + list[2] = public, VANILLA, 0x3855, + +0x3857 : Length = 1246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[1] = LF_NESTTYPE, type = 0x3816, list_node + list[2] = LF_STATICMEMBER, protected, type = 0x3817 member name = 'list_node_allocator' + list[3] = LF_STATICMEMBER, protected, type = 0x3818 member name = 'value_allocator' + list[4] = LF_NESTTYPE, type = 0x153F, value_type + list[5] = LF_NESTTYPE, type = 0x3818, value_allocator_type + list[6] = LF_NESTTYPE, type = 0x2235, pointer + list[7] = LF_NESTTYPE, type = 0x154E, reference + list[8] = LF_NESTTYPE, type = 0x155D, const_reference + list[9] = LF_NESTTYPE, type = 0x3817, list_node_allocator_type + list[10] = LF_NESTTYPE, type = 0x3819, link_type + list[11] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[12] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[13] = LF_ONEMETHOD, protected, VANILLA, index = 0x381B, name = 'buffer_size' + list[14] = LF_NESTTYPE, type = 0x381C, list_node_buffer + list[15] = LF_NESTTYPE, type = 0x381D, buffer_allocator_type + list[16] = LF_NESTTYPE, type = 0x381E, buffer_pointer + list[17] = LF_STATICMEMBER, protected, type = 0x381D member name = 'buffer_allocator' + list[18] = LF_STATICMEMBER, protected, type = 0x381E member name = 'buffer_list' + list[19] = LF_STATICMEMBER, protected, type = 0x3819 member name = 'free_list' + list[20] = LF_STATICMEMBER, protected, type = 0x3819 member name = 'next_avail' + list[21] = LF_STATICMEMBER, protected, type = 0x3819 member name = 'last' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x381F, name = 'add_new_buffer' + list[23] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_lists' + list[24] = LF_ONEMETHOD, protected, VANILLA, index = 0x381F, name = 'deallocate_buffers' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x3820, name = 'get_node' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x3822, name = 'put_node' + list[27] = LF_MEMBER, protected, type = 0x3819, offset = 0 + member name = 'node' + list[28] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'length' + list[29] = LF_NESTTYPE, type = 0x3823, iterator + list[30] = LF_NESTTYPE, type = 0x3824, const_iterator + list[31] = LF_NESTTYPE, type = 0x3825, const_reverse_iterator + list[32] = LF_NESTTYPE, type = 0x3826, reverse_iterator + list[33] = LF_METHOD, count = 4, list = 0x382E, name = 'list' + list[34] = LF_METHOD, count = 2, list = 0x3832, name = 'begin' + list[35] = LF_METHOD, count = 2, list = 0x3832, name = 'end' + list[36] = LF_METHOD, count = 2, list = 0x3835, name = 'rbegin' + list[37] = LF_METHOD, count = 2, list = 0x3835, name = 'rend' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x3836, name = 'empty' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x3837, name = 'size' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x3837, name = 'max_size' + list[41] = LF_METHOD, count = 2, list = 0x383A, name = 'front' + list[42] = LF_METHOD, count = 2, list = 0x383A, name = 'back' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x383D, name = 'swap' + list[44] = LF_METHOD, count = 4, list = 0x3846, name = 'insert' + list[45] = LF_ONEMETHOD, public, VANILLA, index = 0x3847, name = 'push_front' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x3847, name = 'push_back' + list[47] = LF_METHOD, count = 2, list = 0x384C, name = 'erase' + list[48] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = 'pop_front' + list[49] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = 'pop_back' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = '~list' + list[51] = LF_ONEMETHOD, public, VANILLA, index = 0x384D, name = 'operator=' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x384F, name = 'transfer' + list[53] = LF_METHOD, count = 3, list = 0x3856, name = 'splice' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x3847, name = 'remove' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = 'unique' + list[56] = LF_ONEMETHOD, public, VANILLA, index = 0x383D, name = 'merge' + list[57] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = 'reverse' + list[58] = LF_ONEMETHOD, public, VANILLA, index = 0x381F, name = 'sort' + +0x3858 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 74, field list type 0x3857, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list, UDT(0x00003858) + +0x3859 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x381C + +0x385a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3859 + +0x385b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x381C + +0x385c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3859 + +0x385d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x381D + +0x385e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x381E, Class type = 0x381D, This type = 0x385D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x385f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x381E + +0x3860 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x381D, This type = 0x385D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x385f, This adjust = 0 + +0x3861 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x385B + +0x3862 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x381E, Class type = 0x381D, This type = 0x385D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3861, This adjust = 0 + +0x3863 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x385C + +0x3864 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x385A, Class type = 0x381D, This type = 0x385D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3863, This adjust = 0 + +0x3865 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x381D, This type = 0x385D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3866 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x381D + +0x3867 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3866 + +0x3868 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x381D, This type = 0x3867, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3869 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x381C, value_type + list[1] = LF_NESTTYPE, type = 0x381E, pointer + list[2] = LF_NESTTYPE, type = 0x385A, const_pointer + list[3] = LF_NESTTYPE, type = 0x385B, reference + list[4] = LF_NESTTYPE, type = 0x385C, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x385E, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3860, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3862, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3864, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3865, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3868, name = 'max_size' + +0x386a : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3869, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node_buffer>, UDT(0x0000386a) + +0x386b : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x3819, offset = 4 + member name = 'buffer' + +0x386c : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x386b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list::list_node_buffer, UDT(0x0000386c) + +0x386d : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::bidirectional_iterator, UDT(0x0000387e) + +0x386e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3823 + +0x386f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3823, This type = 0x386E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3870 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3823, This type = 0x386E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3821, This adjust = 0 + +0x3871 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x386F, + list[1] = protected, VANILLA, 0x3870, + +0x3872 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3823 + +0x3873 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3872 + +0x3874 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3872 + +0x3875 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3874 + +0x3876 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3823, This type = 0x3873, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3875, This adjust = 0 + +0x3877 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x3823, This type = 0x3873, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3878 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3823, Class type = 0x3823, This type = 0x386E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3879 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3823 + +0x387a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3879, Class type = 0x3823, This type = 0x386E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x387b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3878, + list[1] = public, VANILLA, 0x387A, + +0x387c : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x386D, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3819, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x3871, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3876, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3877, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x387B, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x387B, name = 'operator--' + +0x387d : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x387c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::iterator, UDT(0x0000387d) + +0x387e : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::bidirectional_iterator, UDT(0x0000387e) + +0x387f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3824 + +0x3880 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3824, This type = 0x387F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3875, This adjust = 0 + +0x3881 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3824, This type = 0x387F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3882 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3824, This type = 0x387F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3821, This adjust = 0 + +0x3883 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3880, + list[1] = protected, VANILLA, 0x3881, + list[2] = protected, VANILLA, 0x3882, + +0x3884 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3824 + +0x3885 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3884 + +0x3886 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3884 + +0x3887 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3886 + +0x3888 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3824, This type = 0x3885, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3887, This adjust = 0 + +0x3889 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x3824, This type = 0x3885, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x388a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3824, Class type = 0x3824, This type = 0x387F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x388b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3824 + +0x388c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x388B, Class type = 0x3824, This type = 0x387F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x388d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x388A, + list[1] = public, VANILLA, 0x388C, + +0x388e : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x386D, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3819, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x3883, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3888, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3889, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x388D, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x388D, name = 'operator--' + +0x388f : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x388e, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::const_iterator, UDT(0x0000388f) + +0x3890 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3826 + +0x3891 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3826, This type = 0x3890, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x384a, This adjust = 0 + +0x3892 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3826, This type = 0x3890, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3893 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3891, + list[1] = public, VANILLA, 0x3892, + +0x3894 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3823, Class type = 0x3826, This type = 0x3890, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3895 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3826 + +0x3896 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3895 + +0x3897 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x154E, Class type = 0x3826, This type = 0x3896, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3898 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3826, Class type = 0x3826, This type = 0x3890, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3899 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3826 + +0x389a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3899, Class type = 0x3826, This type = 0x3890, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x389b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3898, + list[1] = public, VANILLA, 0x389A, + +0x389c : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x386D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3826, self + list[2] = LF_MEMBER, protected, type = 0x3823, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x3893, name = 'reverse_bidirectional_iterator::iterator,MxNotification *,MxNotification * &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3894, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3897, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x389B, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x389B, name = 'operator--' + +0x389d : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x389c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::iterator,MxNotification *,MxNotification * &,int>, UDT(0x0000389d) + +0x389e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3825 + +0x389f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3824 + +0x38a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3825, This type = 0x389E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x389f, This adjust = 0 + +0x38a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3825, This type = 0x389E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38a2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38A0, + list[1] = public, VANILLA, 0x38A1, + +0x38a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3824, Class type = 0x3825, This type = 0x389E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38a4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3825 + +0x38a5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38A4 + +0x38a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x155D, Class type = 0x3825, This type = 0x38A5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3825, Class type = 0x3825, This type = 0x389E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x38a8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3825 + +0x38a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38A8, Class type = 0x3825, This type = 0x389E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38aa : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38A7, + list[1] = public, VANILLA, 0x38A9, + +0x38ab : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x386D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3825, self + list[2] = LF_MEMBER, protected, type = 0x3824, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x38A2, name = 'reverse_bidirectional_iterator::const_iterator,MxNotification *,MxNotification * const &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x38A3, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x38A6, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x38AA, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x38AA, name = 'operator--' + +0x38ac : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x38ab, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::const_iterator,MxNotification *,MxNotification * const &,int>, UDT(0x000038ac) + +0x38ad : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node, UDT(0x00003aac) + +0x38ae : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node>, UDT(0x00003aaa) + +0x38af : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator, UDT(0x00003ab7) + +0x38b0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x38AD + +0x38b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x374D + +0x38b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38b3 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node_buffer, UDT(0x00003903) + +0x38b4 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node_buffer>, UDT(0x00003901) + +0x38b5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x38B3 + +0x38b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38B0, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38b8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38B0 + +0x38b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38b8, This adjust = 0 + +0x38ba : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::iterator, UDT(0x00003914) + +0x38bb : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::const_iterator, UDT(0x00003926) + +0x38bc : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::const_iterator,MxTickleClient *,MxTickleClient * const &,int>, UDT(0x00003943) + +0x38bd : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::iterator,MxTickleClient *,MxTickleClient * &,int>, UDT(0x00003934) + +0x38be : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x374D + +0x38bf : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38BE + +0x38c0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38BF + +0x38c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38c0, This adjust = 0 + +0x38c2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1F07 + list[1] = 0x1F07 + +0x38c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x38c2, This adjust = 0 + +0x38c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1f2c, This adjust = 0 + +0x38c5 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38C1, + list[1] = public, VANILLA, 0x38C3, + list[2] = public, VANILLA, 0x38C4, + list[3] = public, VANILLA, 0x38B6, + +0x38c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38BE + +0x38c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BB, Class type = 0x374D, This type = 0x38C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BA, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38c9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38C7, + list[1] = public, VANILLA, 0x38C8, + +0x38ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BC, Class type = 0x374D, This type = 0x38C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BD, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38cc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38CA, + list[1] = public, VANILLA, 0x38CB, + +0x38cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x374D, This type = 0x38C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x374D, This type = 0x38C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x374D, This type = 0x38C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38d1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38CF, + list[1] = public, VANILLA, 0x38D0, + +0x38d2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x374D + +0x38d3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38D2 + +0x38d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38d3, This adjust = 0 + +0x38d5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x38BA + list[1] = T_UINT4(0075) + list[2] = 0x1F08 + +0x38d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x38d5, This adjust = 0 + +0x38d7 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x38BA + list[1] = 0x38BB + list[2] = 0x38BB + +0x38d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x38d7, This adjust = 0 + +0x38d9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x38BA + list[1] = 0x1F07 + list[2] = 0x1F07 + +0x38da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x38d9, This adjust = 0 + +0x38db : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x38BA + list[1] = 0x1F08 + +0x38dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BA, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x38db, This adjust = 0 + +0x38dd : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38D6, + list[1] = public, VANILLA, 0x38D8, + list[2] = public, VANILLA, 0x38DA, + list[3] = public, VANILLA, 0x38DC, + +0x38de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f2a, This adjust = 0 + +0x38df : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x38BA + list[1] = 0x38BA + +0x38e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x38df, This adjust = 0 + +0x38e1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38BA + +0x38e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38e1, This adjust = 0 + +0x38e3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38E0, + list[1] = public, VANILLA, 0x38E2, + +0x38e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38D2, Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38c0, This adjust = 0 + +0x38e5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x38BA + list[1] = 0x38BA + list[2] = 0x38BA + +0x38e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x38e5, This adjust = 0 + +0x38e7 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x38BA + list[1] = 0x38D2 + list[2] = 0x38BA + list[3] = 0x38BA + +0x38e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x38e7, This adjust = 0 + +0x38e9 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x38BA + list[1] = 0x38D2 + list[2] = 0x38BA + +0x38ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x38e9, This adjust = 0 + +0x38eb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x38BA + list[1] = 0x38D2 + +0x38ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x374D, This type = 0x38B1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x38eb, This adjust = 0 + +0x38ed : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x38E8, + list[1] = public, VANILLA, 0x38EA, + list[2] = public, VANILLA, 0x38EC, + +0x38ee : Length = 1246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[1] = LF_NESTTYPE, type = 0x38AD, list_node + list[2] = LF_STATICMEMBER, protected, type = 0x38AE member name = 'list_node_allocator' + list[3] = LF_STATICMEMBER, protected, type = 0x38AF member name = 'value_allocator' + list[4] = LF_NESTTYPE, type = 0x12A0, value_type + list[5] = LF_NESTTYPE, type = 0x38AF, value_allocator_type + list[6] = LF_NESTTYPE, type = 0x1F06, pointer + list[7] = LF_NESTTYPE, type = 0x12AB, reference + list[8] = LF_NESTTYPE, type = 0x1F08, const_reference + list[9] = LF_NESTTYPE, type = 0x38AE, list_node_allocator_type + list[10] = LF_NESTTYPE, type = 0x38B0, link_type + list[11] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[12] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[13] = LF_ONEMETHOD, protected, VANILLA, index = 0x38B2, name = 'buffer_size' + list[14] = LF_NESTTYPE, type = 0x38B3, list_node_buffer + list[15] = LF_NESTTYPE, type = 0x38B4, buffer_allocator_type + list[16] = LF_NESTTYPE, type = 0x38B5, buffer_pointer + list[17] = LF_STATICMEMBER, protected, type = 0x38B4 member name = 'buffer_allocator' + list[18] = LF_STATICMEMBER, protected, type = 0x38B5 member name = 'buffer_list' + list[19] = LF_STATICMEMBER, protected, type = 0x38B0 member name = 'free_list' + list[20] = LF_STATICMEMBER, protected, type = 0x38B0 member name = 'next_avail' + list[21] = LF_STATICMEMBER, protected, type = 0x38B0 member name = 'last' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x38B6, name = 'add_new_buffer' + list[23] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_lists' + list[24] = LF_ONEMETHOD, protected, VANILLA, index = 0x38B6, name = 'deallocate_buffers' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x38B7, name = 'get_node' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x38B9, name = 'put_node' + list[27] = LF_MEMBER, protected, type = 0x38B0, offset = 0 + member name = 'node' + list[28] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'length' + list[29] = LF_NESTTYPE, type = 0x38BA, iterator + list[30] = LF_NESTTYPE, type = 0x38BB, const_iterator + list[31] = LF_NESTTYPE, type = 0x38BC, const_reverse_iterator + list[32] = LF_NESTTYPE, type = 0x38BD, reverse_iterator + list[33] = LF_METHOD, count = 4, list = 0x38C5, name = 'list' + list[34] = LF_METHOD, count = 2, list = 0x38C9, name = 'begin' + list[35] = LF_METHOD, count = 2, list = 0x38C9, name = 'end' + list[36] = LF_METHOD, count = 2, list = 0x38CC, name = 'rbegin' + list[37] = LF_METHOD, count = 2, list = 0x38CC, name = 'rend' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x38CD, name = 'empty' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x38CE, name = 'size' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x38CE, name = 'max_size' + list[41] = LF_METHOD, count = 2, list = 0x38D1, name = 'front' + list[42] = LF_METHOD, count = 2, list = 0x38D1, name = 'back' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x38D4, name = 'swap' + list[44] = LF_METHOD, count = 4, list = 0x38DD, name = 'insert' + list[45] = LF_ONEMETHOD, public, VANILLA, index = 0x38DE, name = 'push_front' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x38DE, name = 'push_back' + list[47] = LF_METHOD, count = 2, list = 0x38E3, name = 'erase' + list[48] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = 'pop_front' + list[49] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = 'pop_back' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = '~list' + list[51] = LF_ONEMETHOD, public, VANILLA, index = 0x38E4, name = 'operator=' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x38E6, name = 'transfer' + list[53] = LF_METHOD, count = 3, list = 0x38ED, name = 'splice' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x38DE, name = 'remove' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = 'unique' + list[56] = LF_ONEMETHOD, public, VANILLA, index = 0x38D4, name = 'merge' + list[57] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = 'reverse' + list[58] = LF_ONEMETHOD, public, VANILLA, index = 0x38B6, name = 'sort' + +0x38ef : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 74, field list type 0x38ee, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list, UDT(0x000038ef) + +0x38f0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38B3 + +0x38f1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x38F0 + +0x38f2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38B3 + +0x38f3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38F0 + +0x38f4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38B4 + +0x38f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38B5, Class type = 0x38B4, This type = 0x38F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x38f6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38B5 + +0x38f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38B4, This type = 0x38F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38f6, This adjust = 0 + +0x38f8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38F2 + +0x38f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38B5, Class type = 0x38B4, This type = 0x38F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38f8, This adjust = 0 + +0x38fa : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38F3 + +0x38fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38F1, Class type = 0x38B4, This type = 0x38F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38fa, This adjust = 0 + +0x38fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38B4, This type = 0x38F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x38fd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38B4 + +0x38fe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38FD + +0x38ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38B4, This type = 0x38FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3900 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x38B3, value_type + list[1] = LF_NESTTYPE, type = 0x38B5, pointer + list[2] = LF_NESTTYPE, type = 0x38F1, const_pointer + list[3] = LF_NESTTYPE, type = 0x38F2, reference + list[4] = LF_NESTTYPE, type = 0x38F3, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x38F5, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x38F7, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x38F9, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x38FB, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x38FC, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x38FF, name = 'max_size' + +0x3901 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3900, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node_buffer>, UDT(0x00003901) + +0x3902 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x38B0, offset = 4 + member name = 'buffer' + +0x3903 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3902, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list::list_node_buffer, UDT(0x00003903) + +0x3904 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::bidirectional_iterator, UDT(0x00003915) + +0x3905 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38BA + +0x3906 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BA, This type = 0x3905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3907 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BA, This type = 0x3905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38b8, This adjust = 0 + +0x3908 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3906, + list[1] = protected, VANILLA, 0x3907, + +0x3909 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38BA + +0x390a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3909 + +0x390b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3909 + +0x390c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x390B + +0x390d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x38BA, This type = 0x390A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x390c, This adjust = 0 + +0x390e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x38BA, This type = 0x390A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x390f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BA, Class type = 0x38BA, This type = 0x3905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3910 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38BA + +0x3911 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3910, Class type = 0x38BA, This type = 0x3905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3912 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x390F, + list[1] = public, VANILLA, 0x3911, + +0x3913 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3904, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x38B0, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x3908, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x390D, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x390E, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x3912, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x3912, name = 'operator--' + +0x3914 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3913, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::iterator, UDT(0x00003914) + +0x3915 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::bidirectional_iterator, UDT(0x00003915) + +0x3916 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38BB + +0x3917 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BB, This type = 0x3916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x390c, This adjust = 0 + +0x3918 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BB, This type = 0x3916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3919 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BB, This type = 0x3916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38b8, This adjust = 0 + +0x391a : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3917, + list[1] = protected, VANILLA, 0x3918, + list[2] = protected, VANILLA, 0x3919, + +0x391b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38BB + +0x391c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x391B + +0x391d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x391B + +0x391e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x391D + +0x391f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x38BB, This type = 0x391C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x391e, This adjust = 0 + +0x3920 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x38BB, This type = 0x391C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3921 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BB, Class type = 0x38BB, This type = 0x3916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3922 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38BB + +0x3923 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3922, Class type = 0x38BB, This type = 0x3916, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3924 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3921, + list[1] = public, VANILLA, 0x3923, + +0x3925 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3904, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x38B0, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x391A, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x391F, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3920, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x3924, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x3924, name = 'operator--' + +0x3926 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3925, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::const_iterator, UDT(0x00003926) + +0x3927 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38BD + +0x3928 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BD, This type = 0x3927, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38e1, This adjust = 0 + +0x3929 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BD, This type = 0x3927, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x392a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3928, + list[1] = public, VANILLA, 0x3929, + +0x392b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BA, Class type = 0x38BD, This type = 0x3927, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x392c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38BD + +0x392d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x392C + +0x392e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12AB, Class type = 0x38BD, This type = 0x392D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x392f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BD, Class type = 0x38BD, This type = 0x3927, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3930 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38BD + +0x3931 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3930, Class type = 0x38BD, This type = 0x3927, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3932 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x392F, + list[1] = public, VANILLA, 0x3931, + +0x3933 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3904, offset = 0 + list[1] = LF_NESTTYPE, type = 0x38BD, self + list[2] = LF_MEMBER, protected, type = 0x38BA, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x392A, name = 'reverse_bidirectional_iterator::iterator,MxTickleClient *,MxTickleClient * &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x392B, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x392E, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3932, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3932, name = 'operator--' + +0x3934 : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3933, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::iterator,MxTickleClient *,MxTickleClient * &,int>, UDT(0x00003934) + +0x3935 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38BC + +0x3936 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x38BB + +0x3937 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BC, This type = 0x3935, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3936, This adjust = 0 + +0x3938 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38BC, This type = 0x3935, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3939 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3937, + list[1] = public, VANILLA, 0x3938, + +0x393a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BB, Class type = 0x38BC, This type = 0x3935, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x393b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38BC + +0x393c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x393B + +0x393d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F08, Class type = 0x38BC, This type = 0x393C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x393e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38BC, Class type = 0x38BC, This type = 0x3935, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x393f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38BC + +0x3940 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x393F, Class type = 0x38BC, This type = 0x3935, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3941 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x393E, + list[1] = public, VANILLA, 0x3940, + +0x3942 : Length = 258, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3904, offset = 0 + list[1] = LF_NESTTYPE, type = 0x38BC, self + list[2] = LF_MEMBER, protected, type = 0x38BB, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x3939, name = 'reverse_bidirectional_iterator::const_iterator,MxTickleClient *,MxTickleClient * const &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x393A, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x393D, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3941, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3941, name = 'operator--' + +0x3943 : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3942, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::const_iterator,MxTickleClient *,MxTickleClient * const &,int>, UDT(0x00003943) + +0x3944 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node, UDT(0x00003aca) + +0x3945 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node>, UDT(0x00003ac8) + +0x3946 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator, UDT(0x00003ad5) + +0x3947 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3944 + +0x3948 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x377C + +0x3949 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x394a : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::list_node_buffer, UDT(0x0000399a) + +0x394b : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::allocator::list_node_buffer>, UDT(0x00003998) + +0x394c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x394A + +0x394d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x394e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3947, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x394f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3947 + +0x3950 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x394f, This adjust = 0 + +0x3951 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::iterator, UDT(0x000039ab) + +0x3952 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::list::const_iterator, UDT(0x000039bd) + +0x3953 : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::const_iterator,MxPresenter *,MxPresenter * const &,int>, UDT(0x000039da) + +0x3954 : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::reverse_bidirectional_iterator::iterator,MxPresenter *,MxPresenter * &,int>, UDT(0x000039cb) + +0x3955 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x377C + +0x3956 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3955 + +0x3957 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3956 + +0x3958 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3957, This adjust = 0 + +0x3959 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2DAC + list[1] = 0x2DAC + +0x395a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3959, This adjust = 0 + +0x395b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2dd1, This adjust = 0 + +0x395c : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3958, + list[1] = public, VANILLA, 0x395A, + list[2] = public, VANILLA, 0x395B, + list[3] = public, VANILLA, 0x394D, + +0x395d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3955 + +0x395e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3952, Class type = 0x377C, This type = 0x395D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x395f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3951, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3960 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x395E, + list[1] = public, VANILLA, 0x395F, + +0x3961 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3953, Class type = 0x377C, This type = 0x395D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3962 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3954, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3963 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3961, + list[1] = public, VANILLA, 0x3962, + +0x3964 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x377C, This type = 0x395D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3965 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x377C, This type = 0x395D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3966 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x377C, This type = 0x395D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3967 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3968 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3966, + list[1] = public, VANILLA, 0x3967, + +0x3969 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x377C + +0x396a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3969 + +0x396b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x396a, This adjust = 0 + +0x396c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3951 + list[1] = T_UINT4(0075) + list[2] = 0x2DAD + +0x396d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x396c, This adjust = 0 + +0x396e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3951 + list[1] = 0x3952 + list[2] = 0x3952 + +0x396f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x396e, This adjust = 0 + +0x3970 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3951 + list[1] = 0x2DAC + list[2] = 0x2DAC + +0x3971 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3970, This adjust = 0 + +0x3972 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3951 + list[1] = 0x2DAD + +0x3973 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3951, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3972, This adjust = 0 + +0x3974 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x396D, + list[1] = public, VANILLA, 0x396F, + list[2] = public, VANILLA, 0x3971, + list[3] = public, VANILLA, 0x3973, + +0x3975 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dcf, This adjust = 0 + +0x3976 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3951 + list[1] = 0x3951 + +0x3977 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3976, This adjust = 0 + +0x3978 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3951 + +0x3979 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3978, This adjust = 0 + +0x397a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3977, + list[1] = public, VANILLA, 0x3979, + +0x397b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3969, Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3957, This adjust = 0 + +0x397c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3951 + list[1] = 0x3951 + list[2] = 0x3951 + +0x397d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x397c, This adjust = 0 + +0x397e : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x3951 + list[1] = 0x3969 + list[2] = 0x3951 + list[3] = 0x3951 + +0x397f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x397e, This adjust = 0 + +0x3980 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3951 + list[1] = 0x3969 + list[2] = 0x3951 + +0x3981 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3980, This adjust = 0 + +0x3982 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3951 + list[1] = 0x3969 + +0x3983 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x377C, This type = 0x3948, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3982, This adjust = 0 + +0x3984 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x397F, + list[1] = public, VANILLA, 0x3981, + list[2] = public, VANILLA, 0x3983, + +0x3985 : Length = 1242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[1] = LF_NESTTYPE, type = 0x3944, list_node + list[2] = LF_STATICMEMBER, protected, type = 0x3945 member name = 'list_node_allocator' + list[3] = LF_STATICMEMBER, protected, type = 0x3946 member name = 'value_allocator' + list[4] = LF_NESTTYPE, type = 0x1243, value_type + list[5] = LF_NESTTYPE, type = 0x3946, value_allocator_type + list[6] = LF_NESTTYPE, type = 0x2DAB, pointer + list[7] = LF_NESTTYPE, type = 0x270F, reference + list[8] = LF_NESTTYPE, type = 0x2DAD, const_reference + list[9] = LF_NESTTYPE, type = 0x3945, list_node_allocator_type + list[10] = LF_NESTTYPE, type = 0x3947, link_type + list[11] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[12] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[13] = LF_ONEMETHOD, protected, VANILLA, index = 0x3949, name = 'buffer_size' + list[14] = LF_NESTTYPE, type = 0x394A, list_node_buffer + list[15] = LF_NESTTYPE, type = 0x394B, buffer_allocator_type + list[16] = LF_NESTTYPE, type = 0x394C, buffer_pointer + list[17] = LF_STATICMEMBER, protected, type = 0x394B member name = 'buffer_allocator' + list[18] = LF_STATICMEMBER, protected, type = 0x394C member name = 'buffer_list' + list[19] = LF_STATICMEMBER, protected, type = 0x3947 member name = 'free_list' + list[20] = LF_STATICMEMBER, protected, type = 0x3947 member name = 'next_avail' + list[21] = LF_STATICMEMBER, protected, type = 0x3947 member name = 'last' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x394D, name = 'add_new_buffer' + list[23] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_lists' + list[24] = LF_ONEMETHOD, protected, VANILLA, index = 0x394D, name = 'deallocate_buffers' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x394E, name = 'get_node' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x3950, name = 'put_node' + list[27] = LF_MEMBER, protected, type = 0x3947, offset = 0 + member name = 'node' + list[28] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'length' + list[29] = LF_NESTTYPE, type = 0x3951, iterator + list[30] = LF_NESTTYPE, type = 0x3952, const_iterator + list[31] = LF_NESTTYPE, type = 0x3953, const_reverse_iterator + list[32] = LF_NESTTYPE, type = 0x3954, reverse_iterator + list[33] = LF_METHOD, count = 4, list = 0x395C, name = 'list' + list[34] = LF_METHOD, count = 2, list = 0x3960, name = 'begin' + list[35] = LF_METHOD, count = 2, list = 0x3960, name = 'end' + list[36] = LF_METHOD, count = 2, list = 0x3963, name = 'rbegin' + list[37] = LF_METHOD, count = 2, list = 0x3963, name = 'rend' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x3964, name = 'empty' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x3965, name = 'size' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x3965, name = 'max_size' + list[41] = LF_METHOD, count = 2, list = 0x3968, name = 'front' + list[42] = LF_METHOD, count = 2, list = 0x3968, name = 'back' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x396B, name = 'swap' + list[44] = LF_METHOD, count = 4, list = 0x3974, name = 'insert' + list[45] = LF_ONEMETHOD, public, VANILLA, index = 0x3975, name = 'push_front' + list[46] = LF_ONEMETHOD, public, VANILLA, index = 0x3975, name = 'push_back' + list[47] = LF_METHOD, count = 2, list = 0x397A, name = 'erase' + list[48] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = 'pop_front' + list[49] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = 'pop_back' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = '~list' + list[51] = LF_ONEMETHOD, public, VANILLA, index = 0x397B, name = 'operator=' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x397D, name = 'transfer' + list[53] = LF_METHOD, count = 3, list = 0x3984, name = 'splice' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x3975, name = 'remove' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = 'unique' + list[56] = LF_ONEMETHOD, public, VANILLA, index = 0x396B, name = 'merge' + list[57] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = 'reverse' + list[58] = LF_ONEMETHOD, public, VANILLA, index = 0x394D, name = 'sort' + +0x3986 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 74, field list type 0x3985, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list, UDT(0x00003986) + +0x3987 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x394A + +0x3988 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3987 + +0x3989 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x394A + +0x398a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3987 + +0x398b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x394B + +0x398c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x394C, Class type = 0x394B, This type = 0x398B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x398d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x394C + +0x398e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x394B, This type = 0x398B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x398d, This adjust = 0 + +0x398f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3989 + +0x3990 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x394C, Class type = 0x394B, This type = 0x398B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x398f, This adjust = 0 + +0x3991 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x398A + +0x3992 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3988, Class type = 0x394B, This type = 0x398B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3991, This adjust = 0 + +0x3993 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x394B, This type = 0x398B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3994 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x394B + +0x3995 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3994 + +0x3996 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x394B, This type = 0x3995, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3997 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x394A, value_type + list[1] = LF_NESTTYPE, type = 0x394C, pointer + list[2] = LF_NESTTYPE, type = 0x3988, const_pointer + list[3] = LF_NESTTYPE, type = 0x3989, reference + list[4] = LF_NESTTYPE, type = 0x398A, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x398C, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x398E, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3990, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3992, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3993, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3996, name = 'max_size' + +0x3998 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3997, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node_buffer>, UDT(0x00003998) + +0x3999 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x3947, offset = 4 + member name = 'buffer' + +0x399a : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3999, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = std::list::list_node_buffer, UDT(0x0000399a) + +0x399b : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = std::bidirectional_iterator, UDT(0x000039ac) + +0x399c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3951 + +0x399d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3951, This type = 0x399C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x399e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3951, This type = 0x399C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x394f, This adjust = 0 + +0x399f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x399D, + list[1] = protected, VANILLA, 0x399E, + +0x39a0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3951 + +0x39a1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39A0 + +0x39a2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39A0 + +0x39a3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39A2 + +0x39a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3951, This type = 0x39A1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x39a3, This adjust = 0 + +0x39a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x3951, This type = 0x39A1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3951, Class type = 0x3951, This type = 0x399C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x39a7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3951 + +0x39a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39A7, Class type = 0x3951, This type = 0x399C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39a9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39A6, + list[1] = public, VANILLA, 0x39A8, + +0x39aa : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x399B, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3947, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x399F, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x39A4, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x39A5, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x39A9, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x39A9, name = 'operator--' + +0x39ab : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x39aa, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::iterator, UDT(0x000039ab) + +0x39ac : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::bidirectional_iterator, UDT(0x000039ac) + +0x39ad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3952 + +0x39ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3952, This type = 0x39AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x39a3, This adjust = 0 + +0x39af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3952, This type = 0x39AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3952, This type = 0x39AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x394f, This adjust = 0 + +0x39b1 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x39AE, + list[1] = protected, VANILLA, 0x39AF, + list[2] = protected, VANILLA, 0x39B0, + +0x39b2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3952 + +0x39b3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39B2 + +0x39b4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39B2 + +0x39b5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39B4 + +0x39b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3952, This type = 0x39B3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x39b5, This adjust = 0 + +0x39b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x3952, This type = 0x39B3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3952, Class type = 0x3952, This type = 0x39AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x39b9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3952 + +0x39ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39B9, Class type = 0x3952, This type = 0x39AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39bb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39B8, + list[1] = public, VANILLA, 0x39BA, + +0x39bc : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x399B, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3947, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x39B1, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x39B6, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x39B7, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x39BB, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x39BB, name = 'operator--' + +0x39bd : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x39bc, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::list::const_iterator, UDT(0x000039bd) + +0x39be : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3954 + +0x39bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3954, This type = 0x39BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3978, This adjust = 0 + +0x39c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3954, This type = 0x39BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39c1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39BF, + list[1] = public, VANILLA, 0x39C0, + +0x39c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3951, Class type = 0x3954, This type = 0x39BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39c3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3954 + +0x39c4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39C3 + +0x39c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x270F, Class type = 0x3954, This type = 0x39C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3954, Class type = 0x3954, This type = 0x39BE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x39c7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3954 + +0x39c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39C7, Class type = 0x3954, This type = 0x39BE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39c9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39C6, + list[1] = public, VANILLA, 0x39C8, + +0x39ca : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x399B, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3954, self + list[2] = LF_MEMBER, protected, type = 0x3951, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x39C1, name = 'reverse_bidirectional_iterator::iterator,MxPresenter *,MxPresenter * &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x39C2, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x39C5, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x39C9, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x39C9, name = 'operator--' + +0x39cb : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x39ca, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::iterator,MxPresenter *,MxPresenter * &,int>, UDT(0x000039cb) + +0x39cc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3953 + +0x39cd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3952 + +0x39ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3953, This type = 0x39CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x39cd, This adjust = 0 + +0x39cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3953, This type = 0x39CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39d0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39CE, + list[1] = public, VANILLA, 0x39CF, + +0x39d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3952, Class type = 0x3953, This type = 0x39CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39d2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3953 + +0x39d3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39D2 + +0x39d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAD, Class type = 0x3953, This type = 0x39D3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3953, Class type = 0x3953, This type = 0x39CC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x39d6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3953 + +0x39d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39D6, Class type = 0x3953, This type = 0x39CC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x39d8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x39D5, + list[1] = public, VANILLA, 0x39D7, + +0x39d9 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x399B, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3953, self + list[2] = LF_MEMBER, protected, type = 0x3952, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x39D0, name = 'reverse_bidirectional_iterator::const_iterator,MxPresenter *,MxPresenter * const &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x39D1, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x39D4, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x39D8, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x39D8, name = 'operator--' + +0x39da : Length = 138, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x39d9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = std::reverse_bidirectional_iterator::const_iterator,MxPresenter *,MxPresenter * const &,int>, UDT(0x000039da) + +0x39db : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair, UDT(0x00003ae2) + +0x39dc : Length = 94, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::map::value_compare, UDT(0x00003ade) + +0x39dd : Length = 190, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>, UDT(0x00003b29) + +0x39de : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x39DB + +0x39df : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39DB + +0x39e0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x39DB + +0x39e1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39E0 + +0x39e2 : Length = 202, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::iterator, UDT(0x00003b4c) + +0x39e3 : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::const_iterator, UDT(0x00003b5e) + +0x39e4 : Length = 278, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::reverse_bidirectional_iterator,mxstl::select1st,char const *>,ROINameComparator>::iterator,mxstl::pair,mxstl::select1st,char const *>,ROINameComparator>::const_iterator,mxstl::pair,mxstl::select1st,char const *>,ROINameComparator>::iterator,int>, UDT(0x00003a1f) + +0x3a01 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x39EB + list[1] = 0x39EB + +0x3a02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a01, This adjust = 0 + +0x3a03 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x39E2 + list[1] = 0x39E1 + +0x3a04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a03, This adjust = 0 + +0x3a05 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39E1 + +0x3a06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A00, Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a05, This adjust = 0 + +0x3a07 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A02, + list[1] = public, VANILLA, 0x3A04, + list[2] = public, VANILLA, 0x3A06, + +0x3a08 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x39E2 + list[1] = 0x39E2 + +0x3a09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a08, This adjust = 0 + +0x3a0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3a0b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39E2 + +0x3a0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a0b, This adjust = 0 + +0x3a0d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A09, + list[1] = public, VANILLA, 0x3A0A, + list[2] = public, VANILLA, 0x3A0C, + +0x3a0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E3, Class type = 0x3779, This type = 0x39F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3a0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x3779, This type = 0x39E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3a10 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A0E, + list[1] = public, VANILLA, 0x3A0F, + +0x3a11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3779, This type = 0x39F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3a12 : Length = 278, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair,mxstl::select1st,char const *>,ROINameComparator>::iterator,mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::const_iterator,mxstl::rb_tree, UDT(0x00003a18) + +0x3a19 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A00 + +0x3a1a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x39E2 + +0x3a1b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A1A + +0x3a1c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3A1B + list[1] = 0x1BAD + +0x3a1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A00, This type = 0x3A19, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a1c, This adjust = 0 + +0x3a1e : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x39E2, offset = 0 + member name = 'first' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3A1D, name = 'pair,mxstl::select1st,char const *>,ROINameComparator>::iterator,int>' + +0x3a1f : Length = 218, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3a1e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::pair,mxstl::select1st,char const *>,ROINameComparator>::iterator,int>, UDT(0x00003a1f) + +0x3a20 : Length = 146, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,MxAtomIdCounterCompare>, UDT(0x00003baa) + +0x3a21 : Length = 162, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::const_iterator, UDT(0x00003bde) + +0x3a22 : Length = 250, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::reverse_bidirectional_iterator,MxAtomIdCounterCompare>::const_iterator,MxAtomIdCounter *,MxAtomIdCounter * const &,int>, UDT(0x00003a56) + +0x3a23 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3750 + +0x3a24 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3750 + +0x3a25 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A24 + +0x3a26 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A25 + +0x3a27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a26, This adjust = 0 + +0x3a28 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1B6E + list[1] = 0x1B6E + list[2] = 0x1B77 + +0x3a29 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3a28, This adjust = 0 + +0x3a2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1bd9, This adjust = 0 + +0x3a2b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A27, + list[1] = public, VANILLA, 0x3A29, + list[2] = public, VANILLA, 0x3A2A, + +0x3a2c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3750 + +0x3a2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A2C, Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a26, This adjust = 0 + +0x3a2e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A24 + +0x3a2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x17F9, Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A22, Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a34 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A2C + +0x3a35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a34, This adjust = 0 + +0x3a36 : Length = 178, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair,MxAtomIdCounterCompare>::const_iterator,int>, UDT(0x00003a5d) + +0x3a37 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8c, This adjust = 0 + +0x3a38 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3A21 + list[1] = 0x14D9 + +0x3a39 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a38, This adjust = 0 + +0x3a3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A36, Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3a3b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A37, + list[1] = public, VANILLA, 0x3A39, + list[2] = public, VANILLA, 0x3A3A, + +0x3a3c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3A21 + list[1] = 0x3A21 + +0x3a3d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a3c, This adjust = 0 + +0x3a3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3a3f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A21 + +0x3a40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3750, This type = 0x3A23, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a3f, This adjust = 0 + +0x3a41 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A3D, + list[1] = public, VANILLA, 0x3A3E, + list[2] = public, VANILLA, 0x3A40, + +0x3a42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3a43 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3a44 : Length = 278, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair,MxAtomIdCounterCompare>::const_iterator,mxstl::rb_tree,M + +0x3a45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A44, Class type = 0x3750, This type = 0x3A2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3a46 : Length = 738, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14B5, key_type + list[1] = LF_NESTTYPE, type = 0x14B5, value_type + list[2] = LF_NESTTYPE, type = 0x17F9, key_compare + list[3] = LF_NESTTYPE, type = 0x17F9, value_compare + list[4] = LF_NESTTYPE, type = 0x3A20, rep_type + list[5] = LF_MEMBER, private, type = 0x3A20, offset = 0 + member name = 't' + list[6] = LF_NESTTYPE, type = 0x14D9, reference + list[7] = LF_NESTTYPE, type = 0x14D9, const_reference + list[8] = LF_NESTTYPE, type = 0x3A21, iterator + list[9] = LF_NESTTYPE, type = 0x3A21, const_iterator + list[10] = LF_NESTTYPE, type = 0x3A22, reverse_iterator + list[11] = LF_NESTTYPE, type = 0x3A22, const_reverse_iterator + list[12] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[13] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[14] = LF_METHOD, count = 3, list = 0x3A2B, name = 'set' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3A2D, name = 'operator=' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3A2F, name = 'key_comp' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3A2F, name = 'value_comp' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3A30, name = 'begin' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3A30, name = 'end' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3A31, name = 'rbegin' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x3A31, name = 'rend' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x3A32, name = 'empty' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x3A33, name = 'size' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x3A33, name = 'max_size' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x3A35, name = 'swap' + list[26] = LF_NESTTYPE, type = 0x3A36, pair_iterator_bool + list[27] = LF_METHOD, count = 3, list = 0x3A3B, name = 'insert' + list[28] = LF_METHOD, count = 3, list = 0x3A41, name = 'erase' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x3A42, name = 'find' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x3A43, name = 'count' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x3A42, name = 'lower_bound' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x3A42, name = 'upper_bound' + list[33] = LF_NESTTYPE, type = 0x3A44, pair_iterator_iterator + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x3A45, name = 'equal_range' + +0x3a47 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3a46, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = mxstl::set, UDT(0x00003a47) + +0x3a48 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::bidirectional_iterator, UDT(0x00003bcf) + +0x3a49 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A22 + +0x3a4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A22, This type = 0x3A49, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a3f, This adjust = 0 + +0x3a4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A22, This type = 0x3A49, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a4c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A4A, + list[1] = public, VANILLA, 0x3A4B, + +0x3a4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3A22, This type = 0x3A49, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a4e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3A22 + +0x3a4f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A4E + +0x3a50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x3A22, This type = 0x3A4F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A22, Class type = 0x3A22, This type = 0x3A49, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3a52 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A22 + +0x3a53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A52, Class type = 0x3A22, This type = 0x3A49, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a54 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3A51, + list[1] = public, VANILLA, 0x3A53, + +0x3a55 : Length = 358, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3A48, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3A22, self + list[2] = LF_MEMBER, protected, type = 0x3A21, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x3A4C, name = 'reverse_bidirectional_iterator,MxAtomIdCounterCompare>::const_iterator,MxAtomIdCounter *,MxAtomIdCounter * const &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3A4D, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3A50, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3A54, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3A54, name = 'operator--' + +0x3a56 : Length = 250, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3a55, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::reverse_bidirectional_iterator,MxAtomIdCounterCompare>::const_iterator,MxAtomIdCounter *,MxAtomIdCounter * const &,int>, UDT(0x00003a56) + +0x3a57 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A36 + +0x3a58 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3A21 + +0x3a59 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A58 + +0x3a5a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3A59 + list[1] = 0x1BAD + +0x3a5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A36, This type = 0x3A57, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a5a, This adjust = 0 + +0x3a5c : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3A21, offset = 0 + member name = 'first' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3A5B, name = 'pair,MxAtomIdCounterCompare>::const_iterator,int>' + +0x3a5d : Length = 178, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3a5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::pair,MxAtomIdCounterCompare>::const_iterator,int>, UDT(0x00003a5d) + +0x3a5e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x377F + +0x3a5f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3A5E + +0x3a60 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x377F + +0x3a61 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A5E + +0x3a62 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3780 + +0x3a63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3782, Class type = 0x3780, This type = 0x3A62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3a64 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3780, This type = 0x3A62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x378a, This adjust = 0 + +0x3a65 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A60 + +0x3a66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3782, Class type = 0x3780, This type = 0x3A62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a65, This adjust = 0 + +0x3a67 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A61 + +0x3a68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A5F, Class type = 0x3780, This type = 0x3A62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a67, This adjust = 0 + +0x3a69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3780, This type = 0x3A62, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a6a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3780 + +0x3a6b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A6A + +0x3a6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3780, This type = 0x3A6B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a6d : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x377F, value_type + list[1] = LF_NESTTYPE, type = 0x3782, pointer + list[2] = LF_NESTTYPE, type = 0x3A5F, const_pointer + list[3] = LF_NESTTYPE, type = 0x3A60, reference + list[4] = LF_NESTTYPE, type = 0x3A61, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3A63, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3A64, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3A66, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3A68, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3A69, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3A6C, name = 'max_size' + +0x3a6e : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3a6d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node>, UDT(0x00003a6e) + +0x3a6f : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'prev' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'data' + +0x3a70 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3a6f, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = std::list::list_node, UDT(0x00003a70) + +0x3a71 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3781 + +0x3a72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x3781, This type = 0x3A71, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3a73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3781, This type = 0x3A71, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x3a74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x3781, This type = 0x3A71, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x287a, This adjust = 0 + +0x3a75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x3781, This type = 0x3A71, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x21b5, This adjust = 0 + +0x3a76 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3781, This type = 0x3A71, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a77 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3781 + +0x3a78 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A77 + +0x3a79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3781, This type = 0x3A78, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a7a : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), value_type + list[1] = LF_NESTTYPE, type = T_32PUINT4(0475), pointer + list[2] = LF_NESTTYPE, type = T_32PUINT4(0475), const_pointer + list[3] = LF_NESTTYPE, type = 0x1530, reference + list[4] = LF_NESTTYPE, type = 0x2194, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3A72, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3A73, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3A74, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3A75, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3A76, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3A79, name = 'max_size' + +0x3a7b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3a7a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator, UDT(0x00003a7b) + +0x3a7c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3816 + +0x3a7d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3A7C + +0x3a7e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3816 + +0x3a7f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A7C + +0x3a80 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3817 + +0x3a81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3819, Class type = 0x3817, This type = 0x3A80, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3a82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3817, This type = 0x3A80, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3821, This adjust = 0 + +0x3a83 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A7E + +0x3a84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3819, Class type = 0x3817, This type = 0x3A80, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a83, This adjust = 0 + +0x3a85 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A7F + +0x3a86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A7D, Class type = 0x3817, This type = 0x3A80, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a85, This adjust = 0 + +0x3a87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3817, This type = 0x3A80, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a88 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3817 + +0x3a89 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A88 + +0x3a8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3817, This type = 0x3A89, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a8b : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3816, value_type + list[1] = LF_NESTTYPE, type = 0x3819, pointer + list[2] = LF_NESTTYPE, type = 0x3A7D, const_pointer + list[3] = LF_NESTTYPE, type = 0x3A7E, reference + list[4] = LF_NESTTYPE, type = 0x3A7F, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3A81, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3A82, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3A84, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3A86, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3A87, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3A8A, name = 'max_size' + +0x3a8c : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3a8b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node>, UDT(0x00003a8c) + +0x3a8d : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'prev' + list[2] = LF_MEMBER, public, type = 0x153F, offset = 8 + member name = 'data' + +0x3a8e : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3a8d, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = std::list::list_node, UDT(0x00003a8e) + +0x3a8f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3818 + +0x3a90 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2235, Class type = 0x3818, This type = 0x3A8F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3a91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3818, This type = 0x3A8F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29e6, This adjust = 0 + +0x3a92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2235, Class type = 0x3818, This type = 0x3A8F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29dd, This adjust = 0 + +0x3a93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2236, Class type = 0x3818, This type = 0x3A8F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2257, This adjust = 0 + +0x3a94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3818, This type = 0x3A8F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a95 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3818 + +0x3a96 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A95 + +0x3a97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3818, This type = 0x3A96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3a98 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x153F, value_type + list[1] = LF_NESTTYPE, type = 0x2235, pointer + list[2] = LF_NESTTYPE, type = 0x2236, const_pointer + list[3] = LF_NESTTYPE, type = 0x154E, reference + list[4] = LF_NESTTYPE, type = 0x155D, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3A90, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3A91, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3A92, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3A93, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3A94, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3A97, name = 'max_size' + +0x3a99 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3a98, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator, UDT(0x00003a99) + +0x3a9a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38AD + +0x3a9b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3A9A + +0x3a9c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x38AD + +0x3a9d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A9A + +0x3a9e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38AE + +0x3a9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38B0, Class type = 0x38AE, This type = 0x3A9E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3aa0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38AE, This type = 0x3A9E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x38b8, This adjust = 0 + +0x3aa1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A9C + +0x3aa2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x38B0, Class type = 0x38AE, This type = 0x3A9E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3aa1, This adjust = 0 + +0x3aa3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A9D + +0x3aa4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A9B, Class type = 0x38AE, This type = 0x3A9E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3aa3, This adjust = 0 + +0x3aa5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38AE, This type = 0x3A9E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3aa6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38AE + +0x3aa7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AA6 + +0x3aa8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38AE, This type = 0x3AA7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3aa9 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x38AD, value_type + list[1] = LF_NESTTYPE, type = 0x38B0, pointer + list[2] = LF_NESTTYPE, type = 0x3A9B, const_pointer + list[3] = LF_NESTTYPE, type = 0x3A9C, reference + list[4] = LF_NESTTYPE, type = 0x3A9D, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3A9F, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3AA0, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3AA2, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3AA4, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3AA5, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3AA8, name = 'max_size' + +0x3aaa : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3aa9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node>, UDT(0x00003aaa) + +0x3aab : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'prev' + list[2] = LF_MEMBER, public, type = 0x12A0, offset = 8 + member name = 'data' + +0x3aac : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3aab, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = std::list::list_node, UDT(0x00003aac) + +0x3aad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x38AF + +0x3aae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F06, Class type = 0x38AF, This type = 0x3AAD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3aaf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x38AF, This type = 0x3AAD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x29a1, This adjust = 0 + +0x3ab0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F06, Class type = 0x38AF, This type = 0x3AAD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2998, This adjust = 0 + +0x3ab1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1F07, Class type = 0x38AF, This type = 0x3AAD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1f2a, This adjust = 0 + +0x3ab2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38AF, This type = 0x3AAD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ab3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x38AF + +0x3ab4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AB3 + +0x3ab5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x38AF, This type = 0x3AB4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ab6 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x12A0, value_type + list[1] = LF_NESTTYPE, type = 0x1F06, pointer + list[2] = LF_NESTTYPE, type = 0x1F07, const_pointer + list[3] = LF_NESTTYPE, type = 0x12AB, reference + list[4] = LF_NESTTYPE, type = 0x1F08, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3AAE, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3AAF, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3AB0, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3AB1, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3AB2, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3AB5, name = 'max_size' + +0x3ab7 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3ab6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator, UDT(0x00003ab7) + +0x3ab8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3944 + +0x3ab9 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3AB8 + +0x3aba : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3944 + +0x3abb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AB8 + +0x3abc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3945 + +0x3abd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3947, Class type = 0x3945, This type = 0x3ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3abe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3945, This type = 0x3ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x394f, This adjust = 0 + +0x3abf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3ABA + +0x3ac0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3947, Class type = 0x3945, This type = 0x3ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3abf, This adjust = 0 + +0x3ac1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3ABB + +0x3ac2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AB9, Class type = 0x3945, This type = 0x3ABC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3ac1, This adjust = 0 + +0x3ac3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3945, This type = 0x3ABC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ac4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3945 + +0x3ac5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AC4 + +0x3ac6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3945, This type = 0x3AC5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ac7 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3944, value_type + list[1] = LF_NESTTYPE, type = 0x3947, pointer + list[2] = LF_NESTTYPE, type = 0x3AB9, const_pointer + list[3] = LF_NESTTYPE, type = 0x3ABA, reference + list[4] = LF_NESTTYPE, type = 0x3ABB, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3ABD, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3ABE, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3AC0, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3AC2, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3AC3, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3AC6, name = 'max_size' + +0x3ac8 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3ac7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator::list_node>, UDT(0x00003ac8) + +0x3ac9 : Length = 50, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'prev' + list[2] = LF_MEMBER, public, type = 0x1243, offset = 8 + member name = 'data' + +0x3aca : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3ac9, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = std::list::list_node, UDT(0x00003aca) + +0x3acb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3946 + +0x3acc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAB, Class type = 0x3946, This type = 0x3ACB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3acd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3946, This type = 0x3ACB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2e56, This adjust = 0 + +0x3ace : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAB, Class type = 0x3946, This type = 0x3ACB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2710, This adjust = 0 + +0x3acf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2DAC, Class type = 0x3946, This type = 0x3ACB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2dcf, This adjust = 0 + +0x3ad0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3946, This type = 0x3ACB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ad1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3946 + +0x3ad2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AD1 + +0x3ad3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3946, This type = 0x3AD2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ad4 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1243, value_type + list[1] = LF_NESTTYPE, type = 0x2DAB, pointer + list[2] = LF_NESTTYPE, type = 0x2DAC, const_pointer + list[3] = LF_NESTTYPE, type = 0x270F, reference + list[4] = LF_NESTTYPE, type = 0x2DAD, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3ACC, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3ACD, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3ACE, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3ACF, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3AD0, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3AD3, name = 'max_size' + +0x3ad5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3ad4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = std::allocator, UDT(0x00003ad5) + +0x3ad6 : Length = 142, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::binary_function,mxstl::pair,int>, UDT(0x00003bf3) + +0x3ad7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39DC + +0x3ad8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DC, This type = 0x3AD7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2c5d, This adjust = 0 + +0x3ad9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x39DC + +0x3ada : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AD9 + +0x3adb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x39E1 + list[1] = 0x39E1 + +0x3adc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x39DC, This type = 0x3ADA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3adb, This adjust = 0 + +0x3add : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3AD6, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x2BBD, offset = 0 + member name = 'comp' + list[2] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AD8, name = 'value_compare' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3ADC, name = 'operator()' + +0x3ade : Length = 94, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3add, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::map::value_compare, UDT(0x00003ade) + +0x3adf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39DB + +0x3ae0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DB, This type = 0x3ADF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2c4b, This adjust = 0 + +0x3ae1 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2815, offset = 0 + member name = 'first' + list[1] = LF_MEMBER, public, type = 0x2081, offset = 4 + member name = 'second' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3AE0, name = 'pair' + +0x3ae2 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3ae1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::pair, UDT(0x00003ae2) + +0x3ae3 : Length = 26, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 0, name = 'red' + list[1] = LF_ENUMERATE, public, value = 1, name = 'black' + +0x3ae4 : Length = 198, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x3ae3 +NESTED, enum name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::color_type, UDT(0x00003ae4) + +0x3ae5 : Length = 206, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node, UDT(0x00003c06) + +0x3ae6 : Length = 222, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node>, UDT(0x00003c04) + +0x3ae7 : Length = 86, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator >, UDT(0x00003c13) + +0x3ae8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3AE5 + +0x3ae9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39DD + +0x3aea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3aeb : Length = 214, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node_buffer, UDT(0x00003b3d) + +0x3aec : Length = 230, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node_buffer>, UDT(0x00003b3b) + +0x3aed : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3AEB + +0x3aee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3aef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AE8, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3af0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3AE8 + +0x3af1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3af2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AE8 + +0x3af3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x39DD + +0x3af4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AF3 + +0x3af5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AF2, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3af6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AF2, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3af7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3AF5, + list[1] = protected, VANILLA, 0x3AF6, + +0x3af8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AF2, Class type = 0x39DD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3af9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39DF, Class type = 0x39DD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3afa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2816, Class type = 0x39DD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3afb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AE4 + +0x3afc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AFB, Class type = 0x39DD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3afd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AE8, Class type = 0x39DD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3afe : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3AE8 + list[1] = 0x3AE8 + list[2] = 0x39E1 + +0x3aff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3afe, This adjust = 0 + +0x3b00 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3AE8 + list[1] = 0x3AE8 + +0x3b01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AE8, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b00, This adjust = 0 + +0x3b02 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AF3 + +0x3b03 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3B02 + list[1] = T_INT4(0074) + +0x3b04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b03, This adjust = 0 + +0x3b05 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x39EB + list[1] = 0x39EB + list[2] = 0x2BBF + list[3] = T_INT4(0074) + +0x3b06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3b05, This adjust = 0 + +0x3b07 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2BBF + list[1] = T_INT4(0074) + +0x3b08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b07, This adjust = 0 + +0x3b09 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B04, + list[1] = public, VANILLA, 0x3B06, + list[2] = public, VANILLA, 0x3B08, + +0x3b0a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39DD + +0x3b0b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B02 + +0x3b0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B0A, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b0b, This adjust = 0 + +0x3b0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2BBD, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E3, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b10 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B0E, + list[1] = public, VANILLA, 0x3B0F, + +0x3b11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E5, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b12 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E4, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b13 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B11, + list[1] = public, VANILLA, 0x3B12, + +0x3b14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b16 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B0A + +0x3b17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b16, This adjust = 0 + +0x3b18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a01, This adjust = 0 + +0x3b19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a08, This adjust = 0 + +0x3b1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3a03, This adjust = 0 + +0x3b1b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A00, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a05, This adjust = 0 + +0x3b1c : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B18, + list[1] = public, VANILLA, 0x3B19, + list[2] = public, VANILLA, 0x3B1A, + list[3] = public, VANILLA, 0x3B1B, + +0x3b1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x2cb0, This adjust = 0 + +0x3b1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a0b, This adjust = 0 + +0x3b20 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B1D, + list[1] = public, VANILLA, 0x3B19, + list[2] = public, VANILLA, 0x3B1E, + list[3] = public, VANILLA, 0x3B1F, + +0x3b21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E3, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b23 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B21, + list[1] = public, VANILLA, 0x3B22, + +0x3b24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A13, Class type = 0x39DD, This type = 0x3AF4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A12, Class type = 0x39DD, This type = 0x3AE9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x281b, This adjust = 0 + +0x3b27 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B25, + list[1] = public, VANILLA, 0x3B26, + +0x3b28 : Length = 1882, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3AE4, color_type + list[1] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[2] = LF_NESTTYPE, type = 0x3AE5, rb_tree_node + list[3] = LF_STATICMEMBER, protected, type = 0x3AE6 member name = 'rb_tree_node_allocator' + list[4] = LF_STATICMEMBER, protected, type = 0x3AE7 member name = 'value_allocator' + list[5] = LF_NESTTYPE, type = T_32PRCHAR(0470), key_type + list[6] = LF_NESTTYPE, type = 0x39DB, value_type + list[7] = LF_NESTTYPE, type = 0x39DE, pointer + list[8] = LF_NESTTYPE, type = 0x39DF, reference + list[9] = LF_NESTTYPE, type = 0x39E1, const_reference + list[10] = LF_NESTTYPE, type = 0x3AE6, rb_tree_node_allocator_type + list[11] = LF_NESTTYPE, type = 0x3AE8, link_type + list[12] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[13] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[14] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AEA, name = 'buffer_size' + list[15] = LF_NESTTYPE, type = 0x3AEB, rb_tree_node_buffer + list[16] = LF_NESTTYPE, type = 0x3AEC, buffer_allocator_type + list[17] = LF_NESTTYPE, type = 0x3AED, buffer_pointer + list[18] = LF_STATICMEMBER, protected, type = 0x3AEC member name = 'buffer_allocator' + list[19] = LF_STATICMEMBER, protected, type = 0x3AED member name = 'buffer_list' + list[20] = LF_STATICMEMBER, protected, type = 0x3AE8 member name = 'free_list' + list[21] = LF_STATICMEMBER, protected, type = 0x3AE8 member name = 'next_avail' + list[22] = LF_STATICMEMBER, protected, type = 0x3AE8 member name = 'last' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AEE, name = 'add_new_buffer' + list[24] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_trees' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AEE, name = 'deallocate_buffers' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AEF, name = 'get_node' + list[27] = LF_ONEMETHOD, protected, VANILLA, index = 0x3AF1, name = 'put_node' + list[28] = LF_MEMBER, protected, type = 0x3AE8, offset = 0 + member name = 'header' + list[29] = LF_METHOD, count = 2, list = 0x3AF7, name = 'root' + list[30] = LF_METHOD, count = 2, list = 0x3AF7, name = 'leftmost' + list[31] = LF_METHOD, count = 2, list = 0x3AF7, name = 'rightmost' + list[32] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'node_count' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'insert_always' + list[34] = LF_MEMBER, protected, type = 0x2BBD, offset = 12 + member name = 'key_compare' + list[35] = LF_STATICMEMBER, protected, type = 0x3AE8 member name = 'NIL' + list[36] = LF_ONEMETHOD, protected, STATIC, index = 0x3AF8, name = 'left' + list[37] = LF_ONEMETHOD, protected, STATIC, index = 0x3AF8, name = 'right' + list[38] = LF_ONEMETHOD, protected, STATIC, index = 0x3AF8, name = 'parent' + list[39] = LF_ONEMETHOD, protected, STATIC, index = 0x3AF9, name = 'value' + list[40] = LF_ONEMETHOD, protected, STATIC, index = 0x3AFA, name = 'key' + list[41] = LF_ONEMETHOD, protected, STATIC, index = 0x3AFC, name = 'color' + list[42] = LF_ONEMETHOD, protected, STATIC, index = 0x3AFD, name = 'minimum' + list[43] = LF_ONEMETHOD, protected, STATIC, index = 0x3AFD, name = 'maximum' + list[44] = LF_NESTTYPE, type = 0x39E2, iterator + list[45] = LF_NESTTYPE, type = 0x39E3, const_iterator + list[46] = LF_NESTTYPE, type = 0x39E4, reverse_iterator + list[47] = LF_NESTTYPE, type = 0x39E5, const_reverse_iterator + list[48] = LF_ONEMETHOD, private, VANILLA, index = 0x3AFF, name = '__insert' + list[49] = LF_ONEMETHOD, private, VANILLA, index = 0x3B01, name = '__copy' + list[50] = LF_ONEMETHOD, private, VANILLA, index = 0x3AF1, name = '__erase' + list[51] = LF_ONEMETHOD, private, VANILLA, index = 0x3AEE, name = 'init' + list[52] = LF_METHOD, count = 3, list = 0x3B09, name = 'rb_tree,mxstl::select1st,char const *>,ROINameComparator>' + list[53] = LF_ONEMETHOD, public, VANILLA, index = 0x3AEE, name = '~rb_tree,mxstl::select1st,char const *>,ROINameComparator>' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x3B0C, name = 'operator=' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x3B0D, name = 'key_comp' + list[56] = LF_METHOD, count = 2, list = 0x3B10, name = 'begin' + list[57] = LF_METHOD, count = 2, list = 0x3B10, name = 'end' + list[58] = LF_METHOD, count = 2, list = 0x3B13, name = 'rbegin' + list[59] = LF_METHOD, count = 2, list = 0x3B13, name = 'rend' + list[60] = LF_ONEMETHOD, public, VANILLA, index = 0x3B14, name = 'empty' + list[61] = LF_ONEMETHOD, public, VANILLA, index = 0x3B15, name = 'size' + list[62] = LF_ONEMETHOD, public, VANILLA, index = 0x3B15, name = 'max_size' + list[63] = LF_ONEMETHOD, public, VANILLA, index = 0x3B17, name = 'swap' + list[64] = LF_NESTTYPE, type = 0x3A00, pair_iterator_bool + list[65] = LF_METHOD, count = 4, list = 0x3B1C, name = 'insert' + list[66] = LF_METHOD, count = 4, list = 0x3B20, name = 'erase' + list[67] = LF_METHOD, count = 2, list = 0x3B23, name = 'find' + list[68] = LF_ONEMETHOD, public, VANILLA, index = 0x3B24, name = 'count' + list[69] = LF_METHOD, count = 2, list = 0x3B23, name = 'lower_bound' + list[70] = LF_METHOD, count = 2, list = 0x3B23, name = 'upper_bound' + list[71] = LF_NESTTYPE, type = 0x3A12, pair_iterator_iterator + list[72] = LF_METHOD, count = 2, list = 0x3B27, name = 'equal_range' + list[73] = LF_NESTTYPE, type = 0x3A13, pair_citerator_citerator + list[74] = LF_ONEMETHOD, public, VANILLA, index = 0x3AF1, name = 'rotate_left' + list[75] = LF_ONEMETHOD, public, VANILLA, index = 0x3AF1, name = 'rotate_right' + +0x3b29 : Length = 190, Leaf = 0x1504 LF_CLASS + # members = 95, field list type 0x3b28, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>, UDT(0x00003b29) + +0x3b2a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3AEB + +0x3b2b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3B2A + +0x3b2c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AEB + +0x3b2d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B2A + +0x3b2e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AEC + +0x3b2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AED, Class type = 0x3AEC, This type = 0x3B2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3b30 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3AED + +0x3b31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3AEC, This type = 0x3B2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b30, This adjust = 0 + +0x3b32 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B2C + +0x3b33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AED, Class type = 0x3AEC, This type = 0x3B2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b32, This adjust = 0 + +0x3b34 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B2D + +0x3b35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B2B, Class type = 0x3AEC, This type = 0x3B2E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b34, This adjust = 0 + +0x3b36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AEC, This type = 0x3B2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b37 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3AEC + +0x3b38 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B37 + +0x3b39 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AEC, This type = 0x3B38, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b3a : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3AEB, value_type + list[1] = LF_NESTTYPE, type = 0x3AED, pointer + list[2] = LF_NESTTYPE, type = 0x3B2B, const_pointer + list[3] = LF_NESTTYPE, type = 0x3B2C, reference + list[4] = LF_NESTTYPE, type = 0x3B2D, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3B2F, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3B31, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3B33, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3B35, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3B36, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3B39, name = 'max_size' + +0x3b3b : Length = 230, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3b3a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node_buffer>, UDT(0x00003b3b) + +0x3b3c : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x3AE8, offset = 4 + member name = 'buffer' + +0x3b3d : Length = 214, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3b3c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node_buffer, UDT(0x00003b3d) + +0x3b3e : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::bidirectional_iterator,int>, UDT(0x00003b4d) + +0x3b3f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39E2 + +0x3b40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39E2, This type = 0x3B3F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39E2, This type = 0x3B3F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3b42 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3B40, + list[1] = protected, VANILLA, 0x3B41, + +0x3b43 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A1A + +0x3b44 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A1B + +0x3b45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x39E2, This type = 0x3B43, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b44, This adjust = 0 + +0x3b46 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39DF, Class type = 0x39E2, This type = 0x3B43, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E2, Class type = 0x39E2, This type = 0x3B3F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3b48 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39E2 + +0x3b49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B48, Class type = 0x39E2, This type = 0x3B3F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b4a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B47, + list[1] = public, VANILLA, 0x3B49, + +0x3b4b : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3B3E, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3AE8, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x3B42, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3B45, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3B46, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x3B4A, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x3B4A, name = 'operator--' + +0x3b4c : Length = 202, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3b4b, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::iterator, UDT(0x00003b4c) + +0x3b4d : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::bidirectional_iterator,int>, UDT(0x00003b4d) + +0x3b4e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x39E3 + +0x3b4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39E3, This type = 0x3B4E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b44, This adjust = 0 + +0x3b50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39E3, This type = 0x3B4E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x39E3, This type = 0x3B4E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3b52 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3B4F, + list[1] = protected, VANILLA, 0x3B50, + list[2] = protected, VANILLA, 0x3B51, + +0x3b53 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x39E3 + +0x3b54 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B53 + +0x3b55 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B53 + +0x3b56 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B55 + +0x3b57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x39E3, This type = 0x3B54, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b56, This adjust = 0 + +0x3b58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E1, Class type = 0x39E3, This type = 0x3B54, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39E3, Class type = 0x39E3, This type = 0x3B4E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3b5a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x39E3 + +0x3b5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B5A, Class type = 0x39E3, This type = 0x3B4E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b5c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B59, + list[1] = public, VANILLA, 0x3B5B, + +0x3b5d : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3B3E, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3AE8, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x3B52, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3B57, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3B57, name = 'operator!=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3B58, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3B5C, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3B5C, name = 'operator--' + +0x3b5e : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3b5d, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::const_iterator, UDT(0x00003b5e) + +0x3b5f : Length = 154, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x3ae3 +NESTED, enum name = mxstl::rb_tree,MxAtomIdCounterCompare>::color_type, UDT(0x00003b5f) + +0x3b60 : Length = 162, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::rb_tree_node, UDT(0x00003c26) + +0x3b61 : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator,MxAtomIdCounterCompare>::rb_tree_node>, UDT(0x00003c24) + +0x3b62 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator, UDT(0x00003c31) + +0x3b63 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3B60 + +0x3b64 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A20 + +0x3b65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b66 : Length = 166, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::rb_tree_node_buffer, UDT(0x00003bbe) + +0x3b67 : Length = 186, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::allocator,MxAtomIdCounterCompare>::rb_tree_node_buffer>, UDT(0x00003bbc) + +0x3b68 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3B66 + +0x3b69 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B63, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b6b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B63 + +0x3b6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b6d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B63 + +0x3b6e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3A20 + +0x3b6f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B6E + +0x3b70 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B6D, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B6D, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b72 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3B70, + list[1] = protected, VANILLA, 0x3B71, + +0x3b73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B6D, Class type = 0x3A20, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B6, Class type = 0x3A20, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x3A20, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b76 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B5F + +0x3b77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B76, Class type = 0x3A20, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B63, Class type = 0x3A20, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3b79 : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::iterator, UDT(0x00003bce) + +0x3b7a : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::reverse_bidirectional_iterator,MxAtomIdCounterCompare>::iterator,MxAtomIdCounter *,MxAtomIdCounter * &,int>, UDT(0x00003bf1) + +0x3b7b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3B63 + list[1] = 0x3B63 + list[2] = 0x14D9 + +0x3b7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3b7b, This adjust = 0 + +0x3b7d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3B63 + list[1] = 0x3B63 + +0x3b7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B63, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b7d, This adjust = 0 + +0x3b7f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B6E + +0x3b80 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3B7F + list[1] = T_INT4(0074) + +0x3b81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b80, This adjust = 0 + +0x3b82 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1B6E + list[1] = 0x1B6E + list[2] = 0x1B77 + list[3] = T_INT4(0074) + +0x3b83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3b82, This adjust = 0 + +0x3b84 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1B77 + list[1] = T_INT4(0074) + +0x3b85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b84, This adjust = 0 + +0x3b86 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B81, + list[1] = public, VANILLA, 0x3B83, + list[2] = public, VANILLA, 0x3B85, + +0x3b87 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A20 + +0x3b88 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B7F + +0x3b89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B87, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b88, This adjust = 0 + +0x3b8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x17F9, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b8d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B8B, + list[1] = public, VANILLA, 0x3B8C, + +0x3b8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A22, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B7A, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b90 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B8E, + list[1] = public, VANILLA, 0x3B8F, + +0x3b91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3b93 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B87 + +0x3b94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b93, This adjust = 0 + +0x3b95 : Length = 174, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair,MxAtomIdCounterCompare>::iterator,int>, UDT(0x00003be3) + +0x3b96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1b8c, This adjust = 0 + +0x3b97 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3B79 + list[1] = 0x3B79 + +0x3b98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b97, This adjust = 0 + +0x3b99 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3B79 + list[1] = 0x14D9 + +0x3b9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3b99, This adjust = 0 + +0x3b9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B95, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3b9c : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B96, + list[1] = public, VANILLA, 0x3B98, + list[2] = public, VANILLA, 0x3B9A, + list[3] = public, VANILLA, 0x3B9B, + +0x3b9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3b9e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B79 + +0x3b9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b9e, This adjust = 0 + +0x3ba0 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3B96, + list[1] = public, VANILLA, 0x3B98, + list[2] = public, VANILLA, 0x3B9D, + list[3] = public, VANILLA, 0x3B9F, + +0x3ba1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3ba2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3ba3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BA1, + list[1] = public, VANILLA, 0x3BA2, + +0x3ba4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3ba5 : Length = 278, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = mxstl::pair,MxAtomIdCounterCompare>::iterator,mxstl::rb_tree,MxAtomI + +0x3ba6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A44, Class type = 0x3A20, This type = 0x3B6F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3ba7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BA5, Class type = 0x3A20, This type = 0x3B64, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3ba8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BA6, + list[1] = public, VANILLA, 0x3BA7, + +0x3ba9 : Length = 1794, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3B5F, color_type + list[1] = LF_NESTTYPE, type = T_32PVOID(0403), void_pointer + list[2] = LF_NESTTYPE, type = 0x3B60, rb_tree_node + list[3] = LF_STATICMEMBER, protected, type = 0x3B61 member name = 'rb_tree_node_allocator' + list[4] = LF_STATICMEMBER, protected, type = 0x3B62 member name = 'value_allocator' + list[5] = LF_NESTTYPE, type = 0x14B5, key_type + list[6] = LF_NESTTYPE, type = 0x14B5, value_type + list[7] = LF_NESTTYPE, type = 0x1B6D, pointer + list[8] = LF_NESTTYPE, type = 0x14B6, reference + list[9] = LF_NESTTYPE, type = 0x14D9, const_reference + list[10] = LF_NESTTYPE, type = 0x3B61, rb_tree_node_allocator_type + list[11] = LF_NESTTYPE, type = 0x3B63, link_type + list[12] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[13] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[14] = LF_ONEMETHOD, protected, VANILLA, index = 0x3B65, name = 'buffer_size' + list[15] = LF_NESTTYPE, type = 0x3B66, rb_tree_node_buffer + list[16] = LF_NESTTYPE, type = 0x3B67, buffer_allocator_type + list[17] = LF_NESTTYPE, type = 0x3B68, buffer_pointer + list[18] = LF_STATICMEMBER, protected, type = 0x3B67 member name = 'buffer_allocator' + list[19] = LF_STATICMEMBER, protected, type = 0x3B68 member name = 'buffer_list' + list[20] = LF_STATICMEMBER, protected, type = 0x3B63 member name = 'free_list' + list[21] = LF_STATICMEMBER, protected, type = 0x3B63 member name = 'next_avail' + list[22] = LF_STATICMEMBER, protected, type = 0x3B63 member name = 'last' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x3B69, name = 'add_new_buffer' + list[24] = LF_STATICMEMBER, protected, type = T_UINT4(0075) member name = 'number_of_trees' + list[25] = LF_ONEMETHOD, protected, VANILLA, index = 0x3B69, name = 'deallocate_buffers' + list[26] = LF_ONEMETHOD, protected, VANILLA, index = 0x3B6A, name = 'get_node' + list[27] = LF_ONEMETHOD, protected, VANILLA, index = 0x3B6C, name = 'put_node' + list[28] = LF_MEMBER, protected, type = 0x3B63, offset = 0 + member name = 'header' + list[29] = LF_METHOD, count = 2, list = 0x3B72, name = 'root' + list[30] = LF_METHOD, count = 2, list = 0x3B72, name = 'leftmost' + list[31] = LF_METHOD, count = 2, list = 0x3B72, name = 'rightmost' + list[32] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 4 + member name = 'node_count' + list[33] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'insert_always' + list[34] = LF_MEMBER, protected, type = 0x17F9, offset = 12 + member name = 'key_compare' + list[35] = LF_STATICMEMBER, protected, type = 0x3B63 member name = 'NIL' + list[36] = LF_ONEMETHOD, protected, STATIC, index = 0x3B73, name = 'left' + list[37] = LF_ONEMETHOD, protected, STATIC, index = 0x3B73, name = 'right' + list[38] = LF_ONEMETHOD, protected, STATIC, index = 0x3B73, name = 'parent' + list[39] = LF_ONEMETHOD, protected, STATIC, index = 0x3B74, name = 'value' + list[40] = LF_ONEMETHOD, protected, STATIC, index = 0x3B75, name = 'key' + list[41] = LF_ONEMETHOD, protected, STATIC, index = 0x3B77, name = 'color' + list[42] = LF_ONEMETHOD, protected, STATIC, index = 0x3B78, name = 'minimum' + list[43] = LF_ONEMETHOD, protected, STATIC, index = 0x3B78, name = 'maximum' + list[44] = LF_NESTTYPE, type = 0x3B79, iterator + list[45] = LF_NESTTYPE, type = 0x3A21, const_iterator + list[46] = LF_NESTTYPE, type = 0x3B7A, reverse_iterator + list[47] = LF_NESTTYPE, type = 0x3A22, const_reverse_iterator + list[48] = LF_ONEMETHOD, private, VANILLA, index = 0x3B7C, name = '__insert' + list[49] = LF_ONEMETHOD, private, VANILLA, index = 0x3B7E, name = '__copy' + list[50] = LF_ONEMETHOD, private, VANILLA, index = 0x3B6C, name = '__erase' + list[51] = LF_ONEMETHOD, private, VANILLA, index = 0x3B69, name = 'init' + list[52] = LF_METHOD, count = 3, list = 0x3B86, name = 'rb_tree,MxAtomIdCounterCompare>' + list[53] = LF_ONEMETHOD, public, VANILLA, index = 0x3B69, name = '~rb_tree,MxAtomIdCounterCompare>' + list[54] = LF_ONEMETHOD, public, VANILLA, index = 0x3B89, name = 'operator=' + list[55] = LF_ONEMETHOD, public, VANILLA, index = 0x3B8A, name = 'key_comp' + list[56] = LF_METHOD, count = 2, list = 0x3B8D, name = 'begin' + list[57] = LF_METHOD, count = 2, list = 0x3B8D, name = 'end' + list[58] = LF_METHOD, count = 2, list = 0x3B90, name = 'rbegin' + list[59] = LF_METHOD, count = 2, list = 0x3B90, name = 'rend' + list[60] = LF_ONEMETHOD, public, VANILLA, index = 0x3B91, name = 'empty' + list[61] = LF_ONEMETHOD, public, VANILLA, index = 0x3B92, name = 'size' + list[62] = LF_ONEMETHOD, public, VANILLA, index = 0x3B92, name = 'max_size' + list[63] = LF_ONEMETHOD, public, VANILLA, index = 0x3B94, name = 'swap' + list[64] = LF_NESTTYPE, type = 0x3B95, pair_iterator_bool + list[65] = LF_METHOD, count = 4, list = 0x3B9C, name = 'insert' + list[66] = LF_METHOD, count = 4, list = 0x3BA0, name = 'erase' + list[67] = LF_METHOD, count = 2, list = 0x3BA3, name = 'find' + list[68] = LF_ONEMETHOD, public, VANILLA, index = 0x3BA4, name = 'count' + list[69] = LF_METHOD, count = 2, list = 0x3BA3, name = 'lower_bound' + list[70] = LF_METHOD, count = 2, list = 0x3BA3, name = 'upper_bound' + list[71] = LF_NESTTYPE, type = 0x3BA5, pair_iterator_iterator + list[72] = LF_METHOD, count = 2, list = 0x3BA8, name = 'equal_range' + list[73] = LF_NESTTYPE, type = 0x3A44, pair_citerator_citerator + list[74] = LF_ONEMETHOD, public, VANILLA, index = 0x3B6C, name = 'rotate_left' + list[75] = LF_ONEMETHOD, public, VANILLA, index = 0x3B6C, name = 'rotate_right' + +0x3baa : Length = 146, Leaf = 0x1504 LF_CLASS + # members = 95, field list type 0x3ba9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = mxstl::rb_tree,MxAtomIdCounterCompare>, UDT(0x00003baa) + +0x3bab : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B66 + +0x3bac : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3BAB + +0x3bad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B66 + +0x3bae : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3BAB + +0x3baf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B67 + +0x3bb0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B68, Class type = 0x3B67, This type = 0x3BAF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3bb1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3B68 + +0x3bb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B67, This type = 0x3BAF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bb1, This adjust = 0 + +0x3bb3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3BAD + +0x3bb4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B68, Class type = 0x3B67, This type = 0x3BAF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bb3, This adjust = 0 + +0x3bb5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3BAE + +0x3bb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BAC, Class type = 0x3B67, This type = 0x3BAF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bb5, This adjust = 0 + +0x3bb7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B67, This type = 0x3BAF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bb8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B67 + +0x3bb9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3BB8 + +0x3bba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B67, This type = 0x3BB9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bbb : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3B66, value_type + list[1] = LF_NESTTYPE, type = 0x3B68, pointer + list[2] = LF_NESTTYPE, type = 0x3BAC, const_pointer + list[3] = LF_NESTTYPE, type = 0x3BAD, reference + list[4] = LF_NESTTYPE, type = 0x3BAE, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3BB0, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3BB2, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3BB4, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3BB6, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3BB7, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3BBA, name = 'max_size' + +0x3bbc : Length = 186, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3bbb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator,MxAtomIdCounterCompare>::rb_tree_node_buffer>, UDT(0x00003bbc) + +0x3bbd : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = 'next_buffer' + list[1] = LF_MEMBER, public, type = 0x3B63, offset = 4 + member name = 'buffer' + +0x3bbe : Length = 166, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3bbd, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::rb_tree_node_buffer, UDT(0x00003bbe) + +0x3bbf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B79 + +0x3bc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B79, This type = 0x3BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B79, This type = 0x3BBF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3bc2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3BC0, + list[1] = protected, VANILLA, 0x3BC1, + +0x3bc3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B79 + +0x3bc4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3BC3 + +0x3bc5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3BC3 + +0x3bc6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3BC5 + +0x3bc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3B79, This type = 0x3BC4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bc6, This adjust = 0 + +0x3bc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B6, Class type = 0x3B79, This type = 0x3BC4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3B79, This type = 0x3BBF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3bca : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B79 + +0x3bcb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BCA, Class type = 0x3B79, This type = 0x3BBF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bcc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BC9, + list[1] = public, VANILLA, 0x3BCB, + +0x3bcd : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3A48, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3B63, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 2, list = 0x3BC2, name = 'iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3BC7, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3BC8, name = 'operator*' + list[5] = LF_METHOD, count = 2, list = 0x3BCC, name = 'operator++' + list[6] = LF_METHOD, count = 2, list = 0x3BCC, name = 'operator--' + +0x3bce : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3bcd, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::iterator, UDT(0x00003bce) + +0x3bcf : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x288e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::bidirectional_iterator, UDT(0x00003bcf) + +0x3bd0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A21 + +0x3bd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A21, This type = 0x3BD0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bc6, This adjust = 0 + +0x3bd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A21, This type = 0x3BD0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bd3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3A21, This type = 0x3BD0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3bd4 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = protected, VANILLA, 0x3BD1, + list[1] = protected, VANILLA, 0x3BD2, + list[2] = protected, VANILLA, 0x3BD3, + +0x3bd5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3A58 + +0x3bd6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3A59 + +0x3bd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3A21, This type = 0x3BD5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bd6, This adjust = 0 + +0x3bd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14D9, Class type = 0x3A21, This type = 0x3BD5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3A21, Class type = 0x3A21, This type = 0x3BD0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3bda : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3A21 + +0x3bdb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BDA, Class type = 0x3A21, This type = 0x3BD0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bdc : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BD9, + list[1] = public, VANILLA, 0x3BDB, + +0x3bdd : Length = 154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3A48, offset = 0 + list[1] = LF_MEMBER, protected, type = 0x3B63, offset = 0 + member name = 'node' + list[2] = LF_METHOD, count = 3, list = 0x3BD4, name = 'const_iterator' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3BD7, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3BD7, name = 'operator!=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3BD8, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3BDC, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3BDC, name = 'operator--' + +0x3bde : Length = 162, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3bdd, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::const_iterator, UDT(0x00003bde) + +0x3bdf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B95 + +0x3be0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3BC5 + list[1] = 0x1BAD + +0x3be1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B95, This type = 0x3BDF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3be0, This adjust = 0 + +0x3be2 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3B79, offset = 0 + member name = 'first' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'second' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3BE1, name = 'pair,MxAtomIdCounterCompare>::iterator,int>' + +0x3be3 : Length = 174, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3be2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = mxstl::pair,MxAtomIdCounterCompare>::iterator,int>, UDT(0x00003be3) + +0x3be4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B7A + +0x3be5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B7A, This type = 0x3BE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b9e, This adjust = 0 + +0x3be6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B7A, This type = 0x3BE4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3be7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BE5, + list[1] = public, VANILLA, 0x3BE6, + +0x3be8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B79, Class type = 0x3B7A, This type = 0x3BE4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3be9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B7A + +0x3bea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3BE9 + +0x3beb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x14B6, Class type = 0x3B7A, This type = 0x3BEA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B7A, Class type = 0x3B7A, This type = 0x3BE4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3bed : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B7A + +0x3bee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BED, Class type = 0x3B7A, This type = 0x3BE4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3bef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3BEC, + list[1] = public, VANILLA, 0x3BEE, + +0x3bf0 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3A48, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3B7A, self + list[2] = LF_MEMBER, protected, type = 0x3B79, offset = 0 + member name = 'current' + list[3] = LF_METHOD, count = 2, list = 0x3BE7, name = 'reverse_bidirectional_iterator,MxAtomIdCounterCompare>::iterator,MxAtomIdCounter *,MxAtomIdCounter * &,int>' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3BE8, name = 'base' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3BEB, name = 'operator*' + list[6] = LF_METHOD, count = 2, list = 0x3BEF, name = 'operator++' + list[7] = LF_METHOD, count = 2, list = 0x3BEF, name = 'operator--' + +0x3bf1 : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3bf0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = mxstl::reverse_bidirectional_iterator,MxAtomIdCounterCompare>::iterator,MxAtomIdCounter *,MxAtomIdCounter * &,int>, UDT(0x00003bf1) + +0x3bf2 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x39DB, first_argument_type + list[1] = LF_NESTTYPE, type = 0x39DB, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x3bf3 : Length = 142, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3bf2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::binary_function,mxstl::pair,int>, UDT(0x00003bf3) + +0x3bf4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3AE5 + +0x3bf5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3BF4 + +0x3bf6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3AE5 + +0x3bf7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3BF4 + +0x3bf8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AE6 + +0x3bf9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AE8, Class type = 0x3AE6, This type = 0x3BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3bfa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3AE6, This type = 0x3BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3af0, This adjust = 0 + +0x3bfb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3BF6 + +0x3bfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3AE8, Class type = 0x3AE6, This type = 0x3BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bfb, This adjust = 0 + +0x3bfd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3BF7 + +0x3bfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3BF5, Class type = 0x3AE6, This type = 0x3BF8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3bfd, This adjust = 0 + +0x3bff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AE6, This type = 0x3BF8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c00 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3AE6 + +0x3c01 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3C00 + +0x3c02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AE6, This type = 0x3C01, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c03 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3AE5, value_type + list[1] = LF_NESTTYPE, type = 0x3AE8, pointer + list[2] = LF_NESTTYPE, type = 0x3BF5, const_pointer + list[3] = LF_NESTTYPE, type = 0x3BF6, reference + list[4] = LF_NESTTYPE, type = 0x3BF7, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3BF9, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3BFA, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3BFC, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3BFE, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3BFF, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3C02, name = 'max_size' + +0x3c04 : Length = 222, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c03, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node>, UDT(0x00003c04) + +0x3c05 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3AE4, offset = 0 + member name = 'color_field' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'parent_link' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 8 + member name = 'left_link' + list[3] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 12 + member name = 'right_link' + list[4] = LF_MEMBER, public, type = 0x39DB, offset = 16 + member name = 'value_field' + +0x3c06 : Length = 206, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x3c05, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = mxstl::rb_tree,mxstl::select1st,char const *>,ROINameComparator>::rb_tree_node, UDT(0x00003c06) + +0x3c07 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3AE7 + +0x3c08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39DE, Class type = 0x3AE7, This type = 0x3C07, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c09 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39DE + +0x3c0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3AE7, This type = 0x3C07, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3c09, This adjust = 0 + +0x3c0b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x39DF + +0x3c0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39DE, Class type = 0x3AE7, This type = 0x3C07, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3c0b, This adjust = 0 + +0x3c0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x39EB, Class type = 0x3AE7, This type = 0x3C07, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3a05, This adjust = 0 + +0x3c0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AE7, This type = 0x3C07, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c0f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3AE7 + +0x3c10 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3C0F + +0x3c11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3AE7, This type = 0x3C10, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c12 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x39DB, value_type + list[1] = LF_NESTTYPE, type = 0x39DE, pointer + list[2] = LF_NESTTYPE, type = 0x39EB, const_pointer + list[3] = LF_NESTTYPE, type = 0x39DF, reference + list[4] = LF_NESTTYPE, type = 0x39E1, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C08, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C0A, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3C0C, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C0D, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3C0E, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3C11, name = 'max_size' + +0x3c13 : Length = 86, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c12, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator >, UDT(0x00003c13) + +0x3c14 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B60 + +0x3c15 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3C14 + +0x3c16 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3B60 + +0x3c17 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3C14 + +0x3c18 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B61 + +0x3c19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B63, Class type = 0x3B61, This type = 0x3C18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B61, This type = 0x3C18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3b6b, This adjust = 0 + +0x3c1b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3C16 + +0x3c1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3B63, Class type = 0x3B61, This type = 0x3C18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3c1b, This adjust = 0 + +0x3c1d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3C17 + +0x3c1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3C15, Class type = 0x3B61, This type = 0x3C18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3c1d, This adjust = 0 + +0x3c1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B61, This type = 0x3C18, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c20 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B61 + +0x3c21 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3C20 + +0x3c22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B61, This type = 0x3C21, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c23 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3B60, value_type + list[1] = LF_NESTTYPE, type = 0x3B63, pointer + list[2] = LF_NESTTYPE, type = 0x3C15, const_pointer + list[3] = LF_NESTTYPE, type = 0x3C16, reference + list[4] = LF_NESTTYPE, type = 0x3C17, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C19, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C1A, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3C1C, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C1E, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3C1F, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3C22, name = 'max_size' + +0x3c24 : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c23, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator,MxAtomIdCounterCompare>::rb_tree_node>, UDT(0x00003c24) + +0x3c25 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3B5F, offset = 0 + member name = 'color_field' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'parent_link' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 8 + member name = 'left_link' + list[3] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 12 + member name = 'right_link' + list[4] = LF_MEMBER, public, type = 0x14B5, offset = 16 + member name = 'value_field' + +0x3c26 : Length = 162, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x3c25, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = mxstl::rb_tree,MxAtomIdCounterCompare>::rb_tree_node, UDT(0x00003c26) + +0x3c27 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3B62 + +0x3c28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6D, Class type = 0x3B62, This type = 0x3C27, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c29 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3B62, This type = 0x3C27, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x28a1, This adjust = 0 + +0x3c2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6D, Class type = 0x3B62, This type = 0x3C27, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2898, This adjust = 0 + +0x3c2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1B6E, Class type = 0x3B62, This type = 0x3C27, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1802, This adjust = 0 + +0x3c2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B62, This type = 0x3C27, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c2d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3B62 + +0x3c2e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3C2D + +0x3c2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3B62, This type = 0x3C2E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c30 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x14B5, value_type + list[1] = LF_NESTTYPE, type = 0x1B6D, pointer + list[2] = LF_NESTTYPE, type = 0x1B6E, const_pointer + list[3] = LF_NESTTYPE, type = 0x14B6, reference + list[4] = LF_NESTTYPE, type = 0x14D9, const_reference + list[5] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C28, name = 'allocate' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C29, name = 'deallocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3C2A, name = 'address' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C2B, name = 'const_address' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3C2C, name = 'init_page_size' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3C2F, name = 'max_size' + +0x3c31 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c30, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = mxstl::allocator, UDT(0x00003c31) + +0x3c32 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A6A, name = 'JukeBox' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6D, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6E, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 248 + member name = 'm_unk0xf8' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 256 + member name = 'm_unk0x100' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1A6A, name = '~JukeBox' + +0x3c33 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3c32, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = JukeBox, UDT(0x00003da7) + +0x3c34 : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[9] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[11] = LF_MEMBER, public, type = T_USHORT(0021), offset = 12 + member name = 'm_flags' + +0x3c35 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c34, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c36 : Length = 290, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[9] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[11] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 12 + member name = 'm_flags' + +0x3c37 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c36, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x129A, This type = 0x129B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c39 : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C38, name = 'dong' + list[9] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[11] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[12] = LF_MEMBER, public, type = T_USHORT(0021), offset = 12 + member name = 'm_flags' + +0x3c3a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c3b : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C38, name = 'dong' + list[9] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[11] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[12] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 12 + member name = 'm_flags' + +0x3c3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c3d : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C38, name = 'dong' + list[9] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[11] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[12] = LF_MEMBER, public, type = T_SHORT(0011), offset = 12 + member name = 'm_flags' + +0x3c3e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c3f : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x129D, name = 'MxTickleClient' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF8, name = 'GetClient' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetTickleInterval' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1EF9, name = 'GetLastUpdateTime' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFA, name = 'GetFlags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetTickleInterval' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFB, name = 'SetLastUpdateTime' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EFC, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3C38, name = 'dong' + list[9] = LF_MEMBER, public, type = 0x10AE, offset = 0 + member name = 'm_client' + list[10] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_interval' + list[11] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_lastUpdateTime' + list[12] = LF_MEMBER, public, type = 0x3351, offset = 12 + member name = 'm_flags' + +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +0x3c41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x15F2, This type = 0x15F3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c43 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'MxDSSubscriber' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F4, name = '~MxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F7, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x15F8, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x15FA, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x15F4, name = 'DeleteChunks' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3705, name = 'AddChunk' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8250' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x15FB, name = 'FUN_100b8360' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x15FC, name = 'FUN_100b8390' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3C41, name = 'GetObjectId' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3C42, name = 'GetUnknown48' + list[13] = LF_MEMBER, private, type = 0x1398, offset = 8 + member name = 'm_unk0x08' + list[14] = LF_MEMBER, private, type = 0x2D23, offset = 32 + member name = 'm_unk0x20' + list[15] = LF_MEMBER, private, type = 0x1398, offset = 36 + member name = 'm_unk0x24' + list[16] = LF_MEMBER, private, type = 0x2D23, offset = 60 + member name = 'm_unk0x3c' + list[17] = LF_MEMBER, private, type = 0x12DF, offset = 64 + member name = 'm_controller' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 68 + member name = 'm_objectId' + list[19] = LF_MEMBER, private, type = T_SHORT(0011), offset = 72 + member name = 'm_unk0x48' + +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +0x3c45 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x2a04 + +0x3c46 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_SHORT(0011) + list[1] = T_UINT4(0075) + +0x3c47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c46, This adjust = 0 + +0x3c48 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3C47, name = 'GetUnknown24' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3c49 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c48, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3c4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c46, This adjust = 0 + +0x3c4b : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3C4A, name = 'GetUnknown24' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c4c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c4b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c4e : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3C4D, name = 'GetUnknown24' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3c4f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c4e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3c50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c51 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3C50, name = 'GetUnknown24' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c52 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c53 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_SHORT(0011) + +0x3c54 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3C53 + list[1] = T_UINT4(0075) + +0x3c55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c54, This adjust = 0 + +0x3c56 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3C55, name = 'GetUnknown24' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3c57 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3c58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c54, This adjust = 0 + +0x3c59 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3C58, name = 'GetUnknown24' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c5a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c59, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c54, This adjust = 0 + +0x3c5c : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3C5B, name = 'GetUnknown24' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3c5d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3c5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c54, This adjust = 0 + +0x3c5f : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3C5E, name = 'GetUnknown24' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c60 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c5f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c61 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_SHORT(0011) + list[1] = 0x109C + +0x3c62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c61, This adjust = 0 + +0x3c63 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3C62, name = 'GetUnknown24' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3c64 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c63, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3c65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_SHORT(0011), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3c61, This adjust = 0 + +0x3c66 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3C65, name = 'GetUnknown24' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c67 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c66, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c68 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetUnk08' + list[6] = LF_MEMBER, public, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + +0x3c69 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c68, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x3c6a : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2515, name = 'MxStreamerSubClass1' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1322, name = '~MxStreamerSubClass1' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2518, name = 'GetSize' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2519, name = 'SetBuffer' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x251A, name = 'GetUnk08Ref' + list[6] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 0 + member name = 'm_buffer' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_size' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +0x3c6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12C1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3c6d : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown9c' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown94' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown9c' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetBufferOffset' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[22] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[23] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[24] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[26] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x3c6e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c6d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x3c6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x1617, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x161a, This adjust = 0 + +0x3c70 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x12DF + list[1] = T_32PUINT4(0475) + list[2] = 0x109C + list[3] = 0x36D3 + +0x3c71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3c70, This adjust = 0 + +0x3c72 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x12DF + list[1] = T_32PUINT4(0475) + list[2] = 0x109C + list[3] = 0x36D3 + list[4] = 0x11CE + +0x3c73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x3c72, This adjust = 0 + +0x3c74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1722, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x3c75 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x2a25 + +0x3c76 : Length = 758, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c15d0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'FUN_100c1620' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x3c' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[24] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[25] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[26] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[27] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 44 + member name = 'm_unk0x2c' + list[28] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[29] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[30] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[31] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[32] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x3c77 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3c76, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3c78 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x2009 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12C8, + vfptr offset = 0, name = 'Run' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x12C4, name = 'Start' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x12C3, name = 'Terminate' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x3C6C, name = 'Sleep' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x200A, name = 'IsRunning' + list[6] = LF_ONEMETHOD, protected, VANILLA, index = 0x12C3, name = 'MxThread' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x12C3, + vfptr offset = 4, name = '~MxThread' + list[8] = LF_ONEMETHOD, private, STATIC, index = 0x12C7, name = 'ThreadProc' + list[9] = LF_MEMBER, private, type = T_ULONG(0022), offset = 4 + member name = 'm_hThread' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_threadId' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 12 + member name = 'm_running' + list[12] = LF_MEMBER, private, type = 0x13C4, offset = 16 + member name = 'm_semaphore' + list[13] = LF_MEMBER, protected, type = 0x10AE, offset = 24 + member name = 'm_target' + +0x3c79 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3c78, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 28, class name = MxThread, UDT(0x00003c79) + +0x3c7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1616, This type = 0x16D0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c7b : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16C9, name = 'MxDSSource' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D1, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16D2, name = 'IsA' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CA, + vfptr offset = 20, name = 'Open' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161C, + vfptr offset = 24, name = 'Close' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3C6F, + vfptr offset = 28, name = 'ReadToBuffer' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CB, + vfptr offset = 32, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CC, + vfptr offset = 36, name = 'Seek' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CD, + vfptr offset = 40, name = 'GetBufferSize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x22CD, + vfptr offset = 44, name = 'GetStreamBuffersNum' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161C, + vfptr offset = 48, name = 'GetLengthInDWords' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x161D, + vfptr offset = 52, name = 'GetBuffer' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3C7A, name = 'GetPosition' + list[14] = LF_MEMBER, protected, type = T_ULONG(0022), offset = 8 + member name = 'm_lengthInDWords' + list[15] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 12 + member name = 'm_pBuffer' + list[16] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_position' + list[17] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16C9, name = '~MxDSSource' + +0x3c7c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3c7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 20, class name = MxDSSource, UDT(0x00003c7c) + +0x3c7d : Length = 706, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D5, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C71, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3C73, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'SwapBuffers' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x36DB, name = 'GetRefCount' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x36DC, name = 'GetMode' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'SetUnknown14' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'SetUnknown1c' + list[21] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[22] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[23] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[27] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[28] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[31] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x3c7e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3c7d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x3c7f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x12FE, This type = 0x1396, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3c80 : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2324, name = 'MxNextActionDataStart' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1394, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1395, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2325, name = 'GetObjectId' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2326, name = 'GetUnknown24' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2325, name = 'GetData' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C7F, name = 'SetData' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_objectId' + list[9] = LF_MEMBER, private, type = T_SHORT(0011), offset = 12 + member name = 'm_unk0x24' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_data' + list[11] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x2327, name = '~MxNextActionDataStart' + +0x3c81 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c80, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +0x3c82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1737, This type = 0x1740, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c83 : Length = 802, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36D7, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3C82, name = 'GetUnk0xc4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c8670' + list[16] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[18] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[19] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[20] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[21] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[22] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[23] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c7890' + list[26] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7970' + list[27] = LF_ONEMETHOD, private, VANILLA, index = 0x3363, name = 'FUN_100c7cb0' + list[28] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'FUN_100c7ce0' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x1757, name = 'FUN_100c7d10' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7980' + list[31] = LF_ONEMETHOD, private, VANILLA, index = 0x36D7, name = 'FUN_100c7db0' + list[32] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c8360' + list[33] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'InsertToList74' + list[34] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8540' + list[35] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8720' + +0x3c84 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3c83, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x3c85 : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'MxDiskStreamProvider' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1727, name = '~MxDiskStreamProvider' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1730, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1731, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1734, name = 'WaitForWorkToComplete' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D6, name = 'FUN_100d1780' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1727, name = 'PerformWork' + list[8] = LF_ONEMETHOD, public, STATIC, index = 0x3C74, name = 'FUN_100d1af0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x36D6, name = 'FUN_100d1b20' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1732, name = 'SetResourceToGet' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetFileSize' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36E6, name = 'GetStreamBuffersNum' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3734, name = 'VTable0x20' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1735, name = 'GetLengthInDWords' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1736, name = 'GetBufferForDWords' + list[16] = LF_MEMBER, private, type = 0x171F, offset = 16 + member name = 'm_thread' + list[17] = LF_MEMBER, private, type = 0x13C4, offset = 44 + member name = 'm_busySemaphore' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 52 + member name = 'm_remainingWork' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 53 + member name = 'm_unk0x35' + list[20] = LF_MEMBER, private, type = 0x11D9, offset = 56 + member name = 'm_criticalSection' + list[21] = LF_MEMBER, private, type = 0x12E3, offset = 84 + member name = 'm_list' + +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +0x3c87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3c88 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C87, name = 'GetUnknown9c' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown94' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown9c' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetBufferOffset' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[22] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[23] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[24] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[26] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x3c89 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c88, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x3c8a : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x36F3, name = 'PopFront' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c8b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c8a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c8c : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x36F3, name = 'PopFrontStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3c8d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c8c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3c8e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1737 + +0x3c8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x15FD, This type = 0x15FE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3c90 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C87, name = 'GetUnknown9c' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown94' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3C8F, name = 'SetUnknown9c' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetBufferOffset' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[21] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[22] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[23] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[24] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[25] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[26] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x3c91 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c90, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x3c92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x3c93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1618, This type = 0x16EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x3c94 : Length = 782, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x16F0, name = 'MxDSBuffer' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F0, name = '~MxDSBuffer' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16F3, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16F5, name = 'AllocateBuffer' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x16F6, name = 'SetBufferPointer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x36D5, name = 'FUN_100c67b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3C71, name = 'CreateObject' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x34CD, name = 'StartPresenterFromAction' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3C73, name = 'ParseChunk' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x34E3, name = 'ReadChunk' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'SkipToData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x34D4, name = 'ReleaseRef' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x34D5, name = 'AddRef' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3C92, name = 'CalcBytesRemaining' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'FUN_100c6f80' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x22DC, name = 'GetBuffer' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetWriteOffset' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x22DD, name = 'GetBytesRemaining' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x36DB, name = 'GetRefCount' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x36DC, name = 'GetMode' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'SetUnknown14' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x16F7, name = 'SetUnknown1c' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x3C93, name = 'SetUnk30' + list[24] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 8 + member name = 'm_pBuffer' + list[25] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 12 + member name = 'm_pIntoBuffer' + list[26] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 16 + member name = 'm_pIntoBuffer2' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 28 + member name = 'm_unk0x1c' + list[30] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_refcount' + list[31] = LF_MEMBER, private, type = 0x131C, offset = 36 + member name = 'm_mode' + list[32] = LF_MEMBER, private, type = T_UINT4(0075), offset = 40 + member name = 'm_writeOffset' + list[33] = LF_MEMBER, private, type = T_UINT4(0075), offset = 44 + member name = 'm_bytesRemaining' + list[34] = LF_MEMBER, private, type = 0x1607, offset = 48 + member name = 'm_unk0x30' + +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +0x3c96 : Length = 802, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36D7, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3C82, name = 'GetUnk0xc4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c8670' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34D6, name = 'InsertToList74' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c7cb0' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[20] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[21] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[23] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[24] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[25] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[27] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c7890' + list[28] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7970' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'FUN_100c7ce0' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x1757, name = 'FUN_100c7d10' + list[31] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7980' + list[32] = LF_ONEMETHOD, private, VANILLA, index = 0x36D7, name = 'FUN_100c7db0' + list[33] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c8360' + list[34] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8540' + list[35] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8720' + +0x3c97 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3c96, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x3c98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1967, This type = 0x1968, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3c99 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11C4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1969, name = 'LegoLoadCacheSoundPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1969, name = '~LegoLoadCacheSoundPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1979, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1969, name = 'Init' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x3C98, name = 'Destroy' + list[6] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 108 + member name = 'm_unk0x6c' + list[7] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 112 + member name = 'm_unk0x70' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 116 + member name = 'm_unk0x74' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 120 + member name = 'm_unk0x78' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 124 + member name = 'm_unk0x7c' + list[11] = LF_MEMBER, private, type = 0x1D31, offset = 128 + member name = 'm_unk0x7d' + +0x3c9a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c99, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 144, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +0x3c9b : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11C4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1969, name = 'LegoLoadCacheSoundPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1969, name = '~LegoLoadCacheSoundPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1979, name = 'ClassName' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1969, name = 'Init' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x3C98, name = 'Destroy' + list[6] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 108 + member name = 'm_unk0x6c' + list[7] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 112 + member name = 'm_unk0x70' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 116 + member name = 'm_unk0x74' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 120 + member name = 'm_unk0x78' + list[10] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 124 + member name = 'm_unk0x7c' + list[11] = LF_MEMBER, private, type = 0x1D31, offset = 128 + member name = 'm_unk0x80' + +0x3c9c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 144, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +0x3c9d : Length = 682, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[23] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[24] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[25] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[26] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 24 + member name = 'm_isHighColor' + list[28] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3c9e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c9d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3c9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x3ca0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x17BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ca1 : Length = 742, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3C9F, name = 'AlignToFourByte' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3C9F, name = 'AbsFlipped' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA0, name = 'dong' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[26] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[27] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[28] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[29] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[31] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3ca2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3ca3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11ED, This type = 0x1FC0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1036, This adjust = 0 + +0x3ca4 : Length = 742, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3C9F, name = 'AlignToFourByte' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AbsFlipped' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA0, name = 'dong' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[26] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[27] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[28] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[29] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[31] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3ca5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3ca6 : Length = 746, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AlignToFourByte' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AbsFlipped' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA0, name = 'GetDataSize' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[26] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[27] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[28] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[29] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[31] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3ca7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3ca8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x17C1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ca9 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1FBE, offset = 0 + member name = 'm_bmiHeader' + list[1] = LF_MEMBER, public, type = 0x1FD4, offset = 40 + member name = 'm_bmiColors' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3CA8, name = 'Size' + +0x3caa : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3ca9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +0x3cab : Length = 746, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AlignToFourByte' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AbsFlipped' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetDataSize' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[26] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[27] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[28] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[29] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[31] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3cac : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3cab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3cad : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x121F, name = 'MxVideoParamFlags' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFullScreen' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetFlipSurfaces' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetBackBuffers' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit3' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit4' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF7, name = 'Set16Bit' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetWideViewAngle' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF1bit7' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit1' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit2' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit3' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit5' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit6' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF6, name = 'SetF2bit7' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFullScreen' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetFlipSurfaces' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetBackBuffers' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit3' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit4' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'Get16Bit' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetWideViewAngle' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF1bit7' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit0' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit1' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit2' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit4' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit5' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit6' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1FF8, name = 'GetF2bit7' + list[32] = LF_MEMBER, private, type = 0x3351, offset = 0 + member name = 'm_flags1' + list[33] = LF_MEMBER, private, type = 0x3351, offset = 1 + member name = 'm_flags2' + +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +0x3caf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x12FF, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3362, This adjust = 0 + +0x3cb0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x137B + +0x3cb1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3CB0 + list[1] = T_UCHAR(0020) + list[2] = T_SHORT(0011) + +0x3cb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x11CD, This type = 0x159E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3cb1, This adjust = 0 + +0x3cb3 : Length = 642, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x108B, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x26E5, name = 'MxDSStreamingAction' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1605, name = '~MxDSStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1608, name = 'CopyFrom' + list[4] = LF_METHOD, count = 2, list = 0x26E8, name = 'operator=' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1601, name = 'HasId' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'Init' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1609, name = 'SetInternalAction' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1605, name = 'FUN_100cd2d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetUnknown94' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3C87, name = 'GetUnknown9c' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3369, name = 'GetUnknowna4' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1606, name = 'GetUnknowna8' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x34C7, name = 'GetInternalAction' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3368, name = 'GetBufferOffset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetUnknown94' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3C8F, name = 'SetUnknown9c' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x336A, name = 'SetUnknowna0' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x36D0, name = 'SetBufferOffset' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 148 + member name = 'm_unk0x94' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 152 + member name = 'm_bufferOffset' + list[22] = LF_MEMBER, private, type = T_INT4(0074), offset = 156 + member name = 'm_unk0x9c' + list[23] = LF_MEMBER, private, type = 0x1619, offset = 160 + member name = 'm_unk0xa0' + list[24] = LF_MEMBER, private, type = 0x1619, offset = 164 + member name = 'm_unk0xa4' + list[25] = LF_MEMBER, private, type = T_LONG(0012), offset = 168 + member name = 'm_unk0xa8' + list[26] = LF_MEMBER, private, type = T_USHORT(0021), offset = 172 + member name = 'm_unk0xac' + list[27] = LF_MEMBER, private, type = 0x109C, offset = 176 + member name = 'm_internalAction' + +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +0x3cb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x138E, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3CB0, Class type = 0x12DE, This type = 0x1367, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cb7 : Length = 862, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x136A, name = 'MxStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x136A, name = '~MxStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1379, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x137A, name = 'IsA' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138B, + vfptr offset = 20, name = 'Open' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 24, name = 'VTable0x18' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1368, + vfptr offset = 28, name = 'VTable0x1c' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 32, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36CF, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1391, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x138D, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'AddSubscriber' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x36F9, name = 'RemoveSubscriber' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1800' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1391, name = 'FUN_100c1a00' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x34A5, name = 'FUN_100c1e70' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'FUN_100c1f00' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1397, name = 'FUN_100c20d0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x138D, name = 'InsertActionToList54' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x3CAF, name = 'FindNextActionDataStartFromStreamingAction' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1CA2, name = 'GetAtom' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB5, name = 'GetProvider' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x3c' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x34AC, name = 'GetUnk0x54' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB6, name = 'GetSubscriberList' + list[27] = LF_MEMBER, protected, type = 0x11D9, offset = 8 + member name = 'm_criticalSection' + list[28] = LF_MEMBER, protected, type = 0x1064, offset = 36 + member name = 'm_atom' + list[29] = LF_MEMBER, protected, type = 0x138E, offset = 40 + member name = 'm_provider' + list[30] = LF_MEMBER, protected, type = T_32PUINT4(0475), offset = 44 + member name = 'm_unk0x2c' + list[31] = LF_MEMBER, protected, type = 0x137B, offset = 48 + member name = 'm_subscriberList' + list[32] = LF_MEMBER, protected, type = 0x12E3, offset = 60 + member name = 'm_unk0x3c' + list[33] = LF_MEMBER, protected, type = 0x1300, offset = 72 + member name = 'm_nextActionList' + list[34] = LF_MEMBER, protected, type = 0x12E3, offset = 84 + member name = 'm_unk0x54' + list[35] = LF_MEMBER, protected, type = 0x109C, offset = 96 + member name = 'm_action0x60' + +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +0x3cb9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_LONG(0012) + +0x3cba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3CB9, Class type = 0x16E8, This type = 0x16E9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x16E8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cbc : Length = 446, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1EC4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3CBA, name = 'GetTimeRef' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[19] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[20] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[21] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[22] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[23] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x3cbd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3cbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x3cbe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x11CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1889, This adjust = 0 + +0x3cbf : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus8Ptr' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus10Ptr' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus14Ptr' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus18Ptr' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cc0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cbf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUSHORT(0421), Class type = 0x11CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x3cc2 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_Bit2' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[4] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[5] = LF_ENUMERATE, public, value = 128, name = 'Flag_Bit8' + list[6] = LF_ENUMERATE, public, value = (LF_USHORT) 32768, name = 'Flag_Bit16' + +0x3cc3 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 7, type = T_INT4(0074) field list type 0x3cc2 +NESTED, enum name = MxDSChunk::__unnamed + +0x3cc4 : Length = 446, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3CC3, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3CBA, name = 'GetTimeRef' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[19] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[20] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[21] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[22] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[23] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x3cc5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3cc4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x3cc6 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus10Ptr' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus14Ptr' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus18Ptr' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cc7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cc6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cc8 : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3CC3, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[19] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[20] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[22] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x3cc9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3cc8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x3cca : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3ccb : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3cca, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3ccc : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x11DA + list[1] = 0x109C + list[2] = T_UCHAR(0020) + +0x3ccd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x109C, Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3ccc, This adjust = 0 + +0x3cce : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3CCD, name = 'LockedFind' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x36F3, name = 'PopFrontStreamingAction' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3ccf : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3cce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3cd0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x11D9 + +0x3cd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUINT4(0475), Class type = 0x11CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x3cd2 : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus18' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus10Ptr' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus14Ptr' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cd3 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cd4 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0x12' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus10Ptr' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CBE, name = 'ReturnPlus14Ptr' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cd5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cd6 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0x12' + list[12] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cd7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3cd6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cd8 : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0x12' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0xa' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0xe' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x3cd9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x3cda : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_SHORT(0011) + list[1] = T_SHORT(0011) + list[2] = T_SHORT(0011) + list[3] = T_SHORT(0011) + list[4] = T_SHORT(0011) + list[5] = T_SHORT(0011) + +0x3cdb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x3cda, This adjust = 0 + +0x3cdc : Length = 26, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_LONG(0012), offset = 0 + member name = 'x' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'y' + +0x3cdd : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3cdc, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = tagPOINT, UDT(0x00003cdd) + +0x3cde : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cdf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x124a, This adjust = 0 + +0x3ce0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ce1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x11f7, This adjust = 0 + +0x3ce2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124e, This adjust = 0 + +0x3ce3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1234, This adjust = 0 + +0x3ce4 : Length = 1182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CDE, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk0x64' + list[20] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[23] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[24] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[28] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk0x4e8' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[32] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[33] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[34] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[37] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[41] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[42] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[45] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[46] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[47] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[48] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[49] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[50] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[51] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x3ce5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 53, field list type 0x3ce4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x3ce6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2EC7, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ce7 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 120 + Name = + +0x3ce8 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[3] = LF_MEMBER, private, type = T_UINT4(0075), offset = 0 + member name = 'm_vtable' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[5] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[6] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[7] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[8] = LF_MEMBER, private, type = 0x3CE7, offset = 20 + member name = 'm_pad' + list[9] = LF_MEMBER, private, type = 0x29B7, offset = 140 + member name = 'm_viewManager' + +0x3ce9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ce8, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 144, class name = Lego3DView, UDT(0x00004e47) + +0x3cea : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CDB, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3ceb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3cea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3cec : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + +0x3ced : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 6, Arg list type = 0x3cec, This adjust = 0 + +0x3cee : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3cef : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3cee, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3cf0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1C1A, Class type = 0x108B, This type = 0x108C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3cf1 : Length = 1078, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1082, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3378, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x108D, name = 'MxDSAction' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x108D, name = '~MxDSAction' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1090, name = 'CopyFrom' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1091, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1094, name = 'ClassName' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1095, name = 'IsA' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1096, name = 'GetSizeOnDisk' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34FC, name = 'Deserialize' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 36, name = 'GetDuration' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 40, name = 'SetDuration' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109D, + vfptr offset = 44, name = 'Clone' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1090, + vfptr offset = 48, name = 'MergeFrom' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109F, + vfptr offset = 52, name = 'HasId' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109B, + vfptr offset = 56, name = 'SetUnknown90' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 60, name = 'GetUnknown90' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x109A, + vfptr offset = 64, name = 'GetElapsedTime' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x10A1, name = 'AppendData' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1096, name = 'GetFlags' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'SetFlags' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x10A3, name = 'GetExtraData' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x10A4, name = 'GetExtraLength' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x10A5, name = 'GetStartTime' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x10A6, name = 'GetLoopCount' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x10A8, name = 'SetLoopCount' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x3CF0, name = 'GetLocation' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x3CF0, name = 'GetDirection' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x3CF0, name = 'GetUp' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetUnknown84' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetUnknown84' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x10B1, name = 'GetOrigin' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x10B0, name = 'SetOrigin' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsLooping' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x10B2, name = 'IsBit3' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x10A2, name = 'CopyFlags' + list[36] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 44 + member name = 'm_sizeOnDisk' + list[37] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 48 + member name = 'm_flags' + list[38] = LF_MEMBER, protected, type = T_LONG(0012), offset = 52 + member name = 'm_startTime' + list[39] = LF_MEMBER, protected, type = T_LONG(0012), offset = 56 + member name = 'm_duration' + list[40] = LF_MEMBER, protected, type = T_INT4(0074), offset = 60 + member name = 'm_loopCount' + list[41] = LF_MEMBER, protected, type = 0x10A9, offset = 64 + member name = 'm_location' + list[42] = LF_MEMBER, protected, type = 0x10A9, offset = 84 + member name = 'm_direction' + list[43] = LF_MEMBER, protected, type = 0x10A9, offset = 104 + member name = 'm_up' + list[44] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 124 + member name = 'm_extraData' + list[45] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 128 + member name = 'm_extraLength' + list[46] = LF_MEMBER, protected, type = 0x10AE, offset = 132 + member name = 'm_unk0x84' + list[47] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 136 + member name = 'm_unk0x88' + list[48] = LF_MEMBER, protected, type = 0x10AE, offset = 140 + member name = 'm_origin' + list[49] = LF_MEMBER, protected, type = T_LONG(0012), offset = 144 + member name = 'm_unk0x90' + +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +0x3cf3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x149C, Class type = 0x1242, This type = 0x143D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3cf4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1913 + +0x3cf5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3cf4, This adjust = 0 + +0x3cf6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x3cf7 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1C1A + list[1] = 0x1C1A + list[2] = 0x1C1A + list[3] = T_UCHAR(0020) + +0x3cf8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1912, This type = 0x19F2, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3cf7, This adjust = 0 + +0x3cf9 : Length = 806, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x149B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'LegoEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19F3, name = '~LegoEntity' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19FC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AEE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F8, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 28, name = 'Destroy' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FB, + vfptr offset = 32, name = 'ParseAction' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19FA, + vfptr offset = 36, name = 'SetROI' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F7, + vfptr offset = 40, name = 'SetWorldTransform' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F4, + vfptr offset = 44, name = 'ResetWorldTransform' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1B25, + vfptr offset = 48, name = 'SetWorldSpeed' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 56, name = 'VTable0x38' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 60, name = 'VTable0x3c' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 64, name = 'VTable0x40' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 72, name = 'VTable0x48' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19F3, + vfptr offset = 76, name = 'VTable0x4c' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x19F3, name = 'FUN_10010c30' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x3CF8, name = 'SetLocation' + list[22] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'Init' + list[23] = LF_ONEMETHOD, protected, VANILLA, index = 0x19F3, name = 'SetWorld' + list[24] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[25] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 17 + member name = 'm_unk0x11' + list[26] = LF_MEMBER, protected, type = 0x10A9, offset = 20 + member name = 'm_worldLocation' + list[27] = LF_MEMBER, protected, type = 0x10A9, offset = 40 + member name = 'm_worldDirection' + list[28] = LF_MEMBER, protected, type = 0x10A9, offset = 60 + member name = 'm_worldUp' + list[29] = LF_MEMBER, protected, type = T_REAL32(0040), offset = 80 + member name = 'm_worldSpeed' + list[30] = LF_MEMBER, protected, type = 0x1910, offset = 84 + member name = 'm_roi' + list[31] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 88 + member name = 'm_cameraFlag' + list[32] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 89 + member name = 'm_unk0x59' + list[33] = LF_MEMBER, protected, type = 0x1050, offset = 92 + member name = 'm_actionType' + list[34] = LF_MEMBER, protected, type = T_32PRCHAR(0470), offset = 96 + member name = 'm_actionArgString' + list[35] = LF_MEMBER, protected, type = T_INT4(0074), offset = 100 + member name = 'm_actionArgNumber' + +0x3cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +0x3cfb : Length = 970, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1441, TickleState + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x143E, name = 'MxPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143E, name = '~MxPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x143F, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A32, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A33, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 20, name = 'VTable0x14' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 24, name = 'ReadyTickle' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 28, name = 'StartingTickle' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 32, name = 'StreamingTickle' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 36, name = 'RepeatingTickle' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 40, name = 'Unk5Tickle' + list[13] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 44, name = 'DoneTickle' + list[14] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 48, name = 'ParseExtra' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 52, name = 'AddToManager' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 56, name = 'Destroy' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1447, + vfptr offset = 60, name = 'StartAction' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143E, + vfptr offset = 64, name = 'EndAction' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1443, + vfptr offset = 68, name = 'SetTickleState' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1444, + vfptr offset = 72, name = 'HasTickleStatePassed' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x143F, + vfptr offset = 76, name = 'PutData' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1445, + vfptr offset = 80, name = 'IsHit' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x144C, + vfptr offset = 84, name = 'Enable' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x3CF3, name = 'CreateEntityBackend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1450, name = 'IsEnabled' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetCurrentTickleState' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1C66, name = 'GetLocation' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1C65, name = 'GetDisplayZ' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1C67, name = 'GetAction' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x2F1A, name = 'SetCompositePresenter' + list[31] = LF_ONEMETHOD, protected, VANILLA, index = 0x143E, name = 'Init' + list[32] = LF_ONEMETHOD, protected, VANILLA, index = 0x144B, name = 'SendToCompositePresenter' + list[33] = LF_MEMBER, protected, type = 0x1441, offset = 8 + member name = 'm_currentTickleState' + list[34] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_previousTickleStates' + list[35] = LF_MEMBER, protected, type = 0x1200, offset = 16 + member name = 'm_location' + list[36] = LF_MEMBER, protected, type = T_INT4(0074), offset = 24 + member name = 'm_displayZ' + list[37] = LF_MEMBER, protected, type = 0x109C, offset = 28 + member name = 'm_action' + list[38] = LF_MEMBER, protected, type = 0x11D9, offset = 32 + member name = 'm_criticalSection' + list[39] = LF_MEMBER, protected, type = 0x1C68, offset = 60 + member name = 'm_compositePresenter' + +0x3cfc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x3cfb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +0x3cfd : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'ParseExtra' + list[8] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CF6, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CF5, + vfptr offset = 108, name = 'SetBackend' + list[12] = LF_MEMBER, private, type = 0x1913, offset = 76 + member name = 'm_objectBackend' + +0x3cfe : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3cfd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x3cff : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 516 + Name = + +0x3d00 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1810, This type = 0x1812, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1446, This adjust = 0 + +0x3d01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1810, This type = 0x1812, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x3d02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x19b1, This adjust = 0 + +0x3d03 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1C1A + list[1] = 0x1C1A + list[2] = 0x1C1A + +0x3d04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x19E9, This type = 0x19EA, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3d03, This adjust = 0 + +0x3d05 : Length = 1326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34B4, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x3D02, name = 'AddWorld' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[37] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[38] = LF_MEMBER, private, type = 0x36AB, offset = 108 + member name = 'm_renderMgr' + list[39] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[40] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[41] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[42] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[43] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_unk0x80' + list[44] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[45] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[46] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[47] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[48] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[49] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[50] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[51] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[52] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[53] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x3d06 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x3d05, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x3d07 : Length = 306, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19EB, name = 'LegoEntityPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = '~LegoEntityPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'ReadyTickle' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'RepeatingTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19EB, name = 'ParseExtra' + list[8] = LF_METHOD, count = 2, list = 0x2090, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CF6, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x19EB, + vfptr offset = 104, name = 'Init' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CF5, + vfptr offset = 108, name = 'SetBackend' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3D04, name = 'SetBackendLocation' + list[13] = LF_MEMBER, protected, type = 0x1913, offset = 76 + member name = 'm_objectBackend' + +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +0x3d09 : Length = 262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1813, name = 'LegoWorldPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = '~LegoWorldPresenter' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1811, name = 'configureLegoWorldPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1816, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1817, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1813, name = 'ParseExtra' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D00, name = 'StartAction' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D01, name = 'VTable0x60' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 80 + member name = 'm_unk0x50' + +0x3d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +0x3d0b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Lego3DWavePresenter, UDT(0x00003de1) + +0x3d0c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D0B + +0x3d0d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D0C + +0x3d0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D0B, This type = 0x3D0D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D0B, This type = 0x3D0D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d10 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoRaceActor, UDT(0x00003db5) + +0x3d11 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D10 + +0x3d12 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D11 + +0x3d13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D10, This type = 0x3D12, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D10, This type = 0x3D12, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d15 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoCarRaceActor, UDT(0x00003db7) + +0x3d16 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D15 + +0x3d17 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D16 + +0x3d18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D15, This type = 0x3D17, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d19 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D15, This type = 0x3D17, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d1a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAct2State, UDT(0x00003dad) + +0x3d1b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D1A + +0x3d1c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D1B + +0x3d1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D1A, This type = 0x3D1C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D1A, This type = 0x3D1C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d1f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoActorPresenter, UDT(0x00003de4) + +0x3d20 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D1F + +0x3d21 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D20 + +0x3d22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D1F, This type = 0x3D21, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D1F, This type = 0x3D21, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d24 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoJetskiRaceActor, UDT(0x00003db9) + +0x3d25 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D24 + +0x3d26 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D25 + +0x3d27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D24, This type = 0x3D26, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D24, This type = 0x3D26, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d29 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoJetski, UDT(0x00003dbc) + +0x3d2a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D29 + +0x3d2b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D2A + +0x3d2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D29, This type = 0x3D2B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D29, This type = 0x3D2B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d2e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoRaceCar, UDT(0x00003de7) + +0x3d2f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D2E + +0x3d30 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D2F + +0x3d31 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D2E, This type = 0x3D30, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D2E, This type = 0x3D30, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d33 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Doors, UDT(0x00003dea) + +0x3d34 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D33 + +0x3d35 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D34 + +0x3d36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D33, This type = 0x3D35, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d37 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D33, This type = 0x3D35, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act3Actor, UDT(0x00004e9b) + +0x3d39 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D38 + +0x3d3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D38, This type = 0x3D39, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d3b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Act3Shark, UDT(0x00003d85) + +0x3d3c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D3B + +0x3d3d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D3C + +0x3d3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D3B, This type = 0x3D3D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d3f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = BumpBouy, UDT(0x00003d8f) + +0x3d40 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D3F + +0x3d41 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D40 + +0x3d42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D3F, This type = 0x3D41, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d43 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D3F, This type = 0x3D41, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d44 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = CarRaceState, UDT(0x00003df0) + +0x3d45 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D44 + +0x3d46 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D45 + +0x3d47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D44, This type = 0x3D46, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d48 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D44, This type = 0x3D46, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d49 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = GasStationEntity, UDT(0x00003d96) + +0x3d4a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D49 + +0x3d4b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D4A + +0x3d4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D49, This type = 0x3D4B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D49, This type = 0x3D4B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d4e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = HospitalEntity, UDT(0x00003d9e) + +0x3d4f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D4E + +0x3d50 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D4F + +0x3d51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D4E, This type = 0x3D50, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D4E, This type = 0x3D50, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d53 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = InfoCenterEntity, UDT(0x00003da3) + +0x3d54 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D53 + +0x3d55 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D54 + +0x3d56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D53, This type = 0x3D55, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D53, This type = 0x3D55, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d58 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = JetskiRaceState, UDT(0x00003df3) + +0x3d59 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D58 + +0x3d5a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D59 + +0x3d5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D58, This type = 0x3D5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D58, This type = 0x3D5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d5d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = PoliceEntity, UDT(0x00003dd7) + +0x3d5e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D5D + +0x3d5f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D5E + +0x3d60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D5D, This type = 0x3D5F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d61 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3D5D, This type = 0x3D5F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x3d62 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x195E + +0x3d63 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D1F + +0x3d64 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x18E7 + +0x3d65 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D0B + +0x3d66 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D2E + +0x3d67 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D15 + +0x3d68 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D15, This type = 0x3D67, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d69 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D29 + +0x3d6a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D24 + +0x3d6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D24, This type = 0x3D6A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d6c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D10 + +0x3d6d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D10, This type = 0x3D6C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d6e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAnimActor, UDT(0x00003d87) + +0x3d6f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D6E + +0x3d70 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = LegoAct2, UDT(0x00003df6) + +0x3d71 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D70 + +0x3d72 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D1A + +0x3d73 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D33 + +0x3d74 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D3B + +0x3d75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D6E, This type = 0x3D6F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d76 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D3F + +0x3d77 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D58 + +0x3d78 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D44 + +0x3d79 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x343D + +0x3d7a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D53 + +0x3d7b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D4E + +0x3d7c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D49 + +0x3d7d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D5D + +0x3d7e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = RaceStandsEntity, UDT(0x00003df9) + +0x3d7f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3D7E + +0x3d80 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1B1F, This type = 0x1B20, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d81 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1B21, name = 'Notify' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1C32, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1C33, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D80, name = 'Act2PoliceStation' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D80, name = '~Act2PoliceStation' + +0x3d82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3d81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = Act2PoliceStation, UDT(0x00003d82) + +0x3d83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D3B, This type = 0x3D74, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d84 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D6E, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D3E, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D83, name = 'Act3Shark' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D83, name = '~Act3Shark' + +0x3d85 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3d84, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = Act3Shark, UDT(0x00003d85) + +0x3d86 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D75, name = 'LegoAnimActor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D75, name = '~LegoAnimActor' + +0x3d87 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3d86, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoAnimActor, UDT(0x00003d87) + +0x3d88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1AFA, This type = 0x1AFB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d89 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AFC, name = 'Notify' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D2B, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1D2C, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D88, name = 'BeachHouseEntity' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D88, name = '~BeachHouseEntity' + +0x3d8a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3d89, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = BeachHouseEntity, UDT(0x00003d8a) + +0x3d8b : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AF5, name = 'Bike' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF8, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AF9, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + +0x3d8c : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d8b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +0x3d8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D3F, This type = 0x3D76, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d8e : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D6E, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D42, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D43, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D8D, name = 'BumpBouy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D8D, name = '~BumpBouy' + +0x3d8f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = BumpBouy, UDT(0x00003d8f) + +0x3d90 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18B1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AE3, name = 'CarRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE6, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE7, name = 'IsA' + +0x3d91 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3d90, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = CarRace, UDT(0x00003e0d) + +0x3d92 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ADA, name = 'DuneBuggy' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADD, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ADE, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 360 + member name = 'm_unk0x168' + +0x3d93 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3d92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +0x3d94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D49, This type = 0x3D7C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d95 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D4C, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D4D, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D94, name = 'GasStationEntity' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D94, name = '~GasStationEntity' + +0x3d96 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d95, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = GasStationEntity, UDT(0x00003d96) + +0x3d97 : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AC2, name = 'GasStationState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AC5, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AC6, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1D3D, offset = 8 + member name = 'm_unk0x08' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, private, type = T_USHORT(0021), offset = 26 + member name = 'm_unk0x1a' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 28 + member name = 'm_unk0x1c' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 30 + member name = 'm_unk0x1e' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 32 + member name = 'm_unk0x20' + +0x3d98 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3d97, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = GasStationState, UDT(0x00003d98) + +0x3d99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E49, This type = 0x2992, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d9a : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2990, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2991, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2993, name = 'SetUnknown8' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x33F6, name = 'GetUnkown8' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D99, name = 'HelicopterState' + list[7] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D99, name = '~HelicopterState' + +0x3d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +0x3d9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D4E, This type = 0x3D7B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3d9d : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D51, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D52, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D9C, name = 'HospitalEntity' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D9C, name = '~HospitalEntity' + +0x3d9e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d9d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = HospitalEntity, UDT(0x00003d9e) + +0x3d9f : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A9C, name = 'HospitalState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A9F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA0, name = 'IsA' + +0x3da0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3d9f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = HospitalState, UDT(0x00003e13) + +0x3da1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D53, This type = 0x3D7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3da2 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D56, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D57, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DA1, name = 'InfoCenterEntity' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DA1, name = '~InfoCenterEntity' + +0x3da3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3da2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = InfoCenterEntity, UDT(0x00003da3) + +0x3da4 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A71, name = 'Jetski' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A74, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A75, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + +0x3da5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3da4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +0x3da6 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A6A, name = 'JukeBox' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6D, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A6E, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 248 + member name = 'm_unk0xf8' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 256 + member name = 'm_unk0x100' + +0x3da7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3da6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = JukeBox, UDT(0x00003da7) + +0x3da8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A5E, This type = 0x1A5F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3da9 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EBF, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1EC0, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A60, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DA8, name = 'JukeBoxState' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DA8, name = '~JukeBoxState' + +0x3daa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3da9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = JukeBoxState, UDT(0x00003daa) + +0x3dab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D1A, This type = 0x3D72, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dac : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D1D, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D1E, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DAB, name = 'LegoAct2State' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DAB, name = '~LegoAct2State' + +0x3dad : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = LegoAct2State, UDT(0x00003dad) + +0x3dae : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x17AC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A42, name = 'LegoAnimMMPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A45, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A46, name = 'IsA' + +0x3daf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +0x3db0 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19E4, name = 'LegoFlcTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E8, name = 'ClassName' + +0x3db1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3db0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +0x3db2 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19BC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19BB, name = 'LegoHideAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19C3, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19C4, name = 'IsA' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x19BB, name = 'Init' + +0x3db3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3db2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoHideAnimPresenter, UDT(0x00003db3) + +0x3db4 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D6E, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D13, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D14, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D6D, name = 'LegoRaceActor' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D6D, name = '~LegoRaceActor' + +0x3db5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3db4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoRaceActor, UDT(0x00003db5) + +0x3db6 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D10, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D18, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D19, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D68, name = 'LegoCarRaceActor' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D68, name = '~LegoCarRaceActor' + +0x3db7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3db6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoCarRaceActor, UDT(0x00003db7) + +0x3db8 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D27, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D28, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3D6B, name = 'LegoJetskiRaceActor' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3D6B, name = '~LegoJetskiRaceActor' + +0x3db9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3db8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoJetskiRaceActor, UDT(0x00003db9) + +0x3dba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D29, This type = 0x3D69, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dbb : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D24, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D2C, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D2D, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DBA, name = 'LegoJetski' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DBA, name = '~LegoJetski' + +0x3dbc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dbb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoJetski, UDT(0x00003dbc) + +0x3dbd : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19BC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1962, name = 'LegoLocomotionAnimPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1965, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1966, name = 'IsA' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x1962, name = 'Init' + +0x3dbe : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dbd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoLocomotionAnimPresenter, UDT(0x00003dbe) + +0x3dbf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x195E, This type = 0x3D62, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dc0 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x195F, name = 'configureLegoModelPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2182, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2183, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DBF, name = 'LegoModelPresenter' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DBF, name = '~LegoModelPresenter' + +0x3dc1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +0x3dc2 : Length = 2646, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1480, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1944, name = 'LegoObjectFactory' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1949, name = 'Create' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x194A, name = 'Destroy' + list[4] = LF_MEMBER, private, type = 0x1064, offset = 56 + member name = 'm_idLegoModelPresenter' + list[5] = LF_MEMBER, private, type = 0x1064, offset = 60 + member name = 'm_idLegoTexturePresenter' + list[6] = LF_MEMBER, private, type = 0x1064, offset = 64 + member name = 'm_idLegoPhonemePresenter' + list[7] = LF_MEMBER, private, type = 0x1064, offset = 68 + member name = 'm_idLegoFlcTexturePresenter' + list[8] = LF_MEMBER, private, type = 0x1064, offset = 72 + member name = 'm_idLegoEntityPresenter' + list[9] = LF_MEMBER, private, type = 0x1064, offset = 76 + member name = 'm_idLegoActorPresenter' + list[10] = LF_MEMBER, private, type = 0x1064, offset = 80 + member name = 'm_idLegoWorldPresenter' + list[11] = LF_MEMBER, private, type = 0x1064, offset = 84 + member name = 'm_idLegoWorld' + list[12] = LF_MEMBER, private, type = 0x1064, offset = 88 + member name = 'm_idLegoPalettePresenter' + list[13] = LF_MEMBER, private, type = 0x1064, offset = 92 + member name = 'm_idLegoPathPresenter' + list[14] = LF_MEMBER, private, type = 0x1064, offset = 96 + member name = 'm_idLegoAnimPresenter' + list[15] = LF_MEMBER, private, type = 0x1064, offset = 100 + member name = 'm_idLegoLoopingAnimPresenter' + list[16] = LF_MEMBER, private, type = 0x1064, offset = 104 + member name = 'm_idLegoLocomotionAnimPresenter' + list[17] = LF_MEMBER, private, type = 0x1064, offset = 108 + member name = 'm_idLegoHideAnimPresenter' + list[18] = LF_MEMBER, private, type = 0x1064, offset = 112 + member name = 'm_idLegoPartPresenter' + list[19] = LF_MEMBER, private, type = 0x1064, offset = 116 + member name = 'm_idLegoCarBuildAnimPresenter' + list[20] = LF_MEMBER, private, type = 0x1064, offset = 120 + member name = 'm_idLegoActionControlPresenter' + list[21] = LF_MEMBER, private, type = 0x1064, offset = 124 + member name = 'm_idMxVideoPresenter' + list[22] = LF_MEMBER, private, type = 0x1064, offset = 128 + member name = 'm_idLegoLoadCacheSoundPresenter' + list[23] = LF_MEMBER, private, type = 0x1064, offset = 132 + member name = 'm_idLego3DWavePresenter' + list[24] = LF_MEMBER, private, type = 0x1064, offset = 136 + member name = 'm_idLegoActor' + list[25] = LF_MEMBER, private, type = 0x1064, offset = 140 + member name = 'm_idLegoPathActor' + list[26] = LF_MEMBER, private, type = 0x1064, offset = 144 + member name = 'm_idLegoRaceCar' + list[27] = LF_MEMBER, private, type = 0x1064, offset = 148 + member name = 'm_idLegoJetski' + list[28] = LF_MEMBER, private, type = 0x1064, offset = 152 + member name = 'm_idLegoEntity' + list[29] = LF_MEMBER, private, type = 0x1064, offset = 156 + member name = 'm_idLegoCarRaceActor' + list[30] = LF_MEMBER, private, type = 0x1064, offset = 160 + member name = 'm_idLegoJetskiRaceActor' + list[31] = LF_MEMBER, private, type = 0x1064, offset = 164 + member name = 'm_idLegoCarBuild' + list[32] = LF_MEMBER, private, type = 0x1064, offset = 168 + member name = 'm_idInfocenter' + list[33] = LF_MEMBER, private, type = 0x1064, offset = 172 + member name = 'm_idLegoAnimActor' + list[34] = LF_MEMBER, private, type = 0x1064, offset = 176 + member name = 'm_idMxControlPresenter' + list[35] = LF_MEMBER, private, type = 0x1064, offset = 180 + member name = 'm_idRegistrationBook' + list[36] = LF_MEMBER, private, type = 0x1064, offset = 184 + member name = 'm_idHistoryBook' + list[37] = LF_MEMBER, private, type = 0x1064, offset = 188 + member name = 'm_idElevatorBottom' + list[38] = LF_MEMBER, private, type = 0x1064, offset = 192 + member name = 'm_idInfocenterDoor' + list[39] = LF_MEMBER, private, type = 0x1064, offset = 196 + member name = 'm_idScore' + list[40] = LF_MEMBER, private, type = 0x1064, offset = 200 + member name = 'm_idScoreState' + list[41] = LF_MEMBER, private, type = 0x1064, offset = 204 + member name = 'm_idHospital' + list[42] = LF_MEMBER, private, type = 0x1064, offset = 208 + member name = 'm_idIsle' + list[43] = LF_MEMBER, private, type = 0x1064, offset = 212 + member name = 'm_idPolice' + list[44] = LF_MEMBER, private, type = 0x1064, offset = 216 + member name = 'm_idGasStation' + list[45] = LF_MEMBER, private, type = 0x1064, offset = 220 + member name = 'm_idLegoAct2' + list[46] = LF_MEMBER, private, type = 0x1064, offset = 224 + member name = 'm_idLegoAct2State' + list[47] = LF_MEMBER, private, type = 0x1064, offset = 228 + member name = 'm_idHospitalState' + list[48] = LF_MEMBER, private, type = 0x1064, offset = 232 + member name = 'm_idInfocenterState' + list[49] = LF_MEMBER, private, type = 0x1064, offset = 236 + member name = 'm_idPoliceState' + list[50] = LF_MEMBER, private, type = 0x1064, offset = 240 + member name = 'm_idGasStationState' + list[51] = LF_MEMBER, private, type = 0x1064, offset = 244 + member name = 'm_idSkateBoard' + list[52] = LF_MEMBER, private, type = 0x1064, offset = 248 + member name = 'm_idHelicopter' + list[53] = LF_MEMBER, private, type = 0x1064, offset = 252 + member name = 'm_idHelicopterState' + list[54] = LF_MEMBER, private, type = 0x1064, offset = 256 + member name = 'm_idDuneBuggy' + list[55] = LF_MEMBER, private, type = 0x1064, offset = 260 + member name = 'm_idPizza' + list[56] = LF_MEMBER, private, type = 0x1064, offset = 264 + member name = 'm_idPizzaMissionState' + list[57] = LF_MEMBER, private, type = 0x1064, offset = 268 + member name = 'm_idAct2PoliceStation' + list[58] = LF_MEMBER, private, type = 0x1064, offset = 272 + member name = 'm_idAct3' + list[59] = LF_MEMBER, private, type = 0x1064, offset = 276 + member name = 'm_idAct3State' + list[60] = LF_MEMBER, private, type = 0x1064, offset = 280 + member name = 'm_idDoors' + list[61] = LF_MEMBER, private, type = 0x1064, offset = 284 + member name = 'm_idLegoAnimMMPresenter' + list[62] = LF_MEMBER, private, type = 0x1064, offset = 288 + member name = 'm_idRaceCar' + list[63] = LF_MEMBER, private, type = 0x1064, offset = 292 + member name = 'm_idJetski' + list[64] = LF_MEMBER, private, type = 0x1064, offset = 296 + member name = 'm_idBike' + list[65] = LF_MEMBER, private, type = 0x1064, offset = 300 + member name = 'm_idMotorcycle' + list[66] = LF_MEMBER, private, type = 0x1064, offset = 304 + member name = 'm_idAmbulance' + list[67] = LF_MEMBER, private, type = 0x1064, offset = 308 + member name = 'm_idAmbulanceMissionState' + list[68] = LF_MEMBER, private, type = 0x1064, offset = 312 + member name = 'm_idTowTrack' + list[69] = LF_MEMBER, private, type = 0x1064, offset = 316 + member name = 'm_idTowTrackMissionState' + list[70] = LF_MEMBER, private, type = 0x1064, offset = 320 + member name = 'm_idAct3Shark' + list[71] = LF_MEMBER, private, type = 0x1064, offset = 324 + member name = 'm_idBumpBouy' + list[72] = LF_MEMBER, private, type = 0x1064, offset = 328 + member name = 'm_idAct3Actor' + list[73] = LF_MEMBER, private, type = 0x1064, offset = 332 + member name = 'm_idJetskiRaceState' + list[74] = LF_MEMBER, private, type = 0x1064, offset = 336 + member name = 'm_idCarRaceState' + list[75] = LF_MEMBER, private, type = 0x1064, offset = 340 + member name = 'm_idAct1State' + list[76] = LF_MEMBER, private, type = 0x1064, offset = 344 + member name = 'm_idPizzeria' + list[77] = LF_MEMBER, private, type = 0x1064, offset = 348 + member name = 'm_idPizzeriaState' + list[78] = LF_MEMBER, private, type = 0x1064, offset = 352 + member name = 'm_idInfoCenterEntity' + list[79] = LF_MEMBER, private, type = 0x1064, offset = 356 + member name = 'm_idHospitalEntity' + list[80] = LF_MEMBER, private, type = 0x1064, offset = 360 + member name = 'm_idGasStationEntity' + list[81] = LF_MEMBER, private, type = 0x1064, offset = 364 + member name = 'm_idPoliceEntity' + list[82] = LF_MEMBER, private, type = 0x1064, offset = 368 + member name = 'm_idBeachHouseEntity' + list[83] = LF_MEMBER, private, type = 0x1064, offset = 372 + member name = 'm_idRaceStandsEntity' + list[84] = LF_MEMBER, private, type = 0x1064, offset = 376 + member name = 'm_idJukeBoxEntity' + list[85] = LF_MEMBER, private, type = 0x1064, offset = 380 + member name = 'm_idRadioState' + list[86] = LF_MEMBER, private, type = 0x1064, offset = 384 + member name = 'm_idMxCompositeMediaPresenter' + list[87] = LF_MEMBER, private, type = 0x1064, offset = 388 + member name = 'm_idJukeBox' + list[88] = LF_MEMBER, private, type = 0x1064, offset = 392 + member name = 'm_idJukeBoxState' + list[89] = LF_MEMBER, private, type = 0x1064, offset = 396 + member name = 'm_idAnimState' + +0x3dc3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 90, field list type 0x3dc2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 400, class name = LegoObjectFactory, UDT(0x00003dc3) + +0x3dc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18E7, This type = 0x3D64, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dc5 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x22F4, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x22F5, name = 'IsA' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18E8, name = 'configureLegoPartPresenter' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DC4, name = 'LegoPartPresenter' + list[5] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DC4, name = '~LegoPartPresenter' + +0x3dc6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoPartPresenter, UDT(0x00003dc6) + +0x3dc7 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18CD, name = 'LegoPathPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D0, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D1, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CD, name = 'RepeatingTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18CD, name = 'ParseExtra' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18D2, name = 'AddToManager' + list[7] = LF_METHOD, count = 2, list = 0x22F8, name = 'Destroy' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x18CD, name = 'Init' + list[9] = LF_MEMBER, protected, type = 0x1064, offset = 80 + member name = 'm_atomId' + +0x3dc8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3dc7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 84, class name = LegoPathPresenter, UDT(0x00003dc8) + +0x3dc9 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1870, name = '~LegoTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1873, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1874, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1875, name = 'AddToManager' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1870, name = 'LegoTexturePresenter' + +0x3dca : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +0x3dcb : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x180B, name = 'Motorcycle' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180E, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x180F, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = T_REAL32(0040), offset = 356 + member name = 'm_unk0x164' + list[6] = LF_MEMBER, private, type = 0x1CF1, offset = 360 + member name = 'm_unk0x168' + +0x3dcc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3dcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +0x3dcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x10CD, This type = 0x11B3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dce : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274C, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x274D, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x274E, name = 'GetColor' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x11B4, name = 'GetState' + list[5] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x8' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0xc' + list[7] = LF_MEMBER, protected, type = 0x274F, offset = 16 + member name = 'm_state' + list[8] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DCD, name = 'PizzaMissionState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DCD, name = '~PizzaMissionState' + +0x3dcf : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3dce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +0x3dd0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x343D, This type = 0x3D79, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dd1 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11B8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x344D, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x344E, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DD0, name = 'Pizzeria' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DD0, name = '~Pizzeria' + +0x3dd2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dd1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = Pizzeria, UDT(0x00003dd2) + +0x3dd3 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x11AC, name = 'PizzeriaState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11AF, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11B0, name = 'IsA' + +0x3dd4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dd3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PizzeriaState, UDT(0x00003dd4) + +0x3dd5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D5D, This type = 0x3D7D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dd6 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D60, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D61, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DD5, name = 'PoliceEntity' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DD5, name = '~PoliceEntity' + +0x3dd7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dd6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = PoliceEntity, UDT(0x00003dd7) + +0x3dd8 : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x119D, name = 'PoliceState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A0, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11A1, name = 'IsA' + +0x3dd9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PoliceState, UDT(0x00003dd9) + +0x3dda : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1061, This type = 0x1062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ddb : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x27B4, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x27B5, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1063, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1063, name = 'SetFlag' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1063, name = 'GetTutorialFlag' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x27B6, name = 'SetTutorialFlag' + list[7] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 8 + member name = 'm_playCubeTutorial' + list[8] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DDA, name = 'ScoreState' + list[9] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DDA, name = '~ScoreState' + +0x3ddc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ddb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = ScoreState, UDT(0x00003ddc) + +0x3ddd : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1A76, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x105C, name = 'SkateBoard' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x105F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1060, name = 'IsA' + list[4] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 352 + member name = 'm_unk0x160' + list[5] = LF_MEMBER, private, type = 0x27BE, offset = 353 + member name = 'm_unk0x161' + +0x3dde : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3ddd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +0x3ddf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D0B, This type = 0x3D65, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3de0 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11C4, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D0E, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D0F, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DDF, name = 'Lego3DWavePresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DDF, name = '~Lego3DWavePresenter' + +0x3de1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3de0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = Lego3DWavePresenter, UDT(0x00003de1) + +0x3de2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D1F, This type = 0x3D63, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3de3 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x19E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D22, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D23, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DE2, name = 'LegoActorPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DE2, name = '~LegoActorPresenter' + +0x3de4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3de3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoActorPresenter, UDT(0x00003de4) + +0x3de5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D2E, This type = 0x3D66, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3de6 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3D15, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D31, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D32, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DE5, name = 'LegoRaceCar' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DE5, name = '~LegoRaceCar' + +0x3de7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3de6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoRaceCar, UDT(0x00003de7) + +0x3de8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D33, This type = 0x3D73, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3de9 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18DD, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D36, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D37, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DE8, name = 'Doors' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DE8, name = '~Doors' + +0x3dea : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3de9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = Doors, UDT(0x00003dea) + +0x3deb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D38, This type = 0x3D39, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3dec : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3D3A, + vfptr offset = 20, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DEB, name = 'Act3Actor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DEB, name = '~Act3Actor' + +0x3ded : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 8, class name = Act3Actor, UDT(0x00004e9b) + +0x3dee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D44, This type = 0x3D78, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3def : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10C8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D47, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D48, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DEE, name = 'CarRaceState' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DEE, name = '~CarRaceState' + +0x3df0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3def, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = CarRaceState, UDT(0x00003df0) + +0x3df1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D58, This type = 0x3D77, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3df2 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10C8, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D5B, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3D5C, name = 'IsA' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DF1, name = 'JetskiRaceState' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DF1, name = '~JetskiRaceState' + +0x3df3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3df2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = JetskiRaceState, UDT(0x00003df3) + +0x3df4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D70, This type = 0x3D71, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3df5 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DF4, name = 'LegoAct2' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DF4, name = '~LegoAct2' + +0x3df6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3df5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoAct2, UDT(0x00003df6) + +0x3df7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3D7E, This type = 0x3D7F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3df8 : Length = 70, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1AE8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DF7, name = 'RaceStandsEntity' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DF7, name = '~RaceStandsEntity' + +0x3df9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3df8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = RaceStandsEntity, UDT(0x00003df9) + +0x3dfa : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1382, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'FUN_100c21e0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = 'MxStreamListMxNextActionDataStart' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = '~MxStreamListMxNextActionDataStart' + +0x3dfb : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x3dfc : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1382, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'FUN_100c21e0' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'FindAndErase' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = 'MxStreamListMxNextActionDataStart' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = '~MxStreamListMxNextActionDataStart' + +0x3dfd : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x3dfe : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1382, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1303, name = 'FindAndErase' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = 'MxStreamListMxNextActionDataStart' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137E, name = '~MxStreamListMxNextActionDataStart' + +0x3dff : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +0x3e00 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1697 + +0x3e01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1EEA, Class type = 0x137B, This type = 0x137C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e00, This adjust = 0 + +0x3e02 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, private, VANILLA, index = 0x3E01, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3e03 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3e04 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x137F, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E01, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = 'MxStreamListMxDSSubscriber' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x137D, name = '~MxStreamListMxDSSubscriber' + +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +0x3e06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2D76, This type = 0x2D77, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1833, This adjust = 0 + +0x3e07 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2D79, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E06, name = 'PushBack' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D78, name = 'MxCompositePresenterList' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x2D78, name = '~MxCompositePresenterList' + +0x3e08 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxCompositePresenterList, UDT(0x00003e08) + +0x3e09 : Length = 674, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18B6, name = 'LegoRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B6, name = '~LegoRace' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BC, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B9, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BA, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BB, name = 'Create' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x5c' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18B5, name = 'VTable0x64' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18BD, name = 'VTable0x68' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 108, name = 'VTable0x6c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 112, name = 'VTable0x70' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 116, name = 'VTable0x74' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B3, + vfptr offset = 120, name = 'VTable0x78' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x18B4, + vfptr offset = 124, name = 'VTable0x7c' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 248 + member name = 'm_unk0xf8' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 256 + member name = 'm_unk0x100' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 264 + member name = 'm_unk0x108' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[21] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 280 + member name = 'm_unk0x118' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 292 + member name = 'm_unk0x124' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 296 + member name = 'm_unk0x128' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 300 + member name = 'm_unk0x12c' + list[29] = LF_MEMBER, protected, type = 0x11FA, offset = 304 + member name = 'm_unk0x130' + list[30] = LF_MEMBER, private, type = T_UINT4(0075), offset = 320 + member name = 'm_unk0x140' + +0x3e0a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3e09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +0x3e0b : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 12 + Name = + +0x3e0c : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x18B1, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AE3, name = 'CarRace' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE6, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AE7, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x3E0B, offset = 324 + member name = 'm_unk0x144' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 336 + member name = 'm_unk0x150' + +0x3e0d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 340, class name = CarRace, UDT(0x00003e0d) + +0x3e0e : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15D6, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x19E4, name = 'LegoFlcTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x19E8, name = 'ClassName' + list[3] = LF_ONEMETHOD, private, VANILLA, index = 0x19E4, name = 'Init' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 104 + member name = 'm_unk0x68' + list[5] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + +0x3e0f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 112, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +0x3e10 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1870, name = '~LegoTexturePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1873, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1874, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1870, name = 'DoneTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1875, name = 'AddToManager' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1875, name = 'PutData' + +0x3e11 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +0x3e12 : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A9C, name = 'HospitalState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A9F, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA0, name = 'IsA' + list[4] = LF_MEMBER, private, type = 0x1CF1, offset = 8 + member name = 'm_unk0x8' + list[5] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_unk0xc' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 14 + member name = 'm_unk0xe' + list[7] = LF_MEMBER, private, type = T_USHORT(0021), offset = 16 + member name = 'm_unk0x10' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 18 + member name = 'm_unk0x12' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 20 + member name = 'm_unk0x14' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 22 + member name = 'm_unk0x16' + +0x3e13 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e12, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 24, class name = HospitalState, UDT(0x00003e13) + +0x3e14 : Length = 802, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x12DE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1739, name = 'MxDiskStreamController' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1739, name = '~MxDiskStreamController' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1757, name = 'Tickle' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1741, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1742, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1754, name = 'Open' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1755, name = 'VTable0x18' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x20' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x36D7, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1758, name = 'VTable0x30' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1756, + vfptr offset = 52, name = 'VTable0x34' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3C82, name = 'GetUnk0xc4' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c7f40' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c8670' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x34D6, name = 'InsertToList74' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3363, name = 'FUN_100c7cb0' + list[18] = LF_MEMBER, private, type = 0x12E3, offset = 100 + member name = 'm_list0x64' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 112 + member name = 'm_unk0x70' + list[20] = LF_MEMBER, private, type = 0x174B, offset = 116 + member name = 'm_list0x74' + list[21] = LF_MEMBER, private, type = 0x12E3, offset = 128 + member name = 'm_list0x80' + list[22] = LF_MEMBER, private, type = T_USHORT(0021), offset = 140 + member name = 'm_unk0x8c' + list[23] = LF_MEMBER, private, type = 0x12E3, offset = 144 + member name = 'm_list0x90' + list[24] = LF_MEMBER, private, type = 0x11D9, offset = 156 + member name = 'm_critical9c' + list[25] = LF_MEMBER, private, type = 0x12E3, offset = 184 + member name = 'm_list0xb8' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 196 + member name = 'm_unk0xc4' + list[27] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c7890' + list[28] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7970' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x34D6, name = 'FUN_100c7ce0' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x1757, name = 'FUN_100c7d10' + list[31] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c7980' + list[32] = LF_ONEMETHOD, private, VANILLA, index = 0x36D7, name = 'FUN_100c7db0' + list[33] = LF_ONEMETHOD, private, VANILLA, index = 0x36D8, name = 'FUN_100c8360' + list[34] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8540' + list[35] = LF_ONEMETHOD, private, VANILLA, index = 0x1739, name = 'FUN_100c8720' + +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +0x3e16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x18E9, This type = 0x18EA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x11d5, This adjust = 0 + +0x3e17 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x18EB, name = 'LegoPalettePresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EB, name = '~LegoPalettePresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EE, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EF, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x18EB, name = 'ReadyTickle' + list[6] = LF_METHOD, count = 2, list = 0x22EF, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3E16, name = 'ParsePallete' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x18EB, name = 'Init' + list[9] = LF_MEMBER, private, type = 0x1225, offset = 100 + member name = 'm_palette' + +0x3e18 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e17, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoPalettePresenter, UDT(0x00003e18) + +0x3e19 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x36F1 + list[1] = 0x3CD0 + +0x3e1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x12E3, This type = 0x12E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3e19, This adjust = 0 + +0x3e1b : Length = 166, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x174E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x12E6, name = 'Find' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x36F3, name = 'PopFrontStreamingAction' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3E1A, name = 'PopFrontStreamingActionLocked' + list[4] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = 'MxStreamListMxDSAction' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x174A, name = '~MxStreamListMxDSAction' + +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +0x3e1d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e1e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E1D + +0x3e1f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3E1D + +0x3e20 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3E1F + +0x3e21 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3E20 + +0x3e22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3E1D, This type = 0x3E1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e21, This adjust = 0 + +0x3e23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e24 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3E1D + +0x3e25 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x207E + +0x3e26 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3E24 + list[1] = 0x3E25 + +0x3e27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3e26, This adjust = 0 + +0x3e28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e29 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3E24 + +0x3e2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e29, This adjust = 0 + +0x3e2b : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x3E22, name = 'operator=' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e2c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e2b, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e2d : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E27, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_vtable' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x4' + list[9] = LF_MEMBER, private, type = 0x2EBD, offset = 12 + member name = 'm_renderImpl' + list[10] = LF_MEMBER, private, type = 0x2EC2, offset = 16 + member name = 'm_deviceImpl' + list[11] = LF_MEMBER, private, type = 0x2EC7, offset = 20 + member name = 'm_viewPort' + list[12] = LF_MEMBER, private, type = 0x3CE7, offset = 24 + member name = 'm_pad' + list[13] = LF_MEMBER, private, type = 0x29B7, offset = 144 + member name = 'm_viewManager' + +0x3e2e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e2d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 148, class name = Lego3DView, UDT(0x00004e47) + +0x3e2f : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[4] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_render' + list[5] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[6] = LF_MEMBER, private, type = 0x36AB, offset = 12 + member name = 'm_unk0x0c' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x3E2A, name = 'Init' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x3e30 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e2f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x3e31 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x36AA, name = 'MxUnknown100dbdbc' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36AA, + vfptr offset = 0, name = '~MxUnknown100dbdbc' + list[3] = LF_MEMBER, private, type = 0x1E7F, offset = 4 + member name = 'm_unk0x4' + +0x3e32 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e31, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +0x3e33 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e34 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3E33 + +0x3e35 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3E33 + +0x3e36 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3E35 + +0x3e37 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3E34 + list[1] = 0x3E36 + +0x3e38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3E33, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x3e37, This adjust = 0 + +0x3e39 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3E24 + list[1] = 0x3E20 + +0x3e3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3E1D, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x3e39, This adjust = 0 + +0x3e3b : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, STATIC, index = 0x3E3A, name = 'CopyFrom' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e3b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e3d : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, STATIC, index = 0x3E38, name = 'CopyFrom' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e3e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e3d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e3f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3E34 + list[1] = 0x3E25 + +0x3e40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3e3f, This adjust = 0 + +0x3e41 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3E34 + +0x3e42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e41, This adjust = 0 + +0x3e43 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_vtable' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x4' + list[9] = LF_MEMBER, private, type = 0x2EBD, offset = 12 + member name = 'm_renderImpl' + list[10] = LF_MEMBER, private, type = 0x2EC2, offset = 16 + member name = 'm_deviceImpl' + list[11] = LF_MEMBER, private, type = 0x2EC7, offset = 20 + member name = 'm_viewPort' + list[12] = LF_MEMBER, private, type = 0x3CE7, offset = 24 + member name = 'm_pad' + list[13] = LF_MEMBER, private, type = 0x29B7, offset = 144 + member name = 'm_viewManager' + +0x3e44 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 148, class name = Lego3DView, UDT(0x00004e47) + +0x3e45 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[4] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_render' + list[5] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[6] = LF_MEMBER, private, type = 0x36AB, offset = 12 + member name = 'm_unk0x0c' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x3E42, name = 'Init' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x3e46 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e45, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x3e47 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E33 + +0x3e48 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3E36 + +0x3e49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3E33, This type = 0x3E47, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e48, This adjust = 0 + +0x3e4a : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x3E49, name = 'CopyFrom' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e4b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e4a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3E33, This type = 0x3E47, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3e37, This adjust = 0 + +0x3e4d : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x3E4C, name = 'CopyFrom' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e4e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e4d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e4f : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_vtable' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x4' + list[9] = LF_MEMBER, private, type = 0x2EBD, offset = 12 + member name = 'm_renderImpl' + list[10] = LF_MEMBER, private, type = 0x2EC2, offset = 16 + member name = 'm_deviceImpl' + list[11] = LF_MEMBER, private, type = 0x2EC7, offset = 20 + member name = 'm_viewPort' + list[12] = LF_MEMBER, private, type = 0x3CE7, offset = 24 + member name = 'm_pad' + list[13] = LF_MEMBER, private, type = 0x29B7, offset = 144 + member name = 'm_viewManager' + list[14] = LF_MEMBER, private, type = 0x3E0B, offset = 148 + member name = 'm_unk0x8c' + +0x3e50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3e4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 160, class name = Lego3DView, UDT(0x00004e47) + +0x3e51 : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_vtable' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x4' + list[9] = LF_MEMBER, private, type = 0x2EBD, offset = 12 + member name = 'm_renderImpl' + list[10] = LF_MEMBER, private, type = 0x2EC2, offset = 16 + member name = 'm_deviceImpl' + list[11] = LF_MEMBER, private, type = 0x2EC7, offset = 20 + member name = 'm_viewPort' + list[12] = LF_MEMBER, private, type = 0x3CE7, offset = 24 + member name = 'm_pad' + list[13] = LF_MEMBER, private, type = 0x29B7, offset = 144 + member name = 'm_viewManager' + list[14] = LF_MEMBER, private, type = 0x2745, offset = 148 + member name = 'm_unk0x8c' + +0x3e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x3e53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E33, This type = 0x3E47, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e48, This adjust = 0 + +0x3e54 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x3E53, name = 'MxRenderSettings' + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x3E38, name = 'CopyFrom' + list[2] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[3] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[4] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[6] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 20 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[9] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags2' + list[10] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[11] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x3e55 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3e54, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x3e56 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3CE7, offset = 20 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 140 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x3E0B, offset = 144 + member name = 'm_unk0x8c' + +0x3e57 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 156, class name = Lego3DView, UDT(0x00004e47) + +0x3e58 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3CE7, offset = 20 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 140 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x209A, offset = 144 + member name = 'm_unk0x8c' + +0x3e59 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e58, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x3e5a : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 120 + Name = + +0x3e5b : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3E5A, offset = 20 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 140 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x209A, offset = 144 + member name = 'm_unk0x8c' + +0x3e5c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e5b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x3e5d : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 116 + Name = + +0x3e5e : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x3e5f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e5e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x3e60 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x3E40, name = 'Init' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x3e61 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x3e62 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionTopBottomList, UDT(0x00003e71) + +0x3e63 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E62 + +0x3e64 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionTopBottomListCursor, UDT(0x00003e69) + +0x3e65 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E64 + +0x3e66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E64, This type = 0x3E65, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x2d34, This adjust = 0 + +0x3e67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E64, This type = 0x3E65, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e68 : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2CE5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E66, name = 'MxRegionTopBottomListCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3E67, name = '~MxRegionTopBottomListCursor' + +0x3e69 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3e68, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionTopBottomListCursor, UDT(0x00003e69) + +0x3e6a : Length = 774, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FC7, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x11E5, name = 'MxVideoPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = '~MxVideoPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3A, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3B, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StreamingTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'RepeatingTickle' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'Unk5Tickle' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'AddToManager' + list[12] = LF_METHOD, count = 2, list = 0x1FC8, name = 'Destroy' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'EndAction' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'PutData' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121B, name = 'IsHit' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 92, name = 'LoadHeader' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 96, name = 'CreateBitmap' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 100, name = 'NextFrame' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 104, name = 'LoadFrame' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 108, name = 'PutFrame' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 112, name = 'RealizePalette' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 116, name = 'VTable0x74' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E8, + vfptr offset = 120, name = 'VTable0x78' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 124, name = 'VTable0x7c' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 128, name = 'GetWidth' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 132, name = 'GetHeight' + list[27] = LF_NESTTYPE, type = 0x11EB, AlphaMask + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC9, name = 'GetBitmap' + list[29] = LF_ONEMETHOD, private, VANILLA, index = 0x11E5, name = 'Init' + list[30] = LF_MEMBER, protected, type = 0x1718, offset = 80 + member name = 'm_bitmap' + list[31] = LF_MEMBER, protected, type = 0x1FCA, offset = 84 + member name = 'm_alpha' + list[32] = LF_MEMBER, protected, type = 0x11E7, offset = 88 + member name = 'm_unk0x58' + list[33] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 92 + member name = 'm_unk0x5c' + list[34] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 94 + member name = 'm_flags' + list[35] = LF_MEMBER, protected, type = T_LONG(0012), offset = 96 + member name = 'm_unk0x60' + +0x3e6b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3e6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x3e6c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3E62 + +0x3e6d : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DB, name = 'MxRegion' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DB, name = '~MxRegion' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13DB, + vfptr offset = 20, name = 'Reset' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E9, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13F7, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E8, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x203F, name = 'GetRect' + list[8] = LF_MEMBER, private, type = 0x3E6C, offset = 8 + member name = 'm_list' + list[9] = LF_MEMBER, private, type = 0x11FA, offset = 12 + member name = 'm_rect' + +0x3e6e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3e6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +0x3e6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E62, This type = 0x3E63, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e70 : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x13E3, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E6F, name = 'MxRegionTopBottomList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3E6F, name = '~MxRegionTopBottomList' + +0x3e71 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3e70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionTopBottomList, UDT(0x00003e71) + +0x3e72 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e73 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E72 + +0x3e74 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1CF9 + +0x3e75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e74, This adjust = 0 + +0x3e76 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e77 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x13D9 + +0x3e78 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3E77 + +0x3e79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3E6C, Class type = 0x13D9, This type = 0x3E78, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11FD, Class type = 0x13D9, This type = 0x3E78, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e7b : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x13DB, name = 'MxRegion' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x13DB, name = '~MxRegion' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13DB, + vfptr offset = 20, name = 'Reset' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E9, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13F7, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x13E8, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3E79, name = 'GetTopBottomList' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3E7A, name = 'GetRect' + list[9] = LF_MEMBER, private, type = 0x3E6C, offset = 8 + member name = 'm_list' + list[10] = LF_MEMBER, private, type = 0x11FA, offset = 12 + member name = 'm_rect' + +0x3e7c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +0x3e7d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3E64 + +0x3e7e : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[4] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 12 + member name = 'm_unk0x0c' + list[5] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[6] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 20 + member name = 'm_unk0x14' + +0x3e7f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e7e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e80 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x2CF0 + +0x3e81 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[4] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[5] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[6] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3e82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3584, Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x3e84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x3e85 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3E83, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[5] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[6] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[7] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[8] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3e86 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e87 : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3e88 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e87, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3e89 : Length = 358, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x3e8a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e89, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x3e8b : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3e8c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3e8d : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3e8e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3e8f : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3e90 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3e91 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3e92 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3e91, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3e93 : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[16] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[18] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x3e94 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e93, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x3e95 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3E83, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3E83, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[6] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[7] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[8] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[9] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3e96 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3e95, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1208, This adjust = 0 + +0x3e98 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x13D4 + +0x3e99 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3E98 + +0x3e9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e99, This adjust = 0 + +0x3e9b : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3E83, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3E83, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[6] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[8] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[9] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[10] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[11] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3e9c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3e9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3e9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3584, Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3e9f : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ea0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3e9f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ea1 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E84, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ea2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ea3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3584, Class type = 0x3E72, This type = 0x3E73, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1208, This adjust = 0 + +0x3ea4 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3EA3, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ea5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ea6 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ea7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ea8 : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ea9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3eaa : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3eab : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eaa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3eac : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x3ead : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x3eae : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3eaf : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3eb0 : Length = 390, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3eb1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3eb2 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3eb3 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3eb4 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3eb5 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3eb4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3eb6 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x3eb7 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x3eb8 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x2017, name = 'MxRegionTopBottom' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3603, name = '~MxRegionTopBottom' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x141A, name = 'Clone' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F9, name = 'FUN_100c5280' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x141B, name = 'FUN_100c57b0' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetTop' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2018, name = 'GetBottom' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetTop' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2019, name = 'SetBottom' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x141B, name = 'IntersectsWith' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_top' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_bottom' + list[12] = LF_MEMBER, private, type = 0x201A, offset = 8 + member name = 'm_leftRightList' + +0x3eb9 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x3eb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +0x3eba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x13D5, This type = 0x202F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x124c, This adjust = 0 + +0x3ebb : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x2030, name = 'MxRegionLeftRight' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2031, name = 'Clone' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2032, name = 'GetLeft' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2032, name = 'GetRight' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2033, name = 'SetLeft' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2033, name = 'SetRight' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3EBA, name = 'IntersectsWith' + list[7] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[8] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_right' + +0x3ebc : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x3ebb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxRegionLeftRight, UDT(0x00003ebc) + +0x3ebd : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3ebe : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ebd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3ebf : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x3ec0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ebf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x3ec1 : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3ec2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3ec3 : Length = 410, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3ec4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3ec5 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3ec6 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3ec7 : Length = 438, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3ec8 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ec7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3ec9 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Previous' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x3eca : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x3ecb : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'FUN_100c4980' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ecc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ecd : Length = 514, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'UpdateRect' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ece : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ecf : Length = 510, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'Reset' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'UpdateRect' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ed0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ed1 : Length = 502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E75, name = 'MxRegionCursor' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3E76, name = '~MxRegionCursor' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 20, name = 'VTable0x14' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 24, name = 'VTable0x18' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 28, name = 'VTable0x1c' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 32, name = 'VTable0x20' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E83, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9D, + vfptr offset = 52, name = 'GetRect' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E9E, + vfptr offset = 56, name = 'HasRect' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E76, + vfptr offset = 60, name = 'Reset' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x3E9A, name = 'FUN_100c46c0' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x3E97, name = 'UpdateRect' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4a20' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x3E84, name = 'FUN_100c4b50' + list[18] = LF_MEMBER, private, type = 0x1CF9, offset = 8 + member name = 'm_region' + list[19] = LF_MEMBER, private, type = 0x3584, offset = 12 + member name = 'm_rect' + list[20] = LF_MEMBER, private, type = 0x3E7D, offset = 16 + member name = 'm_topBottomCursor' + list[21] = LF_MEMBER, private, type = 0x3E80, offset = 20 + member name = 'm_leftRightCursor' + +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +0x3ed3 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x3ed4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x3ed5 : Length = 390, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x3ed6 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x3ed7 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x3ed8 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x3ed9 : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x3eda : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x3edb : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x3edc : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3edb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x3edd : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x3ede : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3edd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x3edf : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Tail' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[18] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x3ee0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3edf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x3ee1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UCHAR(0020) + list[1] = T_32PRCHAR(0470) + list[2] = T_INT4(0074) + +0x3ee2 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x3ee1 + +0x3ee3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PRCHAR(0470) + list[1] = T_INT4(0074) + list[2] = 0x1913 + +0x3ee4 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 3, Arg list type = 0x3ee3 + +0x3ee5 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x186c + +0x3ee6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18F3, This type = 0x1916, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3ee7 : Length = 1342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34B4, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x3D02, name = 'AddWorld' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x3EE6, name = 'SetExit' + list[38] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[39] = LF_MEMBER, private, type = 0x36AB, offset = 108 + member name = 'm_renderMgr' + list[40] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[41] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[42] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[43] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_exit' + list[45] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[46] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[47] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[48] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[49] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[50] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[51] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[52] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[53] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[54] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x3ee8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x3ee7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x3ee9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1CF9, Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3eea : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1249, + vfptr offset = 40, name = 'VTable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'VTable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3EE9, name = 'GetRegion' + list[17] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[18] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[19] = LF_MEMBER, protected, type = 0x11E7, offset = 84 + member name = 'm_pDDSurface' + list[20] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[21] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk0x60' + +0x3eeb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3eea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x3eec : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = private, VANILLA, 0x1207, + list[1] = private, VANILLA, 0x1213, + +0x3eed : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 2, list = 0x3EEC, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3eee : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3eed, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3eef : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1FEA, name = 'MxSize32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetHeight' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE8, name = 'Assign' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_height' + +0x3ef0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3eef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +0x3ef1 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1FEA, name = 'MxSize32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetHeight' + list[3] = LF_ONEMETHOD, private, VANILLA, index = 0x1FE8, name = 'Assign' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_height' + +0x3ef2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3ef1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +0x3ef3 : Length = 134, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x368E, name = 'MxPoint32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetX' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetY' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetX' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetY' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1C60, name = 'Assign' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[7] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x3ef4 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ef3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x3ef5 : Length = 538, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'Limit' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_METHOD, count = 2, list = 0x3EEC, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3ef6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3ef5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3ef7 : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1718 + list[1] = T_UINT4(0075) + list[2] = T_UINT4(0075) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + list[7] = T_UCHAR(0020) + +0x3ef8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x3ef7, This adjust = 0 + +0x3ef9 : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3EF8, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3efa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3ef9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3efb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1289, This type = 0x1818, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3efc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1084, This adjust = 0 + +0x3efd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x3efe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1A91, This type = 0x1A92, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3eff : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 36 + Name = + +0x3f00 : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3388, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33CE, name = 'GetCamera' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3EFB, name = 'FUN_100220e0' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1842, name = 'EndAction' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3387, name = 'FUN_1001fc80' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_100727e0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_10072980' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073400' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073430' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x3485, name = 'GetCurrPathInfo' + list[24] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[25] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[26] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[27] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[28] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[29] = LF_MEMBER, protected, type = 0x3EFF, offset = 208 + member name = 'm_unk0xd0' + list[30] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 244 + member name = 'm_unk0xf4' + list[31] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[32] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x3f01 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f00, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x3f02 : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1A93, name = 'Infocenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A93, name = '~Infocenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A98, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A99, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A96, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A97, name = 'IsA' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3EFC, name = 'Create' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A93, name = 'Stop' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3EFE, name = 'VTable0x5c' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3EFE, name = 'VTable0x64' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3EFD, name = 'VTable0x68' + +0x3f03 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3f02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Infocenter, UDT(0x00003f03) + +0x3f04 : Length = 710, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1912, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'LegoWorld' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1819, name = '~LegoWorld' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1841, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3388, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183C, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x183D, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 80, name = 'Stop' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 84, name = 'VTable0x54' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1842, + vfptr offset = 88, name = 'VTable0x58' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 92, name = 'VTable0x5c' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1819, + vfptr offset = 96, name = 'VTable0x60' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x183F, + vfptr offset = 100, name = 'VTable0x64' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1844, + vfptr offset = 104, name = 'VTable0x68' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x33CE, name = 'GetCamera' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x183F, name = 'FUN_100220e0' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1840, name = 'SetAsCurrentWorld' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1842, name = 'EndAction' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x3387, name = 'FUN_1001fc80' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_100727e0' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x338A, name = 'FUN_10072980' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073400' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1819, name = 'FUN_10073430' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x3485, name = 'GetCurrPathInfo' + list[24] = LF_MEMBER, protected, type = 0x1828, offset = 104 + member name = 'm_list0x68' + list[25] = LF_MEMBER, protected, type = 0x1439, offset = 128 + member name = 'm_list0x80' + list[26] = LF_MEMBER, protected, type = 0x19AE, offset = 152 + member name = 'm_camera' + list[27] = LF_MEMBER, protected, type = 0x1C7F, offset = 156 + member name = 'm_unk0x9c' + list[28] = LF_MEMBER, protected, type = 0x1439, offset = 184 + member name = 'm_list0xb8' + list[29] = LF_MEMBER, protected, type = 0x3EFF, offset = 208 + member name = 'm_unk0xd0' + list[30] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 244 + member name = 'm_unk0xf4' + list[31] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 246 + member name = 'm_unk0xf6' + list[32] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 247 + member name = 'm_unk0xf7' + +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +0x3f06 : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = 0x1718 + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + +0x3f07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x3f06, This adjust = 0 + +0x3f08 : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1718 + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_INT4(0074) + list[5] = T_INT4(0074) + list[6] = T_INT4(0074) + list[7] = T_UCHAR(0020) + +0x3f09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x3f08, This adjust = 0 + +0x3f0a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1223 + list[1] = 0x1223 + +0x3f0b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x11E2, This type = 0x11E3, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f0a, This adjust = 0 + +0x3f0c : Length = 798, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x157F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x1FC7, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x11E5, name = 'MxVideoPresenter' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = '~MxVideoPresenter' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3A, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1A3B, name = 'IsA' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'ReadyTickle' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StartingTickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'StreamingTickle' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'RepeatingTickle' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'Unk5Tickle' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'AddToManager' + list[12] = LF_METHOD, count = 2, list = 0x1FC8, name = 'Destroy' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x11E5, name = 'EndAction' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121C, name = 'PutData' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x121B, name = 'IsHit' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 92, name = 'LoadHeader' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 96, name = 'CreateBitmap' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 100, name = 'NextFrame' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E4, + vfptr offset = 104, name = 'LoadFrame' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 108, name = 'PutFrame' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E5, + vfptr offset = 112, name = 'RealizePalette' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 116, name = 'VTable0x74' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E8, + vfptr offset = 120, name = 'VTable0x78' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11E9, + vfptr offset = 124, name = 'VTable0x7c' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 128, name = 'GetWidth' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x11EA, + vfptr offset = 132, name = 'GetHeight' + list[27] = LF_NESTTYPE, type = 0x11EB, AlphaMask + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x3F0B, name = 'PrepareRects' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC9, name = 'GetBitmap' + list[30] = LF_ONEMETHOD, private, VANILLA, index = 0x11E5, name = 'Init' + list[31] = LF_MEMBER, protected, type = 0x1718, offset = 80 + member name = 'm_bitmap' + list[32] = LF_MEMBER, protected, type = 0x1FCA, offset = 84 + member name = 'm_alpha' + list[33] = LF_MEMBER, protected, type = 0x11E7, offset = 88 + member name = 'm_unk0x58' + list[34] = LF_MEMBER, protected, type = T_SHORT(0011), offset = 92 + member name = 'm_unk0x5c' + list[35] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 94 + member name = 'm_flags' + list[36] = LF_MEMBER, protected, type = T_LONG(0012), offset = 96 + member name = 'm_unk0x60' + +0x3f0d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 38, field list type 0x3f0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +0x3f0e : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F07, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f0f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f10 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x1207, + list[1] = public, VANILLA, 0x1213, + +0x3f11 : Length = 538, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'Limit' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f12 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f11, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f13 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f14 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f13, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f15 : Length = 542, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'DongSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f16 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f15, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f17 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 233 + Name = + +0x3f18 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 123 + Name = + +0x3f19 : Length = 658, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F07, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x1708, name = 'Reset' + list[21] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[24] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[25] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[26] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[27] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f1a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f19, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f1b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, INTRODUCING VIRTUAL, 0x1708, vfptr offset = 20 + list[1] = public, INTRODUCING VIRTUAL, 0x170A, vfptr offset = 20 + +0x3f1c : Length = 638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_METHOD, count = 2, list = 0x3F1B, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F07, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[20] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[21] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[23] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[25] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[26] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f1d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f1c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f1e : Length = 546, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SubtractPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f1f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f1e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f20 : Length = 46, Leaf = 0x1201 LF_ARGLIST argument count = 10 + list[0] = T_INT4(0074) + list[1] = T_INT4(0074) + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = T_32PINT4(0474) + list[5] = T_32PINT4(0474) + list[6] = T_32PINT4(0474) + list[7] = T_32PINT4(0474) + list[8] = T_32PINT4(0474) + list[9] = T_32PINT4(0474) + +0x3f21 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 10, Arg list type = 0x3f20 + +0x3f22 : Length = 562, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SubtractPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[22] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x1209, name = 'Assign' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[25] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[29] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f23 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3f22, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f24 : Length = 506, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_METHOD, count = 2, list = 0x3F10, name = 'CopyFrom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f25 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3f24, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f26 : Length = 506, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_METHOD, count = 2, list = 0x3EEC, name = 'CopyFrom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f27 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3f26, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f28 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 2, list = 0x3EEC, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f29 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f28, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f2a : Length = 538, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1209, name = 'Assign' + list[22] = LF_METHOD, count = 2, list = 0x3EEC, name = 'CopyFrom' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[24] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[28] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f2b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f2a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f2c : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = private, VANILLA, 0x1207, + list[1] = private, VANILLA, 0x1213, + list[2] = private, VANILLA, 0x1209, + +0x3f2d : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120F, name = 'SetSize' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 3, list = 0x3F2C, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f2e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f2d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f2f : Length = 506, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[20] = LF_METHOD, count = 3, list = 0x3F2C, name = 'CopyFrom' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[23] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f30 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f2f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f31 : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SubtractPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 3, list = 0x3F2C, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f32 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f31, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3584, Class type = 0x11FA, This type = 0x11FB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x1206, This adjust = 0 + +0x3f34 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = private, VANILLA, 0x3F33, + list[1] = private, VANILLA, 0x1213, + list[2] = private, VANILLA, 0x1209, + +0x3f35 : Length = 530, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 5, list = 0x366C, name = 'MxRect32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x364A, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'Intersect' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SetPoint' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'AddPoint' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x120D, name = 'SubtractPoint' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1213, name = 'UpdateBounds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x3684, name = 'IsValid' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3685, name = 'IntersectsWith' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetWidth' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetHeight' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x3674, name = 'GetPoint' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x3675, name = 'GetSize' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetLeft' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetTop' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetRight' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3686, name = 'GetBottom' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetLeft' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetTop' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetRight' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1217, name = 'SetBottom' + list[21] = LF_METHOD, count = 3, list = 0x3F34, name = 'CopyFrom' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Min' + list[23] = LF_ONEMETHOD, private, STATIC, index = 0x1218, name = 'Max' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_left' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_top' + list[26] = LF_MEMBER, private, type = T_INT4(0074), offset = 8 + member name = 'm_right' + list[27] = LF_MEMBER, private, type = T_INT4(0074), offset = 12 + member name = 'm_bottom' + +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +0x3f37 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x368E, name = 'MxPoint32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetX' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3643, name = 'GetY' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetX' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3651, name = 'SetY' + list[5] = LF_ONEMETHOD, private, VANILLA, index = 0x1C60, name = 'CopyFrom' + list[6] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_x' + list[7] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_y' + +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +0x3f39 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x1FEA, name = 'MxSize32' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetWidth' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3655, name = 'GetHeight' + list[3] = LF_ONEMETHOD, private, VANILLA, index = 0x1FE8, name = 'CopyFrom' + list[4] = LF_MEMBER, private, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[5] = LF_MEMBER, private, type = T_INT4(0074), offset = 4 + member name = 'm_height' + +0x3f3a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +0x3f3b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 7, Arg list type = 0x3f06, This adjust = 0 + +0x3f3c : Length = 638, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_METHOD, count = 2, list = 0x3F1B, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F3B, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[20] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[21] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[22] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[23] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[24] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[25] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[26] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f3d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f3c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f3e : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_UCHAR(0020), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x109e + +0x3f3f : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = 0x1250 + Index type = T_SHORT(0011) + length = 4 + Name = + +0x3f40 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'palVersion' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'palNumEntries' + list[2] = LF_MEMBER, public, type = 0x3F3F, offset = 4 + member name = 'palPalEntry' + +0x3f41 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3f40, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = tagLOGPALETTE, UDT(0x00003f41) + +0x3f42 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'palVersion' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'palNumEntries' + list[2] = LF_MEMBER, public, type = 0x1251, offset = 4 + member name = 'palPalEntry' + +0x3f43 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3f42, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1028, class name = dong, UDT(0x00003f43) + +0x3f44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3f45 : Length = 726, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1713, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_ONEMETHOD, private, STATIC, index = 0x3F44, name = 'CountTotalBitsSetTo1' + list[22] = LF_ONEMETHOD, private, STATIC, index = 0x3F44, name = 'CountContiguousBitsSetTo1' + list[23] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[24] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[25] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[26] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[28] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[29] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f46 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f45, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1294, This type = 0x1707, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x3f48 : Length = 726, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'Reset' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170A, + vfptr offset = 20, name = 'Init' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Clear' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170E, + vfptr offset = 40, name = 'VTable0x28' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1710, + vfptr offset = 48, name = 'VTable0x30' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1713, + vfptr offset = 56, name = 'Display' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountTotalBitsSetTo1' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountContiguousBitsSetTo1' + list[23] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[24] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[25] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[26] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[28] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[29] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f49 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f48, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f4a : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3f42, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1028, class name = MxDisplaySurface::SetPalette::__unnamed + +0x3f4b : Length = 78, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_USHORT(0021), offset = 0 + member name = 'm_palVersion' + list[1] = LF_MEMBER, public, type = T_USHORT(0021), offset = 2 + member name = 'm_palNumEntries' + list[2] = LF_MEMBER, public, type = 0x1251, offset = 4 + member name = 'm_palPalEntry' + +0x3f4c : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3f4b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1028, class name = MxDisplaySurface::SetPalette::__unnamed + +0x3f4d : Length = 706, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_METHOD, count = 2, list = 0x3F1B, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F07, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountTotalBitsSetTo1' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountContiguousBitsSetTo1' + list[22] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[24] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[25] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[27] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[28] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f4e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f4f : Length = 706, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_METHOD, count = 2, list = 0x3F1B, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F3B, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountTotalBitsSetTo1' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountContiguousBitsSetTo1' + list[22] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[23] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[24] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[25] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[27] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[28] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x3f50 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x3f51 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 10000 + Name = + +0x3f52 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 100 + Name = + +0x3f53 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1461, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1452, name = 'Detach' + list[3] = LF_METHOD, count = 2, list = 0x17D9, name = 'MxPalette' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1452, name = '~MxPalette' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1462, name = 'ApplySystemEntriesToPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x145B, name = 'Clone' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1462, name = 'GetDefaultPalette' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'GetEntries' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'SetEntries' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x145E, name = 'SetSkyColor' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1463, name = 'Reset' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x145A, name = 'CreateNativePalette' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1463, name = 'SetOverrideSkyColor' + list[14] = LF_MEMBER, public, type = 0x1459, offset = 8 + member name = 'm_palette' + list[15] = LF_MEMBER, public, type = 0x1251, offset = 12 + member name = 'm_entries' + list[16] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 1036 + member name = 'm_overrideSkyColor' + list[17] = LF_MEMBER, public, type = 0x1250, offset = 1037 + member name = 'm_skyColor' + +0x3f54 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3f53, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 1044, class name = MxPalette, UDT(0x00003f54) + +0x3f55 : Length = 774, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x17BE, name = 'MxBitmap' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x17BE, name = '~MxBitmap' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C6, + vfptr offset = 20, name = 'ImportBitmap' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C4, + vfptr offset = 24, name = 'ImportBitmapInfo' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C0, + vfptr offset = 28, name = 'SetSize' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C8, + vfptr offset = 32, name = 'LoadFile' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17C7, + vfptr offset = 36, name = 'Read' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17BD, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CC, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CD, + vfptr offset = 52, name = 'CreatePalette' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CE, + vfptr offset = 56, name = 'ImportPalette' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17CF, + vfptr offset = 60, name = 'SetBitDepth' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x17D1, + vfptr offset = 64, name = 'StretchBits' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AlignToFourByte' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA3, name = 'AbsFlipped' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC1, name = 'GetBmiHeader' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiWidth' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiStride' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeight' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetBmiHeightAbs' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC3, name = 'GetBitmapData' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x357B, name = 'GetBitmapInfo' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1FC2, name = 'GetDataSize' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x3CA0, name = 'GetAdjustedStride' + list[26] = LF_ONEMETHOD, private, VANILLA, index = 0x17D4, name = 'ImportColorsToPalette' + list[27] = LF_MEMBER, private, type = 0x17C2, offset = 8 + member name = 'm_info' + list[28] = LF_MEMBER, private, type = 0x1FBF, offset = 12 + member name = 'm_bmiHeader' + list[29] = LF_MEMBER, private, type = 0x17D2, offset = 16 + member name = 'm_paletteData' + list[30] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 20 + member name = 'm_data' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 24 + member name = 'm_isHighColor' + list[32] = LF_MEMBER, private, type = 0x1225, offset = 28 + member name = 'm_palette' + +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +0x3f57 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x151C, offset = 4 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x3f58 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f57, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x3f59 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00003fbb) + +0x3f5a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F59 + +0x3f5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f5c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004003) + +0x3f5d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F5C + +0x3f5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F5C, This type = 0x3F5D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f5f : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x3F5C, offset = 8 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 24 + member name = 'm_unk0x10' + +0x3f60 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f5f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 32, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x3f61 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004015) + +0x3f62 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x3F61 + +0x3f63 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00003fda) + +0x3f64 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004013) + +0x3f65 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_REAL64(0041) + +0x3f66 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x18A1 + +0x3f67 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004026) + +0x3f68 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x0000403a) + +0x3f69 : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,double,double &,double *,int>, UDT(0x00003fe9) + +0x3f6a : Length = 142, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,double,double const &,double const *,int>, UDT(0x00003ff8) + +0x3f6b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F64 + +0x3f6c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F6B + +0x3f6d : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3F68 + list[1] = 0x3F68 + list[2] = 0x3F6C + +0x3f6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3f6d, This adjust = 0 + +0x3f6f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F59 + +0x3f70 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F6F + +0x3f71 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F70 + +0x3f72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f71, This adjust = 0 + +0x3f73 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x3F66 + list[2] = 0x3F6C + +0x3f74 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3f73, This adjust = 0 + +0x3f75 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F6C + +0x3f76 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f75, This adjust = 0 + +0x3f77 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F6E, + list[1] = public, VANILLA, 0x3F72, + list[2] = public, VANILLA, 0x3F74, + list[3] = public, VANILLA, 0x3F76, + +0x3f78 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F59 + +0x3f79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F78, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f71, This adjust = 0 + +0x3f7a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F6F + +0x3f7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F68, Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f7d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F7B, + list[1] = public, VANILLA, 0x3F7C, + +0x3f7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F6A, Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f7f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F69, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f80 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F7E, + list[1] = public, VANILLA, 0x3F7F, + +0x3f81 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = T_REAL64(0041) + +0x3f82 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f81, This adjust = 0 + +0x3f83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F64, Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f86 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F66, Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F65, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3f88 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F86, + list[1] = public, VANILLA, 0x3F87, + +0x3f89 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F66 + +0x3f8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f89, This adjust = 0 + +0x3f8b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x3F66 + +0x3f8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f8b, This adjust = 0 + +0x3f8d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F68 + list[1] = 0x3F68 + +0x3f8e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f8d, This adjust = 0 + +0x3f8f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F8C, + list[1] = public, VANILLA, 0x3F8E, + +0x3f90 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3F67 + list[1] = 0x3F68 + list[2] = 0x3F68 + +0x3f91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3f90, This adjust = 0 + +0x3f92 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3F67 + list[1] = T_32PREAL64(0441) + list[2] = T_32PREAL64(0441) + +0x3f93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3f92, This adjust = 0 + +0x3f94 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3F67 + list[1] = T_UINT4(0075) + list[2] = 0x3F66 + +0x3f95 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3f94, This adjust = 0 + +0x3f96 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F67 + list[1] = 0x3F66 + +0x3f97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f96, This adjust = 0 + +0x3f98 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F91, + list[1] = public, VANILLA, 0x3F93, + list[2] = public, VANILLA, 0x3F95, + list[3] = public, VANILLA, 0x3F97, + +0x3f99 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F67 + list[1] = 0x3F67 + +0x3f9a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f99, This adjust = 0 + +0x3f9b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F67 + +0x3f9c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f9b, This adjust = 0 + +0x3f9d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3F9A, + list[1] = public, VANILLA, 0x3F9C, + +0x3f9e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F78 + +0x3f9f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f9e, This adjust = 0 + +0x3fa0 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x3F67 + list[1] = 0x3F78 + list[2] = 0x3F67 + list[3] = 0x3F67 + +0x3fa1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x3fa0, This adjust = 0 + +0x3fa2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x3F67 + list[1] = 0x3F78 + list[2] = 0x3F67 + +0x3fa3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x3fa2, This adjust = 0 + +0x3fa4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F67 + list[1] = 0x3F78 + +0x3fa5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3fa4, This adjust = 0 + +0x3fa6 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FA1, + list[1] = public, VANILLA, 0x3FA3, + list[2] = public, VANILLA, 0x3FA5, + +0x3fa7 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00003fcc) + +0x3fa8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3FA7 + +0x3fa9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fa8, This adjust = 0 + +0x3faa : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00003fc2) + +0x3fab : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3FAA + +0x3fac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fab, This adjust = 0 + +0x3fad : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FAC, + list[1] = public, VANILLA, 0x3F5B, + +0x3fae : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00003fd5) + +0x3faf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F78 + list[1] = 0x3FAE + +0x3fb0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3faf, This adjust = 0 + +0x3fb1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FB0, + list[1] = public, VANILLA, 0x3F9F, + +0x3fb2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3FAE + +0x3fb3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fb2, This adjust = 0 + +0x3fb4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FB3, + list[1] = public, VANILLA, 0x3F5B, + +0x3fb5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F62 + list[1] = 0x3F62 + +0x3fb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F62, Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3fb5, This adjust = 0 + +0x3fb7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F62 + +0x3fb8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F5A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fb7, This adjust = 0 + +0x3fb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F59, This type = 0x3F7A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fba : Length = 1102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x3F61, _Node + list[2] = LF_NESTTYPE, type = 0x3F62, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x3F63, _Acc + list[4] = LF_NESTTYPE, type = 0x3F59, _Myt + list[5] = LF_NESTTYPE, type = 0x3F64, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = T_32PREAL64(0441), _Tptr + list[9] = LF_NESTTYPE, type = T_32PREAL64(0441), _Ctptr + list[10] = LF_NESTTYPE, type = 0x3F65, reference + list[11] = LF_NESTTYPE, type = 0x3F66, const_reference + list[12] = LF_NESTTYPE, type = T_REAL64(0041), value_type + list[13] = LF_NESTTYPE, type = 0x3F67, iterator + list[14] = LF_NESTTYPE, type = 0x3F68, const_iterator + list[15] = LF_NESTTYPE, type = 0x3F69, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x3F6A, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x3F77, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x3F68, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x3F5B, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3F79, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x3F7D, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x3F7D, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x3F80, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x3F80, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x3F82, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x3F83, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x3F83, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x3F84, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x3F85, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x3F88, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x3F88, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x3F8A, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x3F5B, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x3F8A, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x3F5B, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x3F8F, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x3F98, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x3F9D, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x3F5B, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x3F9F, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x3FA6, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x3F8A, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x3FA7, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x3FA9, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x3FAD, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x3FAA, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x3FB1, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x3FAE, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x3FB4, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x3F5B, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x3FB6, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x3FB8, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x3FA1, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x3FB9, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x3F64, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x3F62, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x3fbb : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x3fba, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = list >, UDT(0x00003fbb) + +0x3fbc : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00003fd0) + +0x3fbd : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3FAA + +0x3fbe : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FBD + +0x3fbf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3F66 + list[1] = 0x3F66 + +0x3fc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3FAA, This type = 0x3FBE, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3fbf, This adjust = 0 + +0x3fc1 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FBC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3FC0, name = 'operator()' + +0x3fc2 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3fc1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00003fc2) + +0x3fc3 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00003fce) + +0x3fc4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FA7 + +0x3fc5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3FBD + +0x3fc6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x3FC5 + list[1] = 0x3F66 + +0x3fc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3FA7, This type = 0x3FC4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3fc6, This adjust = 0 + +0x3fc8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3FA7 + +0x3fc9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FC8 + +0x3fca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3FA7, This type = 0x3FC9, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f89, This adjust = 0 + +0x3fcb : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FC3, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3FC7, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3FCA, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x3FAA, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = T_REAL64(0041), offset = 8 + member name = 'value' + +0x3fcc : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3fcb, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = binder2nd >, UDT(0x00003fcc) + +0x3fcd : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_REAL64(0041), argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x3fce : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3fcd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00003fce) + +0x3fcf : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_REAL64(0041), first_argument_type + list[1] = LF_NESTTYPE, type = T_REAL64(0041), second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x3fd0 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3fcf, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00003fd0) + +0x3fd1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3FAE + +0x3fd2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FD1 + +0x3fd3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3FAE, This type = 0x3FD2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3fbf, This adjust = 0 + +0x3fd4 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FBC, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3FD3, name = 'operator()' + +0x3fd5 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x3fd4, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00003fd5) + +0x3fd6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F62 + +0x3fd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3FD6, Class type = 0x3F63, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3fb7, This adjust = 0 + +0x3fd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F65, Class type = 0x3F63, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x3fb7, This adjust = 0 + +0x3fd9 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x3FD6, _Nodepref + list[1] = LF_NESTTYPE, type = 0x3F65, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x3FD7, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x3FD7, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x3FD8, name = '_Value' + +0x3fda : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x3fd9, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00003fda) + +0x3fdb : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004029) + +0x3fdc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F69 + +0x3fdd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F69, This type = 0x3FDC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f9b, This adjust = 0 + +0x3fde : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F69, This type = 0x3FDC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fdf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FDD, + list[1] = public, VANILLA, 0x3FDE, + +0x3fe0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F69 + +0x3fe1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FE0 + +0x3fe2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F69, This type = 0x3FE1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fe3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F65, Class type = 0x3F69, This type = 0x3FE1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fe4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F69, Class type = 0x3F69, This type = 0x3FDC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3fe5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F69 + +0x3fe6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3FE5, Class type = 0x3F69, This type = 0x3FDC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fe7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FE4, + list[1] = public, VANILLA, 0x3FE6, + +0x3fe8 : Length = 350, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FDB, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3F69, _Myt + list[2] = LF_NESTTYPE, type = 0x3F67, iter_type + list[3] = LF_NESTTYPE, type = T_REAL64(0041), value_type + list[4] = LF_NESTTYPE, type = 0x3F65, reference_type + list[5] = LF_NESTTYPE, type = T_32PREAL64(0441), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x3FDF, name = 'reverse_bidirectional_iterator >::iterator,double,double &,double *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3FE2, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3FE3, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x3FE7, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x3FE7, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x3F67, offset = 0 + member name = 'current' + +0x3fe9 : Length = 126, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3fe8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,double,double &,double *,int>, UDT(0x00003fe9) + +0x3fea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F6A + +0x3feb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F68 + +0x3fec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F6A, This type = 0x3FEA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3feb, This adjust = 0 + +0x3fed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F6A, This type = 0x3FEA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3fee : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FEC, + list[1] = public, VANILLA, 0x3FED, + +0x3fef : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F6A + +0x3ff0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3FEF + +0x3ff1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F68, Class type = 0x3F6A, This type = 0x3FF0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ff2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F66, Class type = 0x3F6A, This type = 0x3FF0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ff3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F6A, Class type = 0x3F6A, This type = 0x3FEA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x3ff4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F6A + +0x3ff5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3FF4, Class type = 0x3F6A, This type = 0x3FEA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x3ff6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FF3, + list[1] = public, VANILLA, 0x3FF5, + +0x3ff7 : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FDB, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3F6A, _Myt + list[2] = LF_NESTTYPE, type = 0x3F68, iter_type + list[3] = LF_NESTTYPE, type = T_REAL64(0041), value_type + list[4] = LF_NESTTYPE, type = 0x3F66, reference_type + list[5] = LF_NESTTYPE, type = T_32PREAL64(0441), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x3FEE, name = 'reverse_bidirectional_iterator >::const_iterator,double,double const &,double const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3FF1, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3FF2, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x3FF6, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x3FF6, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x3F68, offset = 0 + member name = 'current' + +0x3ff8 : Length = 142, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3ff7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,double,double const &,double const *,int>, UDT(0x00003ff8) + +0x3ff9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F5C + +0x3ffa : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3FF9 + +0x3ffb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3FFA + +0x3ffc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F5C, This type = 0x3F5D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3ffb, This adjust = 0 + +0x3ffd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F5C, This type = 0x3F5D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x3f8b, This adjust = 0 + +0x3ffe : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x3FFC, + list[1] = public, VANILLA, 0x3FFD, + list[2] = public, VANILLA, 0x3F5E, + +0x3fff : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F5C + +0x4000 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3FFF + +0x4001 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F5C, This type = 0x3F5D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4000, This adjust = 0 + +0x4002 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3F59, offset = 0 + list[1] = LF_NESTTYPE, type = 0x3F5C, _Myt + list[2] = LF_NESTTYPE, type = 0x3F64, _A + list[3] = LF_METHOD, count = 2, list = 0x3FFE, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4001, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3F5E, name = '~List' + +0x4003 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4002, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = List, UDT(0x00004003) + +0x4004 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F6B + +0x4005 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL64(0441), Class type = 0x3F64, This type = 0x4004, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3f89, This adjust = 0 + +0x4006 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x3F65 + +0x4007 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL64(0441), Class type = 0x3F64, This type = 0x4004, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4006, This adjust = 0 + +0x4008 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4005, + list[1] = public, VANILLA, 0x4007, + +0x4009 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F64 + +0x400a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PREAL64(0441), Class type = 0x3F64, This type = 0x4009, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x400b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3F64, This type = 0x4009, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x400c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F64, This type = 0x4009, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x400d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PREAL64(0441) + list[1] = 0x3F66 + +0x400e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F64, This type = 0x4009, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x400d, This adjust = 0 + +0x400f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_32PREAL64(0441) + +0x4010 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F64, This type = 0x4009, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x400f, This adjust = 0 + +0x4011 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x3F64, This type = 0x4004, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4012 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = T_32PREAL64(0441), pointer + list[3] = LF_NESTTYPE, type = T_32PREAL64(0441), const_pointer + list[4] = LF_NESTTYPE, type = 0x3F65, reference + list[5] = LF_NESTTYPE, type = 0x3F66, const_reference + list[6] = LF_NESTTYPE, type = T_REAL64(0041), value_type + list[7] = LF_METHOD, count = 2, list = 0x4008, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x400A, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x400B, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x400C, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x400E, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4010, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4011, name = 'max_size' + +0x4013 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4012, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004013) + +0x4014 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = T_REAL64(0041), offset = 8 + member name = '_Value' + +0x4015 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4014, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = list >::_Node, UDT(0x00004015) + +0x4016 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F67 + +0x4017 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F67, This type = 0x4016, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fb7, This adjust = 0 + +0x4018 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F67, This type = 0x4016, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4019 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4017, + list[1] = public, VANILLA, 0x4018, + +0x401a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F67 + +0x401b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x401A + +0x401c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F65, Class type = 0x3F67, This type = 0x401B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x401d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F67, Class type = 0x3F67, This type = 0x4016, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x401e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F67 + +0x401f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x401E, Class type = 0x3F67, This type = 0x4016, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4020 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x401D, + list[1] = public, VANILLA, 0x401F, + +0x4021 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x401A + +0x4022 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4021 + +0x4023 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3F67, This type = 0x401B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4022, This adjust = 0 + +0x4024 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F62, Class type = 0x3F67, This type = 0x401B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4025 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3FDB, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4019, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x401C, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4020, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4020, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4023, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4024, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x3F62, offset = 0 + member name = '_Ptr' + +0x4026 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4025, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004026) + +0x4027 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x0000403c) + +0x4028 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4027, offset = 0 + +0x4029 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4028, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004029) + +0x402a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x3F68 + +0x402b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F68, This type = 0x402A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4022, This adjust = 0 + +0x402c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F68, This type = 0x402A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3fb7, This adjust = 0 + +0x402d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x3F68, This type = 0x402A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x402e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x402B, + list[1] = public, VANILLA, 0x402C, + list[2] = public, VANILLA, 0x402D, + +0x402f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3F68 + +0x4030 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x402F + +0x4031 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F66, Class type = 0x3F68, This type = 0x4030, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4032 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x3F68, Class type = 0x3F68, This type = 0x402A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4033 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x3F68 + +0x4034 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4033, Class type = 0x3F68, This type = 0x402A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4035 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4032, + list[1] = public, VANILLA, 0x4034, + +0x4036 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x402F + +0x4037 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4036 + +0x4038 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x3F68, This type = 0x4030, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4037, This adjust = 0 + +0x4039 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3F67, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x402E, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4031, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4035, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4035, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4038, name = 'operator==' + +0x403a : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4039, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x0000403a) + +0x403b : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = T_REAL64(0041), value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x403c : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x403b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x0000403c) + +0x403d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000412c) + +0x403e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x403D + +0x403f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4040 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x0000412f) + +0x4041 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4040 + +0x4042 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4040, This type = 0x4041, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4043 : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x4040, offset = 8 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 24 + member name = 'm_unk0x10' + +0x4044 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4043, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 32, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4045 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004137) + +0x4046 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4045 + +0x4047 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x000040c2) + +0x4048 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004100) + +0x4049 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = a, UDT(0x00004136) + +0x404a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4049 + +0x404b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4049 + +0x404c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x404B + +0x404d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4049 + +0x404e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x404B + +0x404f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004113) + +0x4050 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004127) + +0x4051 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,a,a &,a *,int>, UDT(0x000040d1) + +0x4052 : Length = 118, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,a,a const &,a const *,int>, UDT(0x000040e0) + +0x4053 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4048 + +0x4054 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4053 + +0x4055 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4050 + list[1] = 0x4050 + list[2] = 0x4054 + +0x4056 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4055, This adjust = 0 + +0x4057 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x403D + +0x4058 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4057 + +0x4059 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4058 + +0x405a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4059, This adjust = 0 + +0x405b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x404E + list[2] = 0x4054 + +0x405c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x405b, This adjust = 0 + +0x405d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4054 + +0x405e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x405d, This adjust = 0 + +0x405f : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4056, + list[1] = public, VANILLA, 0x405A, + list[2] = public, VANILLA, 0x405C, + list[3] = public, VANILLA, 0x405E, + +0x4060 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x403D + +0x4061 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4060, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4059, This adjust = 0 + +0x4062 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4057 + +0x4063 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4050, Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4064 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4065 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4063, + list[1] = public, VANILLA, 0x4064, + +0x4066 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4052, Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4067 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4051, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4068 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4066, + list[1] = public, VANILLA, 0x4067, + +0x4069 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4049 + +0x406a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4069, This adjust = 0 + +0x406b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x406c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x406d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4048, Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x406e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x406f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4070 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x406E, + list[1] = public, VANILLA, 0x406F, + +0x4071 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x404E + +0x4072 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4071, This adjust = 0 + +0x4073 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x404E + +0x4074 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4073, This adjust = 0 + +0x4075 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4050 + list[1] = 0x4050 + +0x4076 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4075, This adjust = 0 + +0x4077 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4074, + list[1] = public, VANILLA, 0x4076, + +0x4078 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404F + list[1] = 0x4050 + list[2] = 0x4050 + +0x4079 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4078, This adjust = 0 + +0x407a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404F + list[1] = 0x404C + list[2] = 0x404C + +0x407b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x407a, This adjust = 0 + +0x407c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404F + list[1] = T_UINT4(0075) + list[2] = 0x404E + +0x407d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x407c, This adjust = 0 + +0x407e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404F + list[1] = 0x404E + +0x407f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x407e, This adjust = 0 + +0x4080 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4079, + list[1] = public, VANILLA, 0x407B, + list[2] = public, VANILLA, 0x407D, + list[3] = public, VANILLA, 0x407F, + +0x4081 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404F + list[1] = 0x404F + +0x4082 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4081, This adjust = 0 + +0x4083 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x404F + +0x4084 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4083, This adjust = 0 + +0x4085 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4082, + list[1] = public, VANILLA, 0x4084, + +0x4086 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4060 + +0x4087 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4086, This adjust = 0 + +0x4088 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x404F + list[1] = 0x4060 + list[2] = 0x404F + list[3] = 0x404F + +0x4089 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x4088, This adjust = 0 + +0x408a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404F + list[1] = 0x4060 + list[2] = 0x404F + +0x408b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x408a, This adjust = 0 + +0x408c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404F + list[1] = 0x4060 + +0x408d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x408c, This adjust = 0 + +0x408e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4089, + list[1] = public, VANILLA, 0x408B, + list[2] = public, VANILLA, 0x408D, + +0x408f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004133) + +0x4090 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x408F + +0x4091 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4090, This adjust = 0 + +0x4092 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x000040aa) + +0x4093 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4092 + +0x4094 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4093, This adjust = 0 + +0x4095 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4094, + list[1] = public, VANILLA, 0x403F, + +0x4096 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x000040bd) + +0x4097 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4060 + list[1] = 0x4096 + +0x4098 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4097, This adjust = 0 + +0x4099 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4098, + list[1] = public, VANILLA, 0x4087, + +0x409a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4096 + +0x409b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x409a, This adjust = 0 + +0x409c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x409B, + list[1] = public, VANILLA, 0x403F, + +0x409d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4046 + list[1] = 0x4046 + +0x409e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4046, Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x409d, This adjust = 0 + +0x409f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4046 + +0x40a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x403E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x409f, This adjust = 0 + +0x40a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x403D, This type = 0x4062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40a2 : Length = 1082, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x4045, _Node + list[2] = LF_NESTTYPE, type = 0x4046, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x4047, _Acc + list[4] = LF_NESTTYPE, type = 0x403D, _Myt + list[5] = LF_NESTTYPE, type = 0x4048, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x404A, _Tptr + list[9] = LF_NESTTYPE, type = 0x404C, _Ctptr + list[10] = LF_NESTTYPE, type = 0x404D, reference + list[11] = LF_NESTTYPE, type = 0x404E, const_reference + list[12] = LF_NESTTYPE, type = 0x4049, value_type + list[13] = LF_NESTTYPE, type = 0x404F, iterator + list[14] = LF_NESTTYPE, type = 0x4050, const_iterator + list[15] = LF_NESTTYPE, type = 0x4051, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x4052, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x405F, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x4050, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x403F, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x4061, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x4065, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x4065, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x4068, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x4068, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x406A, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x406B, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x406B, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x406C, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x406D, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4070, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4070, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4072, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x403F, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4072, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x403F, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4077, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4080, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x4085, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x403F, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x4087, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x408E, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4072, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x408F, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x4091, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x4095, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x4092, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4099, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x4096, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x409C, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x403F, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x409E, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x40A0, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4089, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x40A1, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4048, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x4046, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x40a3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x40a2, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = list >, UDT(0x0000412c) + +0x40a4 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x000040b8) + +0x40a5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4092 + +0x40a6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x40A5 + +0x40a7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404E + list[1] = 0x404E + +0x40a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4092, This type = 0x40A6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x40a7, This adjust = 0 + +0x40a9 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40A4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40A8, name = 'operator()' + +0x40aa : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x40a9, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x000040aa) + +0x40ab : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000040b6) + +0x40ac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x408F + +0x40ad : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x40A5 + +0x40ae : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x40AD + list[1] = 0x404E + +0x40af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x408F, This type = 0x40AC, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x40ae, This adjust = 0 + +0x40b0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x408F + +0x40b1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x40B0 + +0x40b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x408F, This type = 0x40B1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4071, This adjust = 0 + +0x40b3 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40AB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40AF, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x40B2, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x4092, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4049, offset = 8 + member name = 'value' + +0x40b4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x40b3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = binder2nd >, UDT(0x00004133) + +0x40b5 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4049, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x40b6 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x40b5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000040b6) + +0x40b7 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4049, first_argument_type + list[1] = LF_NESTTYPE, type = 0x4049, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x40b8 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x40b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x000040b8) + +0x40b9 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4096 + +0x40ba : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x40B9 + +0x40bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4096, This type = 0x40BA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x40a7, This adjust = 0 + +0x40bc : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40A4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40BB, name = 'operator()' + +0x40bd : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x40bc, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x000040bd) + +0x40be : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4046 + +0x40bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x40BE, Class type = 0x4047, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x409f, This adjust = 0 + +0x40c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4047, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x409f, This adjust = 0 + +0x40c1 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x40BE, _Nodepref + list[1] = LF_NESTTYPE, type = 0x404D, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x40BF, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x40BF, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x40C0, name = '_Value' + +0x40c2 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x40c1, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x000040c2) + +0x40c3 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004116) + +0x40c4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4051 + +0x40c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4051, This type = 0x40C4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4083, This adjust = 0 + +0x40c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4051, This type = 0x40C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40c7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40C5, + list[1] = public, VANILLA, 0x40C6, + +0x40c8 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4051 + +0x40c9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x40C8 + +0x40ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x4051, This type = 0x40C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4051, This type = 0x40C9, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4051, Class type = 0x4051, This type = 0x40C4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x40cd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4051 + +0x40ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x40CD, Class type = 0x4051, This type = 0x40C4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40cf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40CC, + list[1] = public, VANILLA, 0x40CE, + +0x40d0 : Length = 326, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40C3, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4051, _Myt + list[2] = LF_NESTTYPE, type = 0x404F, iter_type + list[3] = LF_NESTTYPE, type = 0x4049, value_type + list[4] = LF_NESTTYPE, type = 0x404D, reference_type + list[5] = LF_NESTTYPE, type = 0x404A, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x40C7, name = 'reverse_bidirectional_iterator >::iterator,a,a &,a *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x40CA, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x40CB, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x40CF, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x40CF, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x404F, offset = 0 + member name = 'current' + +0x40d1 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x40d0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,a,a &,a *,int>, UDT(0x000040d1) + +0x40d2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4052 + +0x40d3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4050 + +0x40d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4052, This type = 0x40D2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40d3, This adjust = 0 + +0x40d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4052, This type = 0x40D2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40d6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40D4, + list[1] = public, VANILLA, 0x40D5, + +0x40d7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4052 + +0x40d8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x40D7 + +0x40d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4050, Class type = 0x4052, This type = 0x40D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4052, This type = 0x40D8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4052, Class type = 0x4052, This type = 0x40D2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x40dc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4052 + +0x40dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x40DC, Class type = 0x4052, This type = 0x40D2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40de : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40DB, + list[1] = public, VANILLA, 0x40DD, + +0x40df : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40C3, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4052, _Myt + list[2] = LF_NESTTYPE, type = 0x4050, iter_type + list[3] = LF_NESTTYPE, type = 0x4049, value_type + list[4] = LF_NESTTYPE, type = 0x404E, reference_type + list[5] = LF_NESTTYPE, type = 0x404C, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x40D6, name = 'reverse_bidirectional_iterator >::const_iterator,a,a const &,a const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x40D9, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x40DA, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x40DE, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x40DE, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4050, offset = 0 + member name = 'current' + +0x40e0 : Length = 118, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x40df, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,a,a const &,a const *,int>, UDT(0x000040e0) + +0x40e1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4040 + +0x40e2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x40E1 + +0x40e3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x40E2 + +0x40e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4040, This type = 0x4041, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40e3, This adjust = 0 + +0x40e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4040, This type = 0x4041, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4073, This adjust = 0 + +0x40e6 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40E4, + list[1] = public, VANILLA, 0x40E5, + list[2] = public, VANILLA, 0x4042, + +0x40e7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4040 + +0x40e8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x40E7 + +0x40e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4040, This type = 0x4041, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40e8, This adjust = 0 + +0x40ea : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x403D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4040, _Myt + list[2] = LF_NESTTYPE, type = 0x4048, _A + list[3] = LF_METHOD, count = 2, list = 0x40E6, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x40E9, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4042, name = '~List' + +0x40eb : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x40ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = List, UDT(0x0000412f) + +0x40ec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x404B + +0x40ed : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4049 + +0x40ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4049, This type = 0x40EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40ed, This adjust = 0 + +0x40ef : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_REAL64(0041), offset = 0 + member name = 'x' + list[1] = LF_MEMBER, public, type = T_REAL64(0041), offset = 8 + member name = 'y' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator==' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator<' + +0x40f0 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x40ef, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = a, UDT(0x00004136) + +0x40f1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4053 + +0x40f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404C, Class type = 0x4048, This type = 0x40F1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4071, This adjust = 0 + +0x40f3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x404D + +0x40f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4048, This type = 0x40F1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40f3, This adjust = 0 + +0x40f5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x40F2, + list[1] = public, VANILLA, 0x40F4, + +0x40f6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4048 + +0x40f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4048, This type = 0x40F6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x40f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x4048, This type = 0x40F6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x40f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4048, This type = 0x40F6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x40fa : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404A + list[1] = 0x404E + +0x40fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4048, This type = 0x40F6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x40fa, This adjust = 0 + +0x40fc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x404A + +0x40fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4048, This type = 0x40F6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40fc, This adjust = 0 + +0x40fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4048, This type = 0x40F1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x40ff : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x404A, pointer + list[3] = LF_NESTTYPE, type = 0x404C, const_pointer + list[4] = LF_NESTTYPE, type = 0x404D, reference + list[5] = LF_NESTTYPE, type = 0x404E, const_reference + list[6] = LF_NESTTYPE, type = 0x4049, value_type + list[7] = LF_METHOD, count = 2, list = 0x40F5, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x40F7, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x40F8, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x40F9, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x40FB, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x40FD, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x40FE, name = 'max_size' + +0x4100 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x40ff, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004100) + +0x4101 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x4049, offset = 8 + member name = '_Value' + +0x4102 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = list >::_Node, UDT(0x00004137) + +0x4103 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x404F + +0x4104 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x404F, This type = 0x4103, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x409f, This adjust = 0 + +0x4105 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x404F, This type = 0x4103, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4106 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4104, + list[1] = public, VANILLA, 0x4105, + +0x4107 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x404F + +0x4108 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4107 + +0x4109 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x404F, This type = 0x4108, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x410a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404F, Class type = 0x404F, This type = 0x4103, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x410b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x404F + +0x410c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x410B, Class type = 0x404F, This type = 0x4103, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x410d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x410A, + list[1] = public, VANILLA, 0x410C, + +0x410e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4107 + +0x410f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x410E + +0x4110 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x404F, This type = 0x4108, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x410f, This adjust = 0 + +0x4111 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4046, Class type = 0x404F, This type = 0x4108, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4112 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40C3, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4106, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4109, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x410D, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x410D, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4110, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4111, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x4046, offset = 0 + member name = '_Ptr' + +0x4113 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4112, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004113) + +0x4114 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004129) + +0x4115 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4114, offset = 0 + +0x4116 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4115, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004116) + +0x4117 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4050 + +0x4118 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4050, This type = 0x4117, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x410f, This adjust = 0 + +0x4119 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4050, This type = 0x4117, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x409f, This adjust = 0 + +0x411a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4050, This type = 0x4117, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x411b : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4118, + list[1] = public, VANILLA, 0x4119, + list[2] = public, VANILLA, 0x411A, + +0x411c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4050 + +0x411d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x411C + +0x411e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4050, This type = 0x411D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x411f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4050, Class type = 0x4050, This type = 0x4117, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4120 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4050 + +0x4121 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4120, Class type = 0x4050, This type = 0x4117, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4122 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x411F, + list[1] = public, VANILLA, 0x4121, + +0x4123 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x411C + +0x4124 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4123 + +0x4125 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4050, This type = 0x411D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4124, This adjust = 0 + +0x4126 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x404F, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x411B, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x411E, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4122, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4122, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4125, name = 'operator==' + +0x4127 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4126, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004127) + +0x4128 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x4049, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4129 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4128, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004129) + +0x412a : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x4040, offset = 4 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x412b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x412a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x412c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x40a2, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000412c) + +0x412d : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x40AB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40AF, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x40B2, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x4092, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4049, offset = 1 + member name = 'value' + +0x412e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x412d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 124, class name = binder2nd >, UDT(0x00004133) + +0x412f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x40ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x0000412f) + +0x4130 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3F18, offset = 0 + member name = 'asd' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator<' + +0x4131 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4130, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 123, class name = a, UDT(0x00004136) + +0x4132 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 132, class name = list >::_Node, UDT(0x00004137) + +0x4133 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x412d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x00004133) + +0x4134 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 400 + Name = + +0x4135 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4134, offset = 0 + member name = 'asd' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x40EE, name = 'operator<' + +0x4136 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4135, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = a, UDT(0x00004136) + +0x4137 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004137) + +0x4138 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = vector >, UDT(0x00004173) + +0x4139 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4138 + +0x413a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x413b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Vector, UDT(0x0000419d) + +0x413c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x413B + +0x413d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x413B, This type = 0x413C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x413e : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x413B, offset = 4 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 20 + member name = 'm_unk0x10' + +0x413f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x413e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 24, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4140 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_iterator, UDT(0x00004186) + +0x4141 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_iterator, UDT(0x00004197) + +0x4142 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404C + list[1] = 0x404C + list[2] = 0x4054 + +0x4143 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4142, This adjust = 0 + +0x4144 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4138 + +0x4145 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4144 + +0x4146 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4145 + +0x4147 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4146, This adjust = 0 + +0x4148 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x405b, This adjust = 0 + +0x4149 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x405d, This adjust = 0 + +0x414a : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4143, + list[1] = public, VANILLA, 0x4147, + list[2] = public, VANILLA, 0x4148, + list[3] = public, VANILLA, 0x4149, + +0x414b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4138 + +0x414c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x414B, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4146, This adjust = 0 + +0x414d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x414e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4144 + +0x414f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4150 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404C, Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4151 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4152 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4150, + list[1] = public, VANILLA, 0x4151, + +0x4153 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4140, Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4154 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4141, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4155 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4153, + list[1] = public, VANILLA, 0x4154, + +0x4156 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4069, This adjust = 0 + +0x4157 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4158 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4048, Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4159 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x415a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x415b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4159, + list[1] = public, VANILLA, 0x415A, + +0x415c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x415d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x415e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x415C, + list[1] = public, VANILLA, 0x415D, + +0x415f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4071, This adjust = 0 + +0x4160 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4073, This adjust = 0 + +0x4161 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404C + list[1] = 0x404C + +0x4162 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4161, This adjust = 0 + +0x4163 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4160, + list[1] = public, VANILLA, 0x4162, + +0x4164 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404A + list[1] = 0x404C + list[2] = 0x404C + +0x4165 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4164, This adjust = 0 + +0x4166 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x404A + list[1] = T_UINT4(0075) + list[2] = 0x404E + +0x4167 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4166, This adjust = 0 + +0x4168 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x40fa, This adjust = 0 + +0x4169 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4165, + list[1] = public, VANILLA, 0x4167, + list[2] = public, VANILLA, 0x4168, + +0x416a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x404A + list[1] = 0x404A + +0x416b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x416a, This adjust = 0 + +0x416c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40fc, This adjust = 0 + +0x416d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x416B, + list[1] = public, VANILLA, 0x416C, + +0x416e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x414B + +0x416f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x416e, This adjust = 0 + +0x4170 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x4139, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x416a, This adjust = 0 + +0x4171 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4138, This type = 0x414E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4172 : Length = 866, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4138, _Myt + list[1] = LF_NESTTYPE, type = 0x4048, allocator_type + list[2] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[3] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[4] = LF_NESTTYPE, type = 0x404A, _Tptr + list[5] = LF_NESTTYPE, type = 0x404C, _Ctptr + list[6] = LF_NESTTYPE, type = 0x404D, reference + list[7] = LF_NESTTYPE, type = 0x404E, const_reference + list[8] = LF_NESTTYPE, type = 0x4049, value_type + list[9] = LF_NESTTYPE, type = 0x404A, iterator + list[10] = LF_NESTTYPE, type = 0x404C, const_iterator + list[11] = LF_NESTTYPE, type = 0x4140, const_reverse_iterator + list[12] = LF_NESTTYPE, type = 0x4141, reverse_iterator + list[13] = LF_METHOD, count = 4, list = 0x414A, name = 'vector >' + list[14] = LF_NESTTYPE, type = 0x404C, _It + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x413A, name = '~vector >' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x414C, name = 'operator=' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x414D, name = 'reserve' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x414F, name = 'capacity' + list[19] = LF_METHOD, count = 2, list = 0x4152, name = 'begin' + list[20] = LF_METHOD, count = 2, list = 0x4152, name = 'end' + list[21] = LF_METHOD, count = 2, list = 0x4155, name = 'rbegin' + list[22] = LF_METHOD, count = 2, list = 0x4155, name = 'rend' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x4156, name = 'resize' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x414F, name = 'size' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x414F, name = 'max_size' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x4157, name = 'empty' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x4158, name = 'get_allocator' + list[28] = LF_METHOD, count = 2, list = 0x415B, name = 'at' + list[29] = LF_METHOD, count = 2, list = 0x415B, name = 'operator[]' + list[30] = LF_METHOD, count = 2, list = 0x415E, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x415E, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x415F, name = 'push_back' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x413A, name = 'pop_back' + list[34] = LF_METHOD, count = 2, list = 0x4163, name = 'assign' + list[35] = LF_METHOD, count = 3, list = 0x4169, name = 'insert' + list[36] = LF_METHOD, count = 2, list = 0x416D, name = 'erase' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x413A, name = 'clear' + list[38] = LF_ONEMETHOD, public, VANILLA, index = 0x416F, name = 'swap' + list[39] = LF_ONEMETHOD, protected, VANILLA, index = 0x4170, name = '_Destroy' + list[40] = LF_ONEMETHOD, protected, VANILLA, index = 0x4171, name = '_Xran' + list[41] = LF_MEMBER, protected, type = 0x4048, offset = 0 + member name = 'allocator' + list[42] = LF_MEMBER, protected, type = 0x404A, offset = 4 + member name = '_First' + list[43] = LF_MEMBER, protected, type = 0x404A, offset = 8 + member name = '_Last' + list[44] = LF_MEMBER, protected, type = 0x404A, offset = 12 + member name = '_End' + +0x4173 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 60, field list type 0x4172, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = vector >, UDT(0x00004173) + +0x4174 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Ranit, UDT(0x000041a0) + +0x4175 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4140 + +0x4176 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x404C + +0x4177 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4140, This type = 0x4175, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4176, This adjust = 0 + +0x4178 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4140, This type = 0x4175, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4179 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4177, + list[1] = public, VANILLA, 0x4178, + +0x417a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4140 + +0x417b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x417A + +0x417c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404C, Class type = 0x4140, This type = 0x417B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x417d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4140, This type = 0x417B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x417e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4140, Class type = 0x4140, This type = 0x4175, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x417f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4140 + +0x4180 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x417F, Class type = 0x4140, This type = 0x4175, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4181 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x417E, + list[1] = public, VANILLA, 0x4180, + +0x4182 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x417F, Class type = 0x4140, This type = 0x4175, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4183 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4140, Class type = 0x4140, This type = 0x417B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4184 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404E, Class type = 0x4140, This type = 0x417B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4185 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4174, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4140, _Myt + list[2] = LF_NESTTYPE, type = 0x404C, iter_type + list[3] = LF_NESTTYPE, type = 0x4049, value_type + list[4] = LF_NESTTYPE, type = 0x404E, reference_type + list[5] = LF_NESTTYPE, type = 0x404C, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4179, name = 'reverse_iterator' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x417C, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x417D, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4181, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4181, name = 'operator--' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4182, name = 'operator+=' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4183, name = 'operator+' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4182, name = 'operator-=' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x4183, name = 'operator-' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x4184, name = 'operator[]' + list[17] = LF_MEMBER, protected, type = 0x404C, offset = 0 + member name = 'current' + +0x4186 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4185, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_iterator, UDT(0x00004186) + +0x4187 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4141 + +0x4188 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4141, This type = 0x4187, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x40fc, This adjust = 0 + +0x4189 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4141, This type = 0x4187, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x418a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4188, + list[1] = public, VANILLA, 0x4189, + +0x418b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4141 + +0x418c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x418B + +0x418d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404A, Class type = 0x4141, This type = 0x418C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x418e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4141, This type = 0x418C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x418f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4141, Class type = 0x4141, This type = 0x4187, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4190 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4141 + +0x4191 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4190, Class type = 0x4141, This type = 0x4187, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4192 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x418F, + list[1] = public, VANILLA, 0x4191, + +0x4193 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4190, Class type = 0x4141, This type = 0x4187, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4194 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4141, Class type = 0x4141, This type = 0x418C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4195 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x404D, Class type = 0x4141, This type = 0x418C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4196 : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4174, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4141, _Myt + list[2] = LF_NESTTYPE, type = 0x404A, iter_type + list[3] = LF_NESTTYPE, type = 0x4049, value_type + list[4] = LF_NESTTYPE, type = 0x404D, reference_type + list[5] = LF_NESTTYPE, type = 0x404A, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x418A, name = 'reverse_iterator' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x418D, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x418E, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4192, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4192, name = 'operator--' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4193, name = 'operator+=' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4194, name = 'operator+' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4193, name = 'operator-=' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x4194, name = 'operator-' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x4195, name = 'operator[]' + list[17] = LF_MEMBER, protected, type = 0x404A, offset = 0 + member name = 'current' + +0x4197 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4196, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_iterator, UDT(0x00004197) + +0x4198 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x413B, This type = 0x413C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x405d, This adjust = 0 + +0x4199 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x413B + +0x419a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4199 + +0x419b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x413B, This type = 0x413C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x419a, This adjust = 0 + +0x419c : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4138, offset = 0 + list[1] = LF_NESTTYPE, type = 0x413B, _Myt + list[2] = LF_NESTTYPE, type = 0x4048, _A + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4198, name = 'Vector' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x419B, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x413D, name = '~Vector' + +0x419d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x419c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Vector, UDT(0x0000419d) + +0x419e : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000041a3) + +0x419f : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x419E, offset = 0 + +0x41a0 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x419f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Ranit, UDT(0x000041a0) + +0x41a1 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = random_access_iterator_tag, UDT(0x000041a5) + +0x41a2 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x41A1, iterator_category + list[1] = LF_NESTTYPE, type = 0x4049, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x41a3 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x41a2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000041a3) + +0x41a4 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1C2B, offset = 0 + +0x41a5 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x41a4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = random_access_iterator_tag, UDT(0x000041a5) + +0x41a6 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000420c) + +0x41a7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41A6 + +0x41a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41a9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004254) + +0x41aa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41A9 + +0x41ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A9, This type = 0x41AA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41ac : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x41A9, offset = 4 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x41ad : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x41ac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x41ae : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000426c) + +0x41af : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x41AE + +0x41b0 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x0000422b) + +0x41b1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x0000426a) + +0x41b2 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = ListElement, UDT(0x0000425a) + +0x41b3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x41B2 + +0x41b4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41B2 + +0x41b5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x41B4 + +0x41b6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41B2 + +0x41b7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41B4 + +0x41b8 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000427d) + +0x41b9 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004291) + +0x41ba : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,ListElement,ListElement &,ListElement *,int>, UDT(0x0000423a) + +0x41bb : Length = 166, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,ListElement,ListElement const &,ListElement const *,int>, UDT(0x00004249) + +0x41bc : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41B1 + +0x41bd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41BC + +0x41be : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x41B9 + list[1] = 0x41B9 + list[2] = 0x41BD + +0x41bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41be, This adjust = 0 + +0x41c0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41A6 + +0x41c1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41C0 + +0x41c2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41C1 + +0x41c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41c2, This adjust = 0 + +0x41c4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x41B7 + list[2] = 0x41BD + +0x41c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41c4, This adjust = 0 + +0x41c6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41BD + +0x41c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41c6, This adjust = 0 + +0x41c8 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41BF, + list[1] = public, VANILLA, 0x41C3, + list[2] = public, VANILLA, 0x41C5, + list[3] = public, VANILLA, 0x41C7, + +0x41c9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41A6 + +0x41ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41C9, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41c2, This adjust = 0 + +0x41cb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41C0 + +0x41cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B9, Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41ce : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41CC, + list[1] = public, VANILLA, 0x41CD, + +0x41cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41BB, Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41BA, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41CF, + list[1] = public, VANILLA, 0x41D0, + +0x41d2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x41B2 + +0x41d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41d2, This adjust = 0 + +0x41d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B1, Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B7, Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B6, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x41d9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41D7, + list[1] = public, VANILLA, 0x41D8, + +0x41da : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B7 + +0x41db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41da, This adjust = 0 + +0x41dc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x41B7 + +0x41dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41dc, This adjust = 0 + +0x41de : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B9 + list[1] = 0x41B9 + +0x41df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41de, This adjust = 0 + +0x41e0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41DD, + list[1] = public, VANILLA, 0x41DF, + +0x41e1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x41B8 + list[1] = 0x41B9 + list[2] = 0x41B9 + +0x41e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41e1, This adjust = 0 + +0x41e3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x41B8 + list[1] = 0x41B5 + list[2] = 0x41B5 + +0x41e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41e3, This adjust = 0 + +0x41e5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x41B8 + list[1] = T_UINT4(0075) + list[2] = 0x41B7 + +0x41e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41e5, This adjust = 0 + +0x41e7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B8 + list[1] = 0x41B7 + +0x41e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41e7, This adjust = 0 + +0x41e9 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41E2, + list[1] = public, VANILLA, 0x41E4, + list[2] = public, VANILLA, 0x41E6, + list[3] = public, VANILLA, 0x41E8, + +0x41ea : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B8 + list[1] = 0x41B8 + +0x41eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41ea, This adjust = 0 + +0x41ec : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B8 + +0x41ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41ec, This adjust = 0 + +0x41ee : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41EB, + list[1] = public, VANILLA, 0x41ED, + +0x41ef : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41C9 + +0x41f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41ef, This adjust = 0 + +0x41f1 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x41B8 + list[1] = 0x41C9 + list[2] = 0x41B8 + list[3] = 0x41B8 + +0x41f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x41f1, This adjust = 0 + +0x41f3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x41B8 + list[1] = 0x41C9 + list[2] = 0x41B8 + +0x41f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x41f3, This adjust = 0 + +0x41f5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B8 + list[1] = 0x41C9 + +0x41f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41f5, This adjust = 0 + +0x41f7 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41F2, + list[1] = public, VANILLA, 0x41F4, + list[2] = public, VANILLA, 0x41F6, + +0x41f8 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x0000421d) + +0x41f9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41F8 + +0x41fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41f9, This adjust = 0 + +0x41fb : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004213) + +0x41fc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41FB + +0x41fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41fc, This adjust = 0 + +0x41fe : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x41FD, + list[1] = public, VANILLA, 0x41A8, + +0x41ff : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004226) + +0x4200 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41C9 + list[1] = 0x41FF + +0x4201 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4200, This adjust = 0 + +0x4202 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4201, + list[1] = public, VANILLA, 0x41F0, + +0x4203 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41FF + +0x4204 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4203, This adjust = 0 + +0x4205 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4204, + list[1] = public, VANILLA, 0x41A8, + +0x4206 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41AF + list[1] = 0x41AF + +0x4207 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41AF, Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4206, This adjust = 0 + +0x4208 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41AF + +0x4209 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4208, This adjust = 0 + +0x420a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A6, This type = 0x41CB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x420b : Length = 1122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x41AE, _Node + list[2] = LF_NESTTYPE, type = 0x41AF, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x41B0, _Acc + list[4] = LF_NESTTYPE, type = 0x41A6, _Myt + list[5] = LF_NESTTYPE, type = 0x41B1, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x41B3, _Tptr + list[9] = LF_NESTTYPE, type = 0x41B5, _Ctptr + list[10] = LF_NESTTYPE, type = 0x41B6, reference + list[11] = LF_NESTTYPE, type = 0x41B7, const_reference + list[12] = LF_NESTTYPE, type = 0x41B2, value_type + list[13] = LF_NESTTYPE, type = 0x41B8, iterator + list[14] = LF_NESTTYPE, type = 0x41B9, const_iterator + list[15] = LF_NESTTYPE, type = 0x41BA, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x41BB, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x41C8, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x41B9, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x41A8, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x41CA, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x41CE, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x41CE, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x41D1, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x41D1, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x41D3, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x41D4, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x41D4, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x41D5, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x41D6, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x41D9, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x41D9, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x41DB, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x41A8, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x41DB, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x41A8, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x41E0, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x41E9, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x41EE, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x41A8, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x41F0, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x41F7, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x41DB, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x41F8, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x41FA, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x41FE, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x41FB, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4202, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x41FF, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x4205, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x41A8, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x4207, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x4209, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x41F2, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x420A, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x41B1, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x41AF, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x420c : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x420b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000420c) + +0x420d : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004221) + +0x420e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41FB + +0x420f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x420E + +0x4210 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B7 + list[1] = 0x41B7 + +0x4211 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41FB, This type = 0x420F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4210, This adjust = 0 + +0x4212 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x420D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4211, name = 'operator()' + +0x4213 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4212, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004213) + +0x4214 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x0000421f) + +0x4215 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41F8 + +0x4216 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x420E + +0x4217 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4216 + list[1] = 0x41B7 + +0x4218 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41F8, This type = 0x4215, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4217, This adjust = 0 + +0x4219 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41F8 + +0x421a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4219 + +0x421b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41F8, This type = 0x421A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41da, This adjust = 0 + +0x421c : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4214, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4218, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x421B, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x41FB, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x41B2, offset = 1 + member name = 'value' + +0x421d : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x421c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x0000421d) + +0x421e : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x41B2, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x421f : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x421e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x0000421f) + +0x4220 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x41B2, first_argument_type + list[1] = LF_NESTTYPE, type = 0x41B2, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4221 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4220, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004221) + +0x4222 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41FF + +0x4223 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4222 + +0x4224 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41FF, This type = 0x4223, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4210, This adjust = 0 + +0x4225 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x420D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4224, name = 'operator()' + +0x4226 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4225, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004226) + +0x4227 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41AF + +0x4228 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4227, Class type = 0x41B0, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4208, This adjust = 0 + +0x4229 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B6, Class type = 0x41B0, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4208, This adjust = 0 + +0x422a : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4227, _Nodepref + list[1] = LF_NESTTYPE, type = 0x41B6, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4228, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4228, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4229, name = '_Value' + +0x422b : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x422a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x0000422b) + +0x422c : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004280) + +0x422d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41BA + +0x422e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41BA, This type = 0x422D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41ec, This adjust = 0 + +0x422f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41BA, This type = 0x422D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4230 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x422E, + list[1] = public, VANILLA, 0x422F, + +0x4231 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41BA + +0x4232 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4231 + +0x4233 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41BA, This type = 0x4232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4234 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B6, Class type = 0x41BA, This type = 0x4232, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4235 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41BA, Class type = 0x41BA, This type = 0x422D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4236 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41BA + +0x4237 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4236, Class type = 0x41BA, This type = 0x422D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4238 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4235, + list[1] = public, VANILLA, 0x4237, + +0x4239 : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x422C, offset = 0 + list[1] = LF_NESTTYPE, type = 0x41BA, _Myt + list[2] = LF_NESTTYPE, type = 0x41B8, iter_type + list[3] = LF_NESTTYPE, type = 0x41B2, value_type + list[4] = LF_NESTTYPE, type = 0x41B6, reference_type + list[5] = LF_NESTTYPE, type = 0x41B3, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4230, name = 'reverse_bidirectional_iterator >::iterator,ListElement,ListElement &,ListElement *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4233, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4234, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4238, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4238, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x41B8, offset = 0 + member name = 'current' + +0x423a : Length = 150, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4239, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,ListElement,ListElement &,ListElement *,int>, UDT(0x0000423a) + +0x423b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41BB + +0x423c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B9 + +0x423d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41BB, This type = 0x423B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x423c, This adjust = 0 + +0x423e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41BB, This type = 0x423B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x423f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x423D, + list[1] = public, VANILLA, 0x423E, + +0x4240 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41BB + +0x4241 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4240 + +0x4242 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B9, Class type = 0x41BB, This type = 0x4241, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4243 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B7, Class type = 0x41BB, This type = 0x4241, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4244 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41BB, Class type = 0x41BB, This type = 0x423B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4245 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41BB + +0x4246 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4245, Class type = 0x41BB, This type = 0x423B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4247 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4244, + list[1] = public, VANILLA, 0x4246, + +0x4248 : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x422C, offset = 0 + list[1] = LF_NESTTYPE, type = 0x41BB, _Myt + list[2] = LF_NESTTYPE, type = 0x41B9, iter_type + list[3] = LF_NESTTYPE, type = 0x41B2, value_type + list[4] = LF_NESTTYPE, type = 0x41B7, reference_type + list[5] = LF_NESTTYPE, type = 0x41B5, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x423F, name = 'reverse_bidirectional_iterator >::const_iterator,ListElement,ListElement const &,ListElement const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4242, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4243, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4247, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4247, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x41B9, offset = 0 + member name = 'current' + +0x4249 : Length = 166, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4248, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,ListElement,ListElement const &,ListElement const *,int>, UDT(0x00004249) + +0x424a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41A9 + +0x424b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x424A + +0x424c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x424B + +0x424d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A9, This type = 0x41AA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x424c, This adjust = 0 + +0x424e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A9, This type = 0x41AA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x41dc, This adjust = 0 + +0x424f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x424D, + list[1] = public, VANILLA, 0x424E, + list[2] = public, VANILLA, 0x41AB, + +0x4250 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41A9 + +0x4251 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4250 + +0x4252 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41A9, This type = 0x41AA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4251, This adjust = 0 + +0x4253 : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x41A6, offset = 0 + list[1] = LF_NESTTYPE, type = 0x41A9, _Myt + list[2] = LF_NESTTYPE, type = 0x41B1, _A + list[3] = LF_METHOD, count = 2, list = 0x424F, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4252, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x41AB, name = '~List' + +0x4254 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4253, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004254) + +0x4255 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 400 + Name = + +0x4256 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41B4 + +0x4257 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B2 + +0x4258 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x41B2, This type = 0x4256, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4257, This adjust = 0 + +0x4259 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4255, offset = 0 + member name = 'm_pad' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4258, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4258, name = 'operator<' + +0x425a : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4259, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = ListElement, UDT(0x0000425a) + +0x425b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41BC + +0x425c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B5, Class type = 0x41B1, This type = 0x425B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x41da, This adjust = 0 + +0x425d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B6 + +0x425e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B3, Class type = 0x41B1, This type = 0x425B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x425d, This adjust = 0 + +0x425f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x425C, + list[1] = public, VANILLA, 0x425E, + +0x4260 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41B1 + +0x4261 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B3, Class type = 0x41B1, This type = 0x4260, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4262 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x41B1, This type = 0x4260, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4263 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B1, This type = 0x4260, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4264 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x41B3 + list[1] = 0x41B7 + +0x4265 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B1, This type = 0x4260, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4264, This adjust = 0 + +0x4266 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x41B3 + +0x4267 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B1, This type = 0x4260, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4266, This adjust = 0 + +0x4268 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x41B1, This type = 0x425B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4269 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x41B3, pointer + list[3] = LF_NESTTYPE, type = 0x41B5, const_pointer + list[4] = LF_NESTTYPE, type = 0x41B6, reference + list[5] = LF_NESTTYPE, type = 0x41B7, const_reference + list[6] = LF_NESTTYPE, type = 0x41B2, value_type + list[7] = LF_METHOD, count = 2, list = 0x425F, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4261, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4262, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4263, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4265, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4267, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4268, name = 'max_size' + +0x426a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4269, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x0000426a) + +0x426b : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x41B2, offset = 8 + member name = '_Value' + +0x426c : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x426b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x0000426c) + +0x426d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41B8 + +0x426e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B8, This type = 0x426D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4208, This adjust = 0 + +0x426f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B8, This type = 0x426D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4270 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x426E, + list[1] = public, VANILLA, 0x426F, + +0x4271 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41B8 + +0x4272 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4271 + +0x4273 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B6, Class type = 0x41B8, This type = 0x4272, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4274 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B8, Class type = 0x41B8, This type = 0x426D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4275 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41B8 + +0x4276 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4275, Class type = 0x41B8, This type = 0x426D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4277 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4274, + list[1] = public, VANILLA, 0x4276, + +0x4278 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4271 + +0x4279 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4278 + +0x427a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41B8, This type = 0x4272, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4279, This adjust = 0 + +0x427b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41AF, Class type = 0x41B8, This type = 0x4272, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x427c : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x422C, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4270, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4273, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4277, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4277, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x427A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x427B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x41AF, offset = 0 + member name = '_Ptr' + +0x427d : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x427c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000427d) + +0x427e : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004293) + +0x427f : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x427E, offset = 0 + +0x4280 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x427f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004280) + +0x4281 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x41B9 + +0x4282 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B9, This type = 0x4281, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4279, This adjust = 0 + +0x4283 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B9, This type = 0x4281, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4208, This adjust = 0 + +0x4284 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x41B9, This type = 0x4281, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4285 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4282, + list[1] = public, VANILLA, 0x4283, + list[2] = public, VANILLA, 0x4284, + +0x4286 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x41B9 + +0x4287 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4286 + +0x4288 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B7, Class type = 0x41B9, This type = 0x4287, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4289 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x41B9, Class type = 0x41B9, This type = 0x4281, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x428a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x41B9 + +0x428b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x428A, Class type = 0x41B9, This type = 0x4281, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x428c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4289, + list[1] = public, VANILLA, 0x428B, + +0x428d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4286 + +0x428e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x428D + +0x428f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x41B9, This type = 0x4287, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x428e, This adjust = 0 + +0x4290 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x41B8, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4285, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4288, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x428C, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x428C, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x428F, name = 'operator==' + +0x4291 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4290, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004291) + +0x4292 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x41B2, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4293 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4292, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004293) + +0x4294 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00004b3a) + +0x4295 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4294 + +0x4296 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4297 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004b57) + +0x4298 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4297 + +0x4299 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4297, This type = 0x4298, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x429a : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 224 + Name = + +0x429b : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[2] = LF_MEMBER, public, type = 0x429A, offset = 0 + member name = 'm_pad' + list[3] = LF_MEMBER, public, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x429c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x429b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x429d : Length = 158, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[6] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x429e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x429d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x429f : Length = 98, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004b1f) + +0x42a0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x429F + +0x42a1 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004b4d) + +0x42a2 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004bb8) + +0x42a3 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x42a4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x42A3 + +0x42a5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42A3 + +0x42a6 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x42A5 + +0x42a7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42A3 + +0x42a8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42A5 + +0x42a9 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004b23) + +0x42aa : Length = 106, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004bbb) + +0x42ab : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>, UDT(0x00004b50) + +0x42ac : Length = 234, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>, UDT(0x00004b53) + +0x42ad : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42A2 + +0x42ae : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42AD + +0x42af : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42AA + list[1] = 0x42AA + list[2] = 0x42AE + +0x42b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42af, This adjust = 0 + +0x42b1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4294 + +0x42b2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42B1 + +0x42b3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42B2 + +0x42b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42b3, This adjust = 0 + +0x42b5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x42A8 + list[2] = 0x42AE + +0x42b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42b5, This adjust = 0 + +0x42b7 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42AE + +0x42b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42b7, This adjust = 0 + +0x42b9 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42B0, + list[1] = public, VANILLA, 0x42B4, + list[2] = public, VANILLA, 0x42B6, + list[3] = public, VANILLA, 0x42B8, + +0x42ba : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4294 + +0x42bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42BA, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42b3, This adjust = 0 + +0x42bc : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42B1 + +0x42bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AA, Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42bf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42BD, + list[1] = public, VANILLA, 0x42BE, + +0x42c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AC, Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AB, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42C0, + list[1] = public, VANILLA, 0x42C1, + +0x42c3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x42A3 + +0x42c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42c3, This adjust = 0 + +0x42c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A2, Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A8, Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A7, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42ca : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42C8, + list[1] = public, VANILLA, 0x42C9, + +0x42cb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A8 + +0x42cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42cb, This adjust = 0 + +0x42cd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x42A8 + +0x42ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42cd, This adjust = 0 + +0x42cf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42AA + list[1] = 0x42AA + +0x42d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42cf, This adjust = 0 + +0x42d1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42CE, + list[1] = public, VANILLA, 0x42D0, + +0x42d2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = 0x42AA + list[2] = 0x42AA + +0x42d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42d2, This adjust = 0 + +0x42d4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = 0x42A6 + list[2] = 0x42A6 + +0x42d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42d4, This adjust = 0 + +0x42d6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = T_UINT4(0075) + list[2] = 0x42A8 + +0x42d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42d6, This adjust = 0 + +0x42d8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A9 + list[1] = 0x42A8 + +0x42d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42d8, This adjust = 0 + +0x42da : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42D3, + list[1] = public, VANILLA, 0x42D5, + list[2] = public, VANILLA, 0x42D7, + list[3] = public, VANILLA, 0x42D9, + +0x42db : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A9 + list[1] = 0x42A9 + +0x42dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42db, This adjust = 0 + +0x42dd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A9 + +0x42de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42dd, This adjust = 0 + +0x42df : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42DC, + list[1] = public, VANILLA, 0x42DE, + +0x42e0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42BA + +0x42e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42e0, This adjust = 0 + +0x42e2 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x42A9 + list[1] = 0x42BA + list[2] = 0x42A9 + list[3] = 0x42A9 + +0x42e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x42e2, This adjust = 0 + +0x42e4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = 0x42BA + list[2] = 0x42A9 + +0x42e5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x42e4, This adjust = 0 + +0x42e6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A9 + list[1] = 0x42BA + +0x42e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42e6, This adjust = 0 + +0x42e8 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42E3, + list[1] = public, VANILLA, 0x42E5, + list[2] = public, VANILLA, 0x42E7, + +0x42e9 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004b43) + +0x42ea : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42E9 + +0x42eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42ea, This adjust = 0 + +0x42ec : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004b3e) + +0x42ed : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42EC + +0x42ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42ed, This adjust = 0 + +0x42ef : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42EE, + list[1] = public, VANILLA, 0x4296, + +0x42f0 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004b4a) + +0x42f1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42BA + list[1] = 0x42F0 + +0x42f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42f1, This adjust = 0 + +0x42f3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42F2, + list[1] = public, VANILLA, 0x42E1, + +0x42f4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42F0 + +0x42f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42f4, This adjust = 0 + +0x42f6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42F5, + list[1] = public, VANILLA, 0x4296, + +0x42f7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A0 + list[1] = 0x42A0 + +0x42f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A0, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42f7, This adjust = 0 + +0x42f9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A0 + +0x42fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x42fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x42fc : Length = 1174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x429F, _Node + list[2] = LF_NESTTYPE, type = 0x42A0, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x42A1, _Acc + list[4] = LF_NESTTYPE, type = 0x4294, _Myt + list[5] = LF_NESTTYPE, type = 0x42A2, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x42A4, _Tptr + list[9] = LF_NESTTYPE, type = 0x42A6, _Ctptr + list[10] = LF_NESTTYPE, type = 0x42A7, reference + list[11] = LF_NESTTYPE, type = 0x42A8, const_reference + list[12] = LF_NESTTYPE, type = 0x42A3, value_type + list[13] = LF_NESTTYPE, type = 0x42A9, iterator + list[14] = LF_NESTTYPE, type = 0x42AA, const_iterator + list[15] = LF_NESTTYPE, type = 0x42AB, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x42AC, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x42B9, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x42AA, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x42BB, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x42BF, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x42BF, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x42C2, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x42C2, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x42C4, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x42C5, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x42C5, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x42C6, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x42C7, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x42CA, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x42CA, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x42CC, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x42CC, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x42D1, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x42DA, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x42DF, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x42E1, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x42E8, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x42CC, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x42E9, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x42EB, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x42EF, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x42EC, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x42F3, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x42F0, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x42F6, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x42F8, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x42FA, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x42E3, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x42FB, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x42A2, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x42A0, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x42fd : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x42fc, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b3a) + +0x42fe : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004b47) + +0x42ff : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42EC + +0x4300 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42FF + +0x4301 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A8 + list[1] = 0x42A8 + +0x4302 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42EC, This type = 0x4300, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4301, This adjust = 0 + +0x4303 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42FE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4302, name = 'operator()' + +0x4304 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4303, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b3e) + +0x4305 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00004b45) + +0x4306 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42E9 + +0x4307 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42FF + +0x4308 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4307 + list[1] = 0x42A8 + +0x4309 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42E9, This type = 0x4306, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4308, This adjust = 0 + +0x430a : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42E9 + +0x430b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x430A + +0x430c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42E9, This type = 0x430B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42cb, This adjust = 0 + +0x430d : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4305, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4309, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x430C, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x42EC, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x42A3, offset = 1 + member name = 'value' + +0x430e : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x430d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x00004b43) + +0x430f : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x42A3, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4310 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x430f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b45) + +0x4311 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x42A3, first_argument_type + list[1] = LF_NESTTYPE, type = 0x42A3, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4312 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4311, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b47) + +0x4313 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42F0 + +0x4314 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4313 + +0x4315 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42F0, This type = 0x4314, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4301, This adjust = 0 + +0x4316 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42FE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4315, name = 'operator()' + +0x4317 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4316, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004b4a) + +0x4318 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42A0 + +0x4319 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4318, Class type = 0x42A1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x431a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A7, Class type = 0x42A1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x431b : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4318, _Nodepref + list[1] = LF_NESTTYPE, type = 0x42A7, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4319, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4319, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x431A, name = '_Value' + +0x431c : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x431b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004b4d) + +0x431d : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004370) + +0x431e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42AB + +0x431f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AB, This type = 0x431E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42dd, This adjust = 0 + +0x4320 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AB, This type = 0x431E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4321 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x431F, + list[1] = public, VANILLA, 0x4320, + +0x4322 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42AB + +0x4323 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4322 + +0x4324 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x42AB, This type = 0x4323, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4325 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A7, Class type = 0x42AB, This type = 0x4323, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4326 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AB, Class type = 0x42AB, This type = 0x431E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4327 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42AB + +0x4328 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4327, Class type = 0x42AB, This type = 0x431E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4329 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4326, + list[1] = public, VANILLA, 0x4328, + +0x432a : Length = 442, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x42AB, _Myt + list[2] = LF_NESTTYPE, type = 0x42A9, iter_type + list[3] = LF_NESTTYPE, type = 0x42A3, value_type + list[4] = LF_NESTTYPE, type = 0x42A7, reference_type + list[5] = LF_NESTTYPE, type = 0x42A4, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4321, name = 'reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4324, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4325, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4329, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4329, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x42A9, offset = 0 + member name = 'current' + +0x432b : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x432a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>, UDT(0x00004b50) + +0x432c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42AC + +0x432d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42AA + +0x432e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AC, This type = 0x432C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x432d, This adjust = 0 + +0x432f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AC, This type = 0x432C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4330 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x432E, + list[1] = public, VANILLA, 0x432F, + +0x4331 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42AC + +0x4332 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4331 + +0x4333 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AA, Class type = 0x42AC, This type = 0x4332, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4334 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A8, Class type = 0x42AC, This type = 0x4332, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4335 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AC, Class type = 0x42AC, This type = 0x432C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4336 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42AC + +0x4337 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4336, Class type = 0x42AC, This type = 0x432C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4338 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4335, + list[1] = public, VANILLA, 0x4337, + +0x4339 : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x42AC, _Myt + list[2] = LF_NESTTYPE, type = 0x42AA, iter_type + list[3] = LF_NESTTYPE, type = 0x42A3, value_type + list[4] = LF_NESTTYPE, type = 0x42A8, reference_type + list[5] = LF_NESTTYPE, type = 0x42A6, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4330, name = 'reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4333, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4334, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4338, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4338, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x42AA, offset = 0 + member name = 'current' + +0x433a : Length = 234, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4339, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>, UDT(0x00004b53) + +0x433b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4297 + +0x433c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x433B + +0x433d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x433C + +0x433e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4297, This type = 0x4298, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x433d, This adjust = 0 + +0x433f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4297, This type = 0x4298, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x42cd, This adjust = 0 + +0x4340 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x433E, + list[1] = public, VANILLA, 0x433F, + list[2] = public, VANILLA, 0x4299, + +0x4341 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4297 + +0x4342 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4341 + +0x4343 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4297, This type = 0x4298, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4342, This adjust = 0 + +0x4344 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4294, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4297, _Myt + list[2] = LF_NESTTYPE, type = 0x42A2, _A + list[3] = LF_METHOD, count = 2, list = 0x4340, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4343, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4299, name = '~List' + +0x4345 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4344, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b57) + +0x4346 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42A5 + +0x4347 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A3 + +0x4348 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x42A3, This type = 0x4346, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4347, This adjust = 0 + +0x4349 : Length = 58, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4255, offset = 0 + member name = 'm_pad' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x434a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4349, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x434b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42AD + +0x434c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A6, Class type = 0x42A2, This type = 0x434B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42cb, This adjust = 0 + +0x434d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A7 + +0x434e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A4, Class type = 0x42A2, This type = 0x434B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x434d, This adjust = 0 + +0x434f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x434C, + list[1] = public, VANILLA, 0x434E, + +0x4350 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42A2 + +0x4351 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A4, Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4352 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4353 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4354 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A4 + list[1] = 0x42A8 + +0x4355 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4354, This adjust = 0 + +0x4356 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x42A4 + +0x4357 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4356, This adjust = 0 + +0x4358 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x42A2, This type = 0x434B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4359 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x42A4, pointer + list[3] = LF_NESTTYPE, type = 0x42A6, const_pointer + list[4] = LF_NESTTYPE, type = 0x42A7, reference + list[5] = LF_NESTTYPE, type = 0x42A8, const_reference + list[6] = LF_NESTTYPE, type = 0x42A3, value_type + list[7] = LF_METHOD, count = 2, list = 0x434F, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4351, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4352, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4353, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4355, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4357, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4358, name = 'max_size' + +0x435a : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4359, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004bb8) + +0x435b : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x42A3, offset = 8 + member name = '_Value' + +0x435c : Length = 98, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x435b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004b1f) + +0x435d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42A9 + +0x435e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A9, This type = 0x435D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x435f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A9, This type = 0x435D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4360 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x435E, + list[1] = public, VANILLA, 0x435F, + +0x4361 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42A9 + +0x4362 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4361 + +0x4363 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A7, Class type = 0x42A9, This type = 0x4362, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4364 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x42A9, This type = 0x435D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4365 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42A9 + +0x4366 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4365, Class type = 0x42A9, This type = 0x435D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4367 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4364, + list[1] = public, VANILLA, 0x4366, + +0x4368 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4361 + +0x4369 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4368 + +0x436a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42A9, This type = 0x4362, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4369, This adjust = 0 + +0x436b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A0, Class type = 0x42A9, This type = 0x4362, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x436c : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4360, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4363, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4367, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4367, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x436A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x436B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x42A0, offset = 0 + member name = '_Ptr' + +0x436d : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x436c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b23) + +0x436e : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004b59) + +0x436f : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x436E, offset = 0 + +0x4370 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x436f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004370) + +0x4371 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42AA + +0x4372 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AA, This type = 0x4371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4369, This adjust = 0 + +0x4373 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AA, This type = 0x4371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x4374 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42AA, This type = 0x4371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4375 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4372, + list[1] = public, VANILLA, 0x4373, + list[2] = public, VANILLA, 0x4374, + +0x4376 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x42AA + +0x4377 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4376 + +0x4378 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A8, Class type = 0x42AA, This type = 0x4377, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4379 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42AA, Class type = 0x42AA, This type = 0x4371, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x437a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42AA + +0x437b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x437A, Class type = 0x42AA, This type = 0x4371, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x437c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4379, + list[1] = public, VANILLA, 0x437B, + +0x437d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4376 + +0x437e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x437D + +0x437f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42AA, This type = 0x4377, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x437e, This adjust = 0 + +0x4380 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42A9, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4375, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4378, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x437C, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x437C, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x437F, name = 'operator==' + +0x4381 : Length = 106, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4380, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbb) + +0x4382 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x42A3, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4383 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4382, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004b59) + +0x4384 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'Clear' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x1797, name = 'BuildErrorString' + list[10] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[11] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[12] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4385 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4384, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4386 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x42A3 + +0x4387 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A3, This type = 0x4386, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4388 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = 'MxDeviceEnumerateElement' + list[1] = LF_MEMBER, public, type = 0x4255, offset = 0 + member name = 'm_pad' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4389 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4388, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x438a : Length = 350, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x1797, name = 'BuildErrorString' + list[10] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[11] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[12] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x438b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x438a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x438c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x1796, This adjust = 0 + +0x438d : Length = 322, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[9] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[10] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[11] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x438e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x438d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x438f : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[6] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[7] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x4390 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x438f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4391 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1793, offset = 0 + +0x4392 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x4391, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate100d9cc8, UDT(0x00004392) + +0x4393 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate100d9cc8, UDT(0x00004392) + +0x4394 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4393 + +0x4395 : Length = 214, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[6] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[7] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[8] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x4396 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4395, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4397 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1020, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x4398 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1793 + +0x4399 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4398 + list[1] = T_32PUCHAR(0420) + list[2] = T_32PUCHAR(0420) + +0x439a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4399, This adjust = 0 + +0x439b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x439c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = 0x34FA + list[2] = 0x34FA + +0x439d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x439c, This adjust = 0 + +0x439e : Length = 1206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CDE, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 100 + member name = 'm_unk0x64' + list[21] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[24] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[25] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[29] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk0x4e8' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[33] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[34] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[35] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[42] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[43] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[44] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[45] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[47] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[48] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[49] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[50] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[52] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x439f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x439e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x43a0 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439A, name = 'FUN_1009b5f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[11] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[12] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x43a1 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x43a0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x43a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x1220, This type = 0x1221, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43a3 : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x1FFB, name = 'MxVideoParam' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1230, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1222, name = '~MxVideoParam' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x122C, name = 'SetDeviceName' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFC, name = 'Flags' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFD, name = 'SetPalette' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFE, name = 'SetBackBuffers' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1FFF, name = 'GetRect' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2000, name = 'GetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2001, name = 'GetBackBuffers' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43A2, name = 'GetDeviceName' + list[11] = LF_MEMBER, private, type = 0x11FA, offset = 0 + member name = 'm_rect' + list[12] = LF_MEMBER, private, type = 0x1225, offset = 16 + member name = 'm_palette' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_backBuffers' + list[14] = LF_MEMBER, private, type = 0x121D, offset = 24 + member name = 'm_flags' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 28 + member name = 'm_unk0x1c' + list[16] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 32 + member name = 'm_deviceId' + +0x43a4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x43a3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +0x43a5 : Length = 186, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1122, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2083, name = 'ViewROI' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2084, name = '~ViewROI' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2086, name = 'SetLODList' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1024, name = 'IntrinsicImportance' + list[5] = LF_METHOD, count = 2, list = 0x2087, name = 'GetGeometry' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x4397, name = 'SetUnk101013d8' + list[7] = LF_MEMBER, protected, type = 0x1029, offset = 220 + member name = 'geometry' + list[8] = LF_ONEMETHOD, protected, VIRTUAL, index = 0x1030, name = 'UpdateWorldData' + +0x43a6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x43a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = ViewROI, UDT(0x000043a6) + +0x43a7 : Length = 310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009c070' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[10] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[11] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[12] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x43a8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x43a7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x43a9 : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1229 + list[1] = 0x1245 + list[2] = 0x1FE2 + list[3] = 0x11E7 + list[4] = 0x11E7 + list[5] = 0x1247 + list[6] = T_UINT4(0075) + list[7] = T_UCHAR(0020) + +0x43aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x43a9, This adjust = 0 + +0x43ab : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43AA, + vfptr offset = 40, name = 'VTable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'VTable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3EE9, name = 'GetRegion' + list[17] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[18] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[19] = LF_MEMBER, protected, type = 0x1FE2, offset = 84 + member name = 'm_pDirect3D' + list[20] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[21] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk0x60' + +0x43ac : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x43ab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x43ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1FE2, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43ae : Length = 366, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439A, name = 'FUN_1009b5f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[12] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[13] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x43af : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x43ae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x43b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1245, Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11E7, Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1247, Class type = 0x1759, This type = 0x175A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43b3 : Length = 1738, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[5] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[6] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[11] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[12] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[13] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[17] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[19] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[22] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[23] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'm_unk0x850' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[25] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[27] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[30] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[31] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[32] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[34] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[41] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x43B0, name = 'GetDirectDraw' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetFrontBuffer' + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetBackBuffer' + list[45] = LF_ONEMETHOD, public, VANILLA, index = 0x43B2, name = 'GetClipper' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[62] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[63] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[64] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[65] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x43b4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x43b3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x43b5 : Length = 1210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CDE, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[21] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[22] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[24] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[25] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[26] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[29] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[31] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1256 + member name = 'm_unk0x4e8' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[33] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[34] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[35] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[38] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[42] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[43] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[44] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[45] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[47] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[48] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[49] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[50] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[52] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x43b6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x43b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x43b7 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, STATIC, index = 0x3E38, name = 'CopyFrom' + list[1] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[2] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[3] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[5] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[6] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[8] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[9] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[10] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +0x43b9 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x3E42, name = 'Init' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[5] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_render' + list[6] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[7] = LF_MEMBER, private, type = 0x36AB, offset = 12 + member name = 'm_unk0x0c' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x43ba : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x43b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x43bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1FE4, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43bc : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439A, name = 'FUN_1009b5f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x43bd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x43bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x43be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x3e41, This adjust = 0 + +0x43bf : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43BE, name = 'Init' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[5] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_render' + list[6] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[7] = LF_MEMBER, private, type = 0x36AB, offset = 12 + member name = 'm_unk0x0c' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x43c0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x43bf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x43c1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = T_UINT4(0075) + +0x43c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x36A8, This type = 0x36A9, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x43c1, This adjust = 0 + +0x43c3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxUnknown100d9d00, UDT(0x00004436) + +0x43c4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x43C3 + +0x43c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x43C4, Class type = 0x128E, This type = 0x1847, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x43C3 + +0x43c7 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +0x43c8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x43C7 + +0x43c9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x43C8 + list[1] = 0x43C8 + +0x43ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x43C3, This type = 0x43C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x43c9, This adjust = 0 + +0x43cb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x43C8 + +0x43cc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43C3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x43cb, This adjust = 0 + +0x43cd : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000440f) + +0x43ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x43cb, This adjust = 0 + +0x43cf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x43CD + +0x43d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43CD, This type = 0x43CF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x43CD, This type = 0x43CF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x43c9, This adjust = 0 + +0x43d2 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00004414) + +0x43d3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x43D2 + +0x43d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43d5 : Length = 1234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'FUN_1007c930' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x1E7E, offset = 1268 + member name = 'm_prefCounter' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x43d6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x43d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x43d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x36AB, Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43d8 : Length = 202, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43BE, name = 'Init' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x43D7, name = 'GetUnk100dbdbc' + list[6] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_render' + list[7] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[8] = LF_MEMBER, private, type = 0x36AB, offset = 12 + member name = 'm_unk0x0c' + list[9] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x43d9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x43d8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x43da : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x36AA, name = 'MxUnknown100dbdbc' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x36AA, + vfptr offset = 0, name = '~MxUnknown100dbdbc' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43C2, name = 'FUN_100a72c0' + list[4] = LF_MEMBER, private, type = 0x1E7F, offset = 4 + member name = 'm_unk0x4' + +0x43db : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x43da, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +0x43dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43C3, This type = 0x43C6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43dd : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x43D2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43DC, name = 'MxUnknown100d9d00' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x43CA, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x43CC, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x43DC, name = '~MxUnknown100d9d00' + +0x43de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x43dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +0x43df : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x43C7 + +0x43e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43C7, This type = 0x43DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43e1 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = 0x1272, offset = 4 + member name = 'm_string' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x43E0, name = '~UnkLegoVideoManagerListElement' + +0x43e2 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x43e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +0x43e3 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x43cb + +0x43e4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x43E3 + +0x43e5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x43E4 + +0x43e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43CD, This type = 0x43CF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x43e5, This adjust = 0 + +0x43e7 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43D0, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x43CE, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43E6, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x43D0, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43D1, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x43E4, offset = 12 + member name = 'm_customDestructor' + +0x43e8 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x43e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000440f) + +0x43e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x43cb, This adjust = 0 + +0x43ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x43eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43ec : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x0000441c) + +0x43ed : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x43EC + +0x43ee : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x43ED + +0x43ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x43ee, This adjust = 0 + +0x43f0 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x43C8 + list[1] = 0x43ED + list[2] = 0x43ED + +0x43f1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x43ED, Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x43f0, This adjust = 0 + +0x43f2 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x43CD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43D4, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x43D4, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43E9, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x43E9, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x43EA, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x43EB, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x43ED, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x43ED, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x43EF, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x43F1, name = 'InsertEntry' + +0x43f3 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x43f2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00004414) + +0x43f4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x43EC + +0x43f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x43f0, This adjust = 0 + +0x43f6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x43C8 + list[1] = 0x43ED + +0x43f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x43f6, This adjust = 0 + +0x43f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43f9 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x43F5, + list[1] = public, VANILLA, 0x43F7, + list[2] = public, VANILLA, 0x43F8, + +0x43fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x43C8, Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x43ED, Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x43fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x43cb, This adjust = 0 + +0x43fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x43ee, This adjust = 0 + +0x43fe : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x43F9, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43FA, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x43FB, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43FB, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x43FC, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x43FD, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x43FD, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x43C8, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x43ED, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x43ED, offset = 8 + member name = 'm_next' + +0x43ff : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x43fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x0000441c) + +0x4400 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +0x4401 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4400 + +0x4402 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4401 + list[1] = 0x4401 + +0x4403 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x43C3, This type = 0x43C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4402, This adjust = 0 + +0x4404 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4401 + +0x4405 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43C3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4404, This adjust = 0 + +0x4406 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4404, This adjust = 0 + +0x4407 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x43CD, This type = 0x43CF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4402, This adjust = 0 + +0x4408 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x43D2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43DC, name = 'MxUnknown100d9d00' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4403, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4405, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x43DC, name = '~MxUnknown100d9d00' + +0x4409 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4408, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +0x440a : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x4404 + +0x440b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x440A + +0x440c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x440B + +0x440d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43CD, This type = 0x43CF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x440c, This adjust = 0 + +0x440e : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43D0, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4406, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x440D, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x43D0, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4407, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x440B, offset = 12 + member name = 'm_customDestructor' + +0x440f : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x440e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000440f) + +0x4410 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4404, This adjust = 0 + +0x4411 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4401 + list[1] = 0x43ED + list[2] = 0x43ED + +0x4412 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x43ED, Class type = 0x43D2, This type = 0x43D3, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4411, This adjust = 0 + +0x4413 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x43CD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43D4, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x43D4, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4410, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4410, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x43EA, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x43EB, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x43ED, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x43ED, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x43EF, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x4412, name = 'InsertEntry' + +0x4414 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4413, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00004414) + +0x4415 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4411, This adjust = 0 + +0x4416 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4401 + list[1] = 0x43ED + +0x4417 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4416, This adjust = 0 + +0x4418 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4415, + list[1] = public, VANILLA, 0x4417, + list[2] = public, VANILLA, 0x43F8, + +0x4419 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4401, Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x441a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43EC, This type = 0x43F4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4404, This adjust = 0 + +0x441b : Length = 218, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x4418, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4419, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x43FB, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x43FB, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x441A, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x43FD, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x43FD, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x4401, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x43ED, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x43ED, offset = 8 + member name = 'm_next' + +0x441c : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x441b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x0000441c) + +0x441d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4400 + +0x441e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4400, This type = 0x441D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x441f : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, private, INTRODUCING VIRTUAL, index = 0x441E, + vfptr offset = 0, name = 'VTable0x00' + list[2] = LF_MEMBER, private, type = 0x1272, offset = 4 + member name = 'm_unk0x04' + list[3] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x441E, name = '~UnkLegoVideoManagerListElement' + +0x4420 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x441f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +0x4421 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxUnknown100d7c88, UDT(0x00004457) + +0x4422 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4421 + +0x4423 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4421, This type = 0x4422, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4424 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4421, This type = 0x4422, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4425 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_USHORT(0021), Class type = 0x1272, This type = 0x12D7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4426 : Length = 246, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x12D4, name = 'MxString' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x12CA, name = '~MxString' + list[3] = LF_METHOD, count = 2, list = 0x12D5, name = 'operator=' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x12CA, name = 'ToUpperCase' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x12CA, name = 'ToLowerCase' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x12D3, name = 'operator+' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x12D6, name = 'operator+=' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x12D8, name = 'Compare' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x12D9, name = 'GetData' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4425, name = 'GetLength' + list[11] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_data' + list[12] = LF_MEMBER, private, type = T_USHORT(0021), offset = 12 + member name = 'm_length' + +0x4427 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4426, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxString, UDT(0x00004427) + +0x4428 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4421 + +0x4429 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4428 + list[1] = 0x4428 + +0x442a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x43C3, This type = 0x43C6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4429, This adjust = 0 + +0x442b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4428 + +0x442c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x43C3, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x442b, This adjust = 0 + +0x442d : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxCollection, UDT(0x0000443e) + +0x442e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x442D, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x442b, This adjust = 0 + +0x442f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x442D + +0x4430 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x442D, This type = 0x442F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4431 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_CHAR(0010), Class type = 0x442D, This type = 0x442F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4429, This adjust = 0 + +0x4432 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxList, UDT(0x00004449) + +0x4433 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4432 + +0x4434 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4435 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4432, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x43DC, name = 'MxUnknown100d9d00' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x442A, name = 'Compare' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x442C, name = 'Destroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x43DC, name = '~MxUnknown100d9d00' + +0x4436 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4435, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +0x4437 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4423, name = '~MxUnknown100d7c88' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4424, + vfptr offset = 0, name = 'GetLength' + list[3] = LF_MEMBER, private, type = 0x1272, offset = 4 + member name = 'm_unk0x04' + +0x4438 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4437, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100d7c88, UDT(0x00004457) + +0x4439 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_VOID(0003), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x442b + +0x443a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4439 + +0x443b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x443A + +0x443c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x442D, This type = 0x442F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x443b, This adjust = 0 + +0x443d : Length = 210, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4430, name = 'MxCollection' + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x442E, name = 'Destroy' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x443C, name = 'SetDestroy' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4430, name = '~MxCollection' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4431, + vfptr offset = 20, name = 'Compare' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_count' + list[7] = LF_MEMBER, protected, type = 0x443A, offset = 12 + member name = 'm_customDestructor' + +0x443e : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x443d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000443e) + +0x443f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x442b, This adjust = 0 + +0x4440 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x4441 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4442 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxListEntry, UDT(0x00004455) + +0x4443 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4442 + +0x4444 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4443 + +0x4445 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4444, This adjust = 0 + +0x4446 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4428 + list[1] = 0x4443 + list[2] = 0x4443 + +0x4447 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4443, Class type = 0x4432, This type = 0x4433, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4446, This adjust = 0 + +0x4448 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, protected, type = 0x442D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4434, name = 'MxList' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4434, name = '~MxList' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x443F, name = 'Append' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x443F, name = 'Prepend' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4440, name = 'DeleteAll' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4441, name = 'GetCount' + list[7] = LF_MEMBER, protected, type = 0x4443, offset = 16 + member name = 'm_first' + list[8] = LF_MEMBER, protected, type = 0x4443, offset = 20 + member name = 'm_last' + list[9] = LF_ONEMETHOD, protected, VANILLA, index = 0x4445, name = 'DeleteEntry' + list[10] = LF_ONEMETHOD, protected, VANILLA, index = 0x4447, name = 'InsertEntry' + +0x4449 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4448, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00004449) + +0x444a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4442 + +0x444b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4446, This adjust = 0 + +0x444c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4428 + list[1] = 0x4443 + +0x444d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x444c, This adjust = 0 + +0x444e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x444f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x444B, + list[1] = public, VANILLA, 0x444D, + list[2] = public, VANILLA, 0x444E, + +0x4450 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4428, Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4451 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4443, Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4452 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x442b, This adjust = 0 + +0x4453 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4442, This type = 0x444A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4444, This adjust = 0 + +0x4454 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 3, list = 0x444F, name = 'MxListEntry' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4450, name = 'GetValue' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4451, name = 'GetNext' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4451, name = 'GetPrev' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4452, name = 'SetValue' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4453, name = 'SetNext' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4453, name = 'SetPrev' + list[7] = LF_MEMBER, private, type = 0x4428, offset = 0 + member name = 'm_obj' + list[8] = LF_MEMBER, private, type = 0x4443, offset = 4 + member name = 'm_prev' + list[9] = LF_MEMBER, private, type = 0x4443, offset = 8 + member name = 'm_next' + +0x4455 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4454, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x00004455) + +0x4456 : Length = 102, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4423, name = '~MxUnknown100d7c88' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4424, + vfptr offset = 0, name = 'VTable0x00' + list[3] = LF_MEMBER, private, type = 0x1272, offset = 4 + member name = 'm_unk0x04' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 20 + member name = 'm_unk0x14' + +0x4457 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4456, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 24, class name = MxUnknown100d7c88, UDT(0x00004457) + +0x4458 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2811, This type = 0x2BBC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4459 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[6] = LF_MEMBER, public, type = T_UINT4(0075), offset = 24 + member name = 'm_unk0x18' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x445a : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4459, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x445b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x445c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x445B + +0x445d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x445C + list[1] = 0x207F + +0x445e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x445d, This adjust = 0 + +0x445f : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x4460 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x445F + +0x4461 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4460 + +0x4462 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x445C + list[1] = 0x4461 + +0x4463 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = C Near + Func attr = none + # Parms = 2, Arg list type = 0x4462 + +0x4464 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x445F + +0x4465 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4464 + +0x4466 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4465, This adjust = 0 + +0x4467 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4459, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4468 : Length = 1350, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1448, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'CreateBackgroundAudio' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x192A, name = 'RemoveWorld' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x1936, name = 'GetCurrPathInfo' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x1927, name = 'CreateInstance' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x1928, name = 'GetInstance' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1917, name = 'LegoOmni' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = '~LegoOmni' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1938, name = 'Notify' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191A, name = 'ClassName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191B, name = 'IsA' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Init' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x191C, name = 'Create' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'Destroy' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1937, name = 'Start' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x34B4, name = 'DeleteObject' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1930, name = 'DoesEntityExist' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192E, name = 'FindWorld' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x192F, name = 'NotifyCurrentEntity' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StartTimer' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1917, name = 'StopTimer' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x192C, name = 'FindByEntityIdOrAtomId' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x3D02, name = 'AddWorld' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1E62, name = 'GetVideoManager' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1E63, name = 'GetSoundManager' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1E64, name = 'GetInputManager' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1E65, name = 'GetGifManager' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1E66, name = 'GetCurrentOmniWorld' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x1E67, name = 'GetNavController' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x33E0, name = 'GetCurrentVehicle' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x1E68, name = 'GetLegoPlantManager' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x1E69, name = 'GetAnimationManager' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6A, name = 'GetLegoBuildingManager' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6B, name = 'GetGameState' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6C, name = 'GetBackgroundAudioManager' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6D, name = 'GetTransitionManager' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x1E6E, name = 'GetCurrentAction' + list[37] = LF_ONEMETHOD, public, VANILLA, index = 0x3EE6, name = 'SetExit' + list[38] = LF_MEMBER, private, type = T_32PUINT4(0475), offset = 104 + member name = 'm_unk0x68' + list[39] = LF_MEMBER, private, type = 0x27C9, offset = 108 + member name = 'm_viewLODListManager' + list[40] = LF_MEMBER, private, type = 0x10C3, offset = 112 + member name = 'm_inputMgr' + list[41] = LF_MEMBER, private, type = 0x10C7, offset = 116 + member name = 'm_gifManager' + list[42] = LF_MEMBER, private, type = 0x2D20, offset = 120 + member name = 'm_worldList' + list[43] = LF_MEMBER, private, type = 0x128A, offset = 124 + member name = 'm_currentWorld' + list[44] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 128 + member name = 'm_exit' + list[45] = LF_MEMBER, private, type = 0x1904, offset = 132 + member name = 'm_navController' + list[46] = LF_MEMBER, private, type = 0x3385, offset = 136 + member name = 'm_currentVehicle' + list[47] = LF_MEMBER, private, type = 0x1E6F, offset = 140 + member name = 'm_saveDataWriter' + list[48] = LF_MEMBER, private, type = 0x1907, offset = 144 + member name = 'm_plantManager' + list[49] = LF_MEMBER, private, type = 0x1901, offset = 148 + member name = 'm_animationManager' + list[50] = LF_MEMBER, private, type = 0x190A, offset = 152 + member name = 'm_buildingManager' + list[51] = LF_MEMBER, private, type = 0x1088, offset = 156 + member name = 'm_gameState' + list[52] = LF_MEMBER, private, type = 0x108B, offset = 160 + member name = 'm_action' + list[53] = LF_MEMBER, private, type = 0x18F9, offset = 308 + member name = 'm_bkgAudioManager' + list[54] = LF_MEMBER, private, type = 0x190E, offset = 312 + member name = 'm_transitionManager' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 316 + member name = 'm_unk0x13c' + +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +0x446a : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x445E, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x446b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x446a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x446c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27C9, Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x446d : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x445F, CreateStruct + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4466, name = 'Create' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x446C, name = 'GetViewLODListManager' + list[7] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_renderer' + list[8] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[9] = LF_MEMBER, private, type = 0x27C9, offset = 12 + member name = 'm_viewLODListManager' + list[10] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x446e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x446d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x446f : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2BBA, offset = 0 + list[1] = LF_NESTTYPE, type = 0x2811, _Myt + list[2] = LF_NESTTYPE, type = 0x2BBB, _A + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x2BC1, name = 'Map' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x2BC4, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4458, name = '~Map' + +0x4470 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x446f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Map, UDT(0x00004470) + +0x4471 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x445d, This adjust = 0 + +0x4472 : Length = 286, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[8] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[9] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[10] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[11] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[12] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[13] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4473 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x4472, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4474 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x1FE2, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x4475 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4474, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x4476 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4474, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4477 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxStopWatch, UDT(0x00004482) + +0x4478 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4477 + +0x4479 : Length = 1234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'FUN_1007c930' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = T_UINT4(0075), offset = 108 + member name = 'm_unk0x6c' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x447a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4479, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x447b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4477 + +0x447c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4477, This type = 0x447B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x447d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4477 + +0x447e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x447D + +0x447f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL64(0041), Class type = 0x4477, This type = 0x447E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4480 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4477, This type = 0x447E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4481 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x447C, name = 'MxStopWatch' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x447C, name = '~MxStopWatch' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x447C, name = 'Start' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x447C, name = 'Stop' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x447C, name = 'Reset' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x447F, name = 'ElapsedSeconds' + list[6] = LF_ONEMETHOD, protected, VANILLA, index = 0x4480, name = 'TicksPerSeconds' + list[7] = LF_MEMBER, private, type = 0x1E7D, offset = 0 + member name = 'm_startTick' + list[8] = LF_MEMBER, private, type = T_REAL64(0041), offset = 8 + member name = 'm_elapsedSeconds' + list[9] = LF_MEMBER, private, type = T_ULONG(0022), offset = 16 + member name = 'm_ticksPerSeconds' + +0x4482 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4481, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = MxStopWatch, UDT(0x00004482) + +0x4483 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x207F + list[1] = 0x2081 + list[2] = T_INT4(0074) + +0x4484 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = 0x18AF, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4483, This adjust = 0 + +0x4485 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x18A7, This type = 0x18AF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4486 : Length = 278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1020, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4484, name = 'LegoROI' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a46b0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a58f0' + list[9] = LF_MEMBER, private, type = 0x209B, offset = 224 + member name = 'm_pad' + list[10] = LF_MEMBER, private, type = T_INT4(0074), offset = 264 + member name = 'm_time' + list[11] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x4485, name = '~LegoROI' + +0x4487 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4486, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +0x4488 : Length = 314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1020, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4484, name = 'LegoROI' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a46b0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a58f0' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4485, name = 'UpdateWorldBoundingVolumes' + list[10] = LF_MEMBER, private, type = 0x209B, offset = 224 + member name = 'm_pad' + list[11] = LF_MEMBER, private, type = T_INT4(0074), offset = 264 + member name = 'm_time' + list[12] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x4485, name = '~LegoROI' + +0x4489 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4488, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +0x448a : Length = 1234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'FUN_1007c930' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x448b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x448a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x448c : Length = 350, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1020, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4484, name = 'LegoROI' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'WrappedSetLocalTransform' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a46b0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a58f0' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4485, name = 'UpdateWorldBoundingVolumes' + list[11] = LF_MEMBER, private, type = 0x209B, offset = 224 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 264 + member name = 'm_time' + list[13] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x4485, name = '~LegoROI' + +0x448d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x448c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +0x448e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1910 + +0x448f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x448e, This adjust = 0 + +0x4490 : Length = 334, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[10] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[11] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[12] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[13] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[14] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[15] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4491 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4490, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4492 : Length = 330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1020, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4484, name = 'LegoROI' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x18B0, name = 'SetDisplayBB' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x18A8, name = 'configureLegoROI' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x18AE, name = 'SetSomeHandlerFunction' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'CallTheHandlerFunction' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x18AB, name = 'ColorAliasLookup' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'WrappedSetLocalTransform' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a46b0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x338F, name = 'FUN_100a58f0' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4485, name = 'UpdateWorldBoundingVolumes' + list[11] = LF_MEMBER, private, type = 0x209B, offset = 224 + member name = 'm_pad' + list[12] = LF_MEMBER, private, type = T_INT4(0074), offset = 264 + member name = 'm_time' + +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +0x4494 : Length = 1238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'FUN_1007c930' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4495 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4494, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4496 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 2 + Name = + +0x4497 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 3 + Name = + +0x4498 : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AA3, name = 'Hospital' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA3, name = '~Hospital' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA6, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA7, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 248 + member name = 'm_unk0xf8' + list[7] = LF_MEMBER, private, type = 0x4496, offset = 250 + member name = 'm_unk0xfa' + list[8] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[9] = LF_MEMBER, private, type = T_USHORT(0021), offset = 256 + member name = 'm_unk0x100' + list[10] = LF_MEMBER, private, type = 0x4496, offset = 258 + member name = 'm_unk0x102' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[12] = LF_MEMBER, private, type = T_USHORT(0021), offset = 264 + member name = 'm_unk0x108' + list[13] = LF_MEMBER, private, type = 0x4496, offset = 266 + member name = 'm_unk0x10a' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 280 + member name = 'm_unk0x118' + list[18] = LF_MEMBER, private, type = 0x4497, offset = 281 + member name = 'm_unk0x119' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[20] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[21] = LF_MEMBER, private, type = 0x1CF1, offset = 292 + member name = 'm_unk0x124' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 296 + member name = 'm_unk0x128' + list[23] = LF_MEMBER, private, type = 0x4497, offset = 297 + member name = 'm_unk0x129' + +0x4499 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4498, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +0x449a : Length = 502, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AA3, name = 'Hospital' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA3, name = '~Hospital' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA6, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA7, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 248 + member name = 'm_unk0xf8' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 256 + member name = 'm_unk0x100' + list[9] = LF_MEMBER, private, type = 0x4496, offset = 258 + member name = 'm_unk0x102' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[11] = LF_MEMBER, private, type = T_USHORT(0021), offset = 264 + member name = 'm_unk0x108' + list[12] = LF_MEMBER, private, type = 0x4496, offset = 266 + member name = 'm_unk0x10a' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[14] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 280 + member name = 'm_unk0x118' + list[17] = LF_MEMBER, private, type = 0x4497, offset = 281 + member name = 'm_unk0x119' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[19] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[20] = LF_MEMBER, private, type = 0x1CF1, offset = 292 + member name = 'm_unk0x124' + list[21] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 296 + member name = 'm_unk0x128' + list[22] = LF_MEMBER, private, type = 0x4497, offset = 297 + member name = 'm_unk0x129' + +0x449b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x449a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +0x449c : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1289, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1AA3, name = 'Hospital' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA3, name = '~Hospital' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA8, name = 'Notify' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA6, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1AA7, name = 'IsA' + list[6] = LF_MEMBER, private, type = T_USHORT(0021), offset = 248 + member name = 'm_unk0xf8' + list[7] = LF_MEMBER, private, type = T_UINT4(0075), offset = 252 + member name = 'm_unk0xfc' + list[8] = LF_MEMBER, private, type = T_USHORT(0021), offset = 256 + member name = 'm_unk0x100' + list[9] = LF_MEMBER, private, type = T_UINT4(0075), offset = 260 + member name = 'm_unk0x104' + list[10] = LF_MEMBER, private, type = T_USHORT(0021), offset = 264 + member name = 'm_unk0x108' + list[11] = LF_MEMBER, private, type = T_UINT4(0075), offset = 268 + member name = 'm_unk0x10c' + list[12] = LF_MEMBER, private, type = T_UINT4(0075), offset = 272 + member name = 'm_unk0x110' + list[13] = LF_MEMBER, private, type = T_UINT4(0075), offset = 276 + member name = 'm_unk0x114' + list[14] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 280 + member name = 'm_unk0x118' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 284 + member name = 'm_unk0x11c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 288 + member name = 'm_unk0x120' + list[17] = LF_MEMBER, private, type = 0x1CF1, offset = 292 + member name = 'm_unk0x124' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 296 + member name = 'm_unk0x128' + +0x449d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x449c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +0x449e : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoLength' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0xa' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoPlus0xe' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x449f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x449e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x44a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PLONG(0412), Class type = 0x11CD, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x44a1 : Length = 302, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x16E8, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1ED0, name = 'MxStreamChunk' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1ED0, name = '~MxStreamChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159C, name = 'ClassName' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x159D, name = 'IsA' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x34DB, name = 'GetBuffer' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x34C4, name = 'ReadChunk' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x34C5, name = 'ReadChunkHeader' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x3CB2, name = 'SendChunk' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x34C6, name = 'SetBuffer' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x3CC1, name = 'IntoFlags' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoObjectId' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x44A0, name = 'IntoTime' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x3CD1, name = 'IntoLength' + list[14] = LF_MEMBER, private, type = 0x1619, offset = 28 + member name = 'm_buffer' + +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +0x44a3 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_End' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 8, name = 'Flag_Bit4' + list[4] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[5] = LF_ENUMERATE, public, value = 128, name = 'Flag_Bit8' + list[6] = LF_ENUMERATE, public, value = (LF_USHORT) 32768, name = 'Flag_Bit16' + +0x44a4 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 7, type = T_INT4(0074) field list type 0x44a3 +NESTED, enum name = MxDSChunk::__unnamed + +0x44a5 : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44A4, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[19] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[20] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[22] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x44a6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x44a7 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_End' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 16, name = 'Flag_Bit5' + list[4] = LF_ENUMERATE, public, value = (LF_USHORT) 32768, name = 'Flag_Bit16' + +0x44a8 : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x44a7 +NESTED, enum name = MxDSChunk::__unnamed + +0x44a9 : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44A8, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[19] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[20] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[22] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x44aa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x44ab : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_Bit1' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_End' + list[2] = LF_ENUMERATE, public, value = 4, name = 'Flag_Bit3' + list[3] = LF_ENUMERATE, public, value = 16, name = 'Flag_Split' + list[4] = LF_ENUMERATE, public, value = (LF_USHORT) 32768, name = 'Flag_Bit16' + +0x44ac : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 5, type = T_INT4(0074) field list type 0x44ab +NESTED, enum name = MxDSChunk::__unnamed + +0x44ad : Length = 426, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44AC, __unnamed + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'MxDSChunk' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EA, name = '~MxDSChunk' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16ED, name = 'ClassName' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x16EE, name = 'IsA' + list[6] = LF_ONEMETHOD, public, STATIC, index = 0x3CBB, name = 'ReturnE' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC5, name = 'SetFlags' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetObjectId' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC6, name = 'SetTime' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC7, name = 'SetLength' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1EC9, name = 'SetData' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECA, name = 'GetFlags' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetObjectId' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECB, name = 'GetTime' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECC, name = 'GetLength' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1ECD, name = 'GetData' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x16EA, name = 'Release' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 8 + member name = 'm_flags' + list[19] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_objectId' + list[20] = LF_MEMBER, protected, type = T_LONG(0012), offset = 16 + member name = 'm_time' + list[21] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 20 + member name = 'm_length' + list[22] = LF_MEMBER, protected, type = T_32PUCHAR(0420), offset = 24 + member name = 'm_data' + +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +0x44af : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1762 + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + +0x44b0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44af, This adjust = 0 + +0x44b1 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[10] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[11] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[12] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x44b2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x44b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x44b3 : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate::Direct3DDeviceInfo, UDT(0x000044bd) + +0x44b4 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x44B3, Direct3DDeviceInfo + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[11] = LF_MEMBER, public, type = 0x4297, offset = 4 + member name = 'm_list' + list[12] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[13] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x44b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x44b4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x44b6 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 50 + Name = + +0x44b7 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_RCHAR(0070) + Index type = T_SHORT(0011) + length = 30 + Name = + +0x44b8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44B3 + +0x44b9 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x28B5 + +0x44ba : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x2131 + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + list[3] = 0x44B9 + list[4] = 0x44B9 + +0x44bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44B3, This type = 0x44B8, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x44ba, This adjust = 0 + +0x44bc : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x44B6, offset = 0 + member name = 'Desc' + list[1] = LF_MEMBER, public, type = 0x44B7, offset = 50 + member name = 'Name' + list[2] = LF_MEMBER, public, type = 0x28B5, offset = 80 + member name = 'HWDesc' + list[3] = LF_MEMBER, public, type = 0x28B5, offset = 284 + member name = 'HELDesc' + list[4] = LF_MEMBER, public, type = 0x1761, offset = 488 + member name = 'Guid' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x44BB, name = 'Initialize' + +0x44bd : Length = 58, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x44bc, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 504, class name = MxDeviceEnumerate::Direct3DDeviceInfo, UDT(0x000044bd) + +0x44be : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004568) + +0x44bf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44BE + +0x44c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44BE, This type = 0x44BF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44c1 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000451f) + +0x44c2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44C1 + +0x44c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44c4 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4305, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4309, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x430C, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x42EC, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x42A3, offset = 4 + member name = 'value' + +0x44c5 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x44c4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004b43) + +0x44c6 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000457b) + +0x44c7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x44C6 + +0x44c8 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x0000453e) + +0x44c9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004579) + +0x44ca : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : T_UCHAR(0020) + +0x44cb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1472 + +0x44cc : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000458c) + +0x44cd : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x000045a0) + +0x44ce : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,unsigned char,unsigned char &,unsigned char *,int>, UDT(0x0000454d) + +0x44cf : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,unsigned char,unsigned char const &,unsigned char const *,int>, UDT(0x0000455c) + +0x44d0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44C9 + +0x44d1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44D0 + +0x44d2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x44CD + list[1] = 0x44CD + list[2] = 0x44D1 + +0x44d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44d2, This adjust = 0 + +0x44d4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44C1 + +0x44d5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44D4 + +0x44d6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44D5 + +0x44d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44d6, This adjust = 0 + +0x44d8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x44CB + list[2] = 0x44D1 + +0x44d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44d8, This adjust = 0 + +0x44da : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44D1 + +0x44db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44da, This adjust = 0 + +0x44dc : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44D3, + list[1] = public, VANILLA, 0x44D7, + list[2] = public, VANILLA, 0x44D9, + list[3] = public, VANILLA, 0x44DB, + +0x44dd : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44C1 + +0x44de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44DD, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44d6, This adjust = 0 + +0x44df : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44D4 + +0x44e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CD, Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44E0, + list[1] = public, VANILLA, 0x44E1, + +0x44e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CF, Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CE, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44E3, + list[1] = public, VANILLA, 0x44E4, + +0x44e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x13af, This adjust = 0 + +0x44e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44e9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44C9, Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CB, Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44eb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CA, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x44ec : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44EA, + list[1] = public, VANILLA, 0x44EB, + +0x44ed : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44CB + +0x44ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44ed, This adjust = 0 + +0x44ef : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x44CB + +0x44f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x44ef, This adjust = 0 + +0x44f1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44CD + list[1] = 0x44CD + +0x44f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x44f1, This adjust = 0 + +0x44f3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44F0, + list[1] = public, VANILLA, 0x44F2, + +0x44f4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x44CC + list[1] = 0x44CD + list[2] = 0x44CD + +0x44f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44f4, This adjust = 0 + +0x44f6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x44CC + list[1] = T_32PUCHAR(0420) + list[2] = T_32PUCHAR(0420) + +0x44f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44f6, This adjust = 0 + +0x44f8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x44CC + list[1] = T_UINT4(0075) + list[2] = 0x44CB + +0x44f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44f8, This adjust = 0 + +0x44fa : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44CC + list[1] = 0x44CB + +0x44fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x44fa, This adjust = 0 + +0x44fc : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44F5, + list[1] = public, VANILLA, 0x44F7, + list[2] = public, VANILLA, 0x44F9, + list[3] = public, VANILLA, 0x44FB, + +0x44fd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44CC + list[1] = 0x44CC + +0x44fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x44fd, This adjust = 0 + +0x44ff : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44CC + +0x4500 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44ff, This adjust = 0 + +0x4501 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x44FE, + list[1] = public, VANILLA, 0x4500, + +0x4502 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44DD + +0x4503 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4502, This adjust = 0 + +0x4504 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x44CC + list[1] = 0x44DD + list[2] = 0x44CC + list[3] = 0x44CC + +0x4505 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x4504, This adjust = 0 + +0x4506 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x44CC + list[1] = 0x44DD + list[2] = 0x44CC + +0x4507 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4506, This adjust = 0 + +0x4508 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44CC + list[1] = 0x44DD + +0x4509 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4508, This adjust = 0 + +0x450a : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4505, + list[1] = public, VANILLA, 0x4507, + list[2] = public, VANILLA, 0x4509, + +0x450b : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004530) + +0x450c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x450B + +0x450d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x450c, This adjust = 0 + +0x450e : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004526) + +0x450f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x450E + +0x4510 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x450f, This adjust = 0 + +0x4511 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4510, + list[1] = public, VANILLA, 0x44C3, + +0x4512 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004539) + +0x4513 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44DD + list[1] = 0x4512 + +0x4514 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4513, This adjust = 0 + +0x4515 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4514, + list[1] = public, VANILLA, 0x4503, + +0x4516 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4512 + +0x4517 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4516, This adjust = 0 + +0x4518 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4517, + list[1] = public, VANILLA, 0x44C3, + +0x4519 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44C7 + list[1] = 0x44C7 + +0x451a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44C7, Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4519, This adjust = 0 + +0x451b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44C7 + +0x451c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44C2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x451b, This adjust = 0 + +0x451d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C1, This type = 0x44DF, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x451e : Length = 1130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x44C6, _Node + list[2] = LF_NESTTYPE, type = 0x44C7, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x44C8, _Acc + list[4] = LF_NESTTYPE, type = 0x44C1, _Myt + list[5] = LF_NESTTYPE, type = 0x44C9, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = T_32PUCHAR(0420), _Tptr + list[9] = LF_NESTTYPE, type = T_32PUCHAR(0420), _Ctptr + list[10] = LF_NESTTYPE, type = 0x44CA, reference + list[11] = LF_NESTTYPE, type = 0x44CB, const_reference + list[12] = LF_NESTTYPE, type = T_UCHAR(0020), value_type + list[13] = LF_NESTTYPE, type = 0x44CC, iterator + list[14] = LF_NESTTYPE, type = 0x44CD, const_iterator + list[15] = LF_NESTTYPE, type = 0x44CE, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x44CF, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x44DC, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x44CD, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x44C3, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x44DE, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x44E2, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x44E2, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x44E5, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x44E5, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x44E6, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x44E7, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x44E7, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x44E8, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x44E9, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x44EC, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x44EC, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x44EE, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x44C3, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x44EE, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x44C3, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x44F3, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x44FC, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x4501, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x44C3, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x4503, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x450A, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x44EE, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x450B, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x450D, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x4511, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x450E, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4515, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x4512, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x4518, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x44C3, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x451A, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x451C, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4505, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x451D, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x44C9, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x44C7, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x451f : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x451e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000451f) + +0x4520 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004534) + +0x4521 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x450E + +0x4522 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4521 + +0x4523 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x44CB + list[1] = 0x44CB + +0x4524 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x450E, This type = 0x4522, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4523, This adjust = 0 + +0x4525 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4520, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4524, name = 'operator()' + +0x4526 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4525, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004526) + +0x4527 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00004532) + +0x4528 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x450B + +0x4529 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4521 + +0x452a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4529 + list[1] = 0x44CB + +0x452b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x450B, This type = 0x4528, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x452a, This adjust = 0 + +0x452c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x450B + +0x452d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x452C + +0x452e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x450B, This type = 0x452D, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44ed, This adjust = 0 + +0x452f : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4527, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x452B, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x452E, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x450E, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 1 + member name = 'value' + +0x4530 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x452f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = binder2nd >, UDT(0x00004530) + +0x4531 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UCHAR(0020), argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4532 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4531, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004532) + +0x4533 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UCHAR(0020), first_argument_type + list[1] = LF_NESTTYPE, type = T_UCHAR(0020), second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4534 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4533, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004534) + +0x4535 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4512 + +0x4536 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4535 + +0x4537 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4512, This type = 0x4536, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4523, This adjust = 0 + +0x4538 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4520, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4537, name = 'operator()' + +0x4539 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4538, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004539) + +0x453a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44C7 + +0x453b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x453A, Class type = 0x44C8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x451b, This adjust = 0 + +0x453c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CA, Class type = 0x44C8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x451b, This adjust = 0 + +0x453d : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x453A, _Nodepref + list[1] = LF_NESTTYPE, type = 0x44CA, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x453B, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x453B, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x453C, name = '_Value' + +0x453e : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x453d, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x0000453e) + +0x453f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x0000458f) + +0x4540 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44CE + +0x4541 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CE, This type = 0x4540, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44ff, This adjust = 0 + +0x4542 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CE, This type = 0x4540, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4543 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4541, + list[1] = public, VANILLA, 0x4542, + +0x4544 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44CE + +0x4545 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4544 + +0x4546 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44CE, This type = 0x4545, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4547 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CA, Class type = 0x44CE, This type = 0x4545, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4548 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CE, Class type = 0x44CE, This type = 0x4540, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4549 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44CE + +0x454a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4549, Class type = 0x44CE, This type = 0x4540, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x454b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4548, + list[1] = public, VANILLA, 0x454A, + +0x454c : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x453F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44CE, _Myt + list[2] = LF_NESTTYPE, type = 0x44CC, iter_type + list[3] = LF_NESTTYPE, type = T_UCHAR(0020), value_type + list[4] = LF_NESTTYPE, type = 0x44CA, reference_type + list[5] = LF_NESTTYPE, type = T_32PUCHAR(0420), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4543, name = 'reverse_bidirectional_iterator >::iterator,unsigned char,unsigned char &,unsigned char *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4546, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4547, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x454B, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x454B, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x44CC, offset = 0 + member name = 'current' + +0x454d : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x454c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,unsigned char,unsigned char &,unsigned char *,int>, UDT(0x0000454d) + +0x454e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44CF + +0x454f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44CD + +0x4550 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CF, This type = 0x454E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x454f, This adjust = 0 + +0x4551 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CF, This type = 0x454E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4552 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4550, + list[1] = public, VANILLA, 0x4551, + +0x4553 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44CF + +0x4554 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4553 + +0x4555 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CD, Class type = 0x44CF, This type = 0x4554, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4556 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CB, Class type = 0x44CF, This type = 0x4554, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4557 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CF, Class type = 0x44CF, This type = 0x454E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4558 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44CF + +0x4559 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4558, Class type = 0x44CF, This type = 0x454E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x455a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4557, + list[1] = public, VANILLA, 0x4559, + +0x455b : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x453F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44CF, _Myt + list[2] = LF_NESTTYPE, type = 0x44CD, iter_type + list[3] = LF_NESTTYPE, type = T_UCHAR(0020), value_type + list[4] = LF_NESTTYPE, type = 0x44CB, reference_type + list[5] = LF_NESTTYPE, type = T_32PUCHAR(0420), pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4552, name = 'reverse_bidirectional_iterator >::const_iterator,unsigned char,unsigned char const &,unsigned char const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4555, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4556, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x455A, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x455A, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x44CD, offset = 0 + member name = 'current' + +0x455c : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x455b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,unsigned char,unsigned char const &,unsigned char const *,int>, UDT(0x0000455c) + +0x455d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44BE + +0x455e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x455D + +0x455f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x455E + +0x4560 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44BE, This type = 0x44BF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x455f, This adjust = 0 + +0x4561 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44BE, This type = 0x44BF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x44ef, This adjust = 0 + +0x4562 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4560, + list[1] = public, VANILLA, 0x4561, + list[2] = public, VANILLA, 0x44C0, + +0x4563 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44BE + +0x4564 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4563 + +0x4565 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44BE, This type = 0x44BF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4564, This adjust = 0 + +0x4566 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4563, Class type = 0x44BE, This type = 0x44BF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x455f, This adjust = 0 + +0x4567 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x44C1, offset = 0 + list[1] = LF_NESTTYPE, type = 0x44BE, _Myt + list[2] = LF_NESTTYPE, type = 0x44C9, _A + list[3] = LF_METHOD, count = 3, list = 0x4562, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4565, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4566, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x44C0, name = '~List' + +0x4568 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4567, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004568) + +0x4569 : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_driverName' + list[1] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[2] = LF_MEMBER, public, type = 0x1762, offset = 8 + member name = 'm_guid' + list[3] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[4] = LF_MEMBER, public, type = 0x44BE, offset = 376 + member name = 'm_unk0x178' + list[5] = LF_MEMBER, public, type = 0x44BE, offset = 388 + member name = 'm_unk0x184' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x456a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4569, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x456b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44D0 + +0x456c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x44C9, This type = 0x456B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x44ed, This adjust = 0 + +0x456d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x44CA + +0x456e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x44C9, This type = 0x456B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x456d, This adjust = 0 + +0x456f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x456C, + list[1] = public, VANILLA, 0x456E, + +0x4570 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44C9 + +0x4571 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PUCHAR(0420), Class type = 0x44C9, This type = 0x4570, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4572 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x44C9, This type = 0x4570, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4573 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C9, This type = 0x4570, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4574 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PUCHAR(0420) + list[1] = 0x44CB + +0x4575 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C9, This type = 0x4570, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4574, This adjust = 0 + +0x4576 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44C9, This type = 0x4570, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1ec8, This adjust = 0 + +0x4577 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x44C9, This type = 0x456B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4578 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = T_32PUCHAR(0420), pointer + list[3] = LF_NESTTYPE, type = T_32PUCHAR(0420), const_pointer + list[4] = LF_NESTTYPE, type = 0x44CA, reference + list[5] = LF_NESTTYPE, type = 0x44CB, const_reference + list[6] = LF_NESTTYPE, type = T_UCHAR(0020), value_type + list[7] = LF_METHOD, count = 2, list = 0x456F, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4571, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4572, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4573, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4575, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4576, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4577, name = 'max_size' + +0x4579 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4578, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004579) + +0x457a : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = T_UCHAR(0020), offset = 8 + member name = '_Value' + +0x457b : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x457a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >::_Node, UDT(0x0000457b) + +0x457c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44CC + +0x457d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CC, This type = 0x457C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x451b, This adjust = 0 + +0x457e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CC, This type = 0x457C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x457f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x457D, + list[1] = public, VANILLA, 0x457E, + +0x4580 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44CC + +0x4581 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4580 + +0x4582 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CA, Class type = 0x44CC, This type = 0x4581, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4583 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CC, Class type = 0x44CC, This type = 0x457C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4584 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44CC + +0x4585 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4584, Class type = 0x44CC, This type = 0x457C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4586 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4583, + list[1] = public, VANILLA, 0x4585, + +0x4587 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4580 + +0x4588 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4587 + +0x4589 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x44CC, This type = 0x4581, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4588, This adjust = 0 + +0x458a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44C7, Class type = 0x44CC, This type = 0x4581, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x458b : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x453F, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x457F, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4582, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4586, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4586, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4589, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x458A, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x44C7, offset = 0 + member name = '_Ptr' + +0x458c : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x458b, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000458c) + +0x458d : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000045a2) + +0x458e : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x458D, offset = 0 + +0x458f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x458e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x0000458f) + +0x4590 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x44CD + +0x4591 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CD, This type = 0x4590, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4588, This adjust = 0 + +0x4592 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CD, This type = 0x4590, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x451b, This adjust = 0 + +0x4593 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x44CD, This type = 0x4590, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4594 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4591, + list[1] = public, VANILLA, 0x4592, + list[2] = public, VANILLA, 0x4593, + +0x4595 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x44CD + +0x4596 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4595 + +0x4597 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CB, Class type = 0x44CD, This type = 0x4596, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4598 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x44CD, Class type = 0x44CD, This type = 0x4590, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4599 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x44CD + +0x459a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4599, Class type = 0x44CD, This type = 0x4590, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x459b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4598, + list[1] = public, VANILLA, 0x459A, + +0x459c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4595 + +0x459d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x459C + +0x459e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x44CD, This type = 0x4596, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x459d, This adjust = 0 + +0x459f : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x44CC, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4594, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4597, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x459B, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x459B, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x459E, name = 'operator==' + +0x45a0 : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x459f, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x000045a0) + +0x45a1 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = T_UCHAR(0020), value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x45a2 : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x45a1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000045a2) + +0x45a3 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000045bf) + +0x45a4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45A3 + +0x45a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A3, This type = 0x45A4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45a6 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x0000463a) + +0x45a7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45A6 + +0x45a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45a9 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x000045d0) + +0x45aa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45A9 + +0x45ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A9, This type = 0x45AA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45ac : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x000046e1) + +0x45ad : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45AC + +0x45ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45af : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x000045e5) + +0x45b0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45A3 + +0x45b1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45B0 + +0x45b2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45B1 + +0x45b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A3, This type = 0x45A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45b2, This adjust = 0 + +0x45b4 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate0x178Element, UDT(0x00004726) + +0x45b5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45B4 + +0x45b6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45B5 + +0x45b7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x45B6 + +0x45b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A3, This type = 0x45A4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x45b7, This adjust = 0 + +0x45b9 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45B3, + list[1] = public, VANILLA, 0x45B8, + list[2] = public, VANILLA, 0x45A5, + +0x45ba : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45A3 + +0x45bb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45BA + +0x45bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A3, This type = 0x45A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45bb, This adjust = 0 + +0x45bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45BA, Class type = 0x45A3, This type = 0x45A4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45b2, This adjust = 0 + +0x45be : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x45A6, offset = 0 + list[1] = LF_NESTTYPE, type = 0x45A3, _Myt + list[2] = LF_NESTTYPE, type = 0x45AF, _A + list[3] = LF_METHOD, count = 3, list = 0x45B9, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x45BC, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x45BD, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x45A5, name = '~List' + +0x45bf : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x45be, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000045bf) + +0x45c0 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x0000468c) + +0x45c1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45A9 + +0x45c2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45C1 + +0x45c3 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45C2 + +0x45c4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A9, This type = 0x45AA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45c3, This adjust = 0 + +0x45c5 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate0x184Element, UDT(0x0000472b) + +0x45c6 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45C5 + +0x45c7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45C6 + +0x45c8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x45C7 + +0x45c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A9, This type = 0x45AA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x45c8, This adjust = 0 + +0x45ca : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45C4, + list[1] = public, VANILLA, 0x45C9, + list[2] = public, VANILLA, 0x45AB, + +0x45cb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45A9 + +0x45cc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45CB + +0x45cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A9, This type = 0x45AA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45cc, This adjust = 0 + +0x45ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45CB, Class type = 0x45A9, This type = 0x45AA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45c3, This adjust = 0 + +0x45cf : Length = 170, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x45AC, offset = 0 + list[1] = LF_NESTTYPE, type = 0x45A9, _Myt + list[2] = LF_NESTTYPE, type = 0x45C0, _A + list[3] = LF_METHOD, count = 3, list = 0x45CA, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x45CD, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x45CE, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x45AB, name = '~List' + +0x45d0 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x45cf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x000045d0) + +0x45d1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x45B4 + +0x45d2 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x45B5 + +0x45d3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45B4 + +0x45d4 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45AF + +0x45d5 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45D4 + +0x45d6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45B6 + +0x45d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D2, Class type = 0x45AF, This type = 0x45D5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45d6, This adjust = 0 + +0x45d8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45D3 + +0x45d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D1, Class type = 0x45AF, This type = 0x45D5, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45d8, This adjust = 0 + +0x45da : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45D7, + list[1] = public, VANILLA, 0x45D9, + +0x45db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45AF + +0x45dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D1, Class type = 0x45AF, This type = 0x45DB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x45dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x45AF, This type = 0x45DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x45de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AF, This type = 0x45DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x45df : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45D1 + list[1] = 0x45B6 + +0x45e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AF, This type = 0x45DB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x45df, This adjust = 0 + +0x45e1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45D1 + +0x45e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AF, This type = 0x45DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45e1, This adjust = 0 + +0x45e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x45AF, This type = 0x45D5, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45e4 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x45D1, pointer + list[3] = LF_NESTTYPE, type = 0x45D2, const_pointer + list[4] = LF_NESTTYPE, type = 0x45D3, reference + list[5] = LF_NESTTYPE, type = 0x45B6, const_reference + list[6] = LF_NESTTYPE, type = 0x45B4, value_type + list[7] = LF_METHOD, count = 2, list = 0x45DA, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x45DC, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x45DD, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x45DE, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x45E0, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x45E2, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x45E3, name = 'max_size' + +0x45e5 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x45e4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x000045e5) + +0x45e6 : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000472d) + +0x45e7 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x45E6 + +0x45e8 : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004659) + +0x45e9 : Length = 110, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x0000473e) + +0x45ea : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004752) + +0x45eb : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element &,MxDeviceEnumerate0x178Element *,int>, UDT(0x00004668) + +0x45ec : Length = 258, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element const &,MxDeviceEnumerate0x178Element const *,int>, UDT(0x00004677) + +0x45ed : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45D4 + +0x45ee : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x45EA + list[1] = 0x45EA + list[2] = 0x45ED + +0x45ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x45ee, This adjust = 0 + +0x45f0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45A6 + +0x45f1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45F0 + +0x45f2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45F1 + +0x45f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45f2, This adjust = 0 + +0x45f4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x45B6 + list[2] = 0x45ED + +0x45f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x45f4, This adjust = 0 + +0x45f6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45ED + +0x45f7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45f6, This adjust = 0 + +0x45f8 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45EF, + list[1] = public, VANILLA, 0x45F3, + list[2] = public, VANILLA, 0x45F5, + list[3] = public, VANILLA, 0x45F7, + +0x45f9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45A6 + +0x45fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45F9, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45f2, This adjust = 0 + +0x45fb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45F0 + +0x45fc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EA, Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x45fe : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45FC, + list[1] = public, VANILLA, 0x45FD, + +0x45ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EC, Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4600 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EB, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4601 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x45FF, + list[1] = public, VANILLA, 0x4600, + +0x4602 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x45B4 + +0x4603 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4602, This adjust = 0 + +0x4604 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4605 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4606 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45AF, Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4607 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45B6, Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4608 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D3, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4609 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4607, + list[1] = public, VANILLA, 0x4608, + +0x460a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45d6, This adjust = 0 + +0x460b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x45b7, This adjust = 0 + +0x460c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45EA + list[1] = 0x45EA + +0x460d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x460c, This adjust = 0 + +0x460e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x460B, + list[1] = public, VANILLA, 0x460D, + +0x460f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x45E9 + list[1] = 0x45EA + list[2] = 0x45EA + +0x4610 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x460f, This adjust = 0 + +0x4611 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x45E9 + list[1] = 0x45D2 + list[2] = 0x45D2 + +0x4612 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4611, This adjust = 0 + +0x4613 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x45E9 + list[1] = T_UINT4(0075) + list[2] = 0x45B6 + +0x4614 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4613, This adjust = 0 + +0x4615 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45E9 + list[1] = 0x45B6 + +0x4616 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4615, This adjust = 0 + +0x4617 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4610, + list[1] = public, VANILLA, 0x4612, + list[2] = public, VANILLA, 0x4614, + list[3] = public, VANILLA, 0x4616, + +0x4618 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45E9 + list[1] = 0x45E9 + +0x4619 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4618, This adjust = 0 + +0x461a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45E9 + +0x461b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x461a, This adjust = 0 + +0x461c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4619, + list[1] = public, VANILLA, 0x461B, + +0x461d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45F9 + +0x461e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x461d, This adjust = 0 + +0x461f : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x45E9 + list[1] = 0x45F9 + list[2] = 0x45E9 + list[3] = 0x45E9 + +0x4620 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x461f, This adjust = 0 + +0x4621 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x45E9 + list[1] = 0x45F9 + list[2] = 0x45E9 + +0x4622 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4621, This adjust = 0 + +0x4623 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45E9 + list[1] = 0x45F9 + +0x4624 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4623, This adjust = 0 + +0x4625 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4620, + list[1] = public, VANILLA, 0x4622, + list[2] = public, VANILLA, 0x4624, + +0x4626 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x0000464b) + +0x4627 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4626 + +0x4628 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4627, This adjust = 0 + +0x4629 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004641) + +0x462a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4629 + +0x462b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x462a, This adjust = 0 + +0x462c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x462B, + list[1] = public, VANILLA, 0x45A8, + +0x462d : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004654) + +0x462e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45F9 + list[1] = 0x462D + +0x462f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x462e, This adjust = 0 + +0x4630 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x462F, + list[1] = public, VANILLA, 0x461E, + +0x4631 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x462D + +0x4632 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4631, This adjust = 0 + +0x4633 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4632, + list[1] = public, VANILLA, 0x45A8, + +0x4634 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45E7 + list[1] = 0x45E7 + +0x4635 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E7, Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4634, This adjust = 0 + +0x4636 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45E7 + +0x4637 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45A7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4636, This adjust = 0 + +0x4638 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45A6, This type = 0x45FB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4639 : Length = 1194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x45E6, _Node + list[2] = LF_NESTTYPE, type = 0x45E7, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x45E8, _Acc + list[4] = LF_NESTTYPE, type = 0x45A6, _Myt + list[5] = LF_NESTTYPE, type = 0x45AF, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x45D1, _Tptr + list[9] = LF_NESTTYPE, type = 0x45D2, _Ctptr + list[10] = LF_NESTTYPE, type = 0x45D3, reference + list[11] = LF_NESTTYPE, type = 0x45B6, const_reference + list[12] = LF_NESTTYPE, type = 0x45B4, value_type + list[13] = LF_NESTTYPE, type = 0x45E9, iterator + list[14] = LF_NESTTYPE, type = 0x45EA, const_iterator + list[15] = LF_NESTTYPE, type = 0x45EB, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x45EC, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x45F8, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x45EA, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x45A8, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x45FA, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x45FE, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x45FE, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x4601, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x4601, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4603, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x4604, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x4604, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x4605, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x4606, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4609, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4609, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x460A, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x45A8, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x460A, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x45A8, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x460E, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4617, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x461C, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x45A8, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x461E, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x4625, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x460A, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x4626, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x4628, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x462C, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x4629, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4630, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x462D, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x4633, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x45A8, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x4635, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x4637, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4620, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x4638, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x45AF, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x45E7, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x463a : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4639, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000463a) + +0x463b : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x0000464f) + +0x463c : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4629 + +0x463d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x463C + +0x463e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45B6 + list[1] = 0x45B6 + +0x463f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4629, This type = 0x463D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x463e, This adjust = 0 + +0x4640 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x463B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x463F, name = 'operator()' + +0x4641 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4640, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004641) + +0x4642 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x0000464d) + +0x4643 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4626 + +0x4644 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x463C + +0x4645 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4644 + list[1] = 0x45B6 + +0x4646 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4626, This type = 0x4643, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4645, This adjust = 0 + +0x4647 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4626 + +0x4648 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4647 + +0x4649 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4626, This type = 0x4648, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x45d6, This adjust = 0 + +0x464a : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4642, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4646, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4649, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x4629, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x45B4, offset = 1 + member name = 'value' + +0x464b : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x464a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 421, class name = binder2nd >, UDT(0x0000464b) + +0x464c : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x45B4, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x464d : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x464c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x0000464d) + +0x464e : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x45B4, first_argument_type + list[1] = LF_NESTTYPE, type = 0x45B4, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x464f : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x464e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x0000464f) + +0x4650 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x462D + +0x4651 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4650 + +0x4652 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x462D, This type = 0x4651, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x463e, This adjust = 0 + +0x4653 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x463B, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4652, name = 'operator()' + +0x4654 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4653, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004654) + +0x4655 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45E7 + +0x4656 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4655, Class type = 0x45E8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4636, This adjust = 0 + +0x4657 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D3, Class type = 0x45E8, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4636, This adjust = 0 + +0x4658 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4655, _Nodepref + list[1] = LF_NESTTYPE, type = 0x45D3, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4656, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4656, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4657, name = '_Value' + +0x4659 : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4658, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004659) + +0x465a : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004741) + +0x465b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45EB + +0x465c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EB, This type = 0x465B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x461a, This adjust = 0 + +0x465d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EB, This type = 0x465B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x465e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x465C, + list[1] = public, VANILLA, 0x465D, + +0x465f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45EB + +0x4660 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x465F + +0x4661 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45EB, This type = 0x4660, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4662 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D3, Class type = 0x45EB, This type = 0x4660, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4663 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EB, Class type = 0x45EB, This type = 0x465B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4664 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45EB + +0x4665 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4664, Class type = 0x45EB, This type = 0x465B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4666 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4663, + list[1] = public, VANILLA, 0x4665, + +0x4667 : Length = 466, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x465A, offset = 0 + list[1] = LF_NESTTYPE, type = 0x45EB, _Myt + list[2] = LF_NESTTYPE, type = 0x45E9, iter_type + list[3] = LF_NESTTYPE, type = 0x45B4, value_type + list[4] = LF_NESTTYPE, type = 0x45D3, reference_type + list[5] = LF_NESTTYPE, type = 0x45D1, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x465E, name = 'reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element &,MxDeviceEnumerate0x178Element *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4661, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4662, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4666, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4666, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x45E9, offset = 0 + member name = 'current' + +0x4668 : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4667, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element &,MxDeviceEnumerate0x178Element *,int>, UDT(0x00004668) + +0x4669 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45EC + +0x466a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45EA + +0x466b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EC, This type = 0x4669, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x466a, This adjust = 0 + +0x466c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EC, This type = 0x4669, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x466d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x466B, + list[1] = public, VANILLA, 0x466C, + +0x466e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45EC + +0x466f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x466E + +0x4670 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EA, Class type = 0x45EC, This type = 0x466F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4671 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45B6, Class type = 0x45EC, This type = 0x466F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4672 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EC, Class type = 0x45EC, This type = 0x4669, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4673 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45EC + +0x4674 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4673, Class type = 0x45EC, This type = 0x4669, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4675 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4672, + list[1] = public, VANILLA, 0x4674, + +0x4676 : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x465A, offset = 0 + list[1] = LF_NESTTYPE, type = 0x45EC, _Myt + list[2] = LF_NESTTYPE, type = 0x45EA, iter_type + list[3] = LF_NESTTYPE, type = 0x45B4, value_type + list[4] = LF_NESTTYPE, type = 0x45B6, reference_type + list[5] = LF_NESTTYPE, type = 0x45D2, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x466D, name = 'reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element const &,MxDeviceEnumerate0x178Element const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4670, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4671, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4675, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4675, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x45EA, offset = 0 + member name = 'current' + +0x4677 : Length = 258, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4676, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x178Element,MxDeviceEnumerate0x178Element const &,MxDeviceEnumerate0x178Element const *,int>, UDT(0x00004677) + +0x4678 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x45C5 + +0x4679 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x45C6 + +0x467a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45C5 + +0x467b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45C0 + +0x467c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x467B + +0x467d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45C7 + +0x467e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4679, Class type = 0x45C0, This type = 0x467C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x467d, This adjust = 0 + +0x467f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x467A + +0x4680 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4678, Class type = 0x45C0, This type = 0x467C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x467f, This adjust = 0 + +0x4681 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x467E, + list[1] = public, VANILLA, 0x4680, + +0x4682 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45C0 + +0x4683 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4678, Class type = 0x45C0, This type = 0x4682, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4684 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x45C0, This type = 0x4682, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4685 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45C0, This type = 0x4682, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4686 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4678 + list[1] = 0x45C7 + +0x4687 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45C0, This type = 0x4682, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4686, This adjust = 0 + +0x4688 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4678 + +0x4689 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45C0, This type = 0x4682, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4688, This adjust = 0 + +0x468a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x45C0, This type = 0x467C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x468b : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4678, pointer + list[3] = LF_NESTTYPE, type = 0x4679, const_pointer + list[4] = LF_NESTTYPE, type = 0x467A, reference + list[5] = LF_NESTTYPE, type = 0x45C7, const_reference + list[6] = LF_NESTTYPE, type = 0x45C5, value_type + list[7] = LF_METHOD, count = 2, list = 0x4681, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4683, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4684, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4685, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4687, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4689, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x468A, name = 'max_size' + +0x468c : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x468b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x0000468c) + +0x468d : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004754) + +0x468e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x468D + +0x468f : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004700) + +0x4690 : Length = 110, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004765) + +0x4691 : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004779) + +0x4692 : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element &,MxDeviceEnumerate0x184Element *,int>, UDT(0x0000470f) + +0x4693 : Length = 258, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element const &,MxDeviceEnumerate0x184Element const *,int>, UDT(0x0000471e) + +0x4694 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x467B + +0x4695 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4691 + list[1] = 0x4691 + list[2] = 0x4694 + +0x4696 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4695, This adjust = 0 + +0x4697 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45AC + +0x4698 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4697 + +0x4699 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4698 + +0x469a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4699, This adjust = 0 + +0x469b : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x45C7 + list[2] = 0x4694 + +0x469c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x469b, This adjust = 0 + +0x469d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4694 + +0x469e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x469d, This adjust = 0 + +0x469f : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4696, + list[1] = public, VANILLA, 0x469A, + list[2] = public, VANILLA, 0x469C, + list[3] = public, VANILLA, 0x469E, + +0x46a0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45AC + +0x46a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x46A0, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4699, This adjust = 0 + +0x46a2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4697 + +0x46a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4691, Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46a5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46A3, + list[1] = public, VANILLA, 0x46A4, + +0x46a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4693, Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4692, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46a8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46A6, + list[1] = public, VANILLA, 0x46A7, + +0x46a9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x45C5 + +0x46aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46a9, This adjust = 0 + +0x46ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45C0, Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45C7, Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x467A, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46b0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46AE, + list[1] = public, VANILLA, 0x46AF, + +0x46b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x467d, This adjust = 0 + +0x46b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x45c8, This adjust = 0 + +0x46b3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4691 + list[1] = 0x4691 + +0x46b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46b3, This adjust = 0 + +0x46b5 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46B2, + list[1] = public, VANILLA, 0x46B4, + +0x46b6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4690 + list[1] = 0x4691 + list[2] = 0x4691 + +0x46b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x46b6, This adjust = 0 + +0x46b8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4690 + list[1] = 0x4679 + list[2] = 0x4679 + +0x46b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x46b8, This adjust = 0 + +0x46ba : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4690 + list[1] = T_UINT4(0075) + list[2] = 0x45C7 + +0x46bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x46ba, This adjust = 0 + +0x46bc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4690 + list[1] = 0x45C7 + +0x46bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46bc, This adjust = 0 + +0x46be : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46B7, + list[1] = public, VANILLA, 0x46B9, + list[2] = public, VANILLA, 0x46BB, + list[3] = public, VANILLA, 0x46BD, + +0x46bf : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4690 + list[1] = 0x4690 + +0x46c0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46bf, This adjust = 0 + +0x46c1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4690 + +0x46c2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46c1, This adjust = 0 + +0x46c3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46C0, + list[1] = public, VANILLA, 0x46C2, + +0x46c4 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x46A0 + +0x46c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46c4, This adjust = 0 + +0x46c6 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x4690 + list[1] = 0x46A0 + list[2] = 0x4690 + list[3] = 0x4690 + +0x46c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x46c6, This adjust = 0 + +0x46c8 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4690 + list[1] = 0x46A0 + list[2] = 0x4690 + +0x46c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x46c8, This adjust = 0 + +0x46ca : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4690 + list[1] = 0x46A0 + +0x46cb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46ca, This adjust = 0 + +0x46cc : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46C7, + list[1] = public, VANILLA, 0x46C9, + list[2] = public, VANILLA, 0x46CB, + +0x46cd : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x000046f2) + +0x46ce : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x46CD + +0x46cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46ce, This adjust = 0 + +0x46d0 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x000046e8) + +0x46d1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x46D0 + +0x46d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46d1, This adjust = 0 + +0x46d3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46D2, + list[1] = public, VANILLA, 0x45AE, + +0x46d4 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x000046fb) + +0x46d5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x46A0 + list[1] = 0x46D4 + +0x46d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46d5, This adjust = 0 + +0x46d7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46D6, + list[1] = public, VANILLA, 0x46C5, + +0x46d8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x46D4 + +0x46d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46d8, This adjust = 0 + +0x46da : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x46D9, + list[1] = public, VANILLA, 0x45AE, + +0x46db : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x468E + list[1] = 0x468E + +0x46dc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x468E, Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46db, This adjust = 0 + +0x46dd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x468E + +0x46de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x45AD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46dd, This adjust = 0 + +0x46df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45AC, This type = 0x46A2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x46e0 : Length = 1194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x468D, _Node + list[2] = LF_NESTTYPE, type = 0x468E, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x468F, _Acc + list[4] = LF_NESTTYPE, type = 0x45AC, _Myt + list[5] = LF_NESTTYPE, type = 0x45C0, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4678, _Tptr + list[9] = LF_NESTTYPE, type = 0x4679, _Ctptr + list[10] = LF_NESTTYPE, type = 0x467A, reference + list[11] = LF_NESTTYPE, type = 0x45C7, const_reference + list[12] = LF_NESTTYPE, type = 0x45C5, value_type + list[13] = LF_NESTTYPE, type = 0x4690, iterator + list[14] = LF_NESTTYPE, type = 0x4691, const_iterator + list[15] = LF_NESTTYPE, type = 0x4692, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x4693, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x469F, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x4691, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x45AE, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x46A1, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x46A5, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x46A5, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x46A8, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x46A8, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x46AA, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x46AB, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x46AB, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x46AC, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x46AD, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x46B0, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x46B0, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x46B1, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x45AE, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x46B1, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x45AE, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x46B5, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x46BE, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x46C3, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x45AE, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x46C5, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x46CC, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x46B1, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x46CD, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x46CF, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x46D3, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x46D0, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x46D7, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x46D4, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x46DA, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x45AE, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x46DC, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x46DE, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x46C7, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x46DF, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x45C0, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x468E, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x46e1 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x46e0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x000046e1) + +0x46e2 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x000046f6) + +0x46e3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x46D0 + +0x46e4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x46E3 + +0x46e5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x45C7 + list[1] = 0x45C7 + +0x46e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x46D0, This type = 0x46E4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46e5, This adjust = 0 + +0x46e7 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x46E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x46E6, name = 'operator()' + +0x46e8 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x46e7, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x000046e8) + +0x46e9 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000046f4) + +0x46ea : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x46CD + +0x46eb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x46E3 + +0x46ec : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x46EB + list[1] = 0x45C7 + +0x46ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x46CD, This type = 0x46EA, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46ec, This adjust = 0 + +0x46ee : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x46CD + +0x46ef : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x46EE + +0x46f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x46CD, This type = 0x46EF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x467d, This adjust = 0 + +0x46f1 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x46E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x46ED, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x46F0, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x46D0, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x45C5, offset = 1 + member name = 'value' + +0x46f2 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x46f1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 13, class name = binder2nd >, UDT(0x000046f2) + +0x46f3 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x45C5, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x46f4 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x46f3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000046f4) + +0x46f5 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x45C5, first_argument_type + list[1] = LF_NESTTYPE, type = 0x45C5, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x46f6 : Length = 102, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x46f5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x000046f6) + +0x46f7 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x46D4 + +0x46f8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x46F7 + +0x46f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x46D4, This type = 0x46F8, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x46e5, This adjust = 0 + +0x46fa : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x46E2, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x46F9, name = 'operator()' + +0x46fb : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x46fa, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x000046fb) + +0x46fc : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x468E + +0x46fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x46FC, Class type = 0x468F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x46dd, This adjust = 0 + +0x46fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x467A, Class type = 0x468F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x46dd, This adjust = 0 + +0x46ff : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x46FC, _Nodepref + list[1] = LF_NESTTYPE, type = 0x467A, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x46FD, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x46FD, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x46FE, name = '_Value' + +0x4700 : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x46ff, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004700) + +0x4701 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004768) + +0x4702 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4692 + +0x4703 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4692, This type = 0x4702, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46c1, This adjust = 0 + +0x4704 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4692, This type = 0x4702, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4705 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4703, + list[1] = public, VANILLA, 0x4704, + +0x4706 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4692 + +0x4707 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4706 + +0x4708 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x4692, This type = 0x4707, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4709 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x467A, Class type = 0x4692, This type = 0x4707, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x470a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4692, Class type = 0x4692, This type = 0x4702, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x470b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4692 + +0x470c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x470B, Class type = 0x4692, This type = 0x4702, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x470d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x470A, + list[1] = public, VANILLA, 0x470C, + +0x470e : Length = 466, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4701, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4692, _Myt + list[2] = LF_NESTTYPE, type = 0x4690, iter_type + list[3] = LF_NESTTYPE, type = 0x45C5, value_type + list[4] = LF_NESTTYPE, type = 0x467A, reference_type + list[5] = LF_NESTTYPE, type = 0x4678, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4705, name = 'reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element &,MxDeviceEnumerate0x184Element *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4708, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4709, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x470D, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x470D, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4690, offset = 0 + member name = 'current' + +0x470f : Length = 238, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x470e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element &,MxDeviceEnumerate0x184Element *,int>, UDT(0x0000470f) + +0x4710 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4693 + +0x4711 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4691 + +0x4712 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4693, This type = 0x4710, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4711, This adjust = 0 + +0x4713 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4693, This type = 0x4710, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4714 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4712, + list[1] = public, VANILLA, 0x4713, + +0x4715 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4693 + +0x4716 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4715 + +0x4717 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4691, Class type = 0x4693, This type = 0x4716, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4718 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45C7, Class type = 0x4693, This type = 0x4716, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4719 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4693, Class type = 0x4693, This type = 0x4710, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x471a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4693 + +0x471b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x471A, Class type = 0x4693, This type = 0x4710, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x471c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4719, + list[1] = public, VANILLA, 0x471B, + +0x471d : Length = 482, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4701, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4693, _Myt + list[2] = LF_NESTTYPE, type = 0x4691, iter_type + list[3] = LF_NESTTYPE, type = 0x45C5, value_type + list[4] = LF_NESTTYPE, type = 0x45C7, reference_type + list[5] = LF_NESTTYPE, type = 0x4679, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4714, name = 'reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element const &,MxDeviceEnumerate0x184Element const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4717, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4718, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x471C, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x471C, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4691, offset = 0 + member name = 'current' + +0x471e : Length = 258, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x471d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerate0x184Element,MxDeviceEnumerate0x184Element const &,MxDeviceEnumerate0x184Element const *,int>, UDT(0x0000471e) + +0x471f : Length = 178, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_driverName' + list[1] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[2] = LF_MEMBER, public, type = 0x1762, offset = 8 + member name = 'm_guid' + list[3] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[4] = LF_MEMBER, public, type = 0x45A3, offset = 376 + member name = 'm_unk0x178' + list[5] = LF_MEMBER, public, type = 0x45A9, offset = 388 + member name = 'm_unk0x184' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4720 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x471f, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4721 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_UCHAR(0020) + Index type = T_SHORT(0011) + length = 420 + Name = + +0x4722 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45B5 + +0x4723 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45B4 + +0x4724 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x45B4, This type = 0x4722, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4723, This adjust = 0 + +0x4725 : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4721, offset = 0 + member name = 'm_unk0x00' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4724, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4724, name = 'operator<' + +0x4726 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4725, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 420, class name = MxDeviceEnumerate0x178Element, UDT(0x00004726) + +0x4727 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45C6 + +0x4728 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x45C5 + +0x4729 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x45C5, This type = 0x4727, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4728, This adjust = 0 + +0x472a : Length = 62, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x3E0B, offset = 0 + member name = 'm_unk0x00' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4729, name = 'operator==' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4729, name = 'operator<' + +0x472b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x472a, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDeviceEnumerate0x184Element, UDT(0x0000472b) + +0x472c : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x45B4, offset = 8 + member name = '_Value' + +0x472d : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x472c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = list >::_Node, UDT(0x0000472d) + +0x472e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45E9 + +0x472f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45E9, This type = 0x472E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4636, This adjust = 0 + +0x4730 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45E9, This type = 0x472E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4731 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x472F, + list[1] = public, VANILLA, 0x4730, + +0x4732 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45E9 + +0x4733 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4732 + +0x4734 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45D3, Class type = 0x45E9, This type = 0x4733, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4735 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E9, Class type = 0x45E9, This type = 0x472E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4736 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45E9 + +0x4737 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4736, Class type = 0x45E9, This type = 0x472E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4738 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4735, + list[1] = public, VANILLA, 0x4737, + +0x4739 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4732 + +0x473a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4739 + +0x473b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x45E9, This type = 0x4733, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x473a, This adjust = 0 + +0x473c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45E7, Class type = 0x45E9, This type = 0x4733, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x473d : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x465A, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4731, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4734, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4738, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4738, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x473B, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x473C, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x45E7, offset = 0 + member name = '_Ptr' + +0x473e : Length = 110, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x473d, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x0000473e) + +0x473f : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x0000477b) + +0x4740 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x473F, offset = 0 + +0x4741 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4740, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004741) + +0x4742 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x45EA + +0x4743 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EA, This type = 0x4742, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x473a, This adjust = 0 + +0x4744 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EA, This type = 0x4742, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4636, This adjust = 0 + +0x4745 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x45EA, This type = 0x4742, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4746 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4743, + list[1] = public, VANILLA, 0x4744, + list[2] = public, VANILLA, 0x4745, + +0x4747 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x45EA + +0x4748 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4747 + +0x4749 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45B6, Class type = 0x45EA, This type = 0x4748, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x474a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45EA, Class type = 0x45EA, This type = 0x4742, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x474b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x45EA + +0x474c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x474B, Class type = 0x45EA, This type = 0x4742, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x474d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x474A, + list[1] = public, VANILLA, 0x474C, + +0x474e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4747 + +0x474f : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x474E + +0x4750 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x45EA, This type = 0x4748, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x474f, This adjust = 0 + +0x4751 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x45E9, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4746, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4749, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x474D, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x474D, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4750, name = 'operator==' + +0x4752 : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4751, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004752) + +0x4753 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x45C5, offset = 8 + member name = '_Value' + +0x4754 : Length = 106, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4753, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = list >::_Node, UDT(0x00004754) + +0x4755 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4690 + +0x4756 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4690, This type = 0x4755, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46dd, This adjust = 0 + +0x4757 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4690, This type = 0x4755, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4758 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4756, + list[1] = public, VANILLA, 0x4757, + +0x4759 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4690 + +0x475a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4759 + +0x475b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x467A, Class type = 0x4690, This type = 0x475A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x475c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4690, Class type = 0x4690, This type = 0x4755, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x475d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4690 + +0x475e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x475D, Class type = 0x4690, This type = 0x4755, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x475f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x475C, + list[1] = public, VANILLA, 0x475E, + +0x4760 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4759 + +0x4761 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4760 + +0x4762 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4690, This type = 0x475A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4761, This adjust = 0 + +0x4763 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x468E, Class type = 0x4690, This type = 0x475A, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4764 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4701, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4758, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x475B, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x475F, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x475F, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4762, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4763, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x468E, offset = 0 + member name = '_Ptr' + +0x4765 : Length = 110, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4764, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004765) + +0x4766 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x0000477d) + +0x4767 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4766, offset = 0 + +0x4768 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4767, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004768) + +0x4769 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4691 + +0x476a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4691, This type = 0x4769, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4761, This adjust = 0 + +0x476b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4691, This type = 0x4769, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x46dd, This adjust = 0 + +0x476c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4691, This type = 0x4769, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x476d : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x476A, + list[1] = public, VANILLA, 0x476B, + list[2] = public, VANILLA, 0x476C, + +0x476e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4691 + +0x476f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x476E + +0x4770 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x45C7, Class type = 0x4691, This type = 0x476F, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4771 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4691, Class type = 0x4691, This type = 0x4769, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4772 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4691 + +0x4773 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4772, Class type = 0x4691, This type = 0x4769, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4774 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4771, + list[1] = public, VANILLA, 0x4773, + +0x4775 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x476E + +0x4776 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4775 + +0x4777 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4691, This type = 0x476F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4776, This adjust = 0 + +0x4778 : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4690, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x476D, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4770, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4774, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4774, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4777, name = 'operator==' + +0x4779 : Length = 114, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4778, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004779) + +0x477a : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x45B4, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x477b : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x477a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x0000477b) + +0x477c : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x45C5, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x477d : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x477c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x0000477d) + +0x477e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A3, This type = 0x4386, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44af, This adjust = 0 + +0x477f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A3, This type = 0x4386, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x42cb, This adjust = 0 + +0x4780 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x477F, + list[1] = public, VANILLA, 0x477E, + list[2] = public, VANILLA, 0x4387, + +0x4781 : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[2] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[3] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverName' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[6] = LF_MEMBER, public, type = 0x45A3, offset = 376 + member name = 'm_unk0x178' + list[7] = LF_MEMBER, public, type = 0x45A9, offset = 388 + member name = 'm_unk0x184' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4782 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x4781, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4783 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverName' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverDesc' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x45A3, offset = 376 + member name = 'm_unk0x178' + list[8] = LF_MEMBER, public, type = 0x45A9, offset = 388 + member name = 'm_unk0x184' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4784 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4783, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4785 : Length = 318, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[9] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[10] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[11] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[12] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x4786 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4785, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4787 : Length = 94, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DVT_VERTEX' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DVT_LVERTEX' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DVT_TLVERTEX' + list[3] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DVT_FORCE_DWORD' + +0x4788 : Length = 30, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x4787 + enum name = _D3DVERTEXTYPE, UDT(0x00004788) + +0x4789 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DPT_POINTLIST' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DPT_LINELIST' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DPT_LINESTRIP' + list[3] = LF_ENUMERATE, public, value = 4, name = 'D3DPT_TRIANGLELIST' + list[4] = LF_ENUMERATE, public, value = 5, name = 'D3DPT_TRIANGLESTRIP' + list[5] = LF_ENUMERATE, public, value = 6, name = 'D3DPT_TRIANGLEFAN' + list[6] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DPT_FORCE_DWORD' + +0x478a : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 7, type = T_INT4(0074) field list type 0x4789 + enum name = _D3DPRIMITIVETYPE, UDT(0x0000478a) + +0x478b : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DTRANSFORMSTATE_WORLD' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DTRANSFORMSTATE_VIEW' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DTRANSFORMSTATE_PROJECTION' + list[3] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DTRANSFORMSTATE_FORCE_DWORD' + +0x478c : Length = 38, Leaf = 0x1507 LF_ENUM + # members = 4, type = T_INT4(0074) field list type 0x478b + enum name = _D3DTRANSFORMSTATETYPE, UDT(0x0000478c) + +0x478d : Length = 250, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DLIGHTSTATE_MATERIAL' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DLIGHTSTATE_AMBIENT' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DLIGHTSTATE_COLORMODEL' + list[3] = LF_ENUMERATE, public, value = 4, name = 'D3DLIGHTSTATE_FOGMODE' + list[4] = LF_ENUMERATE, public, value = 5, name = 'D3DLIGHTSTATE_FOGSTART' + list[5] = LF_ENUMERATE, public, value = 6, name = 'D3DLIGHTSTATE_FOGEND' + list[6] = LF_ENUMERATE, public, value = 7, name = 'D3DLIGHTSTATE_FOGDENSITY' + list[7] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DLIGHTSTATE_FORCE_DWORD' + +0x478e : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 8, type = T_INT4(0074) field list type 0x478d + enum name = _D3DLIGHTSTATETYPE, UDT(0x0000478e) + +0x478f : Length = 2990, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'D3DRENDERSTATE_TEXTUREHANDLE' + list[1] = LF_ENUMERATE, public, value = 2, name = 'D3DRENDERSTATE_ANTIALIAS' + list[2] = LF_ENUMERATE, public, value = 3, name = 'D3DRENDERSTATE_TEXTUREADDRESS' + list[3] = LF_ENUMERATE, public, value = 4, name = 'D3DRENDERSTATE_TEXTUREPERSPECTIVE' + list[4] = LF_ENUMERATE, public, value = 5, name = 'D3DRENDERSTATE_WRAPU' + list[5] = LF_ENUMERATE, public, value = 6, name = 'D3DRENDERSTATE_WRAPV' + list[6] = LF_ENUMERATE, public, value = 7, name = 'D3DRENDERSTATE_ZENABLE' + list[7] = LF_ENUMERATE, public, value = 8, name = 'D3DRENDERSTATE_FILLMODE' + list[8] = LF_ENUMERATE, public, value = 9, name = 'D3DRENDERSTATE_SHADEMODE' + list[9] = LF_ENUMERATE, public, value = 10, name = 'D3DRENDERSTATE_LINEPATTERN' + list[10] = LF_ENUMERATE, public, value = 11, name = 'D3DRENDERSTATE_MONOENABLE' + list[11] = LF_ENUMERATE, public, value = 12, name = 'D3DRENDERSTATE_ROP2' + list[12] = LF_ENUMERATE, public, value = 13, name = 'D3DRENDERSTATE_PLANEMASK' + list[13] = LF_ENUMERATE, public, value = 14, name = 'D3DRENDERSTATE_ZWRITEENABLE' + list[14] = LF_ENUMERATE, public, value = 15, name = 'D3DRENDERSTATE_ALPHATESTENABLE' + list[15] = LF_ENUMERATE, public, value = 16, name = 'D3DRENDERSTATE_LASTPIXEL' + list[16] = LF_ENUMERATE, public, value = 17, name = 'D3DRENDERSTATE_TEXTUREMAG' + list[17] = LF_ENUMERATE, public, value = 18, name = 'D3DRENDERSTATE_TEXTUREMIN' + list[18] = LF_ENUMERATE, public, value = 19, name = 'D3DRENDERSTATE_SRCBLEND' + list[19] = LF_ENUMERATE, public, value = 20, name = 'D3DRENDERSTATE_DESTBLEND' + list[20] = LF_ENUMERATE, public, value = 21, name = 'D3DRENDERSTATE_TEXTUREMAPBLEND' + list[21] = LF_ENUMERATE, public, value = 22, name = 'D3DRENDERSTATE_CULLMODE' + list[22] = LF_ENUMERATE, public, value = 23, name = 'D3DRENDERSTATE_ZFUNC' + list[23] = LF_ENUMERATE, public, value = 24, name = 'D3DRENDERSTATE_ALPHAREF' + list[24] = LF_ENUMERATE, public, value = 25, name = 'D3DRENDERSTATE_ALPHAFUNC' + list[25] = LF_ENUMERATE, public, value = 26, name = 'D3DRENDERSTATE_DITHERENABLE' + list[26] = LF_ENUMERATE, public, value = 27, name = 'D3DRENDERSTATE_ALPHABLENDENABLE' + list[27] = LF_ENUMERATE, public, value = 28, name = 'D3DRENDERSTATE_FOGENABLE' + list[28] = LF_ENUMERATE, public, value = 29, name = 'D3DRENDERSTATE_SPECULARENABLE' + list[29] = LF_ENUMERATE, public, value = 30, name = 'D3DRENDERSTATE_ZVISIBLE' + list[30] = LF_ENUMERATE, public, value = 31, name = 'D3DRENDERSTATE_SUBPIXEL' + list[31] = LF_ENUMERATE, public, value = 32, name = 'D3DRENDERSTATE_SUBPIXELX' + list[32] = LF_ENUMERATE, public, value = 33, name = 'D3DRENDERSTATE_STIPPLEDALPHA' + list[33] = LF_ENUMERATE, public, value = 34, name = 'D3DRENDERSTATE_FOGCOLOR' + list[34] = LF_ENUMERATE, public, value = 35, name = 'D3DRENDERSTATE_FOGTABLEMODE' + list[35] = LF_ENUMERATE, public, value = 36, name = 'D3DRENDERSTATE_FOGTABLESTART' + list[36] = LF_ENUMERATE, public, value = 37, name = 'D3DRENDERSTATE_FOGTABLEEND' + list[37] = LF_ENUMERATE, public, value = 38, name = 'D3DRENDERSTATE_FOGTABLEDENSITY' + list[38] = LF_ENUMERATE, public, value = 39, name = 'D3DRENDERSTATE_STIPPLEENABLE' + list[39] = LF_ENUMERATE, public, value = 40, name = 'D3DRENDERSTATE_EDGEANTIALIAS' + list[40] = LF_ENUMERATE, public, value = 41, name = 'D3DRENDERSTATE_COLORKEYENABLE' + list[41] = LF_ENUMERATE, public, value = 43, name = 'D3DRENDERSTATE_BORDERCOLOR' + list[42] = LF_ENUMERATE, public, value = 44, name = 'D3DRENDERSTATE_TEXTUREADDRESSU' + list[43] = LF_ENUMERATE, public, value = 45, name = 'D3DRENDERSTATE_TEXTUREADDRESSV' + list[44] = LF_ENUMERATE, public, value = 46, name = 'D3DRENDERSTATE_MIPMAPLODBIAS' + list[45] = LF_ENUMERATE, public, value = 47, name = 'D3DRENDERSTATE_ZBIAS' + list[46] = LF_ENUMERATE, public, value = 48, name = 'D3DRENDERSTATE_RANGEFOGENABLE' + list[47] = LF_ENUMERATE, public, value = 49, name = 'D3DRENDERSTATE_ANISOTROPY' + list[48] = LF_ENUMERATE, public, value = 50, name = 'D3DRENDERSTATE_FLUSHBATCH' + list[49] = LF_ENUMERATE, public, value = 64, name = 'D3DRENDERSTATE_STIPPLEPATTERN00' + list[50] = LF_ENUMERATE, public, value = 65, name = 'D3DRENDERSTATE_STIPPLEPATTERN01' + list[51] = LF_ENUMERATE, public, value = 66, name = 'D3DRENDERSTATE_STIPPLEPATTERN02' + list[52] = LF_ENUMERATE, public, value = 67, name = 'D3DRENDERSTATE_STIPPLEPATTERN03' + list[53] = LF_ENUMERATE, public, value = 68, name = 'D3DRENDERSTATE_STIPPLEPATTERN04' + list[54] = LF_ENUMERATE, public, value = 69, name = 'D3DRENDERSTATE_STIPPLEPATTERN05' + list[55] = LF_ENUMERATE, public, value = 70, name = 'D3DRENDERSTATE_STIPPLEPATTERN06' + list[56] = LF_ENUMERATE, public, value = 71, name = 'D3DRENDERSTATE_STIPPLEPATTERN07' + list[57] = LF_ENUMERATE, public, value = 72, name = 'D3DRENDERSTATE_STIPPLEPATTERN08' + list[58] = LF_ENUMERATE, public, value = 73, name = 'D3DRENDERSTATE_STIPPLEPATTERN09' + list[59] = LF_ENUMERATE, public, value = 74, name = 'D3DRENDERSTATE_STIPPLEPATTERN10' + list[60] = LF_ENUMERATE, public, value = 75, name = 'D3DRENDERSTATE_STIPPLEPATTERN11' + list[61] = LF_ENUMERATE, public, value = 76, name = 'D3DRENDERSTATE_STIPPLEPATTERN12' + list[62] = LF_ENUMERATE, public, value = 77, name = 'D3DRENDERSTATE_STIPPLEPATTERN13' + list[63] = LF_ENUMERATE, public, value = 78, name = 'D3DRENDERSTATE_STIPPLEPATTERN14' + list[64] = LF_ENUMERATE, public, value = 79, name = 'D3DRENDERSTATE_STIPPLEPATTERN15' + list[65] = LF_ENUMERATE, public, value = 80, name = 'D3DRENDERSTATE_STIPPLEPATTERN16' + list[66] = LF_ENUMERATE, public, value = 81, name = 'D3DRENDERSTATE_STIPPLEPATTERN17' + list[67] = LF_ENUMERATE, public, value = 82, name = 'D3DRENDERSTATE_STIPPLEPATTERN18' + list[68] = LF_ENUMERATE, public, value = 83, name = 'D3DRENDERSTATE_STIPPLEPATTERN19' + list[69] = LF_ENUMERATE, public, value = 84, name = 'D3DRENDERSTATE_STIPPLEPATTERN20' + list[70] = LF_ENUMERATE, public, value = 85, name = 'D3DRENDERSTATE_STIPPLEPATTERN21' + list[71] = LF_ENUMERATE, public, value = 86, name = 'D3DRENDERSTATE_STIPPLEPATTERN22' + list[72] = LF_ENUMERATE, public, value = 87, name = 'D3DRENDERSTATE_STIPPLEPATTERN23' + list[73] = LF_ENUMERATE, public, value = 88, name = 'D3DRENDERSTATE_STIPPLEPATTERN24' + list[74] = LF_ENUMERATE, public, value = 89, name = 'D3DRENDERSTATE_STIPPLEPATTERN25' + list[75] = LF_ENUMERATE, public, value = 90, name = 'D3DRENDERSTATE_STIPPLEPATTERN26' + list[76] = LF_ENUMERATE, public, value = 91, name = 'D3DRENDERSTATE_STIPPLEPATTERN27' + list[77] = LF_ENUMERATE, public, value = 92, name = 'D3DRENDERSTATE_STIPPLEPATTERN28' + list[78] = LF_ENUMERATE, public, value = 93, name = 'D3DRENDERSTATE_STIPPLEPATTERN29' + list[79] = LF_ENUMERATE, public, value = 94, name = 'D3DRENDERSTATE_STIPPLEPATTERN30' + list[80] = LF_ENUMERATE, public, value = 95, name = 'D3DRENDERSTATE_STIPPLEPATTERN31' + list[81] = LF_ENUMERATE, public, value = (LF_ULONG) 2147483647, name = 'D3DRENDERSTATE_FORCE_DWORD' + +0x4790 : Length = 34, Leaf = 0x1507 LF_ENUM + # members = 82, type = T_INT4(0074) field list type 0x478f + enum name = _D3DRENDERSTATETYPE, UDT(0x00004790) + +0x4791 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3D2, UDT(0x000047a9) + +0x4792 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4791 + +0x4793 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4791 + +0x4794 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4795 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4796 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28ba, This adjust = 0 + +0x4797 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28bf, This adjust = 0 + +0x4798 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DMaterial2, UDT(0x000047b1) + +0x4799 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4798 + +0x479a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4799 + +0x479b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x479A + list[1] = 0x1770 + +0x479c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x479b, This adjust = 0 + +0x479d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DViewport2, UDT(0x000047c5) + +0x479e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x479D + +0x479f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x479E + +0x47a0 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x479F + list[1] = 0x1770 + +0x47a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47a0, This adjust = 0 + +0x47a2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28cf, This adjust = 0 + +0x47a3 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DDevice2, UDT(0x000047f4) + +0x47a4 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x47A3 + +0x47a5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x47A4 + +0x47a6 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1CB6 + list[1] = 0x11E7 + list[2] = 0x47A5 + +0x47a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4791, This type = 0x4793, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x47a6, This adjust = 0 + +0x47a8 : Length = 226, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4794, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4795, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4795, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4796, + vfptr offset = 12, name = 'EnumDevices' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4797, + vfptr offset = 16, name = 'CreateLight' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x479C, + vfptr offset = 20, name = 'CreateMaterial' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47A1, + vfptr offset = 24, name = 'CreateViewport' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47A2, + vfptr offset = 28, name = 'FindDevice' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47A7, + vfptr offset = 32, name = 'CreateDevice' + +0x47a9 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x47a8, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = IDirect3D2, UDT(0x000047a9) + +0x47aa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4798 + +0x47ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4798, This type = 0x47AA, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x47ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4798, This type = 0x47AA, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x47ad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4798, This type = 0x47AA, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2919, This adjust = 0 + +0x47ae : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x47A4 + list[1] = T_32PULONG(0422) + +0x47af : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4798, This type = 0x47AA, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47ae, This adjust = 0 + +0x47b0 : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47AB, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47AC, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47AC, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47AD, + vfptr offset = 12, name = 'SetMaterial' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47AD, + vfptr offset = 16, name = 'GetMaterial' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47AF, + vfptr offset = 20, name = 'GetHandle' + +0x47b1 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x47b0, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 4, class name = IDirect3DMaterial2, UDT(0x000047b1) + +0x47b2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x479D + +0x47b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x47b4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x47b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x290b, This adjust = 0 + +0x47b6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2926, This adjust = 0 + +0x47b7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x292a, This adjust = 0 + +0x47b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x292e, This adjust = 0 + +0x47b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x47ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2931, This adjust = 0 + +0x47bb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x47bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2934, This adjust = 0 + +0x47bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2936, This adjust = 0 + +0x47be : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2938, This adjust = 0 + +0x47bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x293a, This adjust = 0 + +0x47c0 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DVIEWPORT2, UDT(0x000047f6) + +0x47c1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x47C0 + +0x47c2 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x47C1 + +0x47c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x479D, This type = 0x47B2, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47c2, This adjust = 0 + +0x47c4 : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x28C6, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B3, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B4, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B4, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B5, name = 'Initialize' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B6, name = 'GetViewport' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B6, name = 'SetViewport' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B7, name = 'TransformVertices' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B8, name = 'LightElements' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47B9, name = 'SetBackground' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BA, name = 'GetBackground' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BB, name = 'SetBackgroundDepth' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BC, name = 'GetBackgroundDepth' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BD, name = 'Clear' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BE, name = 'AddLight' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BE, name = 'DeleteLight' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47BF, name = 'NextLight' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47C3, + vfptr offset = 64, name = 'GetViewport2' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47C3, + vfptr offset = 68, name = 'SetViewport2' + +0x47c5 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 19, field list type 0x47c4, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 4, class name = IDirect3DViewport2, UDT(0x000047c5) + +0x47c6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x47A3 + +0x47c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x47c8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x47c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28d8, This adjust = 0 + +0x47ca : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DTexture2, UDT(0x000047ff) + +0x47cb : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x47CA + +0x47cc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x47CB + list[1] = 0x47CB + +0x47cd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47cc, This adjust = 0 + +0x47ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x28e7, This adjust = 0 + +0x47cf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x479E + +0x47d0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47cf, This adjust = 0 + +0x47d1 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x479E + list[1] = 0x479F + list[2] = T_ULONG(0022) + +0x47d2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x47d1, This adjust = 0 + +0x47d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x28f7, This adjust = 0 + +0x47d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x47d5 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4792 + +0x47d6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x47D5 + +0x47d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47d6, This adjust = 0 + +0x47d8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x479F + +0x47d9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47d8, This adjust = 0 + +0x47da : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1d6d, This adjust = 0 + +0x47db : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e28, This adjust = 0 + +0x47dc : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x478A + list[1] = 0x4788 + list[2] = T_ULONG(0022) + +0x47dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x47dc, This adjust = 0 + +0x47de : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x478A + list[1] = 0x4788 + list[2] = T_32PVOID(0403) + list[3] = T_ULONG(0022) + list[4] = T_ULONG(0022) + +0x47df : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x47de, This adjust = 0 + +0x47e0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x47e1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x15cc, This adjust = 0 + +0x47e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x47e3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4790 + list[1] = T_32PULONG(0422) + +0x47e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47e3, This adjust = 0 + +0x47e5 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4790 + list[1] = T_ULONG(0022) + +0x47e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47e5, This adjust = 0 + +0x47e7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x478E + list[1] = T_32PULONG(0422) + +0x47e8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47e7, This adjust = 0 + +0x47e9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x478E + list[1] = T_ULONG(0022) + +0x47ea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47e9, This adjust = 0 + +0x47eb : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x478C + list[1] = 0x28FE + +0x47ec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47eb, This adjust = 0 + +0x47ed : Length = 34, Leaf = 0x1201 LF_ARGLIST argument count = 7 + list[0] = 0x478A + list[1] = 0x4788 + list[2] = T_32PVOID(0403) + list[3] = T_ULONG(0022) + list[4] = T_32PUSHORT(0421) + list[5] = T_ULONG(0022) + list[6] = T_ULONG(0022) + +0x47ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x47ed, This adjust = 0 + +0x47ef : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DCLIPSTATUS, UDT(0x00004801) + +0x47f0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x47EF + +0x47f1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x47F0 + +0x47f2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47A3, This type = 0x47C6, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47f1, This adjust = 0 + +0x47f3 : Length = 874, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47C7, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47C8, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47C8, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47C9, + vfptr offset = 12, name = 'GetCaps' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47CD, + vfptr offset = 16, name = 'SwapTextureHandles' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47CE, + vfptr offset = 20, name = 'GetStats' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D0, + vfptr offset = 24, name = 'AddViewport' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D0, + vfptr offset = 28, name = 'DeleteViewport' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D2, + vfptr offset = 32, name = 'NextViewport' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D3, + vfptr offset = 36, name = 'EnumTextureFormats' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D4, + vfptr offset = 40, name = 'BeginScene' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D4, + vfptr offset = 44, name = 'EndScene' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D7, + vfptr offset = 48, name = 'GetDirect3D' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D0, + vfptr offset = 52, name = 'SetCurrentViewport' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47D9, + vfptr offset = 56, name = 'GetCurrentViewport' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47DA, + vfptr offset = 60, name = 'SetRenderTarget' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47DB, + vfptr offset = 64, name = 'GetRenderTarget' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47DD, + vfptr offset = 68, name = 'Begin' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47DF, + vfptr offset = 72, name = 'BeginIndexed' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E0, + vfptr offset = 76, name = 'Vertex' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E1, + vfptr offset = 80, name = 'Index' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E2, + vfptr offset = 84, name = 'End' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E4, + vfptr offset = 88, name = 'GetRenderState' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E6, + vfptr offset = 92, name = 'SetRenderState' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47E8, + vfptr offset = 96, name = 'GetLightState' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47EA, + vfptr offset = 100, name = 'SetLightState' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47EC, + vfptr offset = 104, name = 'SetTransform' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47EC, + vfptr offset = 108, name = 'GetTransform' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47EC, + vfptr offset = 112, name = 'MultiplyTransform' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47DF, + vfptr offset = 116, name = 'DrawPrimitive' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47EE, + vfptr offset = 120, name = 'DrawIndexedPrimitive' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47F2, + vfptr offset = 124, name = 'SetClipStatus' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47F2, + vfptr offset = 128, name = 'GetClipStatus' + +0x47f4 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 34, field list type 0x47f3, + Derivation list type 0x0000, VT shape type 0x1dc5 + Size = 4, class name = IDirect3DDevice2, UDT(0x000047f4) + +0x47f5 : Length = 222, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwX' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwY' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwWidth' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwHeight' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'dvClipX' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'dvClipY' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'dvClipWidth' + list[8] = LF_MEMBER, public, type = T_REAL32(0040), offset = 32 + member name = 'dvClipHeight' + list[9] = LF_MEMBER, public, type = T_REAL32(0040), offset = 36 + member name = 'dvMinZ' + list[10] = LF_MEMBER, public, type = T_REAL32(0040), offset = 40 + member name = 'dvMaxZ' + +0x47f6 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x47f5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 44, class name = _D3DVIEWPORT2, UDT(0x000047f6) + +0x47f7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x47CA + +0x47f8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47CA, This type = 0x47F7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x47f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x47CA, This type = 0x47F7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x47fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47CA, This type = 0x47F7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x47ae, This adjust = 0 + +0x47fb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47CA, This type = 0x47F7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x47fc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x47CB + +0x47fd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x47CA, This type = 0x47F7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x47fc, This adjust = 0 + +0x47fe : Length = 142, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47F8, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47F9, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x47F9, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47FA, + vfptr offset = 12, name = 'GetHandle' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47FB, + vfptr offset = 16, name = 'PaletteChanged' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x47FD, + vfptr offset = 20, name = 'Load' + +0x47ff : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x47fe, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 4, class name = IDirect3DTexture2, UDT(0x000047ff) + +0x4800 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwFlags' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwStatus' + list[2] = LF_MEMBER, public, type = T_REAL32(0040), offset = 8 + member name = 'minx' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'maxx' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 16 + member name = 'miny' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'maxy' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'minz' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 28 + member name = 'maxz' + +0x4801 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4800, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _D3DCLIPSTATUS, UDT(0x00004801) + +0x4802 : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x45A3, offset = 376 + member name = 'm_unk0x178' + list[8] = LF_MEMBER, public, type = 0x45A9, offset = 388 + member name = 'm_unk0x184' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4803 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4802, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4804 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x1761 + +0x4805 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4804, offset = 0 + member name = 'm_driverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hWnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_pDirectDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_pFrontBuffer' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_pBackBuffer' + +0x4806 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4805, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +0x4807 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1292, This adjust = 0 + +0x4808 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[11] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[12] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[13] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x4809 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x4808, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x480a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e1a, This adjust = 0 + +0x480b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x28b7, This adjust = 0 + +0x480c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x1799, This adjust = 0 + +0x480d : Length = 466, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[10] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[14] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[15] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[16] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x480e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x480d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x480f : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x000048ad) + +0x4810 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x480F + +0x4811 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4812 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004845) + +0x4813 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4812 + +0x4814 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4812, This type = 0x4813, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4815 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x45A3, offset = 376 + member name = 'm_unk0x178' + list[8] = LF_MEMBER, public, type = 0x4812, offset = 388 + member name = 'm_displayModes' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4816 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4815, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4817 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004832) + +0x4818 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceDisplayMode, UDT(0x00004837) + +0x4819 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4818 + +0x481a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4819 + +0x481b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4817 + list[1] = 0x481A + +0x481c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x481b, This adjust = 0 + +0x481d : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x0000485e) + +0x481e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4817 + +0x481f : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x0000485b) + +0x4820 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x481F + +0x4821 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4820 + +0x4822 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4817, This type = 0x481E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4821, This adjust = 0 + +0x4823 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4817, This type = 0x481E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4824 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4822, + list[1] = public, VANILLA, 0x4823, + +0x4825 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4818 + +0x4826 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4817 + +0x4827 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4826 + +0x4828 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4825, Class type = 0x4817, This type = 0x4827, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4829 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x4817, This type = 0x481E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x482a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4817 + +0x482b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x482A, Class type = 0x4817, This type = 0x481E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x482c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4829, + list[1] = public, VANILLA, 0x482B, + +0x482d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4826 + +0x482e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x482D + +0x482f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4817, This type = 0x4827, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x482e, This adjust = 0 + +0x4830 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4820, Class type = 0x4817, This type = 0x4827, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4831 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x481D, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4824, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4828, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x482C, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x482C, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x482F, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4830, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x4820, offset = 0 + member name = '_Ptr' + +0x4832 : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4831, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004832) + +0x4833 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4819 + +0x4834 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4818 + +0x4835 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x4818, This type = 0x4833, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4834, This adjust = 0 + +0x4836 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'm_width' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'm_height' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'm_bitsPerPixel' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4835, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4835, name = 'operator<' + +0x4837 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4836, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDeviceDisplayMode, UDT(0x00004837) + +0x4838 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004859) + +0x4839 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4812 + +0x483a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4839 + +0x483b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x483A + +0x483c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4812, This type = 0x4813, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x483b, This adjust = 0 + +0x483d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x481A + +0x483e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4812, This type = 0x4813, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x483d, This adjust = 0 + +0x483f : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x483C, + list[1] = public, VANILLA, 0x483E, + list[2] = public, VANILLA, 0x4814, + +0x4840 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4812 + +0x4841 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4840 + +0x4842 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4812, This type = 0x4813, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4841, This adjust = 0 + +0x4843 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4840, Class type = 0x4812, This type = 0x4813, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x483b, This adjust = 0 + +0x4844 : Length = 150, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x480F, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4812, _Myt + list[2] = LF_NESTTYPE, type = 0x4838, _A + list[3] = LF_METHOD, count = 3, list = 0x483F, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4842, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4843, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4814, name = '~List' + +0x4845 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4844, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004845) + +0x4846 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4818 + +0x4847 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4819 + +0x4848 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4838 + +0x4849 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4848 + +0x484a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x481A + +0x484b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4847, Class type = 0x4838, This type = 0x4849, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x484a, This adjust = 0 + +0x484c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4825 + +0x484d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4846, Class type = 0x4838, This type = 0x4849, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x484c, This adjust = 0 + +0x484e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x484B, + list[1] = public, VANILLA, 0x484D, + +0x484f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4838 + +0x4850 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4846, Class type = 0x4838, This type = 0x484F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4851 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x4838, This type = 0x484F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4852 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4838, This type = 0x484F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4853 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4846 + list[1] = 0x481A + +0x4854 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4838, This type = 0x484F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4853, This adjust = 0 + +0x4855 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4846 + +0x4856 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4838, This type = 0x484F, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4855, This adjust = 0 + +0x4857 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4838, This type = 0x4849, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4858 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4846, pointer + list[3] = LF_NESTTYPE, type = 0x4847, const_pointer + list[4] = LF_NESTTYPE, type = 0x4825, reference + list[5] = LF_NESTTYPE, type = 0x481A, const_reference + list[6] = LF_NESTTYPE, type = 0x4818, value_type + list[7] = LF_METHOD, count = 2, list = 0x484E, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4850, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4851, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4852, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4854, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4856, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4857, name = 'max_size' + +0x4859 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4858, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004859) + +0x485a : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x4818, offset = 8 + member name = '_Value' + +0x485b : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x485a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = list >::_Node, UDT(0x0000485b) + +0x485c : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x000048eb) + +0x485d : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x485C, offset = 0 + +0x485e : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x485d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x0000485e) + +0x485f : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x000048cc) + +0x4860 : Length = 94, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x000048fc) + +0x4861 : Length = 190, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDeviceDisplayMode,MxDeviceDisplayMode &,MxDeviceDisplayMode *,int>, UDT(0x000048da) + +0x4862 : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceDisplayMode,MxDeviceDisplayMode const &,MxDeviceDisplayMode const *,int>, UDT(0x000048e9) + +0x4863 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4848 + +0x4864 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4860 + list[1] = 0x4860 + list[2] = 0x4863 + +0x4865 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4864, This adjust = 0 + +0x4866 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x480F + +0x4867 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4866 + +0x4868 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4867 + +0x4869 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4868, This adjust = 0 + +0x486a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x481A + list[2] = 0x4863 + +0x486b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x486a, This adjust = 0 + +0x486c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4863 + +0x486d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x486c, This adjust = 0 + +0x486e : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4865, + list[1] = public, VANILLA, 0x4869, + list[2] = public, VANILLA, 0x486B, + list[3] = public, VANILLA, 0x486D, + +0x486f : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x480F + +0x4870 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x486F, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4868, This adjust = 0 + +0x4871 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4866 + +0x4872 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4860, Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4873 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4874 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4872, + list[1] = public, VANILLA, 0x4873, + +0x4875 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4862, Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4876 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4861, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4877 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4875, + list[1] = public, VANILLA, 0x4876, + +0x4878 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4818 + +0x4879 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4878, This adjust = 0 + +0x487a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x487b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x487c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4838, Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x487d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x481A, Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x487e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4825, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x487f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x487D, + list[1] = public, VANILLA, 0x487E, + +0x4880 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x484a, This adjust = 0 + +0x4881 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x483d, This adjust = 0 + +0x4882 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4860 + list[1] = 0x4860 + +0x4883 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4882, This adjust = 0 + +0x4884 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4881, + list[1] = public, VANILLA, 0x4883, + +0x4885 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4817 + list[1] = 0x4860 + list[2] = 0x4860 + +0x4886 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4885, This adjust = 0 + +0x4887 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4817 + list[1] = 0x4847 + list[2] = 0x4847 + +0x4888 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4887, This adjust = 0 + +0x4889 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4817 + list[1] = T_UINT4(0075) + list[2] = 0x481A + +0x488a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4889, This adjust = 0 + +0x488b : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4886, + list[1] = public, VANILLA, 0x4888, + list[2] = public, VANILLA, 0x488A, + list[3] = public, VANILLA, 0x481C, + +0x488c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4817 + list[1] = 0x4817 + +0x488d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x488c, This adjust = 0 + +0x488e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4817 + +0x488f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x488e, This adjust = 0 + +0x4890 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x488D, + list[1] = public, VANILLA, 0x488F, + +0x4891 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x486F + +0x4892 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4891, This adjust = 0 + +0x4893 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x4817 + list[1] = 0x486F + list[2] = 0x4817 + list[3] = 0x4817 + +0x4894 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x4893, This adjust = 0 + +0x4895 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4817 + list[1] = 0x486F + list[2] = 0x4817 + +0x4896 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4895, This adjust = 0 + +0x4897 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4817 + list[1] = 0x486F + +0x4898 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4897, This adjust = 0 + +0x4899 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4894, + list[1] = public, VANILLA, 0x4896, + list[2] = public, VANILLA, 0x4898, + +0x489a : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x000048be) + +0x489b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x489A + +0x489c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x489b, This adjust = 0 + +0x489d : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x000048b4) + +0x489e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x489D + +0x489f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x489e, This adjust = 0 + +0x48a0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x489F, + list[1] = public, VANILLA, 0x4811, + +0x48a1 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x000048c7) + +0x48a2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x486F + list[1] = 0x48A1 + +0x48a3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x48a2, This adjust = 0 + +0x48a4 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48A3, + list[1] = public, VANILLA, 0x4892, + +0x48a5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x48A1 + +0x48a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x48a5, This adjust = 0 + +0x48a7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48A6, + list[1] = public, VANILLA, 0x4811, + +0x48a8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4820 + list[1] = 0x4820 + +0x48a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4820, Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x48a8, This adjust = 0 + +0x48aa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4810, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4821, This adjust = 0 + +0x48ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x480F, This type = 0x4871, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48ac : Length = 1154, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x481F, _Node + list[2] = LF_NESTTYPE, type = 0x4820, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x485F, _Acc + list[4] = LF_NESTTYPE, type = 0x480F, _Myt + list[5] = LF_NESTTYPE, type = 0x4838, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4846, _Tptr + list[9] = LF_NESTTYPE, type = 0x4847, _Ctptr + list[10] = LF_NESTTYPE, type = 0x4825, reference + list[11] = LF_NESTTYPE, type = 0x481A, const_reference + list[12] = LF_NESTTYPE, type = 0x4818, value_type + list[13] = LF_NESTTYPE, type = 0x4817, iterator + list[14] = LF_NESTTYPE, type = 0x4860, const_iterator + list[15] = LF_NESTTYPE, type = 0x4861, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x4862, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x486E, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x4860, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4811, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x4870, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x4874, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x4874, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x4877, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x4877, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4879, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x487A, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x487A, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x487B, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x487C, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x487F, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x487F, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4880, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4811, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4880, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4811, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4884, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x488B, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x4890, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4811, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x4892, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x4899, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4880, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x489A, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x489C, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x48A0, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x489D, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x48A4, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x48A1, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x48A7, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4811, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x48A9, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x48AA, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4894, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x48AB, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4838, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x4820, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x48ad : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x48ac, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x000048ad) + +0x48ae : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x000048c2) + +0x48af : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x489D + +0x48b0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48AF + +0x48b1 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x481A + list[1] = 0x481A + +0x48b2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x489D, This type = 0x48B0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x48b1, This adjust = 0 + +0x48b3 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x48AE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x48B2, name = 'operator()' + +0x48b4 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x48b3, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x000048b4) + +0x48b5 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x000048c0) + +0x48b6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x489A + +0x48b7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x48AF + +0x48b8 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x48B7 + list[1] = 0x481A + +0x48b9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x489A, This type = 0x48B6, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x48b8, This adjust = 0 + +0x48ba : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x489A + +0x48bb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48BA + +0x48bc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x489A, This type = 0x48BB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x484a, This adjust = 0 + +0x48bd : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x48B5, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x48B9, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x48BC, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x489D, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4818, offset = 4 + member name = 'value' + +0x48be : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x48bd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = binder2nd >, UDT(0x000048be) + +0x48bf : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4818, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x48c0 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x48bf, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x000048c0) + +0x48c1 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4818, first_argument_type + list[1] = LF_NESTTYPE, type = 0x4818, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x48c2 : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x48c1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x000048c2) + +0x48c3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x48A1 + +0x48c4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48C3 + +0x48c5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x48A1, This type = 0x48C4, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x48b1, This adjust = 0 + +0x48c6 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x48AE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x48C5, name = 'operator()' + +0x48c7 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x48c6, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x000048c7) + +0x48c8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4820 + +0x48c9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x48C8, Class type = 0x485F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4821, This adjust = 0 + +0x48ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4825, Class type = 0x485F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4821, This adjust = 0 + +0x48cb : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x48C8, _Nodepref + list[1] = LF_NESTTYPE, type = 0x4825, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x48C9, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x48C9, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x48CA, name = '_Value' + +0x48cc : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x48cb, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x000048cc) + +0x48cd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4861 + +0x48ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4861, This type = 0x48CD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x488e, This adjust = 0 + +0x48cf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4861, This type = 0x48CD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48d0 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48CE, + list[1] = public, VANILLA, 0x48CF, + +0x48d1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4861 + +0x48d2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48D1 + +0x48d3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4817, Class type = 0x4861, This type = 0x48D2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4825, Class type = 0x4861, This type = 0x48D2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4861, Class type = 0x4861, This type = 0x48CD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x48d6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4861 + +0x48d7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x48D6, Class type = 0x4861, This type = 0x48CD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48d8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48D5, + list[1] = public, VANILLA, 0x48D7, + +0x48d9 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x481D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4861, _Myt + list[2] = LF_NESTTYPE, type = 0x4817, iter_type + list[3] = LF_NESTTYPE, type = 0x4818, value_type + list[4] = LF_NESTTYPE, type = 0x4825, reference_type + list[5] = LF_NESTTYPE, type = 0x4846, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x48D0, name = 'reverse_bidirectional_iterator >::iterator,MxDeviceDisplayMode,MxDeviceDisplayMode &,MxDeviceDisplayMode *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x48D3, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x48D4, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x48D8, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x48D8, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4817, offset = 0 + member name = 'current' + +0x48da : Length = 190, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x48d9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceDisplayMode,MxDeviceDisplayMode &,MxDeviceDisplayMode *,int>, UDT(0x000048da) + +0x48db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4862 + +0x48dc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4860 + +0x48dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4862, This type = 0x48DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x48dc, This adjust = 0 + +0x48de : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4862, This type = 0x48DB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48df : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48DD, + list[1] = public, VANILLA, 0x48DE, + +0x48e0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4862 + +0x48e1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48E0 + +0x48e2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4860, Class type = 0x4862, This type = 0x48E1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48e3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x481A, Class type = 0x4862, This type = 0x48E1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4862, Class type = 0x4862, This type = 0x48DB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x48e5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4862 + +0x48e6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x48E5, Class type = 0x4862, This type = 0x48DB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48e7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48E4, + list[1] = public, VANILLA, 0x48E6, + +0x48e8 : Length = 434, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x481D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4862, _Myt + list[2] = LF_NESTTYPE, type = 0x4860, iter_type + list[3] = LF_NESTTYPE, type = 0x4818, value_type + list[4] = LF_NESTTYPE, type = 0x481A, reference_type + list[5] = LF_NESTTYPE, type = 0x4847, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x48DF, name = 'reverse_bidirectional_iterator >::const_iterator,MxDeviceDisplayMode,MxDeviceDisplayMode const &,MxDeviceDisplayMode const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x48E2, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x48E3, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x48E7, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x48E7, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4860, offset = 0 + member name = 'current' + +0x48e9 : Length = 206, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x48e8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceDisplayMode,MxDeviceDisplayMode const &,MxDeviceDisplayMode const *,int>, UDT(0x000048e9) + +0x48ea : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x4818, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x48eb : Length = 82, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x48ea, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x000048eb) + +0x48ec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4860 + +0x48ed : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4860, This type = 0x48EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x482e, This adjust = 0 + +0x48ee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4860, This type = 0x48EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4821, This adjust = 0 + +0x48ef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4860, This type = 0x48EC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48f0 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48ED, + list[1] = public, VANILLA, 0x48EE, + list[2] = public, VANILLA, 0x48EF, + +0x48f1 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4860 + +0x48f2 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x48F1 + +0x48f3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x481A, Class type = 0x4860, This type = 0x48F2, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4860, Class type = 0x4860, This type = 0x48EC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x48f5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4860 + +0x48f6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x48F5, Class type = 0x4860, This type = 0x48EC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x48f7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x48F4, + list[1] = public, VANILLA, 0x48F6, + +0x48f8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x48F1 + +0x48f9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x48F8 + +0x48fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4860, This type = 0x48F2, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x48f9, This adjust = 0 + +0x48fb : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4817, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x48F0, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x48F3, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x48F7, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x48F7, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x48FA, name = 'operator==' + +0x48fc : Length = 94, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x48fb, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x000048fc) + +0x48fd : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1762 + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + list[3] = 0x28B6 + list[4] = 0x28B6 + +0x48fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x48fd, This adjust = 0 + +0x48ff : Length = 494, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[15] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[16] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[17] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x25DB, name = '~MxDeviceEnumerate' + +0x4900 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x48ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4901 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00004b92) + +0x4902 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4901 + +0x4903 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4904 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00004a7c) + +0x4905 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4904 + +0x4906 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4907 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004b6a) + +0x4908 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4907 + +0x4909 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x490a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004970) + +0x490b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x490A + +0x490c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490A, This type = 0x490B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x490d : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDevice, UDT(0x00004b64) + +0x490e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x490D + +0x490f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490D, This type = 0x490E, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x48fd, This adjust = 0 + +0x4910 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490D, This type = 0x490E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4911 : Length = 270, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x4907, offset = 376 + member name = 'm_unk0x178' + list[8] = LF_MEMBER, public, type = 0x490A, offset = 388 + member name = 'm_displayModes' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4912 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4911, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4913 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004b7e) + +0x4914 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x490D + +0x4915 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4914 + +0x4916 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4913 + list[1] = 0x4915 + +0x4917 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4916, This adjust = 0 + +0x4918 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004989) + +0x4919 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4913 + +0x491a : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004b7b) + +0x491b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x491A + +0x491c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x491B + +0x491d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4913, This type = 0x4919, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x491e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4913, This type = 0x4919, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x491f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x491D, + list[1] = public, VANILLA, 0x491E, + +0x4920 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x490D + +0x4921 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4913 + +0x4922 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4921 + +0x4923 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4920, Class type = 0x4913, This type = 0x4922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4924 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4913, This type = 0x4919, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4925 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4913 + +0x4926 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4925, Class type = 0x4913, This type = 0x4919, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4927 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4924, + list[1] = public, VANILLA, 0x4926, + +0x4928 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4921 + +0x4929 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4928 + +0x492a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4913, This type = 0x4922, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4929, This adjust = 0 + +0x492b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x491B, Class type = 0x4913, This type = 0x4922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x492c : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x491F, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4923, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4927, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4927, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x492A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x492B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x491B, offset = 0 + member name = '_Ptr' + +0x492d : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x492c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b7e) + +0x492e : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004949) + +0x492f : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDisplayMode, UDT(0x00004cea) + +0x4930 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x492F + +0x4931 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4930 + +0x4932 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x492E + list[1] = 0x4931 + +0x4933 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4932, This adjust = 0 + +0x4934 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004a2d) + +0x4935 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x492E + +0x4936 : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004a2a) + +0x4937 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4936 + +0x4938 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4937 + +0x4939 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x492E, This type = 0x4935, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4938, This adjust = 0 + +0x493a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x492E, This type = 0x4935, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x493b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4939, + list[1] = public, VANILLA, 0x493A, + +0x493c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x492F + +0x493d : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x492E + +0x493e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x493D + +0x493f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x493C, Class type = 0x492E, This type = 0x493E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4940 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x492E, This type = 0x4935, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4941 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x492E + +0x4942 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4941, Class type = 0x492E, This type = 0x4935, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4943 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4940, + list[1] = public, VANILLA, 0x4942, + +0x4944 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x493D + +0x4945 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4944 + +0x4946 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x492E, This type = 0x493E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4945, This adjust = 0 + +0x4947 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4937, Class type = 0x492E, This type = 0x493E, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4948 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4934, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x493B, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x493F, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4943, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4943, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4946, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4947, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x4937, offset = 0 + member name = '_Ptr' + +0x4949 : Length = 78, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4948, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004949) + +0x494a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4930 + +0x494b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x492F + +0x494c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x492F, This type = 0x494A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x494b, This adjust = 0 + +0x494d : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'm_width' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'm_height' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'm_bitsPerPixel' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x494C, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x494C, name = 'operator<' + +0x494e : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x494d, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +0x494f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x490F, + list[1] = public, VANILLA, 0x4910, + +0x4950 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4914 + +0x4951 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x490D + +0x4952 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x490D, This type = 0x4950, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4951, This adjust = 0 + +0x4953 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x494F, name = 'MxDevice' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4910, name = '~MxDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x490F, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_deviceDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_deviceName' + list[6] = LF_MEMBER, public, type = 0x28B5, offset = 12 + member name = 'm_HWDesc' + list[7] = LF_MEMBER, public, type = 0x28B5, offset = 216 + member name = 'm_HELDesc' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4952, name = 'operator==' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4952, name = 'operator<' + +0x4954 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x4953, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 420, class name = MxDevice, UDT(0x00004b64) + +0x4955 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004b79) + +0x4956 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4907 + +0x4957 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4956 + +0x4958 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4957 + +0x4959 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4958, This adjust = 0 + +0x495a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4915 + +0x495b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x495a, This adjust = 0 + +0x495c : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4959, + list[1] = public, VANILLA, 0x495B, + list[2] = public, VANILLA, 0x4909, + +0x495d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4907 + +0x495e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x495D + +0x495f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x495e, This adjust = 0 + +0x4960 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x495D, Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4958, This adjust = 0 + +0x4961 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4901, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4907, _Myt + list[2] = LF_NESTTYPE, type = 0x4955, _A + list[3] = LF_METHOD, count = 3, list = 0x495C, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x495F, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4960, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4909, name = '~List' + +0x4962 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4961, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b6a) + +0x4963 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004a28) + +0x4964 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x490A + +0x4965 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4964 + +0x4966 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4965 + +0x4967 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490A, This type = 0x490B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4966, This adjust = 0 + +0x4968 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4931 + +0x4969 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490A, This type = 0x490B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4968, This adjust = 0 + +0x496a : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4967, + list[1] = public, VANILLA, 0x4969, + list[2] = public, VANILLA, 0x490C, + +0x496b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x490A + +0x496c : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x496B + +0x496d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x490A, This type = 0x490B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x496c, This adjust = 0 + +0x496e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x496B, Class type = 0x490A, This type = 0x490B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4966, This adjust = 0 + +0x496f : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4904, offset = 0 + list[1] = LF_NESTTYPE, type = 0x490A, _Myt + list[2] = LF_NESTTYPE, type = 0x4963, _A + list[3] = LF_METHOD, count = 3, list = 0x496A, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x496D, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x496E, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x490C, name = '~List' + +0x4970 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x496f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004970) + +0x4971 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x490D + +0x4972 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4914 + +0x4973 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4955 + +0x4974 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4973 + +0x4975 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4915 + +0x4976 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4972, Class type = 0x4955, This type = 0x4974, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4975, This adjust = 0 + +0x4977 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4920 + +0x4978 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4971, Class type = 0x4955, This type = 0x4974, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4977, This adjust = 0 + +0x4979 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4976, + list[1] = public, VANILLA, 0x4978, + +0x497a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4955 + +0x497b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4971, Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x497c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x497d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x497e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4971 + list[1] = 0x4915 + +0x497f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x497e, This adjust = 0 + +0x4980 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4971 + +0x4981 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4980, This adjust = 0 + +0x4982 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4955, This type = 0x4974, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4983 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4971, pointer + list[3] = LF_NESTTYPE, type = 0x4972, const_pointer + list[4] = LF_NESTTYPE, type = 0x4920, reference + list[5] = LF_NESTTYPE, type = 0x4915, const_reference + list[6] = LF_NESTTYPE, type = 0x490D, value_type + list[7] = LF_METHOD, count = 2, list = 0x4979, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x497B, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x497C, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x497D, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x497F, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4981, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4982, name = 'max_size' + +0x4984 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4983, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004b79) + +0x4985 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x490D, offset = 8 + member name = '_Value' + +0x4986 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4985, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = list >::_Node, UDT(0x00004b7b) + +0x4987 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004bad) + +0x4988 : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4987, offset = 0 + +0x4989 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4988, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004989) + +0x498a : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004ba5) + +0x498b : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004bbe) + +0x498c : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>, UDT(0x00004ba8) + +0x498d : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>, UDT(0x00004bab) + +0x498e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4973 + +0x498f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x498B + list[1] = 0x498B + list[2] = 0x498E + +0x4990 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x498f, This adjust = 0 + +0x4991 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4901 + +0x4992 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4991 + +0x4993 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4992 + +0x4994 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4993, This adjust = 0 + +0x4995 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x4915 + list[2] = 0x498E + +0x4996 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4995, This adjust = 0 + +0x4997 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x498E + +0x4998 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4997, This adjust = 0 + +0x4999 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4990, + list[1] = public, VANILLA, 0x4994, + list[2] = public, VANILLA, 0x4996, + list[3] = public, VANILLA, 0x4998, + +0x499a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4901 + +0x499b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x499A, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4993, This adjust = 0 + +0x499c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4991 + +0x499d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498B, Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x499e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x499f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x499D, + list[1] = public, VANILLA, 0x499E, + +0x49a0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498D, Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498C, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49A0, + list[1] = public, VANILLA, 0x49A1, + +0x49a3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x490D + +0x49a4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49a3, This adjust = 0 + +0x49a5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4955, Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4915, Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49a9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4920, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49aa : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49A8, + list[1] = public, VANILLA, 0x49A9, + +0x49ab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4975, This adjust = 0 + +0x49ac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x495a, This adjust = 0 + +0x49ad : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x498B + list[1] = 0x498B + +0x49ae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49ad, This adjust = 0 + +0x49af : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49AC, + list[1] = public, VANILLA, 0x49AE, + +0x49b0 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = 0x498B + list[2] = 0x498B + +0x49b1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x49b0, This adjust = 0 + +0x49b2 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = 0x4972 + list[2] = 0x4972 + +0x49b3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x49b2, This adjust = 0 + +0x49b4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = T_UINT4(0075) + list[2] = 0x4915 + +0x49b5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x49b4, This adjust = 0 + +0x49b6 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49B1, + list[1] = public, VANILLA, 0x49B3, + list[2] = public, VANILLA, 0x49B5, + list[3] = public, VANILLA, 0x4917, + +0x49b7 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4913 + list[1] = 0x4913 + +0x49b8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49b7, This adjust = 0 + +0x49b9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4913 + +0x49ba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49b9, This adjust = 0 + +0x49bb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49B8, + list[1] = public, VANILLA, 0x49BA, + +0x49bc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x499A + +0x49bd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49bc, This adjust = 0 + +0x49be : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x4913 + list[1] = 0x499A + list[2] = 0x4913 + list[3] = 0x4913 + +0x49bf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x49be, This adjust = 0 + +0x49c0 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = 0x499A + list[2] = 0x4913 + +0x49c1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x49c0, This adjust = 0 + +0x49c2 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4913 + list[1] = 0x499A + +0x49c3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49c2, This adjust = 0 + +0x49c4 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49BF, + list[1] = public, VANILLA, 0x49C1, + list[2] = public, VANILLA, 0x49C3, + +0x49c5 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004b9b) + +0x49c6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x49C5 + +0x49c7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49c6, This adjust = 0 + +0x49c8 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004b96) + +0x49c9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x49C8 + +0x49ca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49c9, This adjust = 0 + +0x49cb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49CA, + list[1] = public, VANILLA, 0x4903, + +0x49cc : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004ba2) + +0x49cd : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x499A + list[1] = 0x49CC + +0x49ce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49cd, This adjust = 0 + +0x49cf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49CE, + list[1] = public, VANILLA, 0x49BD, + +0x49d0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x49CC + +0x49d1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49d0, This adjust = 0 + +0x49d2 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49D1, + list[1] = public, VANILLA, 0x4903, + +0x49d3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x491B + list[1] = 0x491B + +0x49d4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x491B, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49d3, This adjust = 0 + +0x49d5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x49d6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49d7 : Length = 1110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x491A, _Node + list[2] = LF_NESTTYPE, type = 0x491B, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x498A, _Acc + list[4] = LF_NESTTYPE, type = 0x4901, _Myt + list[5] = LF_NESTTYPE, type = 0x4955, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4971, _Tptr + list[9] = LF_NESTTYPE, type = 0x4972, _Ctptr + list[10] = LF_NESTTYPE, type = 0x4920, reference + list[11] = LF_NESTTYPE, type = 0x4915, const_reference + list[12] = LF_NESTTYPE, type = 0x490D, value_type + list[13] = LF_NESTTYPE, type = 0x4913, iterator + list[14] = LF_NESTTYPE, type = 0x498B, const_iterator + list[15] = LF_NESTTYPE, type = 0x498C, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x498D, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x4999, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x498B, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x499B, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x499F, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x499F, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x49A2, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x49A2, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x49A4, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x49A5, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x49A5, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x49A6, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x49A7, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x49AA, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x49AA, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x49AB, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x49AB, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x49AF, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x49B6, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x49BB, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x49BD, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x49C4, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x49AB, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x49C5, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x49C7, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x49CB, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x49C8, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x49CF, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x49CC, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x49D2, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D4, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D5, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x49BF, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D6, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4955, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x491B, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x49d8 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x49d7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b92) + +0x49d9 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004b9f) + +0x49da : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x49C8 + +0x49db : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x49DA + +0x49dc : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4915 + list[1] = 0x4915 + +0x49dd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49C8, This type = 0x49DB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49dc, This adjust = 0 + +0x49de : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49D9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x49DD, name = 'operator()' + +0x49df : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49de, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b96) + +0x49e0 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00004b9d) + +0x49e1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x49C5 + +0x49e2 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x49DA + +0x49e3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x49E2 + list[1] = 0x4915 + +0x49e4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x49C5, This type = 0x49E1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49e3, This adjust = 0 + +0x49e5 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x49C5 + +0x49e6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x49E5 + +0x49e7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49C5, This type = 0x49E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4975, This adjust = 0 + +0x49e8 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49E0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x49E4, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x49E7, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x49C8, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x490D, offset = 4 + member name = 'value' + +0x49e9 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x49e8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 424, class name = binder2nd >, UDT(0x00004b9b) + +0x49ea : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x490D, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x49eb : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49ea, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b9d) + +0x49ec : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x490D, first_argument_type + list[1] = LF_NESTTYPE, type = 0x490D, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x49ed : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x49ec, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b9f) + +0x49ee : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x49CC + +0x49ef : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x49EE + +0x49f0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49CC, This type = 0x49EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x49dc, This adjust = 0 + +0x49f1 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49D9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x49F0, name = 'operator()' + +0x49f2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49f1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004ba2) + +0x49f3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x491B + +0x49f4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x49F3, Class type = 0x498A, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x49f5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4920, Class type = 0x498A, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x49f6 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x49F3, _Nodepref + list[1] = LF_NESTTYPE, type = 0x4920, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x49F4, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x49F4, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x49F5, name = '_Value' + +0x49f7 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x49f6, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004ba5) + +0x49f8 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x498C + +0x49f9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498C, This type = 0x49F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x49b9, This adjust = 0 + +0x49fa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498C, This type = 0x49F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49fb : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49F9, + list[1] = public, VANILLA, 0x49FA, + +0x49fc : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x498C + +0x49fd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x49FC + +0x49fe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x498C, This type = 0x49FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x49ff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4920, Class type = 0x498C, This type = 0x49FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a00 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498C, Class type = 0x498C, This type = 0x49F8, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4a01 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x498C + +0x4a02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A01, Class type = 0x498C, This type = 0x49F8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a03 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A00, + list[1] = public, VANILLA, 0x4A02, + +0x4a04 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_NESTTYPE, type = 0x498C, _Myt + list[2] = LF_NESTTYPE, type = 0x4913, iter_type + list[3] = LF_NESTTYPE, type = 0x490D, value_type + list[4] = LF_NESTTYPE, type = 0x4920, reference_type + list[5] = LF_NESTTYPE, type = 0x4971, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x49FB, name = 'reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x49FE, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x49FF, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4A03, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4A03, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4913, offset = 0 + member name = 'current' + +0x4a05 : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4a04, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>, UDT(0x00004ba8) + +0x4a06 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x498D + +0x4a07 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x498B + +0x4a08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498D, This type = 0x4A06, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a07, This adjust = 0 + +0x4a09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498D, This type = 0x4A06, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a0a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A08, + list[1] = public, VANILLA, 0x4A09, + +0x4a0b : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x498D + +0x4a0c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A0B + +0x4a0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498B, Class type = 0x498D, This type = 0x4A0C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a0e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4915, Class type = 0x498D, This type = 0x4A0C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498D, Class type = 0x498D, This type = 0x4A06, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4a10 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x498D + +0x4a11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A10, Class type = 0x498D, This type = 0x4A06, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a12 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A0F, + list[1] = public, VANILLA, 0x4A11, + +0x4a13 : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_NESTTYPE, type = 0x498D, _Myt + list[2] = LF_NESTTYPE, type = 0x498B, iter_type + list[3] = LF_NESTTYPE, type = 0x490D, value_type + list[4] = LF_NESTTYPE, type = 0x4915, reference_type + list[5] = LF_NESTTYPE, type = 0x4972, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4A0A, name = 'reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4A0D, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4A0E, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4A12, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4A12, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x498B, offset = 0 + member name = 'current' + +0x4a14 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4a13, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>, UDT(0x00004bab) + +0x4a15 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x492F + +0x4a16 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4930 + +0x4a17 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4963 + +0x4a18 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A17 + +0x4a19 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4931 + +0x4a1a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A16, Class type = 0x4963, This type = 0x4A18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a19, This adjust = 0 + +0x4a1b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x493C + +0x4a1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A15, Class type = 0x4963, This type = 0x4A18, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a1b, This adjust = 0 + +0x4a1d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A1A, + list[1] = public, VANILLA, 0x4A1C, + +0x4a1e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4963 + +0x4a1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A15, Class type = 0x4963, This type = 0x4A1E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4a20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x4963, This type = 0x4A1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4a21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4963, This type = 0x4A1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4a22 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4A15 + list[1] = 0x4931 + +0x4a23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4963, This type = 0x4A1E, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a22, This adjust = 0 + +0x4a24 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A15 + +0x4a25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4963, This type = 0x4A1E, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a24, This adjust = 0 + +0x4a26 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4963, This type = 0x4A18, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a27 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4A15, pointer + list[3] = LF_NESTTYPE, type = 0x4A16, const_pointer + list[4] = LF_NESTTYPE, type = 0x493C, reference + list[5] = LF_NESTTYPE, type = 0x4931, const_reference + list[6] = LF_NESTTYPE, type = 0x492F, value_type + list[7] = LF_METHOD, count = 2, list = 0x4A1D, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4A1F, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4A20, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4A21, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4A23, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4A25, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4A26, name = 'max_size' + +0x4a28 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4a27, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004a28) + +0x4a29 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x492F, offset = 8 + member name = '_Value' + +0x4a2a : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4a29, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = list >::_Node, UDT(0x00004a2a) + +0x4a2b : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004abc) + +0x4a2c : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4A2B, offset = 0 + +0x4a2d : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4a2c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004a2d) + +0x4a2e : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004a9b) + +0x4a2f : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004ade) + +0x4a30 : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDisplayMode,MxDisplayMode &,MxDisplayMode *,int>, UDT(0x00004aa9) + +0x4a31 : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDisplayMode,MxDisplayMode const &,MxDisplayMode const *,int>, UDT(0x00004ab8) + +0x4a32 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A17 + +0x4a33 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4A2F + list[1] = 0x4A2F + list[2] = 0x4A32 + +0x4a34 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a33, This adjust = 0 + +0x4a35 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4904 + +0x4a36 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A35 + +0x4a37 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A36 + +0x4a38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a37, This adjust = 0 + +0x4a39 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x4931 + list[2] = 0x4A32 + +0x4a3a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a39, This adjust = 0 + +0x4a3b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A32 + +0x4a3c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a3b, This adjust = 0 + +0x4a3d : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A34, + list[1] = public, VANILLA, 0x4A38, + list[2] = public, VANILLA, 0x4A3A, + list[3] = public, VANILLA, 0x4A3C, + +0x4a3e : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4904 + +0x4a3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A3E, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a37, This adjust = 0 + +0x4a40 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A35 + +0x4a41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A2F, Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a43 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A41, + list[1] = public, VANILLA, 0x4A42, + +0x4a44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A31, Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A30, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a46 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A44, + list[1] = public, VANILLA, 0x4A45, + +0x4a47 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x492F + +0x4a48 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a47, This adjust = 0 + +0x4a49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a4a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4963, Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4931, Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x493C, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a4e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A4C, + list[1] = public, VANILLA, 0x4A4D, + +0x4a4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a19, This adjust = 0 + +0x4a50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4968, This adjust = 0 + +0x4a51 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4A2F + list[1] = 0x4A2F + +0x4a52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a51, This adjust = 0 + +0x4a53 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A50, + list[1] = public, VANILLA, 0x4A52, + +0x4a54 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x492E + list[1] = 0x4A2F + list[2] = 0x4A2F + +0x4a55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a54, This adjust = 0 + +0x4a56 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x492E + list[1] = 0x4A16 + list[2] = 0x4A16 + +0x4a57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a56, This adjust = 0 + +0x4a58 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x492E + list[1] = T_UINT4(0075) + list[2] = 0x4931 + +0x4a59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a58, This adjust = 0 + +0x4a5a : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A55, + list[1] = public, VANILLA, 0x4A57, + list[2] = public, VANILLA, 0x4A59, + list[3] = public, VANILLA, 0x4933, + +0x4a5b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x492E + list[1] = 0x492E + +0x4a5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a5b, This adjust = 0 + +0x4a5d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x492E + +0x4a5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a5d, This adjust = 0 + +0x4a5f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A5C, + list[1] = public, VANILLA, 0x4A5E, + +0x4a60 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A3E + +0x4a61 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a60, This adjust = 0 + +0x4a62 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x492E + list[1] = 0x4A3E + list[2] = 0x492E + list[3] = 0x492E + +0x4a63 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x4a62, This adjust = 0 + +0x4a64 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x492E + list[1] = 0x4A3E + list[2] = 0x492E + +0x4a65 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4a64, This adjust = 0 + +0x4a66 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x492E + list[1] = 0x4A3E + +0x4a67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a66, This adjust = 0 + +0x4a68 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A63, + list[1] = public, VANILLA, 0x4A65, + list[2] = public, VANILLA, 0x4A67, + +0x4a69 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004a8d) + +0x4a6a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A69 + +0x4a6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a6a, This adjust = 0 + +0x4a6c : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004a83) + +0x4a6d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A6C + +0x4a6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a6d, This adjust = 0 + +0x4a6f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A6E, + list[1] = public, VANILLA, 0x4906, + +0x4a70 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004a96) + +0x4a71 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4A3E + list[1] = 0x4A70 + +0x4a72 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a71, This adjust = 0 + +0x4a73 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A72, + list[1] = public, VANILLA, 0x4A61, + +0x4a74 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A70 + +0x4a75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a74, This adjust = 0 + +0x4a76 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A75, + list[1] = public, VANILLA, 0x4906, + +0x4a77 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4937 + list[1] = 0x4937 + +0x4a78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4937, Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a77, This adjust = 0 + +0x4a79 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4905, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4938, This adjust = 0 + +0x4a7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4904, This type = 0x4A40, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a7b : Length = 1130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x4936, _Node + list[2] = LF_NESTTYPE, type = 0x4937, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x4A2E, _Acc + list[4] = LF_NESTTYPE, type = 0x4904, _Myt + list[5] = LF_NESTTYPE, type = 0x4963, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4A15, _Tptr + list[9] = LF_NESTTYPE, type = 0x4A16, _Ctptr + list[10] = LF_NESTTYPE, type = 0x493C, reference + list[11] = LF_NESTTYPE, type = 0x4931, const_reference + list[12] = LF_NESTTYPE, type = 0x492F, value_type + list[13] = LF_NESTTYPE, type = 0x492E, iterator + list[14] = LF_NESTTYPE, type = 0x4A2F, const_iterator + list[15] = LF_NESTTYPE, type = 0x4A30, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x4A31, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x4A3D, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x4A2F, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4906, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x4A3F, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x4A43, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x4A43, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x4A46, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x4A46, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4A48, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x4A49, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x4A49, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x4A4A, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x4A4B, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4A4E, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4A4E, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4A4F, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4906, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4A4F, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4906, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4A53, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4A5A, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x4A5F, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4906, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x4A61, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x4A68, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4A4F, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x4A69, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x4A6B, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x4A6F, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x4A6C, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4A73, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x4A70, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x4A76, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4906, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x4A78, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x4A79, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4A63, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x4A7A, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4963, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x4937, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x4a7c : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4a7b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004a7c) + +0x4a7d : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004a91) + +0x4a7e : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A6C + +0x4a7f : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A7E + +0x4a80 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4931 + list[1] = 0x4931 + +0x4a81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4A6C, This type = 0x4A7F, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a80, This adjust = 0 + +0x4a82 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4A7D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4A81, name = 'operator()' + +0x4a83 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4a82, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004a83) + +0x4a84 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00004a8f) + +0x4a85 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A69 + +0x4a86 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A7E + +0x4a87 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4A86 + list[1] = 0x4931 + +0x4a88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A69, This type = 0x4A85, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a87, This adjust = 0 + +0x4a89 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A69 + +0x4a8a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A89 + +0x4a8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4A69, This type = 0x4A8A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a19, This adjust = 0 + +0x4a8c : Length = 114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4A84, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4A88, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4A8B, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x4A6C, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x492F, offset = 4 + member name = 'value' + +0x4a8d : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4a8c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = binder2nd >, UDT(0x00004a8d) + +0x4a8e : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x492F, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4a8f : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4a8e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004a8f) + +0x4a90 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x492F, first_argument_type + list[1] = LF_NESTTYPE, type = 0x492F, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4a91 : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4a90, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004a91) + +0x4a92 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A70 + +0x4a93 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A92 + +0x4a94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4A70, This type = 0x4A93, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4a80, This adjust = 0 + +0x4a95 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4A7D, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4A94, name = 'operator()' + +0x4a96 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4a95, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004a96) + +0x4a97 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4937 + +0x4a98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A97, Class type = 0x4A2E, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4938, This adjust = 0 + +0x4a99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x493C, Class type = 0x4A2E, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4938, This adjust = 0 + +0x4a9a : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4A97, _Nodepref + list[1] = LF_NESTTYPE, type = 0x493C, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4A98, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4A98, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4A99, name = '_Value' + +0x4a9b : Length = 74, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4a9a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004a9b) + +0x4a9c : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A30 + +0x4a9d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A30, This type = 0x4A9C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a5d, This adjust = 0 + +0x4a9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A30, This type = 0x4A9C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4a9f : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4A9D, + list[1] = public, VANILLA, 0x4A9E, + +0x4aa0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A30 + +0x4aa1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4AA0 + +0x4aa2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x492E, Class type = 0x4A30, This type = 0x4AA1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4aa3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x493C, Class type = 0x4A30, This type = 0x4AA1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4aa4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A30, Class type = 0x4A30, This type = 0x4A9C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4aa5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A30 + +0x4aa6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4AA5, Class type = 0x4A30, This type = 0x4A9C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4aa7 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4AA4, + list[1] = public, VANILLA, 0x4AA6, + +0x4aa8 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4934, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4A30, _Myt + list[2] = LF_NESTTYPE, type = 0x492E, iter_type + list[3] = LF_NESTTYPE, type = 0x492F, value_type + list[4] = LF_NESTTYPE, type = 0x493C, reference_type + list[5] = LF_NESTTYPE, type = 0x4A15, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4A9F, name = 'reverse_bidirectional_iterator >::iterator,MxDisplayMode,MxDisplayMode &,MxDisplayMode *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4AA2, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AA3, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4AA7, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4AA7, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x492E, offset = 0 + member name = 'current' + +0x4aa9 : Length = 158, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4aa8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDisplayMode,MxDisplayMode &,MxDisplayMode *,int>, UDT(0x00004aa9) + +0x4aaa : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A31 + +0x4aab : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4A2F + +0x4aac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A31, This type = 0x4AAA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4aab, This adjust = 0 + +0x4aad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A31, This type = 0x4AAA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4aae : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4AAC, + list[1] = public, VANILLA, 0x4AAD, + +0x4aaf : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A31 + +0x4ab0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4AAF + +0x4ab1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A2F, Class type = 0x4A31, This type = 0x4AB0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ab2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4931, Class type = 0x4A31, This type = 0x4AB0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ab3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A31, Class type = 0x4A31, This type = 0x4AAA, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4ab4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A31 + +0x4ab5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4AB4, Class type = 0x4A31, This type = 0x4AAA, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ab6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4AB3, + list[1] = public, VANILLA, 0x4AB5, + +0x4ab7 : Length = 402, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4934, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4A31, _Myt + list[2] = LF_NESTTYPE, type = 0x4A2F, iter_type + list[3] = LF_NESTTYPE, type = 0x492F, value_type + list[4] = LF_NESTTYPE, type = 0x4931, reference_type + list[5] = LF_NESTTYPE, type = 0x4A16, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4AAE, name = 'reverse_bidirectional_iterator >::const_iterator,MxDisplayMode,MxDisplayMode const &,MxDisplayMode const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4AB1, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AB2, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4AB6, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4AB6, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4A2F, offset = 0 + member name = 'current' + +0x4ab8 : Length = 178, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4ab7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDisplayMode,MxDisplayMode const &,MxDisplayMode const *,int>, UDT(0x00004ab8) + +0x4ab9 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x490D, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4aba : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4ab9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004bad) + +0x4abb : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x492F, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4abc : Length = 78, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4abb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004abc) + +0x4abd : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x498B + +0x4abe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498B, This type = 0x4ABD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4929, This adjust = 0 + +0x4abf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498B, This type = 0x4ABD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x4ac0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x498B, This type = 0x4ABD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ac1 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4ABE, + list[1] = public, VANILLA, 0x4ABF, + list[2] = public, VANILLA, 0x4AC0, + +0x4ac2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x498B + +0x4ac3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4AC2 + +0x4ac4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4915, Class type = 0x498B, This type = 0x4AC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ac5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x498B, Class type = 0x498B, This type = 0x4ABD, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4ac6 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x498B + +0x4ac7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4AC6, Class type = 0x498B, This type = 0x4ABD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ac8 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4AC5, + list[1] = public, VANILLA, 0x4AC7, + +0x4ac9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4AC2 + +0x4aca : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4AC9 + +0x4acb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x498B, This type = 0x4AC3, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4aca, This adjust = 0 + +0x4acc : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4913, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4AC1, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4AC4, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4AC8, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4AC8, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4ACB, name = 'operator==' + +0x4acd : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4acc, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbe) + +0x4ace : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4A2F + +0x4acf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A2F, This type = 0x4ACE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4945, This adjust = 0 + +0x4ad0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A2F, This type = 0x4ACE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4938, This adjust = 0 + +0x4ad1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4A2F, This type = 0x4ACE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ad2 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4ACF, + list[1] = public, VANILLA, 0x4AD0, + list[2] = public, VANILLA, 0x4AD1, + +0x4ad3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4A2F + +0x4ad4 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4AD3 + +0x4ad5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4931, Class type = 0x4A2F, This type = 0x4AD4, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ad6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4A2F, Class type = 0x4A2F, This type = 0x4ACE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4ad7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4A2F + +0x4ad8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4AD7, Class type = 0x4A2F, This type = 0x4ACE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ad9 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4AD6, + list[1] = public, VANILLA, 0x4AD8, + +0x4ada : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4AD3 + +0x4adb : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4ADA + +0x4adc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4A2F, This type = 0x4AD4, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4adb, This adjust = 0 + +0x4add : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x492E, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4AD2, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4AD5, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4AD9, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4AD9, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4ADC, name = 'operator==' + +0x4ade : Length = 82, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4add, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004ade) + +0x4adf : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4780, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4387, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x477E, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x4907, offset = 376 + member name = 'm_devices' + list[8] = LF_MEMBER, public, type = 0x490A, offset = 388 + member name = 'm_displayModes' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4348, name = 'operator<' + +0x4ae0 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4adf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4ae1 : Length = 494, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[16] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + +0x4ae2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4ae1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4ae3 : Length = 498, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[16] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[17] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4ae4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4ae3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4ae5 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_INT4(0074) + Index type = T_SHORT(0011) + length = 16 + Name = + +0x4ae6 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = T_32PINT4(0474) + +0x4ae7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4ae6, This adjust = 0 + +0x4ae8 : Length = 526, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AE7, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4ae9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4ae8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4aea : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = test, UDT(0x00004af0) + +0x4aeb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4AEA + +0x4aec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4AEA, This type = 0x4AEB, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x1208, This adjust = 0 + +0x4aed : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4AEC, name = 'test' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'hex1' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'hex2' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'hex3' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'hex4' + +0x4aee : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4aed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = test, UDT(0x00004af0) + +0x4aef : Length = 66, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'hex1' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'hex2' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'hex3' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'hex4' + +0x4af0 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4aef, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = test, UDT(0x00004af0) + +0x4af1 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4aef, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxDeviceEnumerate::DeviceHex, UDT(0x00004af1) + +0x4af2 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerate::DeviceHex, UDT(0x00004af1) + +0x4af3 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4AF2 + +0x4af4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = 0x4AF3 + +0x4af5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4af4, This adjust = 0 + +0x4af6 : Length = 546, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x4AF2, DeviceHex + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4AF5, name = 'ProcessDeviceBytes' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[18] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4af7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4af6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4af8 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x1761 + +0x4af9 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_INT4(0074) + list[1] = 0x4AF8 + +0x4afa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4af9, This adjust = 0 + +0x4afb : Length = 526, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x439D, name = 'FUN_1009d030' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4afc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4afb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4afd : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_data1' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_data2' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_data3' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 12 + member name = 'm_data4' + +0x4afe : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4afd, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxDeviceEnumerate::ProcessDeviceBytes::GUID4, UDT(0x00004afe) + +0x4aff : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4afd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = GUID4, UDT(0x00004aff) + +0x4b00 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x42A4 + +0x4b01 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4971 + +0x4b02 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = 0x4B00 + list[2] = 0x4B01 + +0x4b03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b02, This adjust = 0 + +0x4b04 : Length = 526, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B03, name = 'FUN_1009d030' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4b05 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4b04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4b06 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4398 + list[1] = 0x42A4 + list[2] = 0x4971 + +0x4b07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b06, This adjust = 0 + +0x4b08 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x42A4 + +0x4b09 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4971 + +0x4b0a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = 0x4B08 + list[2] = 0x4B09 + +0x4b0b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b0a, This adjust = 0 + +0x4b0c : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4B07, name = 'FUN_1009b5f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4b0d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4b0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4b0e : Length = 526, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'FUN_1009d030' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4b0f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4b0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4b10 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4b11 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4B10 + +0x4b12 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4B10 + +0x4b13 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4B12 + +0x4b14 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B13 + +0x4b15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4B10, This type = 0x4B11, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b14, This adjust = 0 + +0x4b16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4B10, This type = 0x4B11, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44af, This adjust = 0 + +0x4b17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4B10, This type = 0x4B11, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b18 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B15, + list[1] = public, VANILLA, 0x4B16, + list[2] = public, VANILLA, 0x4B17, + +0x4b19 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4B12 + +0x4b1a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B10 + +0x4b1b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x4B10, This type = 0x4B19, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b1a, This adjust = 0 + +0x4b1c : Length = 266, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4B18, name = 'MxDeviceEnumerateElement' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B17, name = '~MxDeviceEnumerateElement' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B16, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x4907, offset = 376 + member name = 'm_devices' + list[8] = LF_MEMBER, public, type = 0x490A, offset = 388 + member name = 'm_displayModes' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4B1B, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B1B, name = 'operator<' + +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +0x4b1e : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x4B10, offset = 8 + member name = '_Value' + +0x4b1f : Length = 98, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b1e, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004b1f) + +0x4b20 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4B10 + +0x4b21 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B20, Class type = 0x42A9, This type = 0x4362, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b22 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4360, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B21, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4367, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4367, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x436A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x436B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x42A0, offset = 0 + member name = '_Ptr' + +0x4b23 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b22, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b23) + +0x4b24 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4B10 + +0x4b25 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4B12 + +0x4b26 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x4B13 + list[2] = 0x42AE + +0x4b27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b26, This adjust = 0 + +0x4b28 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42B0, + list[1] = public, VANILLA, 0x42B4, + list[2] = public, VANILLA, 0x4B27, + list[3] = public, VANILLA, 0x42B8, + +0x4b29 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4B10 + +0x4b2a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b29, This adjust = 0 + +0x4b2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B13, Class type = 0x4294, This type = 0x42BC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B20, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b2d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B2B, + list[1] = public, VANILLA, 0x4B2C, + +0x4b2e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b14, This adjust = 0 + +0x4b2f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4B13 + +0x4b30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b2f, This adjust = 0 + +0x4b31 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B30, + list[1] = public, VANILLA, 0x42D0, + +0x4b32 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = 0x4B25 + list[2] = 0x4B25 + +0x4b33 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b32, This adjust = 0 + +0x4b34 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x42A9 + list[1] = T_UINT4(0075) + list[2] = 0x4B13 + +0x4b35 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b34, This adjust = 0 + +0x4b36 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x42A9 + list[1] = 0x4B13 + +0x4b37 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x42A9, Class type = 0x4294, This type = 0x4295, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b36, This adjust = 0 + +0x4b38 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x42D3, + list[1] = public, VANILLA, 0x4B33, + list[2] = public, VANILLA, 0x4B35, + list[3] = public, VANILLA, 0x4B37, + +0x4b39 : Length = 1174, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x429F, _Node + list[2] = LF_NESTTYPE, type = 0x42A0, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x42A1, _Acc + list[4] = LF_NESTTYPE, type = 0x4294, _Myt + list[5] = LF_NESTTYPE, type = 0x42A2, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4B24, _Tptr + list[9] = LF_NESTTYPE, type = 0x4B25, _Ctptr + list[10] = LF_NESTTYPE, type = 0x4B20, reference + list[11] = LF_NESTTYPE, type = 0x4B13, const_reference + list[12] = LF_NESTTYPE, type = 0x4B10, value_type + list[13] = LF_NESTTYPE, type = 0x42A9, iterator + list[14] = LF_NESTTYPE, type = 0x42AA, const_iterator + list[15] = LF_NESTTYPE, type = 0x42AB, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x42AC, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x4B28, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x42AA, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x42BB, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x42BF, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x42BF, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x42C2, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x42C2, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4B2A, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x42C5, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x42C5, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x42C6, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x42C7, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4B2D, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4B2D, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4B2E, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4B2E, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4B31, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4B38, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x42DF, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x42E1, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x42E8, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4B2E, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x42E9, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x42EB, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x42EF, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x42EC, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x42F3, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x42F0, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x42F6, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4296, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x42F8, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x42FA, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x42E3, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x42FB, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x42A2, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x42A0, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x4b3a : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4b39, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b3a) + +0x4b3b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4B13 + list[1] = 0x4B13 + +0x4b3c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42EC, This type = 0x4300, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b3b, This adjust = 0 + +0x4b3d : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42FE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B3C, name = 'operator()' + +0x4b3e : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b3d, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b3e) + +0x4b3f : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4307 + list[1] = 0x4B13 + +0x4b40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42E9, This type = 0x4306, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b3f, This adjust = 0 + +0x4b41 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42E9, This type = 0x430B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b14, This adjust = 0 + +0x4b42 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4305, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B40, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B41, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x42EC, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4B10, offset = 4 + member name = 'value' + +0x4b43 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4b42, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004b43) + +0x4b44 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4B10, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4b45 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b44, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b45) + +0x4b46 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4B10, first_argument_type + list[1] = LF_NESTTYPE, type = 0x4B10, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4b47 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b46, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b47) + +0x4b48 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x42F0, This type = 0x4314, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b3b, This adjust = 0 + +0x4b49 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42FE, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B48, name = 'operator()' + +0x4b4a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b49, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004b4a) + +0x4b4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B20, Class type = 0x42A1, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x42f9, This adjust = 0 + +0x4b4c : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4318, _Nodepref + list[1] = LF_NESTTYPE, type = 0x4B20, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4319, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4319, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4B4B, name = '_Value' + +0x4b4d : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4b4c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004b4d) + +0x4b4e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B20, Class type = 0x42AB, This type = 0x4323, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b4f : Length = 442, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x42AB, _Myt + list[2] = LF_NESTTYPE, type = 0x42A9, iter_type + list[3] = LF_NESTTYPE, type = 0x4B10, value_type + list[4] = LF_NESTTYPE, type = 0x4B20, reference_type + list[5] = LF_NESTTYPE, type = 0x4B24, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4321, name = 'reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4324, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4B4E, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4329, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4329, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x42A9, offset = 0 + member name = 'current' + +0x4b50 : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4b4f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>, UDT(0x00004b50) + +0x4b51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B13, Class type = 0x42AC, This type = 0x4332, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b52 : Length = 458, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x431D, offset = 0 + list[1] = LF_NESTTYPE, type = 0x42AC, _Myt + list[2] = LF_NESTTYPE, type = 0x42AA, iter_type + list[3] = LF_NESTTYPE, type = 0x4B10, value_type + list[4] = LF_NESTTYPE, type = 0x4B13, reference_type + list[5] = LF_NESTTYPE, type = 0x4B25, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4330, name = 'reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4333, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4B51, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4338, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4338, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x42AA, offset = 0 + member name = 'current' + +0x4b53 : Length = 234, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4b52, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>, UDT(0x00004b53) + +0x4b54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4297, This type = 0x4298, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b2f, This adjust = 0 + +0x4b55 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x433E, + list[1] = public, VANILLA, 0x4B54, + list[2] = public, VANILLA, 0x4299, + +0x4b56 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4294, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4297, _Myt + list[2] = LF_NESTTYPE, type = 0x42A2, _A + list[3] = LF_METHOD, count = 2, list = 0x4B55, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4343, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4299, name = '~List' + +0x4b57 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4b56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b57) + +0x4b58 : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x4B10, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4b59 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b58, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004b59) + +0x4b5a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDevice, UDT(0x00004b64) + +0x4b5b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4B5A + +0x4b5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4B5A, This type = 0x4B5B, + Call type = ThisCall, Func attr = none + Parms = 5, Arg list type = 0x48fd, This adjust = 0 + +0x4b5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4B5A, This type = 0x4B5B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b5e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B5C, + list[1] = public, VANILLA, 0x4B5D, + +0x4b5f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4B5A + +0x4b60 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4B5F + +0x4b61 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B5A + +0x4b62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x4B5A, This type = 0x4B60, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b61, This adjust = 0 + +0x4b63 : Length = 206, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4B5E, name = 'MxDevice' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B5D, name = '~MxDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B5C, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_deviceDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_deviceName' + list[6] = LF_MEMBER, public, type = 0x28B5, offset = 12 + member name = 'm_HWDesc' + list[7] = LF_MEMBER, public, type = 0x28B5, offset = 216 + member name = 'm_HELDesc' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4B62, name = 'operator==' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4B62, name = 'operator<' + +0x4b64 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b63, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 420, class name = MxDevice, UDT(0x00004b64) + +0x4b65 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4B5F + +0x4b66 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4B65 + +0x4b67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4907, This type = 0x4908, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b66, This adjust = 0 + +0x4b68 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4959, + list[1] = public, VANILLA, 0x4B67, + list[2] = public, VANILLA, 0x4909, + +0x4b69 : Length = 126, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4901, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4907, _Myt + list[2] = LF_NESTTYPE, type = 0x4955, _A + list[3] = LF_METHOD, count = 3, list = 0x4B68, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x495F, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4960, name = 'operator=' + list[6] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4909, name = '~List' + +0x4b6a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4b69, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b6a) + +0x4b6b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4B5A + +0x4b6c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4B5F + +0x4b6d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4B5A + +0x4b6e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B65 + +0x4b6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6C, Class type = 0x4955, This type = 0x4974, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b6e, This adjust = 0 + +0x4b70 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B6D + +0x4b71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6B, Class type = 0x4955, This type = 0x4974, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b70, This adjust = 0 + +0x4b72 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B6F, + list[1] = public, VANILLA, 0x4B71, + +0x4b73 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6B, Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4b74 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4B6B + list[1] = 0x4B65 + +0x4b75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b74, This adjust = 0 + +0x4b76 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B6B + +0x4b77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4955, This type = 0x497A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b76, This adjust = 0 + +0x4b78 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4B6B, pointer + list[3] = LF_NESTTYPE, type = 0x4B6C, const_pointer + list[4] = LF_NESTTYPE, type = 0x4B6D, reference + list[5] = LF_NESTTYPE, type = 0x4B65, const_reference + list[6] = LF_NESTTYPE, type = 0x4B5A, value_type + list[7] = LF_METHOD, count = 2, list = 0x4B72, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4B73, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x497C, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x497D, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4B75, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4B77, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4982, name = 'max_size' + +0x4b79 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4b78, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004b79) + +0x4b7a : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x4B5A, offset = 8 + member name = '_Value' + +0x4b7b : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b7a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = list >::_Node, UDT(0x00004b7b) + +0x4b7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6D, Class type = 0x4913, This type = 0x4922, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b7d : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x491F, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B7C, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4927, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4927, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x492A, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x492B, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x491B, offset = 0 + member name = '_Ptr' + +0x4b7e : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b7d, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b7e) + +0x4b7f : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x4B65 + list[2] = 0x498E + +0x4b80 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b7f, This adjust = 0 + +0x4b81 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4990, + list[1] = public, VANILLA, 0x4994, + list[2] = public, VANILLA, 0x4B80, + list[3] = public, VANILLA, 0x4998, + +0x4b82 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4B5A + +0x4b83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b82, This adjust = 0 + +0x4b84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B65, Class type = 0x4901, This type = 0x499C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6D, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4b86 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B84, + list[1] = public, VANILLA, 0x4B85, + +0x4b87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b6e, This adjust = 0 + +0x4b88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b66, This adjust = 0 + +0x4b89 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4B88, + list[1] = public, VANILLA, 0x49AE, + +0x4b8a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = 0x4B6C + list[2] = 0x4B6C + +0x4b8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b8a, This adjust = 0 + +0x4b8c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4913 + list[1] = T_UINT4(0075) + list[2] = 0x4B65 + +0x4b8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4b8c, This adjust = 0 + +0x4b8e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4913 + list[1] = 0x4B65 + +0x4b8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4913, Class type = 0x4901, This type = 0x4902, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b8e, This adjust = 0 + +0x4b90 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x49B1, + list[1] = public, VANILLA, 0x4B8B, + list[2] = public, VANILLA, 0x4B8D, + list[3] = public, VANILLA, 0x4B8F, + +0x4b91 : Length = 1110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x491A, _Node + list[2] = LF_NESTTYPE, type = 0x491B, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x498A, _Acc + list[4] = LF_NESTTYPE, type = 0x4901, _Myt + list[5] = LF_NESTTYPE, type = 0x4955, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4B6B, _Tptr + list[9] = LF_NESTTYPE, type = 0x4B6C, _Ctptr + list[10] = LF_NESTTYPE, type = 0x4B6D, reference + list[11] = LF_NESTTYPE, type = 0x4B65, const_reference + list[12] = LF_NESTTYPE, type = 0x4B5A, value_type + list[13] = LF_NESTTYPE, type = 0x4913, iterator + list[14] = LF_NESTTYPE, type = 0x498B, const_iterator + list[15] = LF_NESTTYPE, type = 0x498C, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x498D, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x4B81, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x498B, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x499B, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x499F, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x499F, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x49A2, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x49A2, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4B83, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x49A5, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x49A5, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x49A6, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x49A7, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4B86, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4B86, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4B87, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4B87, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4B89, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4B90, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x49BB, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x49BD, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x49C4, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4B87, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x49C5, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x49C7, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x49CB, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x49C8, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x49CF, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x49CC, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x49D2, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4903, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D4, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D5, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x49BF, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x49D6, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4955, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x491B, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x4b92 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4b91, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b92) + +0x4b93 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4B65 + list[1] = 0x4B65 + +0x4b94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49C8, This type = 0x49DB, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b93, This adjust = 0 + +0x4b95 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49D9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B94, name = 'operator()' + +0x4b96 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b95, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b96) + +0x4b97 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x49E2 + list[1] = 0x4B65 + +0x4b98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x49C5, This type = 0x49E1, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b97, This adjust = 0 + +0x4b99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49C5, This type = 0x49E6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b6e, This adjust = 0 + +0x4b9a : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49E0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4B98, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4B99, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x49C8, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4B5A, offset = 4 + member name = 'value' + +0x4b9b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4b9a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 424, class name = binder2nd >, UDT(0x00004b9b) + +0x4b9c : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4B5A, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4b9d : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b9c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b9d) + +0x4b9e : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4B5A, first_argument_type + list[1] = LF_NESTTYPE, type = 0x4B5A, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4b9f : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b9e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b9f) + +0x4ba0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x49CC, This type = 0x49EF, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4b93, This adjust = 0 + +0x4ba1 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x49D9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4BA0, name = 'operator()' + +0x4ba2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4ba1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004ba2) + +0x4ba3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6D, Class type = 0x498A, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x491c, This adjust = 0 + +0x4ba4 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x49F3, _Nodepref + list[1] = LF_NESTTYPE, type = 0x4B6D, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x49F4, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x49F4, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4BA3, name = '_Value' + +0x4ba5 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4ba4, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004ba5) + +0x4ba6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B6D, Class type = 0x498C, This type = 0x49FD, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ba7 : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_NESTTYPE, type = 0x498C, _Myt + list[2] = LF_NESTTYPE, type = 0x4913, iter_type + list[3] = LF_NESTTYPE, type = 0x4B5A, value_type + list[4] = LF_NESTTYPE, type = 0x4B6D, reference_type + list[5] = LF_NESTTYPE, type = 0x4B6B, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x49FB, name = 'reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x49FE, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BA6, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4A03, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4A03, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4913, offset = 0 + member name = 'current' + +0x4ba8 : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4ba7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>, UDT(0x00004ba8) + +0x4ba9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B65, Class type = 0x498D, This type = 0x4A0C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4baa : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4918, offset = 0 + list[1] = LF_NESTTYPE, type = 0x498D, _Myt + list[2] = LF_NESTTYPE, type = 0x498B, iter_type + list[3] = LF_NESTTYPE, type = 0x4B5A, value_type + list[4] = LF_NESTTYPE, type = 0x4B65, reference_type + list[5] = LF_NESTTYPE, type = 0x4B6C, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4A0A, name = 'reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4A0D, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BA9, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4A12, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4A12, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x498B, offset = 0 + member name = 'current' + +0x4bab : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4baa, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>, UDT(0x00004bab) + +0x4bac : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x4B5A, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4bad : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4bac, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004bad) + +0x4bae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B25, Class type = 0x42A2, This type = 0x434B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4b14, This adjust = 0 + +0x4baf : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B20 + +0x4bb0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B24, Class type = 0x42A2, This type = 0x434B, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4baf, This adjust = 0 + +0x4bb1 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4BAE, + list[1] = public, VANILLA, 0x4BB0, + +0x4bb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B24, Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4bb3 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4B24 + list[1] = 0x4B13 + +0x4bb4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4bb3, This adjust = 0 + +0x4bb5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4B24 + +0x4bb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x42A2, This type = 0x4350, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bb5, This adjust = 0 + +0x4bb7 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4B24, pointer + list[3] = LF_NESTTYPE, type = 0x4B25, const_pointer + list[4] = LF_NESTTYPE, type = 0x4B20, reference + list[5] = LF_NESTTYPE, type = 0x4B13, const_reference + list[6] = LF_NESTTYPE, type = 0x4B10, value_type + list[7] = LF_METHOD, count = 2, list = 0x4BB1, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BB2, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4352, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4353, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4BB4, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4BB6, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4358, name = 'max_size' + +0x4bb8 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4bb7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004bb8) + +0x4bb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B13, Class type = 0x42AA, This type = 0x4377, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bba : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x42A9, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4375, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4BB9, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x437C, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x437C, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x437F, name = 'operator==' + +0x4bbb : Length = 106, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4bba, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbb) + +0x4bbc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4B65, Class type = 0x498B, This type = 0x4AC3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bbd : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4913, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4AC1, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4BBC, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4AC8, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4AC8, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4ACB, name = 'operator==' + +0x4bbe : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4bbd, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbe) + +0x4bbf : Length = 522, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bc0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4bbf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x434d, This adjust = 0 + +0x4bc2 : Length = 546, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x4BC1, name = 'FUN_1009d370' + list[18] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bc3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4bc2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x434d, This adjust = 0 + +0x4bc5 : Length = 546, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[14] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC4, name = 'FUN_1009d370' + list[18] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[19] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bc6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4bc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4977, This adjust = 0 + +0x4bc8 : Length = 570, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC4, name = 'FUN_1009d370' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[19] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bc9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4bc8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bcb : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4BCA, name = 'FUN_1009d1a0' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4BCA, name = 'FUN_1009d1e0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC4, name = 'FUN_1009d370' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[19] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[20] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[21] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bcc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x1793, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bce : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1a0' + list[13] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1e0' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC4, name = 'FUN_1009d370' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[19] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[20] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[21] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bcf : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bd0 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4B0B, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC4, name = 'FUN_1009d370' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[19] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1a0' + list[20] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1e0' + list[21] = LF_MEMBER, private, type = 0x4297, offset = 4 + member name = 'm_list' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4bd1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bd0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4bd2 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxDriver, UDT(0x00004be3) + +0x4bd3 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4BD2 + +0x4bd4 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4398 + list[1] = 0x4BD3 + list[2] = 0x4971 + +0x4bd5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4bd4, This adjust = 0 + +0x4bd6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4BD2 + +0x4bd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BD2, This type = 0x4BD6, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x44af, This adjust = 0 + +0x4bd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BD2, This type = 0x4BD6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bd9 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BD2 + +0x4bda : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4BD2 + +0x4bdb : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BDA + +0x4bdc : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BDB + +0x4bdd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BD2, This type = 0x4BD6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bdc, This adjust = 0 + +0x4bde : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4BDD, + list[1] = public, VANILLA, 0x4BD7, + list[2] = public, VANILLA, 0x4BD8, + +0x4bdf : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4BDA + +0x4be0 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BD2 + +0x4be1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x4BD2, This type = 0x4BDF, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4be0, This adjust = 0 + +0x4be2 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x4BDE, name = 'MxDriver' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD8, name = '~MxDriver' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD7, name = 'Init' + list[3] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 4 + member name = 'm_driverDesc' + list[5] = LF_MEMBER, public, type = T_32PRCHAR(0470), offset = 8 + member name = 'm_driverName' + list[6] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddCaps' + list[7] = LF_MEMBER, public, type = 0x4907, offset = 376 + member name = 'm_devices' + list[8] = LF_MEMBER, public, type = 0x490A, offset = 388 + member name = 'm_displayModes' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BE1, name = 'operator==' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4BE1, name = 'operator<' + +0x4be3 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4be2, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDriver, UDT(0x00004be3) + +0x4be4 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _Bidit, UDT(0x00004c0d) + +0x4be5 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::iterator, UDT(0x00004bf9) + +0x4be6 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4BE5 + +0x4be7 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Node, UDT(0x00004c0a) + +0x4be8 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4BE7 + +0x4be9 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BE8 + +0x4bea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BE5, This type = 0x4BE6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4be9, This adjust = 0 + +0x4beb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BE5, This type = 0x4BE6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bec : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4BEA, + list[1] = public, VANILLA, 0x4BEB, + +0x4bed : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4BE5 + +0x4bee : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4BED + +0x4bef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD9, Class type = 0x4BE5, This type = 0x4BEE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bf0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4BE5, This type = 0x4BE6, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4bf1 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BE5 + +0x4bf2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BF1, Class type = 0x4BE5, This type = 0x4BE6, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bf3 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4BF0, + list[1] = public, VANILLA, 0x4BF2, + +0x4bf4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BED + +0x4bf5 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BF4 + +0x4bf6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4BE5, This type = 0x4BEE, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bf5, This adjust = 0 + +0x4bf7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE8, Class type = 0x4BE5, This type = 0x4BEE, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4bf8 : Length = 146, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4BE4, offset = 0 + list[1] = LF_METHOD, count = 2, list = 0x4BEC, name = 'iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4BEF, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4BF3, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4BF3, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4BF6, name = 'operator==' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4BF7, name = '_Mynode' + list[7] = LF_MEMBER, protected, type = 0x4BE8, offset = 0 + member name = '_Ptr' + +0x4bf9 : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4bf8, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004bf9) + +0x4bfa : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BD3 + +0x4bfb : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_INT4(0074) + list[1] = 0x4BFA + list[2] = 0x4B09 + +0x4bfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4bfb, This adjust = 0 + +0x4bfd : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BD9 + +0x4bfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bfd, This adjust = 0 + +0x4bff : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = List, UDT(0x00004ca9) + +0x4c00 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4BFF + +0x4c01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BFF, This type = 0x4C00, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c02 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >, UDT(0x00004c62) + +0x4c03 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C02 + +0x4c04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c05 : Length = 394, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'FUN_1009b5f0' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4c06 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4c05, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4c07 : Length = 618, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4BFC, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4BFE, name = 'FUN_1009d370' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[19] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1a0' + list[20] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1e0' + list[21] = LF_MEMBER, private, type = 0x4BFF, offset = 4 + member name = 'm_list' + list[22] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4c08 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4c07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4c09 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 0 + member name = '_Next' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = '_Prev' + list[2] = LF_MEMBER, public, type = 0x4BD2, offset = 8 + member name = '_Value' + +0x4c0a : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4c09, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004c0a) + +0x4c0b : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = iterator, UDT(0x00004cab) + +0x4c0c : Length = 14, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4C0B, offset = 0 + +0x4c0d : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 1, field list type 0x4c0c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = _Bidit, UDT(0x00004c0d) + +0x4c0e : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::_Acc, UDT(0x00004c81) + +0x4c0f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = allocator, UDT(0x00004cba) + +0x4c10 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4BDA + +0x4c11 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, NESTED, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = list >::const_iterator, UDT(0x00004ccb) + +0x4c12 : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::iterator,MxDriver,MxDriver &,MxDriver *,int>, UDT(0x00004c8f) + +0x4c13 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = reverse_bidirectional_iterator >::const_iterator,MxDriver,MxDriver const &,MxDriver const *,int>, UDT(0x00004c9e) + +0x4c14 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C0F + +0x4c15 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C14 + +0x4c16 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4C11 + list[1] = 0x4C11 + list[2] = 0x4C15 + +0x4c17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c16, This adjust = 0 + +0x4c18 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C02 + +0x4c19 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C18 + +0x4c1a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C19 + +0x4c1b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c1a, This adjust = 0 + +0x4c1c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_UINT4(0075) + list[1] = 0x4BDB + list[2] = 0x4C15 + +0x4c1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c1c, This adjust = 0 + +0x4c1e : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C15 + +0x4c1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c1e, This adjust = 0 + +0x4c20 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C17, + list[1] = public, VANILLA, 0x4C1B, + list[2] = public, VANILLA, 0x4C1D, + list[3] = public, VANILLA, 0x4C1F, + +0x4c21 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C02 + +0x4c22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C21, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c1a, This adjust = 0 + +0x4c23 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C18 + +0x4c24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C11, Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c26 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C24, + list[1] = public, VANILLA, 0x4C25, + +0x4c27 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C13, Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c28 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C12, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c29 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C27, + list[1] = public, VANILLA, 0x4C28, + +0x4c2a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4BD2 + +0x4c2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c2a, This adjust = 0 + +0x4c2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c2d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c2e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C0F, Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BDB, Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD9, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c31 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C2F, + list[1] = public, VANILLA, 0x4C30, + +0x4c32 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bdc, This adjust = 0 + +0x4c33 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_UINT4(0075) + list[1] = 0x4BDB + +0x4c34 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c33, This adjust = 0 + +0x4c35 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4C11 + list[1] = 0x4C11 + +0x4c36 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c35, This adjust = 0 + +0x4c37 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C34, + list[1] = public, VANILLA, 0x4C36, + +0x4c38 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4BE5 + list[1] = 0x4C11 + list[2] = 0x4C11 + +0x4c39 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c38, This adjust = 0 + +0x4c3a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4BE5 + list[1] = 0x4C10 + list[2] = 0x4C10 + +0x4c3b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c3a, This adjust = 0 + +0x4c3c : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4BE5 + list[1] = T_UINT4(0075) + list[2] = 0x4BDB + +0x4c3d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c3c, This adjust = 0 + +0x4c3e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BE5 + list[1] = 0x4BDB + +0x4c3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c3e, This adjust = 0 + +0x4c40 : Length = 34, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C39, + list[1] = public, VANILLA, 0x4C3B, + list[2] = public, VANILLA, 0x4C3D, + list[3] = public, VANILLA, 0x4C3F, + +0x4c41 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BE5 + list[1] = 0x4BE5 + +0x4c42 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c41, This adjust = 0 + +0x4c43 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BE5 + +0x4c44 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c43, This adjust = 0 + +0x4c45 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C42, + list[1] = public, VANILLA, 0x4C44, + +0x4c46 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C21 + +0x4c47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c46, This adjust = 0 + +0x4c48 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x4BE5 + list[1] = 0x4C21 + list[2] = 0x4BE5 + list[3] = 0x4BE5 + +0x4c49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 4, Arg list type = 0x4c48, This adjust = 0 + +0x4c4a : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4BE5 + list[1] = 0x4C21 + list[2] = 0x4BE5 + +0x4c4b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4c4a, This adjust = 0 + +0x4c4c : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BE5 + list[1] = 0x4C21 + +0x4c4d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c4c, This adjust = 0 + +0x4c4e : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C49, + list[1] = public, VANILLA, 0x4C4B, + list[2] = public, VANILLA, 0x4C4D, + +0x4c4f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binder2nd >, UDT(0x00004c73) + +0x4c50 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C4F + +0x4c51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c50, This adjust = 0 + +0x4c52 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = not_equal_to, UDT(0x00004c69) + +0x4c53 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C52 + +0x4c54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c53, This adjust = 0 + +0x4c55 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C54, + list[1] = public, VANILLA, 0x4C04, + +0x4c56 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = greater, UDT(0x00004c7c) + +0x4c57 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4C21 + list[1] = 0x4C56 + +0x4c58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c57, This adjust = 0 + +0x4c59 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C58, + list[1] = public, VANILLA, 0x4C47, + +0x4c5a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C56 + +0x4c5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c5a, This adjust = 0 + +0x4c5c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C5B, + list[1] = public, VANILLA, 0x4C04, + +0x4c5d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BE8 + list[1] = 0x4BE8 + +0x4c5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE8, Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c5d, This adjust = 0 + +0x4c5f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C03, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4be9, This adjust = 0 + +0x4c60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C02, This type = 0x4C23, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c61 : Length = 1110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_32PVOID(0403), _Genptr + list[1] = LF_NESTTYPE, type = 0x4BE7, _Node + list[2] = LF_NESTTYPE, type = 0x4BE8, _Nodeptr + list[3] = LF_NESTTYPE, type = 0x4C0E, _Acc + list[4] = LF_NESTTYPE, type = 0x4C02, _Myt + list[5] = LF_NESTTYPE, type = 0x4C0F, allocator_type + list[6] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[7] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[8] = LF_NESTTYPE, type = 0x4BD3, _Tptr + list[9] = LF_NESTTYPE, type = 0x4C10, _Ctptr + list[10] = LF_NESTTYPE, type = 0x4BD9, reference + list[11] = LF_NESTTYPE, type = 0x4BDB, const_reference + list[12] = LF_NESTTYPE, type = 0x4BD2, value_type + list[13] = LF_NESTTYPE, type = 0x4BE5, iterator + list[14] = LF_NESTTYPE, type = 0x4C11, const_iterator + list[15] = LF_NESTTYPE, type = 0x4C12, reverse_iterator + list[16] = LF_NESTTYPE, type = 0x4C13, const_reverse_iterator + list[17] = LF_METHOD, count = 4, list = 0x4C20, name = 'list >' + list[18] = LF_NESTTYPE, type = 0x4C11, _It + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x4C04, name = '~list >' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x4C22, name = 'operator=' + list[21] = LF_METHOD, count = 2, list = 0x4C26, name = 'begin' + list[22] = LF_METHOD, count = 2, list = 0x4C26, name = 'end' + list[23] = LF_METHOD, count = 2, list = 0x4C29, name = 'rbegin' + list[24] = LF_METHOD, count = 2, list = 0x4C29, name = 'rend' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x4C2B, name = 'resize' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x4C2C, name = 'size' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x4C2C, name = 'max_size' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x4C2D, name = 'empty' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x4C2E, name = 'get_allocator' + list[30] = LF_METHOD, count = 2, list = 0x4C31, name = 'front' + list[31] = LF_METHOD, count = 2, list = 0x4C31, name = 'back' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x4C32, name = 'push_front' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x4C04, name = 'pop_front' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x4C32, name = 'push_back' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x4C04, name = 'pop_back' + list[36] = LF_METHOD, count = 2, list = 0x4C37, name = 'assign' + list[37] = LF_METHOD, count = 4, list = 0x4C40, name = 'insert' + list[38] = LF_METHOD, count = 2, list = 0x4C45, name = 'erase' + list[39] = LF_ONEMETHOD, public, VANILLA, index = 0x4C04, name = 'clear' + list[40] = LF_ONEMETHOD, public, VANILLA, index = 0x4C47, name = 'swap' + list[41] = LF_METHOD, count = 3, list = 0x4C4E, name = 'splice' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x4C32, name = 'remove' + list[43] = LF_NESTTYPE, type = 0x4C4F, _Pr1 + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x4C51, name = 'remove_if' + list[45] = LF_METHOD, count = 2, list = 0x4C55, name = 'unique' + list[46] = LF_NESTTYPE, type = 0x4C52, _Pr2 + list[47] = LF_METHOD, count = 2, list = 0x4C59, name = 'merge' + list[48] = LF_NESTTYPE, type = 0x4C56, _Pr3 + list[49] = LF_METHOD, count = 2, list = 0x4C5C, name = 'sort' + list[50] = LF_ONEMETHOD, public, VANILLA, index = 0x4C04, name = 'reverse' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x4C5E, name = '_Buynode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x4C5F, name = '_Freenode' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x4C49, name = '_Splice' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x4C60, name = '_Xran' + list[55] = LF_MEMBER, protected, type = 0x4C0F, offset = 0 + member name = 'allocator' + list[56] = LF_MEMBER, protected, type = 0x4BE8, offset = 4 + member name = '_Head' + list[57] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = '_Size' + +0x4c62 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4c61, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004c62) + +0x4c63 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = binary_function, UDT(0x00004c77) + +0x4c64 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C52 + +0x4c65 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C64 + +0x4c66 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BDB + list[1] = 0x4BDB + +0x4c67 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4C52, This type = 0x4C65, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c66, This adjust = 0 + +0x4c68 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4C63, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4C67, name = 'operator()' + +0x4c69 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4c68, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004c69) + +0x4c6a : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = unary_function, UDT(0x00004c75) + +0x4c6b : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C4F + +0x4c6c : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C64 + +0x4c6d : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4C6C + list[1] = 0x4BDB + +0x4c6e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C4F, This type = 0x4C6B, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c6d, This adjust = 0 + +0x4c6f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C4F + +0x4c70 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C6F + +0x4c71 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4C4F, This type = 0x4C70, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bdc, This adjust = 0 + +0x4c72 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4C6A, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4C6E, name = 'binder2nd >' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4C71, name = 'operator()' + list[3] = LF_MEMBER, protected, type = 0x4C52, offset = 0 + member name = 'op' + list[4] = LF_MEMBER, protected, type = 0x4BD2, offset = 4 + member name = 'value' + +0x4c73 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4c72, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004c73) + +0x4c74 : Length = 46, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4BD2, argument_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4c75 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4c74, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004c75) + +0x4c76 : Length = 82, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4BD2, first_argument_type + list[1] = LF_NESTTYPE, type = 0x4BD2, second_argument_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), result_type + +0x4c77 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4c76, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004c77) + +0x4c78 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C56 + +0x4c79 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C78 + +0x4c7a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4C56, This type = 0x4C79, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c66, This adjust = 0 + +0x4c7b : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4C63, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4C7A, name = 'operator()' + +0x4c7c : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4c7b, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004c7c) + +0x4c7d : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BE8 + +0x4c7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C7D, Class type = 0x4C0E, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4be9, This adjust = 0 + +0x4c7f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD9, Class type = 0x4C0E, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 1, Arg list type = 0x4be9, This adjust = 0 + +0x4c80 : Length = 86, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4C7D, _Nodepref + list[1] = LF_NESTTYPE, type = 0x4BD9, _Vref + list[2] = LF_ONEMETHOD, public, STATIC, index = 0x4C7E, name = '_Next' + list[3] = LF_ONEMETHOD, public, STATIC, index = 0x4C7E, name = '_Prev' + list[4] = LF_ONEMETHOD, public, STATIC, index = 0x4C7F, name = '_Value' + +0x4c81 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4c80, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004c81) + +0x4c82 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C12 + +0x4c83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C12, This type = 0x4C82, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c43, This adjust = 0 + +0x4c84 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C12, This type = 0x4C82, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c85 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C83, + list[1] = public, VANILLA, 0x4C84, + +0x4c86 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C12 + +0x4c87 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C86 + +0x4c88 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BE5, Class type = 0x4C12, This type = 0x4C87, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD9, Class type = 0x4C12, This type = 0x4C87, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C12, Class type = 0x4C12, This type = 0x4C82, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4c8b : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C12 + +0x4c8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C8B, Class type = 0x4C12, This type = 0x4C82, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c8d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C8A, + list[1] = public, VANILLA, 0x4C8C, + +0x4c8e : Length = 362, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4BE4, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4C12, _Myt + list[2] = LF_NESTTYPE, type = 0x4BE5, iter_type + list[3] = LF_NESTTYPE, type = 0x4BD2, value_type + list[4] = LF_NESTTYPE, type = 0x4BD9, reference_type + list[5] = LF_NESTTYPE, type = 0x4BD3, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4C85, name = 'reverse_bidirectional_iterator >::iterator,MxDriver,MxDriver &,MxDriver *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4C88, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4C89, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4C8D, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4C8D, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4BE5, offset = 0 + member name = 'current' + +0x4c8f : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4c8e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDriver,MxDriver &,MxDriver *,int>, UDT(0x00004c8f) + +0x4c90 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C13 + +0x4c91 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4C11 + +0x4c92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C13, This type = 0x4C90, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4c91, This adjust = 0 + +0x4c93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C13, This type = 0x4C90, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c94 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C92, + list[1] = public, VANILLA, 0x4C93, + +0x4c95 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C13 + +0x4c96 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C95 + +0x4c97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C11, Class type = 0x4C13, This type = 0x4C96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BDB, Class type = 0x4C13, This type = 0x4C96, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C13, Class type = 0x4C13, This type = 0x4C90, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4c9a : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C13 + +0x4c9b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C9A, Class type = 0x4C13, This type = 0x4C90, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4c9c : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4C99, + list[1] = public, VANILLA, 0x4C9B, + +0x4c9d : Length = 378, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4BE4, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4C13, _Myt + list[2] = LF_NESTTYPE, type = 0x4C11, iter_type + list[3] = LF_NESTTYPE, type = 0x4BD2, value_type + list[4] = LF_NESTTYPE, type = 0x4BDB, reference_type + list[5] = LF_NESTTYPE, type = 0x4C10, pointer_type + list[6] = LF_NESTTYPE, type = T_INT4(0074), distance_type + list[7] = LF_METHOD, count = 2, list = 0x4C94, name = 'reverse_bidirectional_iterator >::const_iterator,MxDriver,MxDriver const &,MxDriver const *,int>' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4C97, name = 'base' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4C98, name = 'operator*' + list[10] = LF_METHOD, count = 2, list = 0x4C9C, name = 'operator++' + list[11] = LF_METHOD, count = 2, list = 0x4C9C, name = 'operator--' + list[12] = LF_MEMBER, protected, type = 0x4C11, offset = 0 + member name = 'current' + +0x4c9e : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4c9d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDriver,MxDriver const &,MxDriver const *,int>, UDT(0x00004c9e) + +0x4c9f : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4BFF + +0x4ca0 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C9F + +0x4ca1 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4CA0 + +0x4ca2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BFF, This type = 0x4C00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4ca1, This adjust = 0 + +0x4ca3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BFF, This type = 0x4C00, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4c33, This adjust = 0 + +0x4ca4 : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4CA2, + list[1] = public, VANILLA, 0x4CA3, + list[2] = public, VANILLA, 0x4C01, + +0x4ca5 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4BFF + +0x4ca6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4CA5 + +0x4ca7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4BFF, This type = 0x4C00, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4ca6, This adjust = 0 + +0x4ca8 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4C02, offset = 0 + list[1] = LF_NESTTYPE, type = 0x4BFF, _Myt + list[2] = LF_NESTTYPE, type = 0x4C0F, _A + list[3] = LF_METHOD, count = 2, list = 0x4CA4, name = 'List' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4CA7, name = 'swap' + list[5] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4C01, name = '~List' + +0x4ca9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4ca8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004ca9) + +0x4caa : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x1C2B, iterator_category + list[1] = LF_NESTTYPE, type = 0x4BD2, value_type + list[2] = LF_NESTTYPE, type = T_INT4(0074), distance_type + +0x4cab : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4caa, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004cab) + +0x4cac : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C14 + +0x4cad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C10, Class type = 0x4C0F, This type = 0x4CAC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bdc, This adjust = 0 + +0x4cae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD3, Class type = 0x4C0F, This type = 0x4CAC, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bfd, This adjust = 0 + +0x4caf : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4CAD, + list[1] = public, VANILLA, 0x4CAE, + +0x4cb0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C0F + +0x4cb1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BD3, Class type = 0x4C0F, This type = 0x4CB0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x287e, This adjust = 0 + +0x4cb2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x4C0F, This type = 0x4CB0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x109e, This adjust = 0 + +0x4cb3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C0F, This type = 0x4CB0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x12c6, This adjust = 0 + +0x4cb4 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4BD3 + list[1] = 0x4BDB + +0x4cb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C0F, This type = 0x4CB0, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4cb4, This adjust = 0 + +0x4cb6 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4BD3 + +0x4cb7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C0F, This type = 0x4CB0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4cb6, This adjust = 0 + +0x4cb8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4C0F, This type = 0x4CAC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cb9 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = T_UINT4(0075), size_type + list[1] = LF_NESTTYPE, type = T_INT4(0074), difference_type + list[2] = LF_NESTTYPE, type = 0x4BD3, pointer + list[3] = LF_NESTTYPE, type = 0x4C10, const_pointer + list[4] = LF_NESTTYPE, type = 0x4BD9, reference + list[5] = LF_NESTTYPE, type = 0x4BDB, const_reference + list[6] = LF_NESTTYPE, type = 0x4BD2, value_type + list[7] = LF_METHOD, count = 2, list = 0x4CAF, name = 'address' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB1, name = 'allocate' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB2, name = '_Charalloc' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB3, name = 'deallocate' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB5, name = 'construct' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB7, name = 'destroy' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4CB8, name = 'max_size' + +0x4cba : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4cb9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004cba) + +0x4cbb : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4C11 + +0x4cbc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C11, This type = 0x4CBB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4bf5, This adjust = 0 + +0x4cbd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C11, This type = 0x4CBB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4be9, This adjust = 0 + +0x4cbe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4C11, This type = 0x4CBB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cbf : Length = 26, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4CBC, + list[1] = public, VANILLA, 0x4CBD, + list[2] = public, VANILLA, 0x4CBE, + +0x4cc0 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4C11 + +0x4cc1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4CC0 + +0x4cc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4BDB, Class type = 0x4C11, This type = 0x4CC1, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4C11, Class type = 0x4C11, This type = 0x4CBB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4cc4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4C11 + +0x4cc5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4CC4, Class type = 0x4C11, This type = 0x4CBB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cc6 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x4CC3, + list[1] = public, VANILLA, 0x4CC5, + +0x4cc7 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4CC0 + +0x4cc8 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4CC7 + +0x4cc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4C11, This type = 0x4CC1, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4cc8, This adjust = 0 + +0x4cca : Length = 118, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x4BE5, offset = 0 + list[1] = LF_METHOD, count = 3, list = 0x4CBF, name = 'const_iterator' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CC2, name = 'operator*' + list[3] = LF_METHOD, count = 2, list = 0x4CC6, name = 'operator++' + list[4] = LF_METHOD, count = 2, list = 0x4CC6, name = 'operator--' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4CC9, name = 'operator==' + +0x4ccb : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4cca, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004ccb) + +0x4ccc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1043, This type = 0x1044, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x1898, This adjust = 0 + +0x4ccd : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1045, name = 'TowTrackMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1048, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x104A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4CCC, name = 'VTable0x1c' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x27BB, name = 'GetColor' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + list[7] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0x0c' + list[8] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 16 + member name = 'm_unk0x10' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 18 + member name = 'm_unk0x12' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 20 + member name = 'm_unk0x14' + list[11] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 22 + member name = 'm_unk0x16' + list[12] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 24 + member name = 'm_unk0x18' + list[13] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 26 + member name = 'm_unk0x1a' + list[14] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_unk0x1c' + list[15] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color1' + list[16] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color2' + list[17] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color3' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 36 + member name = 'm_color4' + list[19] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 38 + member name = 'm_color5' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1045, name = '~TowTrackMissionState' + +0x4cce : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +0x4ccf : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1893, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1045, name = 'TowTrackMissionState' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1048, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x104A, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4CCC, name = 'VTable0x1c' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x27BB, name = 'GetColor' + list[6] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 8 + member name = 'm_unk0x08' + list[7] = LF_MEMBER, protected, type = T_UINT4(0075), offset = 12 + member name = 'm_unk0x0c' + list[8] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 16 + member name = 'm_unk0x10' + list[9] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 18 + member name = 'm_unk0x12' + list[10] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 20 + member name = 'm_unk0x14' + list[11] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 22 + member name = 'm_unk0x16' + list[12] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 24 + member name = 'm_unk0x18' + list[13] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 26 + member name = 'm_unk0x1a' + list[14] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 28 + member name = 'm_unk0x1c' + list[15] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 30 + member name = 'm_color1' + list[16] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 32 + member name = 'm_color2' + list[17] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 34 + member name = 'm_color3' + list[18] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 36 + member name = 'm_color4' + list[19] = LF_MEMBER, protected, type = T_USHORT(0021), offset = 38 + member name = 'm_color5' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1045, name = '~TowTrackMissionState' + +0x4cd0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +0x4cd1 : Length = 390, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1FE0, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x1FDF, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cd2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cd1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cd3 : Length = 98, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[2] = LF_MEMBER, private, type = 0x429A, offset = 0 + member name = 'm_pad' + list[3] = LF_MEMBER, private, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4cd4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4cd3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x4cd5 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = 'DeviceModesInfo' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = '~DeviceModesInfo' + list[2] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[3] = LF_MEMBER, public, type = 0x2077, offset = 4 + member name = 'm_modeArray' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_count' + list[5] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddcaps' + list[6] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 376 + member name = 'm_unk0x178' + +0x4cd6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4cd5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x4cd7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4CA5, Class type = 0x1793, This type = 0x1794, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cd8 : Length = 642, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = 'MxDeviceEnumerate' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x25DB, name = '~MxDeviceEnumerate' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1798, + vfptr offset = 0, name = 'DoEnumerate' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x44B0, name = 'EnumDirectDrawCallback' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4807, name = 'EnumDisplayModesCallback' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x48FE, name = 'EnumDevicesCallback' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x179B, name = 'EnumerateErrorToString' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x439B, name = 'ParseDeviceName' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4AFA, name = 'ProcessDeviceBytes' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4BFC, name = 'GetDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1795, name = 'FUN_1009d0d0' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1798, name = 'FUN_1009d210' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4BFE, name = 'FUN_1009d370' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4BC7, name = 'FUN_1009d3d0' + list[15] = LF_ONEMETHOD, public, STATIC, index = 0x438C, name = 'BuildErrorString' + list[16] = LF_ONEMETHOD, public, STATIC, index = 0x480C, name = 'DirectDrawEnumerateCallback' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x480A, name = 'DisplayModesEnumerateCallback' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x480B, name = 'DevicesEnumerateCallback' + list[19] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1a0' + list[20] = LF_ONEMETHOD, public, STATIC, index = 0x4BCD, name = 'FUN_1009d1e0' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x4CD7, name = 'GetDeviceList' + list[22] = LF_MEMBER, private, type = 0x4BFF, offset = 4 + member name = 'm_list' + list[23] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 16 + member name = 'm_initialized' + +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +0x4cda : Length = 90, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x29C1, name = 'operator==' + list[1] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_height' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_bitsPerPixel' + +0x4cdb : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4cda, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +0x4cdc : Length = 42, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_HardwareMode' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_Bit2' + +0x4cdd : Length = 46, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x4cdc +NESTED, enum name = MxDeviceModeFinder::__unnamed + +0x4cde : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4CDD, __unnamed + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = 'MxDeviceModeFinder' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x1792, name = '~MxDeviceModeFinder' + list[3] = LF_MEMBER, private, type = 0x1761, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_flags' + list[5] = LF_MEMBER, private, type = 0x28B5, offset = 20 + member name = 'm_desc' + list[6] = LF_MEMBER, private, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +0x4ce0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x492F, This type = 0x494A, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a19, This adjust = 0 + +0x4ce1 : Length = 110, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4CE0, name = 'operator==' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x494C, name = 'operator<' + list[2] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_height' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_bitsPerPixel' + +0x4ce2 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4ce1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +0x4ce3 : Length = 1722, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[3] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[4] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[5] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[6] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[7] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[8] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[9] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[10] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[11] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[12] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[13] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[14] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[15] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[16] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[17] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[18] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[19] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[20] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[21] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[22] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'm_unk0x850' + list[23] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[24] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[25] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[26] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[27] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[28] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[29] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[30] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[31] = LF_MEMBER, protected, type = 0x492F, offset = 2164 + member name = 'm_currentMode' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[33] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[40] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[41] = LF_ONEMETHOD, public, VANILLA, index = 0x43B0, name = 'GetDirectDraw' + list[42] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetFrontBuffer' + list[43] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetBackBuffer' + list[44] = LF_ONEMETHOD, public, VANILLA, index = 0x43B2, name = 'GetClipper' + list[45] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[46] = LF_ONEMETHOD, protected, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[47] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[48] = LF_ONEMETHOD, protected, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[49] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[50] = LF_ONEMETHOD, protected, VANILLA, index = 0x1769, name = 'DDInit' + list[51] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'DDSetMode' + list[52] = LF_ONEMETHOD, protected, VANILLA, index = 0x1783, name = 'Error' + list[53] = LF_ONEMETHOD, protected, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[54] = LF_ONEMETHOD, protected, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[55] = LF_ONEMETHOD, protected, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[56] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[57] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[58] = LF_ONEMETHOD, protected, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[59] = LF_ONEMETHOD, protected, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[60] = LF_ONEMETHOD, protected, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[61] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[62] = LF_ONEMETHOD, protected, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[63] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[64] = LF_ONEMETHOD, protected, VANILLA, index = 0x175B, name = 'FUN_1009d920' + +0x4ce4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 65, field list type 0x4ce3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x4ce5 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = 'DeviceModesInfo' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1787, name = '~DeviceModesInfo' + list[2] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_guid' + list[3] = LF_MEMBER, public, type = 0x4A15, offset = 4 + member name = 'm_modeArray' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_count' + list[5] = LF_MEMBER, public, type = 0x1E21, offset = 12 + member name = 'm_ddcaps' + list[6] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 376 + member name = 'm_unk0x178' + +0x4ce6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4ce5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +0x4ce7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x492F + +0x4ce8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x493C, Class type = 0x492F, This type = 0x4CE7, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4a19, This adjust = 0 + +0x4ce9 : Length = 130, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4CE0, name = 'operator==' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x494C, name = 'operator<' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CE8, name = 'operator=' + list[3] = LF_MEMBER, public, type = T_INT4(0074), offset = 0 + member name = 'm_width' + list[4] = LF_MEMBER, public, type = T_INT4(0074), offset = 4 + member name = 'm_height' + list[5] = LF_MEMBER, public, type = T_INT4(0074), offset = 8 + member name = 'm_bitsPerPixel' + +0x4cea : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x4ce9, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +0x4ceb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxAssignedDevice, UDT(0x00004d27) + +0x4cec : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4CEB + +0x4ced : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4CEB, This type = 0x4CEC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cee : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4CEB + +0x4cef : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4CEE, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cf0 : Length = 390, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_pDeviceModeFinder' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cf1 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cf2 : Length = 42, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x4cdc +NESTED, enum name = MxAssignedDevice::__unnamed + +0x4cf3 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4CF2, __unnamed + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = 'MxAssignedDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = '~MxAssignedDevice' + list[3] = LF_MEMBER, private, type = 0x1761, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_flags' + list[5] = LF_MEMBER, private, type = 0x28B5, offset = 20 + member name = 'm_desc' + list[6] = LF_MEMBER, private, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4cf4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cf3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +0x4cf5 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_pAssignedDevice' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cf6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cf7 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetDeviceModeFinder' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cf8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cf9 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cfb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UCHAR(0020), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4cfc : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CFB, name = 'GetAssignedDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4cfd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cfc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4cfe : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ENUMERATE, public, value = 1, name = 'Flag_HardwareMode' + list[1] = LF_ENUMERATE, public, value = 2, name = 'Flag_PrimaryDevice' + +0x4cff : Length = 42, Leaf = 0x1507 LF_ENUM + # members = 2, type = T_INT4(0074) field list type 0x4cfe +NESTED, enum name = MxAssignedDevice::__unnamed + +0x4d00 : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4CFF, __unnamed + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = 'MxAssignedDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = '~MxAssignedDevice' + list[3] = LF_MEMBER, private, type = 0x1761, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_flags' + list[5] = LF_MEMBER, private, type = 0x28B5, offset = 20 + member name = 'm_desc' + list[6] = LF_MEMBER, private, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4d01 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d00, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +0x4d02 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[12] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[13] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[14] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[15] = LF_MEMBER, private, type = T_INT4(0074), offset = 2188 + member name = 'm_unk0x88c' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4d03 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4d02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4d04 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4CEE + +0x4d05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4d04, This adjust = 0 + +0x4d06 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D05, name = 'GetZBufferBitDepth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[13] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[14] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[15] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 2188 + member name = 'm_unk0x88c' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4d07 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d06, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4d08 : Length = 38, Leaf = 0x1201 LF_ARGLIST argument count = 8 + list[0] = 0x1229 + list[1] = 0x1245 + list[2] = 0x4792 + list[3] = 0x11E7 + list[4] = 0x11E7 + list[5] = 0x1247 + list[6] = T_UINT4(0075) + list[7] = T_UCHAR(0020) + +0x4d09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x1231, This type = 0x1232, + Call type = ThisCall, Func attr = none + Parms = 8, Arg list type = 0x4d08, This adjust = 0 + +0x4d0a : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x4792, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x1FE4, offset = 36 + member name = 'm_d3dDevice' + +0x4d0b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d0a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x4d0c : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d0a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4d0d : Length = 518, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x15A0, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'MxVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1233, name = '~MxVideoManager' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1236, name = 'Tickle' + list[4] = LF_METHOD, count = 2, list = 0x1CF5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D09, + vfptr offset = 40, name = 'VTable0x28' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124B, + vfptr offset = 44, name = 'Create' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x124D, name = 'InvalidateRect' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x124F, + vfptr offset = 48, name = 'RealizePalette' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1235, + vfptr offset = 52, name = 'VTable0x34' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x1236, name = 'Init' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'SortPresenterList' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x1233, name = 'UpdateRegion' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF6, name = 'GetVideoParam' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF7, name = 'GetDirectDraw' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1CF8, name = 'GetDisplaySurface' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x3EE9, name = 'GetRegion' + list[17] = LF_MEMBER, protected, type = 0x1220, offset = 44 + member name = 'm_videoParam' + list[18] = LF_MEMBER, protected, type = 0x1245, offset = 80 + member name = 'm_pDirectDraw' + list[19] = LF_MEMBER, protected, type = 0x4792, offset = 84 + member name = 'm_pDirect3D' + list[20] = LF_MEMBER, protected, type = 0x1295, offset = 88 + member name = 'm_displaySurface' + list[21] = LF_MEMBER, protected, type = 0x1CF9, offset = 92 + member name = 'm_region' + list[22] = LF_MEMBER, protected, type = T_UCHAR(0020), offset = 96 + member name = 'm_unk0x60' + +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +0x4d0f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4792, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d10 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D05, name = 'GetZBufferBitDepth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4D0F, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[13] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[14] = LF_MEMBER, private, type = 0x4792, offset = 2180 + member name = 'm_pDirect3d' + list[15] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 2188 + member name = 'm_unk0x88c' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4d11 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4d12 : Length = 234, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_UINT4(0075), offset = 0 + member name = 'm_unk0x00' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x4792, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x47A4, offset = 36 + member name = 'm_d3dDevice' + +0x4d13 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d12, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x4d14 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d12, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4d15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x47A4, Class type = 0x178B, This type = 0x178C, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d16 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D05, name = 'GetZBufferBitDepth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4D0F, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4D15, name = 'GetDirect3DDevice' + list[13] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[14] = LF_MEMBER, private, type = 0x4792, offset = 2180 + member name = 'm_pDirect3d' + list[15] = LF_MEMBER, private, type = 0x47A4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[16] = LF_MEMBER, private, type = T_INT4(0074), offset = 2188 + member name = 'm_unk0x88c' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4d17 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d16, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4d18 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D05, name = 'GetZBufferBitDepth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x43AD, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x43BB, name = 'GetDirect3DDevice' + list[13] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[14] = LF_MEMBER, private, type = 0x1FE2, offset = 2180 + member name = 'm_pDirect3d' + list[15] = LF_MEMBER, private, type = 0x1FE4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[16] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2188 + member name = 'm_unk0x88c' + list[17] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4d19 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d18, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4d1a : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4CFF, __unnamed + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = 'MxAssignedDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = '~MxAssignedDevice' + list[3] = LF_MEMBER, public, type = 0x1761, offset = 0 + member name = 'm_guid' + list[4] = LF_MEMBER, public, type = T_UINT4(0075), offset = 16 + member name = 'm_flags' + list[5] = LF_MEMBER, public, type = 0x28B5, offset = 20 + member name = 'm_desc' + list[6] = LF_MEMBER, public, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4d1b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d1a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +0x4d1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x195E, This type = 0x3D62, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x10c4, This adjust = 0 + +0x4d1d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VIRTUAL, 0x4D1C, + list[1] = public, VIRTUAL, 0x3DBF, + +0x4d1e : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x11E2, offset = 0 + list[1] = LF_ONEMETHOD, public, STATIC, index = 0x195F, name = 'configureLegoModelPresenter' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2182, name = 'ClassName' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2183, name = 'IsA' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3DBF, name = 'ReadyTickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3DBF, name = 'ParseExtra' + list[6] = LF_METHOD, count = 2, list = 0x4D1D, name = 'Destroy' + list[7] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DBF, name = 'LegoModelPresenter' + list[8] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DBF, name = '~LegoModelPresenter' + +0x4d1f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4d1e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +0x4d20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2EC2, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d21 : Length = 354, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D20, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_renderImpl' + list[12] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_deviceImpl' + list[13] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4d22 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4d21, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4d23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_UINT4(0075), Class type = 0x4CEB, This type = 0x4CEC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d24 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x28B5 + +0x4d25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4D24, Class type = 0x4CEB, This type = 0x4CEC, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d26 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_NESTTYPE, type = 0x4CFF, __unnamed + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = 'MxAssignedDevice' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4CED, name = '~MxAssignedDevice' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4D23, name = 'GetFlags' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4D25, name = 'GetDesc' + list[5] = LF_MEMBER, private, type = 0x1761, offset = 0 + member name = 'm_guid' + list[6] = LF_MEMBER, private, type = T_UINT4(0075), offset = 16 + member name = 'm_flags' + list[7] = LF_MEMBER, private, type = 0x28B5, offset = 20 + member name = 'm_desc' + list[8] = LF_MEMBER, private, type = 0x206C, offset = 224 + member name = 'm_deviceInfo' + +0x4d27 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4d26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +0x4d28 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRM2, UDT(0x00004da0) + +0x4d29 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D28 + +0x4d2a : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4D29 + +0x4d2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2E74, This type = 0x2E75, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4d2a, This adjust = 0 + +0x4d2c : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMFrame2, UDT(0x00004de6) + +0x4d2d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D2C + +0x4d2e : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4D29 + list[1] = 0x2E81 + list[2] = 0x4D2D + +0x4d2f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2E7F, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 3, Arg list type = 0x4d2e, This adjust = 0 + +0x4d30 : Length = 1238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[36] = LF_MEMBER, private, type = 0x1788, offset = 1272 + member name = 'm_padding0x4f4' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4d31 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4d30, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4d32 : Length = 54, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x4792, offset = 0 + member name = 'm_pDirect3D' + list[1] = LF_MEMBER, public, type = 0x47A4, offset = 4 + member name = 'm_pDirect3DDevice' + +0x4d33 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4d32, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = Tgl::DeviceDirect3DCreateData, UDT(0x00004d33) + +0x4d34 : Length = 370, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x207E, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3029, name = 'RendererImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3029, name = '~RendererImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE2, name = 'ImplementationDataPtr' + list[4] = LF_METHOD, count = 2, list = 0x302A, name = 'CreateDevice' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EC6, name = 'CreateView' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2ECE, name = 'CreateCamera' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2ED4, name = 'CreateLight' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EC9, name = 'CreateGroup' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EDB, name = 'CreateUnk' + list[10] = LF_METHOD, count = 2, list = 0x302B, name = 'CreateTexture' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE1, name = 'SetTextureDefaultShadeCount' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EE1, name = 'SetTextureDefaultColorCount' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x302C, name = 'Create' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x3029, name = 'Destroy' + list[15] = LF_MEMBER, private, type = 0x4D29, offset = 4 + member name = 'm_data' + +0x4d35 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d34, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::RendererImpl, UDT(0x00004d35) + +0x4d36 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMDevice2, UDT(0x00004d68) + +0x4d37 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D36 + +0x4d38 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4D37, Class type = 0x2EC1, This type = 0x3031, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d39 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27DB, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x302F, name = 'DeviceImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x302F, name = '~DeviceImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F05, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F06, name = 'GetWidth' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F06, name = 'GetHeight' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F07, name = 'SetColorModel' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F08, name = 'SetShadingModel' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F09, name = 'SetShadeCount' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0A, name = 'SetDither' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0F, name = 'Update' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0C, name = 'InitFromD3DDevice' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F0C, name = 'InitFromWindowsDevice' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4D38, name = 'ImplementationData' + list[14] = LF_MEMBER, private, type = 0x4D37, offset = 4 + member name = 'm_data' + +0x4d3a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4d39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 8, class name = TglImpl::DeviceImpl, UDT(0x00004d3a) + +0x4d3b : Length = 446, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27E9, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3035, name = 'ViewImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3035, name = '~ViewImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E87, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Add' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Remove' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E89, name = 'SetCamera' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8B, name = 'SetProjection' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8C, name = 'SetFrustrum' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8C, name = 'SetBackgroundColor' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8D, name = 'GetBackgroundColor' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8E, name = 'Clear' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E88, name = 'Render' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E8F, name = 'ForceUpdate' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E91, name = 'TransformWorldToScreen' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E91, name = 'TransformScreenToWorld' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2E90, name = 'Pick' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x3038, name = 'ImplementationData' + list[18] = LF_ONEMETHOD, public, STATIC, index = 0x4D2F, name = 'ViewportCreateAppData' + list[19] = LF_MEMBER, private, type = 0x2E81, offset = 4 + member name = 'm_data' + +0x4d3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4d3b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 8, class name = TglImpl::ViewImpl, UDT(0x00004d3c) + +0x4d3d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4D2D, Class type = 0x2ECF, This type = 0x303D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d3e : Length = 162, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27ED, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x303B, name = 'CameraImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x303B, name = '~CameraImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F10, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F11, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4D3D, name = 'ImplementationData' + list[6] = LF_MEMBER, private, type = 0x4D2D, offset = 4 + member name = 'm_data' + +0x4d3f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 8, class name = TglImpl::CameraImpl, UDT(0x00004d3f) + +0x4d40 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x4D2D, Class type = 0x2ED5, This type = 0x3043, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d41 : Length = 182, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x27F4, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3041, name = 'LightImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3041, name = '~LightImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF5, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF6, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EF7, name = 'SetColor' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4D40, name = 'ImplementationData' + list[7] = LF_MEMBER, private, type = 0x4D2D, offset = 4 + member name = 'm_data' + +0x4d42 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x4d41, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x283a + Size = 8, class name = TglImpl::LightImpl, UDT(0x00004d42) + +0x4d43 : Length = 282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1025, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x304D, name = 'GroupImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x304D, name = '~GroupImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFA, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFB, name = 'SetTransformation' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFC, name = 'SetColor' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFD, name = 'SetTexture' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EFE, name = 'GetTexture' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F01, name = 'SetMaterialMode' + list[9] = LF_METHOD, count = 2, list = 0x304E, name = 'Add' + list[10] = LF_METHOD, count = 2, list = 0x304E, name = 'Remove' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F04, name = 'RemoveAll' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2F04, name = 'Unknown' + list[13] = LF_MEMBER, private, type = 0x4D2D, offset = 4 + member name = 'm_data' + +0x4d44 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4d43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::GroupImpl, UDT(0x00004d44) + +0x4d45 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1D46, Class type = 0x2EA0, This type = 0x3062, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d46 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x1D46 + +0x4d47 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x2EA0, This type = 0x2EB0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4d46, This adjust = 0 + +0x4d48 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1D46 + list[1] = 0x2EA3 + +0x4d49 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x100D, Class type = 0x2EA0, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 2, Arg list type = 0x4d48, This adjust = 0 + +0x4d4a : Length = 298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2805, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3060, name = 'TextureImpl' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3060, name = '~TextureImpl' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EBA, name = 'ImplementationDataPtr' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB2, name = 'SetTexels' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB4, name = 'FillRowsOfTexture' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB5, name = 'Changed' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB8, name = 'GetBufferAndPalette' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x2EB9, name = 'SetPalette' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4D45, name = 'ImplementationData' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4D47, name = 'SetImplementation' + list[11] = LF_ONEMETHOD, public, STATIC, index = 0x4D49, name = 'SetImage' + list[12] = LF_MEMBER, private, type = 0x1D46, offset = 4 + member name = 'm_data' + +0x4d4b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4d4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 8, class name = TglImpl::TextureImpl, UDT(0x00004d4b) + +0x4d4c : Length = 230, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4D2B, name = 'ViewportAppData' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2E7A, name = '~ViewportAppData' + list[2] = LF_MEMBER, public, type = 0x4D2D, offset = 0 + member name = 'm_pLightFrame' + list[3] = LF_MEMBER, public, type = 0x4D2D, offset = 4 + member name = 'm_pCamera' + list[4] = LF_MEMBER, public, type = 0x4D2D, offset = 8 + member name = 'm_pLastRenderedFrame' + list[5] = LF_MEMBER, public, type = T_REAL32(0040), offset = 12 + member name = 'm_backgroundColorRed' + list[6] = LF_MEMBER, public, type = T_REAL32(0040), offset = 16 + member name = 'm_backgroundColorGreen' + list[7] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'm_backgroundColorBlue' + +0x4d4d : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4d4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = ViewportAppData, UDT(0x00004d4d) + +0x4d4e : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4D36 + +0x4d4f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4d50 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d51 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x4d52 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x4d53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4d54 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x4d55 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x4d56 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x4d57 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31a5, This adjust = 0 + +0x4d58 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x31a7, This adjust = 0 + +0x4d59 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d5a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x31ad, This adjust = 0 + +0x4d5b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4d5c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31b0, This adjust = 0 + +0x4d5d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31b5, This adjust = 0 + +0x4d5e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d5f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1069, Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d60 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x31ba, This adjust = 0 + +0x4d61 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x4792 + list[1] = 0x47A4 + +0x4d62 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4d61, This adjust = 0 + +0x4d63 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x1762 + list[1] = 0x1245 + list[2] = 0x11E7 + +0x4d64 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x4d63, This adjust = 0 + +0x4d65 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x47A5 + +0x4d66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D36, This type = 0x4D4E, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x4d65, This adjust = 0 + +0x4d67 : Length = 918, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2F29, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D4F, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D51, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D52, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D52, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D53, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D54, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D55, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D55, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D56, name = 'Init' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D57, name = 'InitFromD3D' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D58, name = 'InitFromClipper' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D59, name = 'Update' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5A, name = 'AddUpdateCallback' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5A, name = 'DeleteUpdateCallback' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D53, name = 'SetBufferCount' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetBufferCount' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5B, name = 'SetDither' + list[21] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D53, name = 'SetShades' + list[22] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D53, name = 'SetQuality' + list[23] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5C, name = 'SetTextureQuality' + list[24] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5D, name = 'GetViewports' + list[25] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5E, name = 'GetDither' + list[26] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetShades' + list[27] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetHeight' + list[28] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetWidth' + list[29] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetTrianglesDrawn' + list[30] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetWireframeOptions' + list[31] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetQuality' + list[32] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D50, name = 'GetColorModel' + list[33] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D5F, name = 'GetTextureQuality' + list[34] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D60, name = 'GetDirect3DDevice' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D62, + vfptr offset = 136, name = 'InitFromD3D2' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D64, + vfptr offset = 140, name = 'InitFromSurface' + list[37] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D53, + vfptr offset = 144, name = 'SetRenderMode' + list[38] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D50, + vfptr offset = 148, name = 'GetRenderMode' + list[39] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D66, + vfptr offset = 152, name = 'GetDirect3DDevice2' + +0x4d68 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 40, field list type 0x4d67, + Derivation list type 0x0000, VT shape type 0x2f52 + Size = 4, class name = IDirect3DRMDevice2, UDT(0x00004d68) + +0x4d69 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4D28 + +0x4d6a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4d6b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4d6c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x306a, This adjust = 0 + +0x4d6d : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D2D + +0x4d6e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E7C + list[1] = 0x4D6D + +0x4d6f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4d6e, This adjust = 0 + +0x4d70 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x306f, This adjust = 0 + +0x4d71 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMMeshBuilder2, UDT(0x00004e0f) + +0x4d72 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D71 + +0x4d73 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D72 + +0x4d74 : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4D73 + +0x4d75 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x4d74, This adjust = 0 + +0x4d76 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3079, This adjust = 0 + +0x4d77 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x307e, This adjust = 0 + +0x4d78 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3083, This adjust = 0 + +0x4d79 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1D46 + +0x4d7a : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x1DBD + list[1] = 0x4D79 + +0x4d7b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4d7a, This adjust = 0 + +0x4d7c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3087, This adjust = 0 + +0x4d7d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x3089, This adjust = 0 + +0x4d7e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x308e, This adjust = 0 + +0x4d7f : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D37 + +0x4d80 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_ULONG(0022) + list[1] = T_ULONG(0022) + list[2] = 0x4D7F + +0x4d81 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x4d80, This adjust = 0 + +0x4d82 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x1762 + list[1] = 0x1245 + list[2] = 0x11E7 + list[3] = 0x4D7F + +0x4d83 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x4d82, This adjust = 0 + +0x4d84 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4792 + list[1] = 0x47A4 + list[2] = 0x4D7F + +0x4d85 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x4d84, This adjust = 0 + +0x4d86 : Length = 26, Leaf = 0x1201 LF_ARGLIST argument count = 5 + list[0] = 0x1247 + list[1] = 0x1762 + list[2] = T_INT4(0074) + list[3] = T_INT4(0074) + list[4] = 0x4D7F + +0x4d87 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x4d86, This adjust = 0 + +0x4d88 : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x11E7 + list[1] = 0x4D79 + +0x4d89 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4d88, This adjust = 0 + +0x4d8a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 9, Arg list type = 0x309a, This adjust = 0 + +0x4d8b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x309d, This adjust = 0 + +0x4d8c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 16, Arg list type = 0x30a2, This adjust = 0 + +0x4d8d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x30aa, This adjust = 0 + +0x4d8e : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_32PRCHAR(0470) + list[1] = 0x4D79 + +0x4d8f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4d8e, This adjust = 0 + +0x4d90 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_32PVOID(0403) + list[1] = T_32PRCHAR(0470) + list[2] = T_32PRCHAR(0470) + list[3] = 0x4D79 + +0x4d91 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x4d90, This adjust = 0 + +0x4d92 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x4d93 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x4d94 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4d95 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30b6, This adjust = 0 + +0x4d96 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x30b9, This adjust = 0 + +0x4d97 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x4d98 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 10, Arg list type = 0x30bf, This adjust = 0 + +0x4d99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x4d9a : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMProgressiveMesh, UDT(0x00004e27) + +0x4d9b : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D9A + +0x4d9c : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4D9B + +0x4d9d : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4D9C + +0x4d9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D28, This type = 0x4D69, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x4d9d, This adjust = 0 + +0x4d9f : Length = 1030, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x176F, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D6A, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D6B, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4D6B, name = 'Release' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D6C, + vfptr offset = 12, name = 'CreateObject' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D6F, + vfptr offset = 16, name = 'CreateFrame' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D70, + vfptr offset = 20, name = 'CreateMesh' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D75, + vfptr offset = 24, name = 'CreateMeshBuilder' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D76, + vfptr offset = 28, name = 'CreateFace' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D77, + vfptr offset = 32, name = 'CreateAnimation' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D78, + vfptr offset = 36, name = 'CreateAnimationSet' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D7B, + vfptr offset = 40, name = 'CreateTexture' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D7C, + vfptr offset = 44, name = 'CreateLight' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D7D, + vfptr offset = 48, name = 'CreateLightRGB' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D7E, + vfptr offset = 52, name = 'CreateMaterial' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D81, + vfptr offset = 56, name = 'CreateDevice' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D83, + vfptr offset = 60, name = 'CreateDeviceFromSurface' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D85, + vfptr offset = 64, name = 'CreateDeviceFromD3D' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D87, + vfptr offset = 68, name = 'CreateDeviceFromClipper' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D89, + vfptr offset = 72, name = 'CreateTextureFromSurface' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D8A, + vfptr offset = 76, name = 'CreateShadow' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D8B, + vfptr offset = 80, name = 'CreateViewport' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D8C, + vfptr offset = 84, name = 'CreateWrap' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D8D, + vfptr offset = 88, name = 'CreateUserVisual' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D8F, + vfptr offset = 92, name = 'LoadTexture' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D91, + vfptr offset = 96, name = 'LoadTextureFromResource' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D92, + vfptr offset = 100, name = 'SetSearchPath' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D92, + vfptr offset = 104, name = 'AddSearchPath' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D93, + vfptr offset = 108, name = 'GetSearchPath' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D94, + vfptr offset = 112, name = 'SetDefaultTextureColors' + list[30] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D94, + vfptr offset = 116, name = 'SetDefaultTextureShades' + list[31] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D95, + vfptr offset = 120, name = 'GetDevices' + list[32] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D96, + vfptr offset = 124, name = 'GetNamedObject' + list[33] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D97, + vfptr offset = 128, name = 'EnumerateObjects' + list[34] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D98, + vfptr offset = 132, name = 'Load' + list[35] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D99, + vfptr offset = 136, name = 'Tick' + list[36] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4D9E, + vfptr offset = 140, name = 'CreateProgressiveMesh' + +0x4da0 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 37, field list type 0x4d9f, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 4, class name = IDirect3DRM2, UDT(0x00004da0) + +0x4da1 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4D2C + +0x4da2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4da3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4da4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x4da5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x4da6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4da7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x4da8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x4da9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x4daa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f5d, This adjust = 0 + +0x4dab : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f62, This adjust = 0 + +0x4dac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f65, This adjust = 0 + +0x4dad : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2f67, This adjust = 0 + +0x4dae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f69, This adjust = 0 + +0x4daf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f6c, This adjust = 0 + +0x4db0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f6f, This adjust = 0 + +0x4db1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f72, This adjust = 0 + +0x4db2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1071, Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4db3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f40, This adjust = 0 + +0x4db4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f76, This adjust = 0 + +0x4db5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f78, This adjust = 0 + +0x4db6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1077, Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4db7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f7c, This adjust = 0 + +0x4db8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f7e, This adjust = 0 + +0x4db9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f80, This adjust = 0 + +0x4dba : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f82, This adjust = 0 + +0x4dbb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f87, This adjust = 0 + +0x4dbc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f89, This adjust = 0 + +0x4dbd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x2f8b, This adjust = 0 + +0x4dbe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f90, This adjust = 0 + +0x4dbf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x2f92, This adjust = 0 + +0x4dc0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x4dc1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1e28, This adjust = 0 + +0x4dc2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4dc3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1073, Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4dc4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1171, This adjust = 0 + +0x4dc5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x4dc6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d54, This adjust = 0 + +0x4dc7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x4dc8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4dc9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9e, This adjust = 0 + +0x4dca : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1075, Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4dcb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fa1, This adjust = 0 + +0x4dcc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 7, Arg list type = 0x2fa3, This adjust = 0 + +0x4dcd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x2fa5, This adjust = 0 + +0x4dce : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2fa7, This adjust = 0 + +0x4dcf : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fa9, This adjust = 0 + +0x4dd0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x4dd1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2fac, This adjust = 0 + +0x4dd2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2fae, This adjust = 0 + +0x4dd3 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x2F61 + list[1] = T_32PVOID(0403) + list[2] = T_ULONG(0022) + +0x4dd4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x4dd3, This adjust = 0 + +0x4dd5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30d1, This adjust = 0 + +0x4dd6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3138, This adjust = 0 + +0x4dd7 : Length = 30, Leaf = 0x1201 LF_ARGLIST argument count = 6 + list[0] = T_REAL32(0040) + list[1] = T_REAL32(0040) + list[2] = T_REAL32(0040) + list[3] = T_REAL32(0040) + list[4] = T_REAL32(0040) + list[5] = T_REAL32(0040) + +0x4dd8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x4dd7, This adjust = 0 + +0x4dd9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x310a, This adjust = 0 + +0x4dda : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x2E7C + list[1] = 0x3147 + +0x4ddb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4dda, This adjust = 0 + +0x4ddc : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMRAY, UDT(0x00004e29) + +0x4ddd : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4DDC + +0x4dde : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = IDirect3DRMPicked2Array, UDT(0x00004e32) + +0x4ddf : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4DDE + +0x4de0 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4DDF + +0x4de1 : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = 0x2E7C + list[1] = 0x4DDD + list[2] = T_ULONG(0022) + list[3] = 0x4DE0 + +0x4de2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x4de1, This adjust = 0 + +0x4de3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D2C, This type = 0x4DA1, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x30f4, This adjust = 0 + +0x4de4 : Length = 1954, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2E7B, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA2, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA4, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA5, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA5, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA6, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA7, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA8, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA8, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA9, name = 'AddChild' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAA, name = 'AddLight' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAB, name = 'AddMoveCallback' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAC, name = 'AddTransform' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAD, name = 'AddTranslation' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAD, name = 'AddScale' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAE, name = 'AddRotation' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAF, name = 'AddVisual' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB0, name = 'GetChildren' + list[21] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'GetColor' + list[22] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB1, name = 'GetLights' + list[23] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB2, name = 'GetMaterialMode' + list[24] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB3, name = 'GetParent' + list[25] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB4, name = 'GetPosition' + list[26] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB5, name = 'GetRotation' + list[27] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB3, name = 'GetScene' + list[28] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB6, name = 'GetSortMode' + list[29] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB7, name = 'GetTexture' + list[30] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB8, name = 'GetTransform' + list[31] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DB9, name = 'GetVelocity' + list[32] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBA, name = 'GetOrientation' + list[33] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBB, name = 'GetVisuals' + list[34] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBC, name = 'GetTextureTopology' + list[35] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBD, name = 'InverseTransform' + list[36] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBE, name = 'Load' + list[37] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBF, name = 'LookAt' + list[38] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC0, name = 'Move' + list[39] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA9, name = 'DeleteChild' + list[40] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAA, name = 'DeleteLight' + list[41] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAB, name = 'DeleteMoveCallback' + list[42] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DAF, name = 'DeleteVisual' + list[43] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'GetSceneBackground' + list[44] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC1, name = 'GetSceneBackgroundDepth' + list[45] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA3, name = 'GetSceneFogColor' + list[46] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC2, name = 'GetSceneFogEnable' + list[47] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC3, name = 'GetSceneFogMode' + list[48] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC4, name = 'GetSceneFogParams' + list[49] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA6, name = 'SetSceneBackground' + list[50] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC5, name = 'SetSceneBackgroundRGB' + list[51] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC6, name = 'SetSceneBackgroundDepth' + list[52] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC7, name = 'SetSceneBackgroundImage' + list[53] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC8, name = 'SetSceneFogEnable' + list[54] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA6, name = 'SetSceneFogColor' + list[55] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC9, name = 'SetSceneFogMode' + list[56] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC5, name = 'SetSceneFogParams' + list[57] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DA6, name = 'SetColor' + list[58] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC5, name = 'SetColorRGB' + list[59] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCA, name = 'GetZbufferMode' + list[60] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCB, name = 'SetMaterialMode' + list[61] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCC, name = 'SetOrientation' + list[62] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCD, name = 'SetPosition' + list[63] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCE, name = 'SetRotation' + list[64] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DCF, name = 'SetSortMode' + list[65] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DC7, name = 'SetTexture' + list[66] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DD0, name = 'SetTextureTopology' + list[67] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DD1, name = 'SetVelocity' + list[68] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DD2, name = 'SetZbufferMode' + list[69] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DBD, name = 'Transform' + list[70] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD4, + vfptr offset = 276, name = 'AddMoveCallback2' + list[71] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD5, + vfptr offset = 280, name = 'GetBox' + list[72] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DC2, + vfptr offset = 284, name = 'GetBoxEnable' + list[73] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DBD, + vfptr offset = 288, name = 'GetAxes' + list[74] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD6, + vfptr offset = 292, name = 'GetMaterial' + list[75] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DC2, + vfptr offset = 296, name = 'GetInheritAxes' + list[76] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD5, + vfptr offset = 300, name = 'GetHierarchyBox' + list[77] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD5, + vfptr offset = 304, name = 'SetBox' + list[78] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DC8, + vfptr offset = 308, name = 'SetBoxEnable' + list[79] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD8, + vfptr offset = 312, name = 'SetAxes' + list[80] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DC8, + vfptr offset = 316, name = 'SetInheritAxes' + list[81] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DD9, + vfptr offset = 320, name = 'SetMaterial' + list[82] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DDB, + vfptr offset = 324, name = 'SetQuaternion' + list[83] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DE2, + vfptr offset = 328, name = 'RayPick' + list[84] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4DE3, + vfptr offset = 332, name = 'Save' + +0x4de5 : Length = 46, Leaf = 0x000a LF_VTSHAPE + Number of entries : 84 + [0]: NEAR32 + [1]: NEAR32 + [2]: NEAR32 + [3]: NEAR32 + [4]: NEAR32 + [5]: NEAR32 + [6]: NEAR32 + [7]: NEAR32 + [8]: NEAR32 + [9]: NEAR32 + [10]: NEAR32 + [11]: NEAR32 + [12]: NEAR32 + [13]: NEAR32 + [14]: NEAR32 + [15]: NEAR32 + [16]: NEAR32 + [17]: NEAR32 + [18]: NEAR32 + [19]: NEAR32 + [20]: NEAR32 + [21]: NEAR32 + [22]: NEAR32 + [23]: NEAR32 + [24]: NEAR32 + [25]: NEAR32 + [26]: NEAR32 + [27]: NEAR32 + [28]: NEAR32 + [29]: NEAR32 + [30]: NEAR32 + [31]: NEAR32 + [32]: NEAR32 + [33]: NEAR32 + [34]: NEAR32 + [35]: NEAR32 + [36]: NEAR32 + [37]: NEAR32 + [38]: NEAR32 + [39]: NEAR32 + [40]: NEAR32 + [41]: NEAR32 + [42]: NEAR32 + [43]: NEAR32 + [44]: NEAR32 + [45]: NEAR32 + [46]: NEAR32 + [47]: NEAR32 + [48]: NEAR32 + [49]: NEAR32 + [50]: NEAR32 + [51]: NEAR32 + [52]: NEAR32 + [53]: NEAR32 + [54]: NEAR32 + [55]: NEAR32 + [56]: NEAR32 + [57]: NEAR32 + [58]: NEAR32 + [59]: NEAR32 + [60]: NEAR32 + [61]: NEAR32 + [62]: NEAR32 + [63]: NEAR32 + [64]: NEAR32 + [65]: NEAR32 + [66]: NEAR32 + [67]: NEAR32 + [68]: NEAR32 + [69]: NEAR32 + [70]: NEAR32 + [71]: NEAR32 + [72]: NEAR32 + [73]: NEAR32 + [74]: NEAR32 + [75]: NEAR32 + [76]: NEAR32 + [77]: NEAR32 + [78]: NEAR32 + [79]: NEAR32 + [80]: NEAR32 + [81]: NEAR32 + [82]: NEAR32 + [83]: NEAR32 + +0x4de6 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 85, field list type 0x4de4, + Derivation list type 0x0000, VT shape type 0x4de5 + Size = 4, class name = IDirect3DRMFrame2, UDT(0x00004de6) + +0x4de7 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4D71 + +0x4de8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4de9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4dea : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x4deb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x4dec : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4ded : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x4dee : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x4def : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f90, This adjust = 0 + +0x4df0 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x30f4, This adjust = 0 + +0x4df1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x4df2 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30f7, This adjust = 0 + +0x4df3 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30d1, This adjust = 0 + +0x4df4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4df5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x2E73, Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4df6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30fc, This adjust = 0 + +0x4df7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30fe, This adjust = 0 + +0x4df8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f2e, This adjust = 0 + +0x4df9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3101, This adjust = 0 + +0x4dfa : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x3106, This adjust = 0 + +0x4dfb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1e30, This adjust = 0 + +0x4dfc : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x2f9b, This adjust = 0 + +0x4dfd : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x310a, This adjust = 0 + +0x4dfe : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x116b, This adjust = 0 + +0x4dff : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10a7, This adjust = 0 + +0x4e00 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x310e, This adjust = 0 + +0x4e01 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3110, This adjust = 0 + +0x4e02 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1780, This adjust = 0 + +0x4e03 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3113, This adjust = 0 + +0x4e04 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 6, Arg list type = 0x3115, This adjust = 0 + +0x4e05 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x3117, This adjust = 0 + +0x4e06 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x184d, This adjust = 0 + +0x4e07 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x3079, This adjust = 0 + +0x4e08 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e09 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4e0a : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x306f, This adjust = 0 + +0x4e0b : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = T_REAL32(0040) + list[1] = T_ULONG(0022) + +0x4e0c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x4e0b, This adjust = 0 + +0x4e0d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D71, This type = 0x4DE7, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x3188, This adjust = 0 + +0x4e0e : Length = 1114, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x3071, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DE8, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DE9, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DE9, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEA, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEB, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEB, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEC, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DE9, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DED, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEE, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEE, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEF, name = 'Load' + list[13] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF0, name = 'Save' + list[14] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF1, name = 'Scale' + list[15] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF1, name = 'Translate' + list[16] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF2, name = 'SetColorSource' + list[17] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF3, name = 'GetBox' + list[18] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF4, name = 'GenerateNormals' + list[19] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF5, name = 'GetColorSource' + list[20] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF6, name = 'AddMesh' + list[21] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF7, name = 'AddMeshBuilder' + list[22] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF8, name = 'AddFrame' + list[23] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF9, name = 'AddFace' + list[24] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFA, name = 'AddFaces' + list[25] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFB, name = 'ReserveSpace' + list[26] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DF1, name = 'SetColorRGB' + list[27] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEC, name = 'SetColor' + list[28] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFC, name = 'SetTexture' + list[29] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFD, name = 'SetMaterial' + list[30] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFE, name = 'SetTextureTopology' + list[31] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DEC, name = 'SetQuality' + list[32] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DFF, name = 'SetPerspective' + list[33] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E00, name = 'SetVertex' + list[34] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E00, name = 'SetNormal' + list[35] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E01, name = 'SetTextureCoordinates' + list[36] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E02, name = 'SetVertexColor' + list[37] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E00, name = 'SetVertexColorRGB' + list[38] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E03, name = 'GetFaces' + list[39] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E04, name = 'GetVertices' + list[40] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E05, name = 'GetTextureCoordinates' + list[41] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E06, name = 'AddVertex' + list[42] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E06, name = 'AddNormal' + list[43] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E07, name = 'CreateFace' + list[44] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4DE9, name = 'GetQuality' + list[45] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E08, name = 'GetPerspective' + list[46] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E08, name = 'GetFaceCount' + list[47] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E08, name = 'GetVertexCount' + list[48] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E09, name = 'GetVertexColor' + list[49] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E0A, name = 'CreateMesh' + list[50] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E0C, + vfptr offset = 196, name = 'GenerateNormals2' + list[51] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E0D, + vfptr offset = 200, name = 'GetFace' + +0x4e0f : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 52, field list type 0x4e0e, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 4, class name = IDirect3DRMMeshBuilder2, UDT(0x00004e0f) + +0x4e10 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4D9A + +0x4e11 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4e12 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e13 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x1da6, This adjust = 0 + +0x4e14 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1dad, This adjust = 0 + +0x4e15 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4e16 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1049, This adjust = 0 + +0x4e17 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1db1, This adjust = 0 + +0x4e18 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 5, Arg list type = 0x2f90, This adjust = 0 + +0x4e19 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMPMESHLOADSTATUS, UDT(0x00004e36) + +0x4e1a : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4E19 + +0x4e1b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = 0x4E1A + +0x4e1c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x4e1b, This adjust = 0 + +0x4e1d : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e3, This adjust = 0 + +0x4e1e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x1d9a, This adjust = 0 + +0x4e1f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1e26, This adjust = 0 + +0x4e20 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x10e1, This adjust = 0 + +0x4e21 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = T_32PVOID(0403) + list[1] = T_ULONG(0022) + list[2] = T_ULONG(0022) + +0x4e22 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 3, Arg list type = 0x4e21, This adjust = 0 + +0x4e23 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x306f, This adjust = 0 + +0x4e24 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x4d9d, This adjust = 0 + +0x4e25 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4D9A, This type = 0x4E10, + Call type = STD Near, Func attr = none + Parms = 1, Arg list type = 0x30d1, This adjust = 0 + +0x4e26 : Length = 714, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1DD1, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E11, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E12, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E12, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E13, name = 'Clone' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E14, name = 'AddDestroyCallback' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E14, name = 'DeleteDestroyCallback' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E15, name = 'SetAppData' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E12, name = 'GetAppData' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E16, name = 'SetName' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E17, name = 'GetName' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E17, name = 'GetClassNameA' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E18, + vfptr offset = 44, name = 'Load' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1C, + vfptr offset = 48, name = 'GetLoadStatus' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1D, + vfptr offset = 52, name = 'SetMinRenderDetail' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E15, + vfptr offset = 56, name = 'Abort' + list[16] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1E, + vfptr offset = 60, name = 'GetFaceDetail' + list[17] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1E, + vfptr offset = 64, name = 'GetVertexDetail' + list[18] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E15, + vfptr offset = 68, name = 'SetFaceDetail' + list[19] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E15, + vfptr offset = 72, name = 'SetVertexDetail' + list[20] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1F, + vfptr offset = 76, name = 'GetFaceDetailRange' + list[21] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1F, + vfptr offset = 80, name = 'GetVertexDetailRange' + list[22] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E20, + vfptr offset = 84, name = 'GetDetail' + list[23] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1D, + vfptr offset = 88, name = 'SetDetail' + list[24] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E22, + vfptr offset = 92, name = 'RegisterEvents' + list[25] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E23, + vfptr offset = 96, name = 'CreateMesh' + list[26] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E24, + vfptr offset = 100, name = 'Duplicate' + list[27] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E25, + vfptr offset = 104, name = 'GetBox' + list[28] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E15, + vfptr offset = 108, name = 'SetQuality' + list[29] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E1E, + vfptr offset = 112, name = 'GetQuality' + +0x4e27 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 30, field list type 0x4e26, + Derivation list type 0x0000, VT shape type 0x1c02 + Size = 4, class name = IDirect3DRMProgressiveMesh, UDT(0x00004e27) + +0x4e28 : Length = 34, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2945, offset = 0 + member name = 'dvDir' + list[1] = LF_MEMBER, public, type = 0x2945, offset = 12 + member name = 'dvPos' + +0x4e29 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4e28, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = _D3DRMRAY, UDT(0x00004e29) + +0x4e2a : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4DDE + +0x4e2b : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4DDE, This type = 0x4E2A, + Call type = STD Near, Func attr = none + Parms = 2, Arg list type = 0x1cb7, This adjust = 0 + +0x4e2c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4DDE, This type = 0x4E2A, + Call type = STD Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e2d : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = _D3DRMPICKDESC2, UDT(0x00004e34) + +0x4e2e : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x4E2D + +0x4e2f : Length = 22, Leaf = 0x1201 LF_ARGLIST argument count = 4 + list[0] = T_ULONG(0022) + list[1] = 0x2FB7 + list[2] = 0x2F6E + list[3] = 0x4E2E + +0x4e30 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_LONG(0012), Class type = 0x4DDE, This type = 0x4E2A, + Call type = STD Near, Func attr = none + Parms = 4, Arg list type = 0x4e2f, This adjust = 0 + +0x4e31 : Length = 106, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x2FB3, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E2B, name = 'QueryInterface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E2C, name = 'AddRef' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E2C, name = 'Release' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E2C, name = 'GetSize' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E30, + vfptr offset = 16, name = 'GetPick' + +0x4e32 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x4e31, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 4, class name = IDirect3DRMPicked2Array, UDT(0x00004e32) + +0x4e33 : Length = 138, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'ulFaceIdx' + list[1] = LF_MEMBER, public, type = T_LONG(0012), offset = 4 + member name = 'lGroupIdx' + list[2] = LF_MEMBER, public, type = 0x2945, offset = 8 + member name = 'dvPosition' + list[3] = LF_MEMBER, public, type = T_REAL32(0040), offset = 20 + member name = 'tu' + list[4] = LF_MEMBER, public, type = T_REAL32(0040), offset = 24 + member name = 'tv' + list[5] = LF_MEMBER, public, type = 0x2945, offset = 28 + member name = 'dvNormal' + list[6] = LF_MEMBER, public, type = T_ULONG(0022), offset = 40 + member name = 'dcColor' + +0x4e34 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4e33, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 44, class name = _D3DRMPICKDESC2, UDT(0x00004e34) + +0x4e35 : Length = 194, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = T_ULONG(0022), offset = 0 + member name = 'dwSize' + list[1] = LF_MEMBER, public, type = T_ULONG(0022), offset = 4 + member name = 'dwPMeshSize' + list[2] = LF_MEMBER, public, type = T_ULONG(0022), offset = 8 + member name = 'dwBaseMeshSize' + list[3] = LF_MEMBER, public, type = T_ULONG(0022), offset = 12 + member name = 'dwBytesLoaded' + list[4] = LF_MEMBER, public, type = T_ULONG(0022), offset = 16 + member name = 'dwVerticesLoaded' + list[5] = LF_MEMBER, public, type = T_ULONG(0022), offset = 20 + member name = 'dwFacesLoaded' + list[6] = LF_MEMBER, public, type = T_LONG(0012), offset = 24 + member name = 'dwLoadResult' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'dwFlags' + +0x4e36 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4e35, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = _D3DRMPMESHLOADSTATUS, UDT(0x00004e36) + +0x4e37 : Length = 238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x1762, offset = 0 + member name = 'm_driverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hwnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_directDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_ddSurface1' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_ddSurface2' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_ddPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + list[7] = LF_MEMBER, public, type = T_UINT4(0075), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x4792, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x47A4, offset = 36 + member name = 'm_d3dDevice' + +0x4e38 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +0x4e39 : Length = 122, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2131, offset = 0 + member name = 'm_driverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hWnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_pDirectDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_pFrontBuffer' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_pBackBuffer' + +0x4e3a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4e39, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +0x4e3b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4e3c : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D20, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x3CE6, name = 'GetViewPort' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x2EBD, offset = 8 + member name = 'm_render' + list[12] = LF_MEMBER, private, type = 0x2EC2, offset = 12 + member name = 'm_device' + list[13] = LF_MEMBER, private, type = 0x2EC7, offset = 16 + member name = 'm_viewPort' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4e3d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e3c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4e3e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e3f : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27EA, Class type = 0x1FD9, This type = 0x29B8, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e40 : Length = 346, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3E, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3F, name = 'GetViewPort' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x207F, offset = 8 + member name = 'm_render' + list[12] = LF_MEMBER, private, type = 0x27DC, offset = 12 + member name = 'm_device' + list[13] = LF_MEMBER, private, type = 0x27EA, offset = 16 + member name = 'm_viewPort' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4e41 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e40, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4e42 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3E, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3F, name = 'GetView' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x207F, offset = 8 + member name = 'm_render' + list[12] = LF_MEMBER, private, type = 0x27DC, offset = 12 + member name = 'm_device' + list[13] = LF_MEMBER, private, type = 0x27EA, offset = 16 + member name = 'm_viewPort' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4e43 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e42, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4e44 : Length = 338, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3E, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3F, name = 'GetView' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x207F, offset = 8 + member name = 'm_render' + list[12] = LF_MEMBER, private, type = 0x27DC, offset = 12 + member name = 'm_device' + list[13] = LF_MEMBER, private, type = 0x27EA, offset = 16 + member name = 'm_view' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4e45 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e44, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4e46 : Length = 342, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x3E23, name = 'Lego3DView' + list[2] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E23, + vfptr offset = 0, name = '~Lego3DView' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4471, name = 'Create' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x3479, name = 'PickROI' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab100' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x448F, name = 'FUN_100ab1b0' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x29B9, name = 'GetViewManager' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3E, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4E3F, name = 'GetView' + list[10] = LF_MEMBER, private, type = T_UINT4(0075), offset = 4 + member name = 'm_unk0x4' + list[11] = LF_MEMBER, private, type = 0x207F, offset = 8 + member name = 'm_renderer' + list[12] = LF_MEMBER, private, type = 0x27DC, offset = 12 + member name = 'm_device' + list[13] = LF_MEMBER, private, type = 0x27EA, offset = 16 + member name = 'm_view' + list[14] = LF_MEMBER, private, type = 0x3E5D, offset = 20 + member name = 'm_unk0x14' + list[15] = LF_MEMBER, private, type = 0x29B7, offset = 136 + member name = 'm_viewManager' + list[16] = LF_MEMBER, private, type = 0x1C7F, offset = 140 + member name = 'm_unk0x8c' + +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +0x4e48 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1283, Class type = 0x127A, This type = 0x127B, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e49 : Length = 826, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x127C, name = 'MxTransitionManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127C, name = '~MxTransitionManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x128D, name = 'SetWaitIndicator' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1281, name = 'Tickle' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x127F, name = 'ClassName' + list[6] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1280, name = 'IsA' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1281, + vfptr offset = 20, name = 'GetDDrawSurfaceFromVideoManager' + list[8] = LF_NESTTYPE, type = 0x1283, TransitionType + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x1285, name = 'StartTransition' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4E48, name = 'GetTransitionType' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x1288, name = 'EndTransition' + list[12] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionNone' + list[13] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionDissolve' + list[14] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionPixelation' + list[15] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionWipe' + list[16] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionWindows' + list[17] = LF_ONEMETHOD, private, VANILLA, index = 0x127C, name = 'TransitionBroken' + list[18] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SubmitCopyRect' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x1293, name = 'SetupCopyRect' + list[20] = LF_MEMBER, private, type = 0x128B, offset = 8 + member name = 'm_waitIndicator' + list[21] = LF_MEMBER, private, type = 0x1D56, offset = 12 + member name = 'm_copyRect' + list[22] = LF_MEMBER, private, type = T_32PUCHAR(0420), offset = 28 + member name = 'm_copyBuffer' + list[23] = LF_MEMBER, private, type = 0x3351, offset = 32 + member name = 'm_copyFlags' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 36 + member name = 'm_unk0x24' + list[25] = LF_MEMBER, private, type = 0x3351, offset = 40 + member name = 'm_unk0x28' + list[26] = LF_MEMBER, private, type = 0x1283, offset = 44 + member name = 'm_transitionType' + list[27] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface' + list[28] = LF_MEMBER, private, type = T_USHORT(0021), offset = 52 + member name = 'm_animationTimer' + list[29] = LF_MEMBER, private, type = 0x1E9E, offset = 54 + member name = 'm_columnOrder' + list[30] = LF_MEMBER, private, type = 0x1E9F, offset = 1334 + member name = 'm_randomShift' + list[31] = LF_MEMBER, private, type = T_ULONG(0022), offset = 2296 + member name = 'm_systemTime' + list[32] = LF_MEMBER, private, type = T_INT4(0074), offset = 2300 + member name = 'm_animationSpeed' + +0x4e4a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x4e49, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +0x4e4b : Length = 10, Leaf = 0x1201 LF_ARGLIST argument count = 1 + list[0] = T_REAL64(0041) + +0x4e4c : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4e4b, This adjust = 0 + +0x4e4d : Length = 1238, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[22] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[23] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[24] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[25] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[26] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[30] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[32] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[34] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[35] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[36] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[39] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[43] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1300 + member name = 'm_unk0x514' + list[44] = LF_MEMBER, private, type = 0x1E7F, offset = 1304 + member name = 'm_pad0x518' + list[45] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[46] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[48] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[49] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[50] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[53] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e4e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4e4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e4f : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x445F, CreateStruct + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4466, name = 'Create' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4E4C, name = 'FUN_100ab4b0' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x446C, name = 'GetViewLODListManager' + list[8] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_renderer' + list[9] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[10] = LF_MEMBER, private, type = 0x27C9, offset = 12 + member name = 'm_viewLODListManager' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x4e50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x4e51 : Length = 1738, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B3B + list[1] = LF_NESTTYPE, type = 0x206A, ErrorHandler + list[2] = LF_NESTTYPE, type = 0x206B, Mode + list[3] = LF_NESTTYPE, type = 0x1785, DeviceModesInfo + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'FlipToGDISurface' + list[5] = LF_ONEMETHOD, public, STATIC, index = 0x175C, name = 'GetPrimaryBitDepth' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'Pause' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'MxDirectDraw' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 0, name = '~MxDirectDraw' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1760, + vfptr offset = 4, name = 'Create' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 8, name = 'Destroy' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x175B, + vfptr offset = 12, name = 'DestroyButNotDirectDraw' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1784, + vfptr offset = 16, name = 'ErrorToString' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'CacheOriginalPaletteEntries' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1772, name = 'CreateDDSurface' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'CreateTextSurfaces' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1781, name = 'CreateZBuffer' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'DDCreateSurfaces' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1769, name = 'DDInit' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x176B, name = 'DDSetMode' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1783, name = 'Error' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1774, name = 'GetDDSurfaceDesc' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x176B, name = 'IsSupportedMode' + list[23] = LF_ONEMETHOD, public, VANILLA, index = 0x1765, name = 'RecreateDirectDraw' + list[24] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'RestoreOriginalPaletteEntries' + list[25] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'RestorePaletteEntries' + list[26] = LF_ONEMETHOD, public, VANILLA, index = 0x1766, name = 'RestoreSurfaces' + list[27] = LF_ONEMETHOD, public, VANILLA, index = 0x1768, name = 'SetPaletteEntries' + list[28] = LF_ONEMETHOD, public, VANILLA, index = 0x177A, name = 'TextToTextSurface' + list[29] = LF_ONEMETHOD, public, VANILLA, index = 0x177B, name = 'TextToTextSurface1' + list[30] = LF_ONEMETHOD, public, VANILLA, index = 0x177B, name = 'TextToTextSurface2' + list[31] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'FUN_1009e020' + list[32] = LF_ONEMETHOD, public, VANILLA, index = 0x175B, name = 'FUN_1009d920' + list[33] = LF_ONEMETHOD, public, VANILLA, index = 0x43B0, name = 'GetDirectDraw' + list[34] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetFrontBuffer' + list[35] = LF_ONEMETHOD, public, VANILLA, index = 0x43B1, name = 'GetBackBuffer' + list[36] = LF_ONEMETHOD, public, VANILLA, index = 0x43B2, name = 'GetClipper' + list[37] = LF_MEMBER, protected, type = T_INT4(0074), offset = 4 + member name = 'm_bOnlySoftRender' + list[38] = LF_MEMBER, protected, type = T_INT4(0074), offset = 8 + member name = 'm_bFlipSurfaces' + list[39] = LF_MEMBER, protected, type = 0x1245, offset = 12 + member name = 'm_pDirectDraw' + list[40] = LF_MEMBER, protected, type = 0x11E7, offset = 16 + member name = 'm_pFrontBuffer' + list[41] = LF_MEMBER, protected, type = 0x11E7, offset = 20 + member name = 'm_pBackBuffer' + list[42] = LF_MEMBER, protected, type = 0x11E7, offset = 24 + member name = 'm_pZBuffer' + list[43] = LF_MEMBER, protected, type = 0x11E7, offset = 28 + member name = 'm_pText1Surface' + list[44] = LF_MEMBER, protected, type = 0x11E7, offset = 32 + member name = 'm_pText2Surface' + list[45] = LF_MEMBER, protected, type = 0x1247, offset = 36 + member name = 'm_pClipper' + list[46] = LF_MEMBER, protected, type = 0x1459, offset = 40 + member name = 'm_pPalette' + list[47] = LF_MEMBER, protected, type = 0x1251, offset = 44 + member name = 'm_paletteEntries' + list[48] = LF_MEMBER, protected, type = 0x1251, offset = 1068 + member name = 'm_originalPaletteEntries' + list[49] = LF_MEMBER, protected, type = 0x1777, offset = 2092 + member name = 'm_text1SizeOnSurface' + list[50] = LF_MEMBER, protected, type = 0x1777, offset = 2100 + member name = 'm_text2SizeOnSurface' + list[51] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2108 + member name = 'm_hWndMain' + list[52] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2112 + member name = 'm_hFont' + list[53] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2116 + member name = 'm_bIgnoreWMSIZE' + list[54] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2120 + member name = 'm_bPrimaryPalettized' + list[55] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2124 + member name = 'm_bFullScreen' + list[56] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2128 + member name = 'm_unk0x850' + list[57] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2132 + member name = 'm_bOnlySystemMemory' + list[58] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2136 + member name = 'm_bIsOnPrimaryDevice' + list[59] = LF_MEMBER, protected, type = 0x206A, offset = 2140 + member name = 'm_pErrorHandler' + list[60] = LF_MEMBER, protected, type = 0x206A, offset = 2144 + member name = 'm_pFatalErrorHandler' + list[61] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2148 + member name = 'm_pErrorHandlerArg' + list[62] = LF_MEMBER, protected, type = T_32PVOID(0403), offset = 2152 + member name = 'm_pFatalErrorHandlerArg' + list[63] = LF_MEMBER, protected, type = T_INT4(0074), offset = 2156 + member name = 'm_pauseCount' + list[64] = LF_MEMBER, protected, type = 0x206C, offset = 2160 + member name = 'm_pCurrentDeviceModesList' + list[65] = LF_MEMBER, protected, type = 0x206B, offset = 2164 + member name = 'm_currentMode' + +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +0x4e53 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x11E7, Class type = 0x1294, This type = T_NOTYPE(0000), + Call type = C Near, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e54 : Length = 1262, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[22] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[23] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[24] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[25] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[26] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[27] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[28] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[31] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[33] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[35] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[36] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[37] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[39] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[40] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[44] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[45] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[46] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[47] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[48] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[49] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[50] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[51] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[52] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[54] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e55 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4e54, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e56 : Length = 730, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'MxDisplaySurface' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1708, name = '~MxDisplaySurface' + list[3] = LF_METHOD, count = 2, list = 0x3F1B, name = 'Init' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170B, + vfptr offset = 24, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1708, + vfptr offset = 28, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x170C, + vfptr offset = 32, name = 'SetPalette' + list[7] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171C, + vfptr offset = 36, name = 'VTable0x24' + list[8] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F3B, + vfptr offset = 40, name = 'VTable0x28' + list[9] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171E, + vfptr offset = 44, name = 'VTable0x2c' + list[10] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3F09, + vfptr offset = 48, name = 'VTable0x30' + list[11] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1712, + vfptr offset = 52, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CED, + vfptr offset = 56, name = 'Display' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1716, + vfptr offset = 60, name = 'GetDC' + list[14] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x1717, + vfptr offset = 64, name = 'ReleaseDC' + list[15] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x171A, + vfptr offset = 68, name = 'VTable0x44' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1708, name = 'FUN_100ba640' + list[17] = LF_ONEMETHOD, public, STATIC, index = 0x4E53, name = 'FUN_100bc070' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface1' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x2004, name = 'GetDirectDrawSurface2' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x3691, name = 'GetVideoParam' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountTotalBitsSetTo1' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3F47, name = 'CountContiguousBitsSetTo1' + list[23] = LF_MEMBER, private, type = 0x1220, offset = 8 + member name = 'm_videoParam' + list[24] = LF_MEMBER, private, type = 0x11E7, offset = 44 + member name = 'm_ddSurface1' + list[25] = LF_MEMBER, private, type = 0x11E7, offset = 48 + member name = 'm_ddSurface2' + list[26] = LF_MEMBER, private, type = 0x1247, offset = 52 + member name = 'm_ddClipper' + list[27] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 56 + member name = 'm_initialized' + list[28] = LF_MEMBER, private, type = 0x1290, offset = 60 + member name = 'm_surfaceDesc' + list[29] = LF_MEMBER, private, type = T_32PUSHORT(0421), offset = 168 + member name = 'm_16bitPal' + +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +0x4e58 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x4e59 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e58, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x4e5a : Length = 406, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x4e5b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x4e5c : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x4e5d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x4e5e : Length = 422, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x4e5f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x4e60 : Length = 430, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x4e61 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x4e62 : Length = 450, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[22] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x4e63 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e62, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x4e64 : Length = 414, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Next' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Advance' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Retreat' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Tail' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[19] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[20] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[21] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x4e65 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e64, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x4e66 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL64(0041), Class type = 0x1E77, This type = 0x1FDB, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x4e4b, This adjust = 0 + +0x4e67 : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x1B52 + list[1] = LF_NESTTYPE, type = 0x445F, CreateStruct + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x3E28, name = 'Lego3DManager' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3E28, + vfptr offset = 0, name = '~Lego3DManager' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4466, name = 'Create' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4E66, name = 'FUN_100ab4b0' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1FDC, name = 'GetLego3DView' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x446C, name = 'GetViewLODListManager' + list[8] = LF_MEMBER, private, type = 0x207F, offset = 4 + member name = 'm_renderer' + list[9] = LF_MEMBER, private, type = 0x1FDA, offset = 8 + member name = 'm_3dView' + list[10] = LF_MEMBER, private, type = 0x27C9, offset = 12 + member name = 'm_viewLODListManager' + list[11] = LF_ONEMETHOD, private, VANILLA, index = 0x3E28, name = 'Destroy' + +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +0x4e69 : Length = 1278, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[23] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[24] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[25] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[27] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[28] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[32] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[34] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[36] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[37] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[38] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[39] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[45] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[47] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[48] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[49] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[50] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[51] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[52] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[55] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e6a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e69, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e6b : Length = 1294, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'rong' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[24] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[25] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[26] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[28] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[29] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[33] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[35] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[37] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[38] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[39] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[41] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[46] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[48] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[49] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[50] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[51] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[52] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[53] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[56] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e6c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e6b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e6d : Length = 1310, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'rong' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'zong' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[25] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[26] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[27] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[29] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[30] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[34] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[36] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[38] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[39] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[40] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[41] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[46] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[47] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[48] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[49] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[50] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[51] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[52] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[53] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[54] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[56] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[57] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e6e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 59, field list type 0x4e6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e6f : Length = 442, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1759, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'MxDirect3D' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = '~MxDirect3D' + list[3] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178E, name = 'Create' + list[4] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'Destroy' + list[5] = LF_ONEMETHOD, public, VIRTUAL, index = 0x178D, name = 'DestroyButNotDirectDraw' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'CreateIDirect3D' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x178F, name = 'D3DSetMode' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4D05, name = 'GetZBufferBitDepth' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4BD5, name = 'SetDevice' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4CEF, name = 'GetAssignedDevice' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4D0F, name = 'GetDirect3D' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4D15, name = 'GetDirect3DDevice' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x178D, name = 'RestoreSurfacesWong' + list[14] = LF_MEMBER, private, type = 0x4CEE, offset = 2176 + member name = 'm_assignedDevice' + list[15] = LF_MEMBER, private, type = 0x4792, offset = 2180 + member name = 'm_pDirect3d' + list[16] = LF_MEMBER, private, type = 0x47A4, offset = 2184 + member name = 'm_pDirect3dDevice' + list[17] = LF_MEMBER, private, type = T_INT4(0074), offset = 2188 + member name = 'm_unk0x88c' + list[18] = LF_MEMBER, private, type = T_UINT4(0075), offset = 2192 + member name = 'm_unk0x890' + +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +0x4e71 : Length = 1330, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'rong' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'zong' + list[22] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dingdong' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[25] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[26] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[27] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[28] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[29] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[30] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[31] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[35] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[37] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[38] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[39] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[40] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[41] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[43] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[46] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[47] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[48] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[49] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[50] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[51] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[52] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[53] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[54] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[55] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[56] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[57] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[58] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e72 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 60, field list type 0x4e71, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e73 : Length = 1314, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'rong' + list[21] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dingdong' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[24] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[25] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[26] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[27] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[28] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[29] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[30] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[34] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[36] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[37] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[38] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[39] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[40] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[41] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[42] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[46] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[47] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[48] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[49] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[50] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[51] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[52] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[53] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[54] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[56] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[57] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e74 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 59, field list type 0x4e73, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e75 : Length = 1298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dingdong' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[24] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[25] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[26] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[28] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[29] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[33] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[35] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[37] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[38] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[39] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[41] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[46] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[48] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[49] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[50] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[51] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[52] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[53] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[56] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e76 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e75, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e77 : Length = 1298, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'rong' + list[20] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'dingdong' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[23] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[24] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[25] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[26] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[27] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[28] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[29] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[32] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[33] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[34] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[35] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[36] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[37] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[38] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[39] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[41] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[45] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[46] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[47] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[48] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[49] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[50] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[51] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[52] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[53] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[55] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[56] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e78 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e77, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e79 : Length = 1282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'CursorMoved' + list[23] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[24] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[25] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[27] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[28] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[32] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[34] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[36] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[37] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[38] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[39] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_cursorMoved' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[45] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[47] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[48] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[49] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[50] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[51] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[52] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[55] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e7a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e79, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e7b : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x269E, + list[1] = public, VANILLA, 0x269F, + +0x4e7c : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x269B, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x269C, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E7B, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E7B, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x269E, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x269F, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x26A0, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x16AD, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x163E, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x2694, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x16AD, name = '~MxListCursor' + +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +0x4e7e : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x26E0, + list[1] = public, VANILLA, 0x26E1, + +0x4e7f : Length = 374, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x26DD, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x26DE, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E7E, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E7E, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x26E0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x26E1, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x26E2, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1663, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x165C, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x166B, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1663, name = '~MxListCursor' + +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +0x4e81 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x2711, + list[1] = public, VANILLA, 0x2712, + +0x4e82 : Length = 386, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x270D, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x270E, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E81, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E81, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x2711, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x2712, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x2713, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x15A7, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x123C, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1C75, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x15A7, name = '~MxListCursor' + +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +0x4e84 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x271A, + list[1] = public, VANILLA, 0x271B, + +0x4e85 : Length = 390, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2716, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2717, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E84, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E84, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x271A, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x271B, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x271C, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x158D, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x1587, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1EE2, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x158D, name = '~MxListCursor' + +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +0x4e87 : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x272B, + list[1] = public, VANILLA, 0x272C, + +0x4e88 : Length = 398, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x2727, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2728, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E87, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E87, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x272B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x272C, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x272D, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x13F5, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x13ED, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x141E, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x13F5, name = '~MxListCursor' + +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +0x4e8a : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x273B, + list[1] = public, VANILLA, 0x273C, + +0x4e8b : Length = 418, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1411, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x2738, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E8A, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E8A, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x273B, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x273C, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x273D, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1413, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x140A, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x1423, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x1419, name = 'operator=' + list[20] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x1413, name = '~MxListCursor' + +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +0x4e8d : Length = 18, Leaf = 0x1206 LF_METHODLIST + list[0] = public, VANILLA, 0x35C0, + list[1] = public, VANILLA, 0x35C1, + +0x4e8e : Length = 382, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x35BC, name = 'MxListCursor' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x35BD, name = 'Find' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Detach' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Destroy' + list[5] = LF_METHOD, count = 2, list = 0x4E8D, name = 'Next' + list[6] = LF_METHOD, count = 2, list = 0x4E8D, name = 'Prev' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Current' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'First' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x35C0, name = 'Last' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'HasMatch' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'SetValue' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Head' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x35C1, name = 'Tail' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'Reset' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x35C2, name = 'Prepend' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x35A0, name = 'NextFragment' + list[17] = LF_MEMBER, private, type = 0x35BA, offset = 8 + member name = 'm_list' + list[18] = LF_MEMBER, private, type = 0x35B0, offset = 12 + member name = 'm_match' + list[19] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x35A0, name = '~MxListCursor' + +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +0x4e90 : Length = 1282, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'FUN_1007bbc0' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'DrawCursor' + list[23] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[24] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[25] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[27] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[28] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[32] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[34] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[36] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[37] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[38] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[39] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_drawCursor' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[45] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[47] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[48] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[49] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[50] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[51] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[52] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[55] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e91 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e90, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e92 : Length = 1274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x1231, offset = 0 + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x1848, name = 'LegoVideoManager' + list[2] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = '~LegoVideoManager' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'EnableRMDevice' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x1851, name = 'DisableRMDevice' + list[5] = LF_METHOD, count = 2, list = 0x1E76, name = 'EnableFullScreenMovie' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x1849, name = 'MoveCursor' + list[7] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE0, name = 'Tickle' + list[8] = LF_ONEMETHOD, public, VIRTUAL, index = 0x1848, name = 'Destroy' + list[9] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CDF, name = 'Create' + list[10] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE2, name = 'RealizePalette' + list[11] = LF_ONEMETHOD, public, VIRTUAL, index = 0x3CE3, name = 'VTable0x34' + list[12] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x3CE1, + vfptr offset = 56, name = 'VTable0x38' + list[13] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x43C5, + vfptr offset = 60, name = 'VTable0x3c' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x184E, name = 'SetSkyColor' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'OverrideSkyColor' + list[16] = LF_ONEMETHOD, public, VANILLA, index = 0x1E79, name = 'Get3DManager' + list[17] = LF_ONEMETHOD, public, VANILLA, index = 0x1E7B, name = 'GetDirect3D' + list[18] = LF_ONEMETHOD, public, VANILLA, index = 0x184A, name = 'SetUnkE4' + list[19] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'CreateDirect3D' + list[20] = LF_ONEMETHOD, private, VANILLA, index = 0x3CE0, name = 'ConfigureD3DRM' + list[21] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'DrawFPS' + list[22] = LF_ONEMETHOD, private, VANILLA, index = 0x1848, name = 'DrawCursor' + list[23] = LF_MEMBER, private, type = 0x207F, offset = 100 + member name = 'm_renderer' + list[24] = LF_MEMBER, private, type = 0x1E78, offset = 104 + member name = 'm_3dManager' + list[25] = LF_MEMBER, private, type = 0x1910, offset = 108 + member name = 'm_viewROI' + list[26] = LF_MEMBER, private, type = T_UINT4(0075), offset = 112 + member name = 'm_unk0x70' + list[27] = LF_MEMBER, private, type = 0x1E7A, offset = 116 + member name = 'm_direct3d' + list[28] = LF_MEMBER, private, type = 0x1E7C, offset = 120 + member name = 'm_unk0x78' + list[29] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 228 + member name = 'm_unk0xe4' + list[30] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 229 + member name = 'm_unk0xe5' + list[31] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 230 + member name = 'm_unk0xe6' + list[32] = LF_MEMBER, private, type = 0x1251, offset = 231 + member name = 'm_paletteEntries' + list[33] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1255 + member name = 'm_padding0x4e7' + list[34] = LF_MEMBER, private, type = 0x43C4, offset = 1256 + member name = 'm_unk0x100d9d00' + list[35] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1260 + member name = 'm_isFullscreenMovie' + list[36] = LF_MEMBER, private, type = 0x1225, offset = 1264 + member name = 'm_palette' + list[37] = LF_MEMBER, private, type = 0x4478, offset = 1268 + member name = 'm_stopWatch' + list[38] = LF_MEMBER, private, type = T_REAL64(0041), offset = 1272 + member name = 'm_elapsedSeconds' + list[39] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1280 + member name = 'm_unk0x500' + list[40] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1281 + member name = 'm_drawCursor' + list[41] = LF_MEMBER, private, type = T_INT4(0074), offset = 1284 + member name = 'm_cursorXCopy' + list[42] = LF_MEMBER, private, type = T_INT4(0074), offset = 1288 + member name = 'm_cursorYCopy' + list[43] = LF_MEMBER, private, type = T_INT4(0074), offset = 1292 + member name = 'm_cursorX' + list[44] = LF_MEMBER, private, type = T_INT4(0074), offset = 1296 + member name = 'm_cursorY' + list[45] = LF_MEMBER, private, type = 0x11E7, offset = 1300 + member name = 'm_unk0x514' + list[46] = LF_MEMBER, private, type = 0x1D56, offset = 1304 + member name = 'm_unk0x518' + list[47] = LF_MEMBER, private, type = T_UINT4(0075), offset = 1320 + member name = 'm_unk0x528' + list[48] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1324 + member name = 'm_drawFPS' + list[49] = LF_MEMBER, private, type = 0x1D56, offset = 1328 + member name = 'm_fpsRect' + list[50] = LF_MEMBER, private, type = T_32PVOID(0403), offset = 1344 + member name = 'm_arialFont' + list[51] = LF_MEMBER, private, type = 0x1777, offset = 1348 + member name = 'm_fpsSize' + list[52] = LF_MEMBER, private, type = 0x1788, offset = 1356 + member name = 'm_pad0x54c' + list[53] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1364 + member name = 'm_unk0x554' + list[54] = LF_MEMBER, private, type = T_UCHAR(0020), offset = 1365 + member name = 'm_initialized' + list[55] = LF_MEMBER, private, type = 0x1E80, offset = 1366 + member name = 'm_pad0x556' + +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +0x4e94 : Length = 14, Leaf = 0x1503 LF_ARRAY + Element type = T_INT4(0074) + Index type = T_SHORT(0011) + length = 404 + Name = + +0x4e95 : Length = 198, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_METHOD, count = 2, list = 0x14F9, name = 'MxAtomId' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x14FB, name = 'operator=' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x14F6, name = '~MxAtomId' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x14FD, name = 'operator==' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x14FD, name = 'operator!=' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x14F6, name = 'Clear' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x14FE, name = 'GetInternal' + list[7] = LF_ONEMETHOD, private, VANILLA, index = 0x14FF, name = 'GetCounter' + list[8] = LF_ONEMETHOD, private, VANILLA, index = 0x14F6, name = 'Destroy' + list[9] = LF_MEMBER, private, type = T_32PRCHAR(0470), offset = 0 + member name = 'm_internal' + +0x4e96 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4e95, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = MxAtomId, UDT(0x00004e96) + +0x4e97 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x3D38 + +0x4e98 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4E97 + +0x4e99 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_32PRCHAR(0470), Class type = 0x3D38, This type = 0x4E98, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e9a : Length = 74, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_BCLASS, public, type = 0x10AD, offset = 0 + list[1] = LF_ONEMETHOD, public, VIRTUAL, index = 0x4E99, name = 'ClassName' + list[2] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x3DEB, name = 'Act3Actor' + list[3] = LF_ONEMETHOD, public, VIRTUAL, (compgenx), index = 0x3DEB, name = '~Act3Actor' + +0x4e9b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4e9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = Act3Actor, UDT(0x00004e9b) + +0x4e9c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = TglSurface, UDT(0x00004ebd) + +0x4e9d : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4E9C + +0x4e9e : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4E9C, This type = 0x4E9D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4e9f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 0, field list type 0x0000, FORWARD REF, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 0, class name = MxFrequencyMeter, UDT(0x00004eb0) + +0x4ea0 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4E9F + +0x4ea1 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4E9F, This type = 0x4EA0, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ea2 : Length = 14, Leaf = 0x1008 LF_PROCEDURE + Return type = T_INT4(0074), Call type = C Near + Func attr = none + # Parms = 1, Arg list type = 0x1d54 + +0x4ea3 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x445B + +0x4ea4 : Length = 10, Leaf = 0x1002 LF_POINTER + L-value Reference (NEAR32), Size: 0 + Element type : 0x4EA3 + +0x4ea5 : Length = 18, Leaf = 0x1201 LF_ARGLIST argument count = 3 + list[0] = 0x4EA4 + list[1] = 0x207F + list[2] = 0x1029 + +0x4ea6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_INT4(0074), Class type = 0x4E9C, This type = 0x4E9D, + Call type = ThisCall, Func attr = none + Parms = 3, Arg list type = 0x4ea5, This adjust = 0 + +0x4ea7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL64(0041), Class type = 0x4E9C, This type = 0x4E9D, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ea8 : Length = 242, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_MEMBER, public, type = 0x2131, offset = 0 + member name = 'm_pDriverGUID' + list[1] = LF_MEMBER, public, type = T_32PVOID(0403), offset = 4 + member name = 'm_hWnd' + list[2] = LF_MEMBER, public, type = 0x1245, offset = 8 + member name = 'm_pDirectDraw' + list[3] = LF_MEMBER, public, type = 0x11E7, offset = 12 + member name = 'm_pFrontBuffer' + list[4] = LF_MEMBER, public, type = 0x11E7, offset = 16 + member name = 'm_pBackBuffer' + list[5] = LF_MEMBER, public, type = 0x1459, offset = 20 + member name = 'm_pPalette' + list[6] = LF_MEMBER, public, type = T_INT4(0074), offset = 24 + member name = 'm_isFullScreen' + list[7] = LF_MEMBER, public, type = T_ULONG(0022), offset = 28 + member name = 'm_flags' + list[8] = LF_MEMBER, public, type = 0x4792, offset = 32 + member name = 'm_direct3d' + list[9] = LF_MEMBER, public, type = 0x47A4, offset = 36 + member name = 'm_d3dDevice' + +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +0x4eaa : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4E9F + +0x4eab : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4EAA + +0x4eac : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL64(0041), Class type = 0x4E9F, This type = 0x4EAB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4ead : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4E9F, This type = 0x4EAB, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eae : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_VOID(0003), Class type = 0x4E9F, This type = 0x4EA0, + Call type = ThisCall, Func attr = none + Parms = 1, Arg list type = 0x13cd, This adjust = 0 + +0x4eaf : Length = 274, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_ONEMETHOD, public, VANILLA, index = 0x4EA1, name = 'MxFrequencyMeter' + list[1] = LF_ONEMETHOD, public, VANILLA, index = 0x4EA1, name = 'StartOperation' + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4EA1, name = 'EndOperation' + list[3] = LF_ONEMETHOD, public, VANILLA, index = 0x4EAC, name = 'Frequency' + list[4] = LF_ONEMETHOD, public, VANILLA, index = 0x4EA1, name = 'Reset' + list[5] = LF_ONEMETHOD, public, VANILLA, index = 0x4EAD, name = 'OperationCount' + list[6] = LF_ONEMETHOD, public, VANILLA, index = 0x4EAC, name = 'ElapsedSeconds' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x4EAE, name = 'IncreaseOperationCount' + list[8] = LF_MEMBER, private, type = T_ULONG(0022), offset = 0 + member name = 'm_operationCount' + list[9] = LF_MEMBER, private, type = 0x4477, offset = 8 + member name = 'm_stopWatch' + list[10] = LF_ONEMETHOD, public, VANILLA, (compgenx), index = 0x4EA1, name = '~MxFrequencyMeter' + +0x4eb0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4eaf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = MxFrequencyMeter, UDT(0x00004eb0) + +0x4eb1 : Length = 10, Leaf = 0x1002 LF_POINTER + Pointer (NEAR32), Size: 0 + Element type : 0x1BF4 + +0x4eb2 : Length = 10, Leaf = 0x1001 LF_MODIFIER + const, modifies type 0x4E9C + +0x4eb3 : Length = 10, Leaf = 0x1002 LF_POINTER + const Pointer (NEAR32), Size: 0 + Element type : 0x4EB2 + +0x4eb4 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x207F, Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eb5 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27DC, Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eb6 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27EA, Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eb7 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x1029, Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eb8 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_ULONG(0022), Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eb9 : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = T_REAL64(0041), Class type = 0x4E9C, This type = 0x4EB3, + Call type = ThisCall, Func attr = none + Parms = 0, Arg list type = 0x1023, This adjust = 0 + +0x4eba : Length = 14, Leaf = 0x1201 LF_ARGLIST argument count = 2 + list[0] = 0x207F + list[1] = 0x27DC + +0x4ebb : Length = 26, Leaf = 0x1009 LF_MFUNCTION + Return type = 0x27EA, Class type = 0x4E9C, This type = 0x4E9D, + Call type = ThisCall, Func attr = none + Parms = 2, Arg list type = 0x4eba, This adjust = 0 + +0x4ebc : Length = 642, Leaf = 0x1203 LF_FIELDLIST + list[0] = LF_VFUNCTAB, type = 0x4EB1 + list[1] = LF_NESTTYPE, type = 0x445B, CreateStruct + list[2] = LF_ONEMETHOD, public, VANILLA, index = 0x4E9E, name = 'TglSurface' + list[3] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E9E, + vfptr offset = 0, name = '~TglSurface' + list[4] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4EA6, + vfptr offset = 4, name = 'Create' + list[5] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4E9E, + vfptr offset = 8, name = 'Destroy' + list[6] = LF_ONEMETHOD, public, INTRODUCING VIRTUAL, index = 0x4EA7, + vfptr offset = 12, name = 'Render' + list[7] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB4, name = 'GetRenderer' + list[8] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB5, name = 'GetDevice' + list[9] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB6, name = 'GetView' + list[10] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB7, name = 'GetScene' + list[11] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB8, name = 'GetWidth' + list[12] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB8, name = 'GetHeight' + list[13] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB9, name = 'GetRenderingRate' + list[14] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB9, name = 'GetFrameRate' + list[15] = LF_ONEMETHOD, public, VANILLA, index = 0x4EB8, name = 'GetFrameCount' + list[16] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x4EBB, + vfptr offset = 16, name = 'CreateView' + list[17] = LF_ONEMETHOD, protected, INTRODUCING VIRTUAL, index = 0x4E9E, + vfptr offset = 20, name = 'DestroyView' + list[18] = LF_MEMBER, private, type = 0x207F, offset = 8 + member name = 'm_pRenderer' + list[19] = LF_MEMBER, private, type = 0x27DC, offset = 12 + member name = 'm_pDevice' + list[20] = LF_MEMBER, private, type = 0x27EA, offset = 16 + member name = 'm_pView' + list[21] = LF_MEMBER, private, type = 0x1029, offset = 20 + member name = 'm_pScene' + list[22] = LF_MEMBER, private, type = T_ULONG(0022), offset = 24 + member name = 'm_width' + list[23] = LF_MEMBER, private, type = T_ULONG(0022), offset = 28 + member name = 'm_height' + list[24] = LF_MEMBER, private, type = T_INT4(0074), offset = 32 + member name = 'm_isInitialized' + list[25] = LF_MEMBER, private, type = T_INT4(0074), offset = 36 + member name = 'm_stopRendering' + list[26] = LF_MEMBER, private, type = 0x4E9F, offset = 40 + member name = 'm_renderingRateMeter' + list[27] = LF_MEMBER, private, type = 0x4E9F, offset = 72 + member name = 'm_frameRateMeter' + list[28] = LF_MEMBER, private, type = T_ULONG(0022), offset = 104 + member name = 'm_frameCount' + +0x4ebd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x4ebc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 112, class name = TglSurface, UDT(0x00004ebd) + + +*** TYPES Mismatch Warnings + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x10b5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 46, field list type 0x10b3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x121a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x1219, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxListCursorChildChild +<<<<<< +0x1241 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x123f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x00002709) + +****** +0x2709 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChildChild, UDT(0x00002709) + +>>>>>> + +WARNING: UDT mismatch for MxString +<<<<<< +0x12db : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x12da, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxString, UDT(0x00004427) + +****** +0x4427 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4426, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxString, UDT(0x00004427) + +>>>>>> + +WARNING: UDT mismatch for MxAtomId +<<<<<< +0x1501 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1500, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = MxAtomId, UDT(0x00004e96) + +****** +0x4e96 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4e95, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = MxAtomId, UDT(0x00004e96) + +>>>>>> + +WARNING: UDT mismatch for MxNotificationPtrList +<<<<<< +0x1544 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1543, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxNotificationPtrList, UDT(0x00003758) + +****** +0x3758 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x3757, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxNotificationPtrList, UDT(0x00003758) + +>>>>>> + +WARNING: UDT mismatch for MxListCursorChild +<<<<<< +0x158b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x158a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00001fb3) + +****** +0x1fb3 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1fb2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x00001fb3) + +>>>>>> + +WARNING: UDT mismatch for MxListCursorChild +<<<<<< +0x1643 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1642, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x0000167f) + +****** +0x167f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x167e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursorChild, UDT(0x0000167f) + +>>>>>> + +WARNING: UDT mismatch for MxPalette +<<<<<< +0x17db : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x17da, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 1044, class name = MxPalette, UDT(0x00003f54) + +****** +0x3f54 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3f53, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 1044, class name = MxPalette, UDT(0x00003f54) + +>>>>>> + +WARNING: UDT mismatch for LegoEventNotificationParam +<<<<<< +0x1997 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1996, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 32, class name = LegoEventNotificationParam, UDT(0x00003252) + +****** +0x3252 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3251, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 32, class name = LegoEventNotificationParam, UDT(0x00003252) + +>>>>>> + +WARNING: UDT mismatch for LegoFileStream +<<<<<< +0x19d1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x19cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 12, class name = LegoFileStream, UDT(0x00003747) + +****** +0x3747 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3746, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 12, class name = LegoFileStream, UDT(0x00003747) + +>>>>>> + +WARNING: UDT mismatch for LegoState +<<<<<< +0x1b4e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1b4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = LegoState, UDT(0x00003304) + +****** +0x3304 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3303, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = LegoState, UDT(0x00003304) + +>>>>>> + +WARNING: UDT mismatch for Act1State +<<<<<< +0x1b50 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1b4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = Act1State, UDT(0x0000346c) + +****** +0x346c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x346b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = Act1State, UDT(0x0000346c) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x1bf0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x1bee, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for Vector2Impl +<<<<<< +0x1c0e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x1c0d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c02 + Size = 8, class name = Vector2Impl, UDT(0x000033c2) + +****** +0x33c2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x33c1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c02 + Size = 8, class name = Vector2Impl, UDT(0x000033c2) + +>>>>>> + +WARNING: UDT mismatch for Vector3Impl +<<<<<< +0x1c12 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x1c10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 8, class name = Vector3Impl, UDT(0x000033a5) + +****** +0x33a5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33a4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 8, class name = Vector3Impl, UDT(0x000033a5) + +>>>>>> + +WARNING: UDT mismatch for Vector4Impl +<<<<<< +0x1c15 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1c13, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c14 + Size = 8, class name = Vector4Impl, UDT(0x0000345a) + +****** +0x345a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3459, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c14 + Size = 8, class name = Vector4Impl, UDT(0x0000345a) + +>>>>>> + +WARNING: UDT mismatch for Vector3Data +<<<<<< +0x1c1e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c1d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 20, class name = Vector3Data, UDT(0x0000339d) + +****** +0x339d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x339c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 20, class name = Vector3Data, UDT(0x0000339d) + +>>>>>> + +WARNING: UDT mismatch for LegoEntity +<<<<<< +0x1c21 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x1c1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +****** +0x3cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +>>>>>> + +WARNING: UDT mismatch for LegoActor +<<<<<< +0x1c24 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1c22, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = LegoActor, UDT(0x00003258) + +****** +0x3258 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3257, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = LegoActor, UDT(0x00003258) + +>>>>>> + +WARNING: UDT mismatch for LegoPathActor +<<<<<< +0x1c28 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x1c26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +****** +0x33c9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 43, field list type 0x33c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +>>>>>> + +WARNING: UDT mismatch for LegoROI +<<<<<< +0x1c2f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c2e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = LegoROI, UDT(0x00004493) + +****** +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +>>>>>> + +WARNING: UDT mismatch for Act2PoliceStation +<<<<<< +0x1c35 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1c34, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = Act2PoliceStation, UDT(0x00003d82) + +****** +0x3d82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3d81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = Act2PoliceStation, UDT(0x00003d82) + +>>>>>> + +WARNING: UDT mismatch for LegoCameraController +<<<<<< +0x1c37 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c36, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoCameraController, UDT(0x000033cd) + +****** +0x33cd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33cc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoCameraController, UDT(0x000033cd) + +>>>>>> + +WARNING: UDT mismatch for LegoPathControllerList +<<<<<< +0x1c3b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1c3a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoPathControllerList, UDT(0x000035e0) + +****** +0x35e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoPathControllerList, UDT(0x000035e0) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x1c3f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1c3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035e3) + +****** +0x35e3 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35e2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035e3) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x1c4b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1c4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +****** +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x1c4e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1c4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035e8) + +****** +0x35e8 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x35e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035e8) + +>>>>>> + +WARNING: UDT mismatch for MxOmni +<<<<<< +0x1c5e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x1c5d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +****** +0x34bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +>>>>>> + +WARNING: UDT mismatch for MxPoint32 +<<<<<< +0x1c64 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1c63, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +****** +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +>>>>>> + +WARNING: UDT mismatch for MxPresenter +<<<<<< +0x1c6b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x1c69, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +****** +0x3cfc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x3cfb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x1c6f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1c6e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035eb) + +****** +0x35eb : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035eb) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x1c7b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1c7a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +****** +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x1c7e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1c7d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035f1) + +****** +0x35f1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x35f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x000035f1) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x1c83 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x1c81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for Act3 +<<<<<< +0x1c89 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1c88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +****** +0x33d4 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x33d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x1ca5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 26, field list type 0x1ca3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x1cab : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1caa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxPresenterList +<<<<<< +0x1cad : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1cac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPresenterList, UDT(0x000035f4) + +****** +0x35f4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35f3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPresenterList, UDT(0x000035f4) + +>>>>>> + +WARNING: UDT mismatch for MxNotificationManager +<<<<<< +0x1cdc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1cdb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 64, class name = MxNotificationManager, UDT(0x0000374c) + +****** +0x374c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x374b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 60, class name = MxNotificationManager, UDT(0x0000374c) + +>>>>>> + +WARNING: UDT mismatch for MxTickleManager +<<<<<< +0x1cde : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x1cdd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 20, class name = MxTickleManager, UDT(0x0000374f) + +****** +0x374f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x374e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 16, class name = MxTickleManager, UDT(0x0000374f) + +>>>>>> + +WARNING: UDT mismatch for MxTimer +<<<<<< +0x1ce0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1cdf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxTimer, UDT(0x00003350) + +****** +0x3350 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x334f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxTimer, UDT(0x00003350) + +>>>>>> + +WARNING: UDT mismatch for MxStreamer +<<<<<< +0x1cea : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x1ce9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +****** +0x3727 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3726, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +>>>>>> + +WARNING: UDT mismatch for MxSoundManager +<<<<<< +0x1cf4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1cf2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 60, class name = MxSoundManager, UDT(0x00003264) + +****** +0x3264 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3263, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 60, class name = MxSoundManager, UDT(0x00003264) + +>>>>>> + +WARNING: UDT mismatch for MxVideoManager +<<<<<< +0x1cfc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x1cfa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +****** +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +>>>>>> + +WARNING: UDT mismatch for MxMusicManager +<<<<<< +0x1d02 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x1d01, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +****** +0x334c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x334b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +>>>>>> + +WARNING: UDT mismatch for MxAtomIdCounterSet +<<<<<< +0x1d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x1d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxAtomIdCounterSet, UDT(0x00003752) + +****** +0x3752 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x3751, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxAtomIdCounterSet, UDT(0x00003752) + +>>>>>> + +WARNING: UDT mismatch for Act3State +<<<<<< +0x1d19 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d18, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = Act3State, UDT(0x0000326a) + +****** +0x326a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3269, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = Act3State, UDT(0x0000326a) + +>>>>>> + +WARNING: UDT mismatch for IslePathActor +<<<<<< +0x1d1e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x1d1c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +****** +0x33d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +>>>>>> + +WARNING: UDT mismatch for Ambulance +<<<<<< +0x1d20 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x1d1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +****** +0x346e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x346d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +>>>>>> + +WARNING: UDT mismatch for AmbulanceMissionState +<<<<<< +0x1d24 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1d23, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +****** +0x3470 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x346f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +>>>>>> + +WARNING: UDT mismatch for AnimState +<<<<<< +0x1d26 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1d25, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = AnimState, UDT(0x00003472) + +****** +0x3472 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3471, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = AnimState, UDT(0x00003472) + +>>>>>> + +WARNING: UDT mismatch for BeachHouseEntity +<<<<<< +0x1d2e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d2d, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = BeachHouseEntity, UDT(0x00003d8a) + +****** +0x3d8a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3d89, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = BeachHouseEntity, UDT(0x00003d8a) + +>>>>>> + +WARNING: UDT mismatch for Bike +<<<<<< +0x1d30 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1d2f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +****** +0x3d8c : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d8b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +>>>>>> + +WARNING: UDT mismatch for LegoRace +<<<<<< +0x1d34 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x1d32, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +****** +0x3e0a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3e09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +>>>>>> + +WARNING: UDT mismatch for CarRace +<<<<<< +0x1d36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1d35, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = CarRace, UDT(0x00003e0d) + +****** +0x3e0d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 340, class name = CarRace, UDT(0x00003e0d) + +>>>>>> + +WARNING: UDT mismatch for DuneBuggy +<<<<<< +0x1d38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1d37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +****** +0x3d93 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3d92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +>>>>>> + +WARNING: UDT mismatch for GasStationState +<<<<<< +0x1d3f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1d3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = GasStationState, UDT(0x00003d98) + +****** +0x3d98 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3d97, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = GasStationState, UDT(0x00003d98) + +>>>>>> + +WARNING: UDT mismatch for GifMap +<<<<<< +0x1d44 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d43, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = GifMap, UDT(0x00003278) + +****** +0x3278 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3277, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = GifMap, UDT(0x00003278) + +>>>>>> + +WARNING: UDT mismatch for GifManagerBase +<<<<<< +0x1d4d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1d4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = GifManagerBase, UDT(0x0000327a) + +****** +0x327a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3279, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = GifManagerBase, UDT(0x0000327a) + +>>>>>> + +WARNING: UDT mismatch for GifManager +<<<<<< +0x1d50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1d4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +****** +0x32e2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x32e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +>>>>>> + +WARNING: UDT mismatch for Matrix4Impl +<<<<<< +0x1e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x1e46, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 8, class name = Matrix4Impl, UDT(0x000033d8) + +****** +0x33d8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x33d7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 8, class name = Matrix4Impl, UDT(0x000033d8) + +>>>>>> + +WARNING: UDT mismatch for Helicopter +<<<<<< +0x1e4c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x1e4b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +****** +0x33da : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +>>>>>> + +WARNING: UDT mismatch for LegoAnimationManager +<<<<<< +0x1e4e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1e4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoAnimationManager, UDT(0x000033dc) + +****** +0x33dc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x33db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = LegoAnimationManager, UDT(0x000033dc) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x1e61 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x1e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x1e71 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x1e70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for LegoBackgroundColor +<<<<<< +0x1e73 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1e72, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 48, class name = LegoBackgroundColor, UDT(0x00003300) + +****** +0x3300 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 48, class name = LegoBackgroundColor, UDT(0x00003300) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x1e82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x1e81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoSoundManager +<<<<<< +0x1e85 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1e84, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 68, class name = LegoSoundManager, UDT(0x0000330c) + +****** +0x330c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x330b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 68, class name = LegoSoundManager, UDT(0x0000330c) + +>>>>>> + +WARNING: UDT mismatch for LegoNavController +<<<<<< +0x1e95 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x1e94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +****** +0x3302 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3301, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +>>>>>> + +WARNING: UDT mismatch for MxBackgroundAudioManager +<<<<<< +0x1e9c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x1e9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 336, class name = MxBackgroundAudioManager, UDT(0x00003288) + +****** +0x3288 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3287, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 336, class name = MxBackgroundAudioManager, UDT(0x00003288) + +>>>>>> + +WARNING: UDT mismatch for MxTransitionManager +<<<<<< +0x1ea1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x1ea0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +****** +0x4e4a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x4e49, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +>>>>>> + +WARNING: UDT mismatch for Hospital +<<<<<< +0x1ea7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1ea6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Hospital, UDT(0x0000449d) + +****** +0x449d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x449c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +>>>>>> + +WARNING: UDT mismatch for HospitalState +<<<<<< +0x1ea9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1ea8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = HospitalState, UDT(0x00003e13) + +****** +0x3e13 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e12, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 24, class name = HospitalState, UDT(0x00003e13) + +>>>>>> + +WARNING: UDT mismatch for Infocenter +<<<<<< +0x1eab : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1eaa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Infocenter, UDT(0x00003f03) + +****** +0x3f03 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3f02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Infocenter, UDT(0x00003f03) + +>>>>>> + +WARNING: UDT mismatch for InfocenterState +<<<<<< +0x1eb2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x1eb1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 148, class name = InfocenterState, UDT(0x000032fa) + +****** +0x32fa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32f9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 148, class name = InfocenterState, UDT(0x000032fa) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x1eb4 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1eb3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for Jetski +<<<<<< +0x1eb8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1eb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +****** +0x3da5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3da4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +>>>>>> + +WARNING: UDT mismatch for JukeBox +<<<<<< +0x1eba : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1eb9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = JukeBox, UDT(0x00003da7) + +****** +0x3da7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3da6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = JukeBox, UDT(0x00003da7) + +>>>>>> + +WARNING: UDT mismatch for JukeBoxState +<<<<<< +0x1ec2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1ec1, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = JukeBoxState, UDT(0x00003daa) + +****** +0x3daa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3da9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = JukeBoxState, UDT(0x00003daa) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x1ecf : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x1ece, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x1ed2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x1ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x1ed5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x1ed4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x1edc : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1edb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035f7) + +****** +0x35f7 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35f6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035f7) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x1ee8 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x1ee7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +****** +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +>>>>>> + +WARNING: UDT mismatch for MxMediaPresenter +<<<<<< +0x1eee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x1eed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +****** +0x3372 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3371, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x1efe : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x1efd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for LegoAnimMMPresenter +<<<<<< +0x1fbd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1fbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +****** +0x3daf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x1fc5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x1fc4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxVideoPresenter +<<<<<< +0x1fcc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x1fcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +****** +0x3f0d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 38, field list type 0x3f0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +>>>>>> + +WARNING: UDT mismatch for MxBITMAPINFO +<<<<<< +0x1fd6 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x1fd5, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +****** +0x3caa : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3ca9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x1fde : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1fdd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x1fe6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1fe5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxSize32 +<<<<<< +0x1fec : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x1feb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +****** +0x3f3a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x1ff0 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x1fef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035fd) + +****** +0x35fd : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x35fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x000035fd) + +>>>>>> + +WARNING: UDT mismatch for MxHashTable +<<<<<< +0x1ff5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x1ff4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 40, class name = MxHashTable, UDT(0x00003338) + +****** +0x3338 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3337, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 40, class name = MxHashTable, UDT(0x00003338) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x1ffa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x1ff9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParam +<<<<<< +0x2003 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x2002, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +****** +0x43a4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x43a3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x2006 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x2005, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxThread +<<<<<< +0x200c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x200b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 28, class name = MxThread, UDT(0x00003c79) + +****** +0x3c79 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3c78, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 28, class name = MxThread, UDT(0x00003c79) + +>>>>>> + +WARNING: UDT mismatch for MxRegionList +<<<<<< +0x2012 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2011, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionList, UDT(0x000035ff) + +****** +0x35ff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionList, UDT(0x000035ff) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x2016 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2015, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003602) + +****** +0x3602 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3601, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003602) + +>>>>>> + +WARNING: UDT mismatch for MxRegionTopBottom +<<<<<< +0x201c : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x201b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +****** +0x3eb9 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x3eb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2024 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2023, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +****** +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x2027 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2026, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000360a) + +****** +0x360a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3609, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000360a) + +>>>>>> + +WARNING: UDT mismatch for MxRegionLeftRightList +<<<<<< +0x202a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2029, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionLeftRightList, UDT(0x0000360c) + +****** +0x360c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x360b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxRegionLeftRightList, UDT(0x0000360c) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x202e : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x202d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000360f) + +****** +0x360f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x360e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000360f) + +>>>>>> + +WARNING: UDT mismatch for MxRegionLeftRight +<<<<<< +0x2035 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x2034, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxRegionLeftRight, UDT(0x00003ebc) + +****** +0x3ebc : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 9, field list type 0x3ebb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxRegionLeftRight, UDT(0x00003ebc) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x203b : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x203a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +****** +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x203e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x203d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003614) + +****** +0x3614 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3613, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003614) + +>>>>>> + +WARNING: UDT mismatch for MxRegion +<<<<<< +0x2042 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2041, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +****** +0x3e7c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x206e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x206d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceModeFinder +<<<<<< +0x2071 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2070, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +****** +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::DeviceModesInfo +<<<<<< +0x2079 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2078, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +****** +0x4ce6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4ce5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +>>>>>> + +WARNING: UDT mismatch for ViewROI +<<<<<< +0x2089 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2088, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = ViewROI, UDT(0x000043a6) + +****** +0x43a6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x43a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = ViewROI, UDT(0x000043a6) + +>>>>>> + +WARNING: UDT mismatch for LegoEntityPresenter +<<<<<< +0x2093 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2091, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +****** +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +>>>>>> + +WARNING: UDT mismatch for MxFlcPresenter +<<<<<< +0x2097 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2096, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = MxFlcPresenter, UDT(0x00002d9d) + +****** +0x2d9d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2d9c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = MxFlcPresenter, UDT(0x00002d9d) + +>>>>>> + +WARNING: UDT mismatch for LegoFlcTexturePresenter +<<<<<< +0x2099 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2098, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +****** +0x3e0f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 112, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +>>>>>> + +WARNING: UDT mismatch for LegoHideAnimPresenter +<<<<<< +0x20a3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x20a2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoHideAnimPresenter, UDT(0x00003db3) + +****** +0x3db3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3db2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoHideAnimPresenter, UDT(0x00003db3) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x20a7 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x20a6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003617) + +****** +0x3617 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3616, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003617) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x20b2 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x20b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +****** +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x20d6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x20d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +****** +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +>>>>>> + +WARNING: UDT mismatch for MxWavePresenter +<<<<<< +0x213e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x213d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = MxWavePresenter, UDT(0x0000329e) + +****** +0x329e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x329d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = MxWavePresenter, UDT(0x0000329e) + +>>>>>> + +WARNING: UDT mismatch for LegoLoadCacheSoundPresenter +<<<<<< +0x2140 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x213f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 108, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +****** +0x3c9c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 144, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +>>>>>> + +WARNING: UDT mismatch for LegoLocomotionAnimPresenter +<<<<<< +0x217c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x217b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoLocomotionAnimPresenter, UDT(0x00003dbe) + +****** +0x3dbe : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dbd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoLocomotionAnimPresenter, UDT(0x00003dbe) + +>>>>>> + +WARNING: UDT mismatch for MxStillPresenter +<<<<<< +0x217f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x217e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 108, class name = MxStillPresenter, UDT(0x00002d9f) + +****** +0x2d9f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x2d9e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 108, class name = MxStillPresenter, UDT(0x00002d9f) + +>>>>>> + +WARNING: UDT mismatch for LegoModelPresenter +<<<<<< +0x2185 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2184, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +****** +0x4d1f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4d1e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +>>>>>> + +WARNING: UDT mismatch for LegoObjectFactory +<<<<<< +0x2187 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2186, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 60, class name = LegoObjectFactory, UDT(0x00003dc3) + +****** +0x3dc3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 90, field list type 0x3dc2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 400, class name = LegoObjectFactory, UDT(0x00003dc3) + +>>>>>> + +WARNING: UDT mismatch for MxDSSource +<<<<<< +0x22cf : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x22ce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 20, class name = MxDSSource, UDT(0x00003c7c) + +****** +0x3c7c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3c7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 20, class name = MxDSSource, UDT(0x00003c7c) + +>>>>>> + +WARNING: UDT mismatch for MxDSFile +<<<<<< +0x22d3 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x22d2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 124, class name = MxDSFile, UDT(0x000033e8) + +****** +0x33e8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 124, class name = MxDSFile, UDT(0x000033e8) + +>>>>>> + +WARNING: UDT mismatch for MxDSFile::ChunkHeader +<<<<<< +0x22d7 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x22d6, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDSFile::ChunkHeader, UDT(0x0000332e) + +****** +0x332e : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x332d, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDSFile::ChunkHeader, UDT(0x0000332e) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x22df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x22de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxIdList +<<<<<< +0x22e4 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x22e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxIdList, UDT(0x0000375b) + +****** +0x375b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x375a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxIdList, UDT(0x0000375b) + +>>>>>> + +WARNING: UDT mismatch for MxAudioManager +<<<<<< +0x22ee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x22ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +****** +0x3312 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3311, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +>>>>>> + +WARNING: UDT mismatch for LegoPalettePresenter +<<<<<< +0x22f1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x22f0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoPalettePresenter, UDT(0x00003e18) + +****** +0x3e18 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e17, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoPalettePresenter, UDT(0x00003e18) + +>>>>>> + +WARNING: UDT mismatch for LegoPartPresenter +<<<<<< +0x22f7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x22f6, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoPartPresenter, UDT(0x00003dc6) + +****** +0x3dc6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoPartPresenter, UDT(0x00003dc6) + +>>>>>> + +WARNING: UDT mismatch for LegoPathPresenter +<<<<<< +0x22fa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x22f9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 84, class name = LegoPathPresenter, UDT(0x00003dc8) + +****** +0x3dc8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3dc7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 84, class name = LegoPathPresenter, UDT(0x00003dc8) + +>>>>>> + +WARNING: UDT mismatch for LegoPhonemePresenter +<<<<<< +0x22fc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x22fb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 136, class name = LegoPhonemePresenter, UDT(0x000032a2) + +****** +0x32a2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 136, class name = LegoPhonemePresenter, UDT(0x000032a2) + +>>>>>> + +WARNING: UDT mismatch for ROIColorAlias +<<<<<< +0x22fe : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x22fd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = ROIColorAlias, UDT(0x000032a4) + +****** +0x32a4 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32a3, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = ROIColorAlias, UDT(0x000032a4) + +>>>>>> + +WARNING: UDT mismatch for LegoTexturePresenter +<<<<<< +0x2300 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x22ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +****** +0x3e11 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +>>>>>> + +WARNING: UDT mismatch for LegoVehicleBuildState +<<<<<< +0x230b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x230a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 80, class name = LegoVehicleBuildState, UDT(0x000032a6) + +****** +0x32a6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x32a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 80, class name = LegoVehicleBuildState, UDT(0x000032a6) + +>>>>>> + +WARNING: UDT mismatch for LegoVehicleBuildState::UnkStruct +<<<<<< +0x230d : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x230c, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = LegoVehicleBuildState::UnkStruct, UDT(0x000032a8) + +****** +0x32a8 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32a7, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = LegoVehicleBuildState::UnkStruct, UDT(0x000032a8) + +>>>>>> + +WARNING: UDT mismatch for LegoWorldPresenter +<<<<<< +0x2317 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2316, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +****** +0x3d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +>>>>>> + +WARNING: UDT mismatch for Motorcycle +<<<<<< +0x2319 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2318, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +****** +0x3dcc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3dcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +>>>>>> + +WARNING: UDT mismatch for MxDSMediaAction +<<<<<< +0x231f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x231e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +****** +0x36b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x36b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +>>>>>> + +WARNING: UDT mismatch for MxDSSound +<<<<<< +0x2322 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2321, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 192, class name = MxDSSound, UDT(0x0000350a) + +****** +0x350a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3509, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 192, class name = MxDSSound, UDT(0x0000350a) + +>>>>>> + +WARNING: UDT mismatch for MxNextActionDataStart +<<<<<< +0x2329 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2328, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +****** +0x3c81 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c80, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +>>>>>> + +WARNING: UDT mismatch for MxStreamProvider +<<<<<< +0x2514 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2513, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +****** +0x3738 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3737, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x251c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x251b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x25cc : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x25ce : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x25cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxNextActionDataStart +<<<<<< +0x25d0 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x25cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +****** +0x3dff : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x25d2 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +****** +0x3767 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x25d4 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +****** +0x376c : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x376b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x25d6 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +****** +0x3771 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +>>>>>> + +WARNING: UDT mismatch for MxCompositeMediaPresenter +<<<<<< +0x25d8 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x25d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +****** +0x337c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x337b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x25da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x25d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x25de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x25dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x25e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x25df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x2687 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x2686, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxDSActionList +<<<<<< +0x268a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x2689, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 28, class name = MxDSActionList, UDT(0x000032be) + +****** +0x32be : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32bd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 28, class name = MxDSActionList, UDT(0x000032be) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x268e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x268d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000361e) + +****** +0x361e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x361d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000361e) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x269a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2699, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +****** +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x26a2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x26a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxDSMultiAction +<<<<<< +0x26b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x26b4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +****** +0x350c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x350b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x26bd : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x26bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003623) + +****** +0x3623 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3622, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003623) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x26c4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x26c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +****** +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +>>>>>> + +WARNING: UDT mismatch for MxDSSelectAction +<<<<<< +0x26c7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x26c6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 176, class name = MxDSSelectAction, UDT(0x0000350e) + +****** +0x350e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x350d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 176, class name = MxDSSelectAction, UDT(0x0000350e) + +>>>>>> + +WARNING: UDT mismatch for MxDSSerialAction +<<<<<< +0x26ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x26c9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 168, class name = MxDSSerialAction, UDT(0x00002d28) + +****** +0x2d28 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2d27, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 168, class name = MxDSSerialAction, UDT(0x00002d28) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x26e4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x26e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x26ea : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x26e9, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxLoopingFlcPresenter +<<<<<< +0x26ee : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x26ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 108, class name = MxLoopingFlcPresenter, UDT(0x000032c2) + +****** +0x32c2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 108, class name = MxLoopingFlcPresenter, UDT(0x000032c2) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x26fc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x26fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxLoopingSmkPresenter +<<<<<< +0x26fe : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x26fd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +****** +0x36b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x2702 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x2701, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for Smack +<<<<<< +0x2706 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 24, field list type 0x2705, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +****** +0x3569 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3568, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x2715 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x271e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x271d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxRAMStreamController +<<<<<< +0x2721 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2720, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +****** +0x33ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +>>>>>> + +WARNING: UDT mismatch for MxRAMStreamProvider +<<<<<< +0x2723 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2722, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 36, class name = MxRAMStreamProvider, UDT(0x000036ed) + +****** +0x36ed : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 36, class name = MxRAMStreamProvider, UDT(0x000036ed) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x272f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x272e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x273f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x273e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxType17NotificationParam +<<<<<< +0x2747 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2746, + Derivation list type 0x0000, VT shape type 0x135e + Size = 44, class name = MxType17NotificationParam, UDT(0x000032c6) + +****** +0x32c6 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32c5, + Derivation list type 0x0000, VT shape type 0x135e + Size = 44, class name = MxType17NotificationParam, UDT(0x000032c6) + +>>>>>> + +WARNING: UDT mismatch for Pizza +<<<<<< +0x2749 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x2748, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 156, class name = Pizza, UDT(0x000032c8) + +****** +0x32c8 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x32c7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 156, class name = Pizza, UDT(0x000032c8) + +>>>>>> + +WARNING: UDT mismatch for PizzaMissionState +<<<<<< +0x2751 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x2750, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +****** +0x3dcf : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3dce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +>>>>>> + +WARNING: UDT mismatch for PizzaMissionStateEntry +<<<<<< +0x2755 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x2754, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = PizzaMissionStateEntry, UDT(0x000032cc) + +****** +0x32cc : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x32cb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 32, class name = PizzaMissionStateEntry, UDT(0x000032cc) + +>>>>>> + +WARNING: UDT mismatch for PizzeriaState +<<<<<< +0x2757 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2756, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PizzeriaState, UDT(0x00003dd4) + +****** +0x3dd4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dd3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PizzeriaState, UDT(0x00003dd4) + +>>>>>> + +WARNING: UDT mismatch for PoliceState +<<<<<< +0x275b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x275a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PoliceState, UDT(0x00003dd9) + +****** +0x3dd9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = PoliceState, UDT(0x00003dd9) + +>>>>>> + +WARNING: UDT mismatch for RaceCar +<<<<<< +0x275d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x275c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = RaceCar, UDT(0x000032ce) + +****** +0x32ce : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x32cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = RaceCar, UDT(0x000032ce) + +>>>>>> + +WARNING: UDT mismatch for RaceState +<<<<<< +0x2762 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2761, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = RaceState, UDT(0x000032d0) + +****** +0x32d0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 48, class name = RaceState, UDT(0x000032d0) + +>>>>>> + +WARNING: UDT mismatch for RaceStateEntry +<<<<<< +0x2765 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x2764, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 6, class name = RaceStateEntry, UDT(0x000032d2) + +****** +0x32d2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x32d1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 6, class name = RaceStateEntry, UDT(0x000032d2) + +>>>>>> + +WARNING: UDT mismatch for Radio +<<<<<< +0x2767 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = Radio, UDT(0x00003402) + +****** +0x3402 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3401, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = Radio, UDT(0x00003402) + +>>>>>> + +WARNING: UDT mismatch for RadioState +<<<<<< +0x2769 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2768, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = RadioState, UDT(0x000033ff) + +****** +0x33ff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x33fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = RadioState, UDT(0x000033ff) + +>>>>>> + +WARNING: UDT mismatch for BoundingBox +<<<<<< +0x2771 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x2770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 80, class name = BoundingBox, UDT(0x000032d4) + +****** +0x32d4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 80, class name = BoundingBox, UDT(0x000032d4) + +>>>>>> + +WARNING: UDT mismatch for ROI +<<<<<< +0x2794 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x2793, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 12, class name = ROI, UDT(0x00003778) + +****** +0x3778 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3777, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 12, class name = ROI, UDT(0x00003778) + +>>>>>> + +WARNING: UDT mismatch for OrientableROI +<<<<<< +0x2796 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x2795, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +****** +0x33ee : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +>>>>>> + +WARNING: UDT mismatch for ScoreState +<<<<<< +0x27b8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x27b7, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = ScoreState, UDT(0x00003ddc) + +****** +0x3ddc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ddb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = ScoreState, UDT(0x00003ddc) + +>>>>>> + +WARNING: UDT mismatch for Score +<<<<<< +0x27ba : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x27b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = Score, UDT(0x000032d8) + +****** +0x32d8 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = Score, UDT(0x000032d8) + +>>>>>> + +WARNING: UDT mismatch for TowTrackMissionState +<<<<<< +0x27bd : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x27bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +****** +0x4cd0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +>>>>>> + +WARNING: UDT mismatch for SkateBoard +<<<<<< +0x27c0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x27bf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +****** +0x3dde : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3ddd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +>>>>>> + +WARNING: UDT mismatch for TowTrack +<<<<<< +0x27c2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x27c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +****** +0x3476 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3475, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Renderer +<<<<<< +0x2810 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x280f, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 4, class name = Tgl::Renderer, UDT(0x00003005) + +****** +0x3005 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3004, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::Renderer, UDT(0x00003005) + +>>>>>> + +WARNING: UDT mismatch for ViewLODListManager +<<<<<< +0x281f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x281e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = ViewLODListManager, UDT(0x0000377b) + +****** +0x377b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x377a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = ViewLODListManager, UDT(0x0000377b) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Group +<<<<<< +0x2833 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x2832, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Group, UDT(0x0000300c) + +****** +0x300c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x300b, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::Group, UDT(0x0000300c) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Texture +<<<<<< +0x283b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2839, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = Tgl::Texture, UDT(0x00003013) + +****** +0x3013 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3012, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 4, class name = Tgl::Texture, UDT(0x00003013) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Mesh +<<<<<< +0x2844 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2843, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 4, class name = Tgl::Mesh, UDT(0x00003019) + +****** +0x3019 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3018, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 4, class name = Tgl::Mesh, UDT(0x00003019) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Device +<<<<<< +0x2850 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x284f, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Device, UDT(0x0000301c) + +****** +0x301c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x301b, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 4, class name = Tgl::Device, UDT(0x0000301c) + +>>>>>> + +WARNING: UDT mismatch for Tgl::DeviceDirect3DCreateData +<<<<<< +0x2852 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x2851, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = Tgl::DeviceDirect3DCreateData, UDT(0x00004d33) + +****** +0x4d33 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4d32, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = Tgl::DeviceDirect3DCreateData, UDT(0x00004d33) + +>>>>>> + +WARNING: UDT mismatch for Tgl::DeviceDirectDrawCreateData +<<<<<< +0x2854 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x2853, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 28, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +****** +0x4e3a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4e39, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +>>>>>> + +WARNING: UDT mismatch for Tgl::View +<<<<<< +0x2869 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2868, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 4, class name = Tgl::View, UDT(0x00003023) + +****** +0x3023 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3022, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 4, class name = Tgl::View, UDT(0x00003023) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Camera +<<<<<< +0x2871 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2870, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Camera, UDT(0x00003025) + +****** +0x3025 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3024, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Camera, UDT(0x00003025) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Light +<<<<<< +0x2875 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x2874, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 4, class name = Tgl::Light, UDT(0x00003028) + +****** +0x3028 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3027, + Derivation list type 0x0000, VT shape type 0x283a + Size = 4, class name = Tgl::Light, UDT(0x00003028) + +>>>>>> + +WARNING: UDT mismatch for HelicopterState +<<<<<< +0x2995 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2994, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +****** +0x3d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x29bc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x29bb, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::Mode +<<<<<< +0x29c3 : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x29c2, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +****** +0x4cdb : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4cda, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x29c9 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x29c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003633) + +****** +0x3633 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3632, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x00003633) + +>>>>>> + +WARNING: UDT mismatch for Tgl::Object +<<<<<< +0x2bb9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2bb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 4, class name = Tgl::Object, UDT(0x00002fff) + +****** +0x2fff : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x2ffe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 4, class name = Tgl::Object, UDT(0x00002fff) + +>>>>>> + +WARNING: UDT mismatch for Map +<<<<<< +0x2bc6 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2bc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Map, UDT(0x00004470) + +****** +0x4470 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x446f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = Map, UDT(0x00004470) + +>>>>>> + +WARNING: UDT mismatch for MxRegionListCursor +<<<<<< +0x2cec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2ceb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +****** +0x2d71 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x2d22 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x2d21, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for MxMediaPresenter +<<<<<< +0x2d25 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x2d24, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +****** +0x3372 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3371, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = MxMediaPresenter, UDT(0x00003372) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x2d2a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2d29, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for LegoWorldList +<<<<<< +0x2d32 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x2d31, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoWorldList, UDT(0x00003628) + +****** +0x3628 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3627, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = LegoWorldList, UDT(0x00003628) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x2d45 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x2d44, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000362b) + +****** +0x362b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x362a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000362b) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2d51 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x2d50, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +****** +0x371b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x2d54 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d53, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003630) + +****** +0x3630 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x362f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x00003630) + +>>>>>> + +WARNING: UDT mismatch for MxRegionListCursor +<<<<<< +0x2d6e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +****** +0x2d71 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2d70, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxRegionListCursor, UDT(0x00002d71) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x2d99 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2d98, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxVideoPresenter +<<<<<< +0x2d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x2d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +****** +0x3f0d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 38, field list type 0x3f0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +>>>>>> + +WARNING: UDT mismatch for MxDSMediaAction +<<<<<< +0x2da1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x2da0, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +****** +0x36b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x36b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x2da3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x2da2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenterList +<<<<<< +0x2e4b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x2e4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxCompositePresenterList, UDT(0x00003e08) + +****** +0x3e08 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxCompositePresenterList, UDT(0x00003e08) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x2f13 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x2f12, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x2f16 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x2f15, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2f18 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2f17, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +****** +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +>>>>>> + +WARNING: UDT mismatch for MxPresenter +<<<<<< +0x2f1c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x2f1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +****** +0x3cfc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x3cfb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2f1e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2f1d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +****** +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x2f20 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x2f1f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2fee : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2fed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +****** +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ff0 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2fef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +****** +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ff2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +****** +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ff4 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +****** +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ff6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +****** +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ff8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ff7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +****** +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +>>>>>> + +WARNING: UDT mismatch for MxDSMultiAction +<<<<<< +0x2ffb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x2ffa, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +****** +0x350c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x350b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x2ffd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x2ffc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +****** +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +>>>>>> + +WARNING: UDT mismatch for Tgl::DeviceDirectDrawCreateData +<<<<<< +0x301e : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x301d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +****** +0x4e3a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4e39, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::RendererImpl +<<<<<< +0x302e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x302d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::RendererImpl, UDT(0x00004d35) + +****** +0x4d35 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d34, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::RendererImpl, UDT(0x00004d35) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::DeviceImpl +<<<<<< +0x3034 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3033, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 8, class name = TglImpl::DeviceImpl, UDT(0x00004d3a) + +****** +0x4d3a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4d39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 8, class name = TglImpl::DeviceImpl, UDT(0x00004d3a) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::ViewImpl +<<<<<< +0x303a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3039, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 8, class name = TglImpl::ViewImpl, UDT(0x00004d3c) + +****** +0x4d3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4d3b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cf3 + Size = 8, class name = TglImpl::ViewImpl, UDT(0x00004d3c) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::CameraImpl +<<<<<< +0x3040 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x303f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 8, class name = TglImpl::CameraImpl, UDT(0x00004d3f) + +****** +0x4d3f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d3e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cb2 + Size = 8, class name = TglImpl::CameraImpl, UDT(0x00004d3f) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::LightImpl +<<<<<< +0x3046 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3045, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x283a + Size = 8, class name = TglImpl::LightImpl, UDT(0x00004d42) + +****** +0x4d42 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x4d41, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x283a + Size = 8, class name = TglImpl::LightImpl, UDT(0x00004d42) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::GroupImpl +<<<<<< +0x3050 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x304f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::GroupImpl, UDT(0x00004d44) + +****** +0x4d44 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4d43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 8, class name = TglImpl::GroupImpl, UDT(0x00004d44) + +>>>>>> + +WARNING: UDT mismatch for TglImpl::TextureImpl +<<<<<< +0x3066 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3065, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 8, class name = TglImpl::TextureImpl, UDT(0x00004d4b) + +****** +0x4d4b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4d4a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x19d0 + Size = 8, class name = TglImpl::TextureImpl, UDT(0x00004d4b) + +>>>>>> + +WARNING: UDT mismatch for ViewportAppData +<<<<<< +0x319b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x319a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = ViewportAppData, UDT(0x00004d4d) + +****** +0x4d4d : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4d4c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = ViewportAppData, UDT(0x00004d4d) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31d2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31d1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31d4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31d6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31d8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31da : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31dc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x31db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x31dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31e0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x31df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31e2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x31e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31e4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x31e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31e6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x31e5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31e8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 26, field list type 0x31e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31ea : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x31e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31ec : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x31eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31ee : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x31ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31f0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x31ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31f2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31f1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x31f4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x31f3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x31f6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x31f5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x31f8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x31f7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x31fb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x31fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x31ff : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x31fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3203 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3202, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +****** +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3206 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3205, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +****** +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3209 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3208, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +****** +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x320c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x320b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +****** +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x320f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x320e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +****** +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3212 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3211, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +****** +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3215 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3214, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +****** +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3218 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3217, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +****** +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x321b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x321a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +****** +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x321e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x321d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +****** +0x371b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3220 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x321f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3222 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3221, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3224 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3223, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3226 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3225, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3228 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3227, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x322a : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3229, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x322c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x322e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3230 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x322f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3232 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3231, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3234 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3233, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3236 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3235, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3238 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3237, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x323a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3239, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x323c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x323e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3240 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x323f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3242 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3241, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxCompositeMediaPresenter +<<<<<< +0x3246 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3245, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +****** +0x337c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x337b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x3248 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x3247, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x324a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x3249, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x324c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x324b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxRAMStreamController +<<<<<< +0x324e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x324d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +****** +0x33ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x3250 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x324f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x3254 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3253, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for LegoEntity +<<<<<< +0x3256 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3255, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +****** +0x3cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +>>>>>> + +WARNING: UDT mismatch for LegoPathActor +<<<<<< +0x325a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3259, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +****** +0x33c9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 43, field list type 0x33c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x325c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x325b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for Act3 +<<<<<< +0x325e : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x325d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +****** +0x33d4 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x33d3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 17012, class name = Act3, UDT(0x000033d4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x3260 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x325f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxNotificationManager +<<<<<< +0x3262 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3261, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 64, class name = MxNotificationManager, UDT(0x0000374c) + +****** +0x374c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x374b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 60, class name = MxNotificationManager, UDT(0x0000374c) + +>>>>>> + +WARNING: UDT mismatch for MxVideoManager +<<<<<< +0x3266 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3265, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +****** +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +>>>>>> + +WARNING: UDT mismatch for MxMusicManager +<<<<<< +0x3268 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x3267, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +****** +0x334c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 25, field list type 0x334b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 88, class name = MxMusicManager, UDT(0x0000334c) + +>>>>>> + +WARNING: UDT mismatch for IslePathActor +<<<<<< +0x326c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x326b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +****** +0x33d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +>>>>>> + +WARNING: UDT mismatch for Ambulance +<<<<<< +0x326e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x326d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +****** +0x346e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x346d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 388, class name = Ambulance, UDT(0x0000346e) + +>>>>>> + +WARNING: UDT mismatch for AmbulanceMissionState +<<<<<< +0x3270 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x326f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +****** +0x3470 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x346f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 36, class name = AmbulanceMissionState, UDT(0x00003470) + +>>>>>> + +WARNING: UDT mismatch for Bike +<<<<<< +0x3272 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3271, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +****** +0x3d8c : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3d8b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Bike, UDT(0x00003d8c) + +>>>>>> + +WARNING: UDT mismatch for LegoRace +<<<<<< +0x3274 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3273, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +****** +0x3e0a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x3e09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = LegoRace, UDT(0x00003e0a) + +>>>>>> + +WARNING: UDT mismatch for DuneBuggy +<<<<<< +0x3276 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3275, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +****** +0x3d93 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3d92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = DuneBuggy, UDT(0x00003d93) + +>>>>>> + +WARNING: UDT mismatch for GifManager +<<<<<< +0x327c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x327b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +****** +0x32e2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x32e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 48, class name = GifManager, UDT(0x000032e2) + +>>>>>> + +WARNING: UDT mismatch for Helicopter +<<<<<< +0x327e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x327d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +****** +0x33da : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x33d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 560, class name = Helicopter, UDT(0x000033da) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x3280 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x327f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x3282 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3281, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x3284 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3283, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoNavController +<<<<<< +0x3286 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3285, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +****** +0x3302 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3301, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 112, class name = LegoNavController, UDT(0x00003302) + +>>>>>> + +WARNING: UDT mismatch for MxTransitionManager +<<<<<< +0x328a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3289, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +****** +0x4e4a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x4e49, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +>>>>>> + +WARNING: UDT mismatch for Jetski +<<<<<< +0x328c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x328b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +****** +0x3da5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3da4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 356, class name = Jetski, UDT(0x00003da5) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x328e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x328d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3290 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x328f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxVideoPresenter +<<<<<< +0x3292 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3291, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +****** +0x3f0d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 38, field list type 0x3f0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x3294 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3293, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x3296 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3295, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParam +<<<<<< +0x3298 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3297, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +****** +0x43a4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x43a3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceModeFinder +<<<<<< +0x329a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3299, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +****** +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +>>>>>> + +WARNING: UDT mismatch for LegoEntityPresenter +<<<<<< +0x329c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x329b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +****** +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x32a0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x329f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for LegoWorldPresenter +<<<<<< +0x32aa : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +****** +0x3d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +>>>>>> + +WARNING: UDT mismatch for Motorcycle +<<<<<< +0x32ac : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32ab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +****** +0x3dcc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3dcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 364, class name = Motorcycle, UDT(0x00003dcc) + +>>>>>> + +WARNING: UDT mismatch for MxDSMediaAction +<<<<<< +0x32b0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x32af, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +****** +0x36b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x36b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +>>>>>> + +WARNING: UDT mismatch for MxNextActionDataStart +<<<<<< +0x32b2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +****** +0x3c81 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c80, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x32b4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32b3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x32b6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x32b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x32b8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32b7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x32ba : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x32b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x32bc : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32bb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x32c0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32bf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxLoopingSmkPresenter +<<<<<< +0x32c4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +****** +0x36b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +>>>>>> + +WARNING: UDT mismatch for PizzaMissionState +<<<<<< +0x32ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x32c9, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +****** +0x3dcf : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3dce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 176, class name = PizzaMissionState, UDT(0x00003dcf) + +>>>>>> + +WARNING: UDT mismatch for OrientableROI +<<<<<< +0x32d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x32d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +****** +0x33ee : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 220, class name = OrientableROI, UDT(0x000033ee) + +>>>>>> + +WARNING: UDT mismatch for TowTrackMissionState +<<<<<< +0x32da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x32d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +****** +0x4cd0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +>>>>>> + +WARNING: UDT mismatch for SkateBoard +<<<<<< +0x32dc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x32db, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +****** +0x3dde : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3ddd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 360, class name = SkateBoard, UDT(0x00003dde) + +>>>>>> + +WARNING: UDT mismatch for TowTrack +<<<<<< +0x32de : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x32dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +****** +0x3476 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3475, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 384, class name = TowTrack, UDT(0x00003476) + +>>>>>> + +WARNING: UDT mismatch for HelicopterState +<<<<<< +0x32e0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x32df, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +****** +0x3d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +>>>>>> + +WARNING: UDT mismatch for MxNextActionDataStart +<<<<<< +0x32e4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +****** +0x3c81 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c80, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 20, class name = MxNextActionDataStart, UDT(0x00003c81) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x32e6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x32e5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x32e8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x32e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxRegion +<<<<<< +0x32ea : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +****** +0x3e7c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +>>>>>> + +WARNING: UDT mismatch for LegoEntityPresenter +<<<<<< +0x32ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x32eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +****** +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x32ee : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x32ed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxVideoManager +<<<<<< +0x32f0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x32ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +****** +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +>>>>>> + +WARNING: UDT mismatch for MxStreamProvider +<<<<<< +0x32f2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x32f1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +****** +0x3738 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3737, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x32f4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x32f3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x32f6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x32f5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxRAMStreamController +<<<<<< +0x32f8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x32f7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +****** +0x33ec : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x33eb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 152, class name = MxRAMStreamController, UDT(0x000033ec) + +>>>>>> + +WARNING: UDT mismatch for IslePathActor +<<<<<< +0x32fc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x32fb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +****** +0x33d6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x33d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d1d + Size = 352, class name = IslePathActor, UDT(0x000033d6) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x32fe : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x32fd, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for LegoPathActor +<<<<<< +0x3306 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3305, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +****** +0x33c9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 43, field list type 0x33c8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c27 + Size = 340, class name = LegoPathActor, UDT(0x000033c9) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x3308 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3307, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x330a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3309, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for MxBITMAPINFO +<<<<<< +0x330e : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x330d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +****** +0x3caa : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x3ca9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1064, class name = MxBITMAPINFO, UDT(0x00003caa) + +>>>>>> + +WARNING: UDT mismatch for MxAudioManager +<<<<<< +0x3310 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x330f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +****** +0x3312 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3311, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x22ed + Size = 48, class name = MxAudioManager, UDT(0x00003312) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x3314 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3313, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 408, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x3316 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x3315, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::DeviceModesInfo +<<<<<< +0x3318 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x3317, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +****** +0x4ce6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4ce5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::Mode +<<<<<< +0x331a : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x3319, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +****** +0x4cdb : Length = 42, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4cda, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDirectDraw::Mode, UDT(0x00004cdb) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x331c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x331b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x331e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x331d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x3320 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x331f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x3322 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3321, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x3324 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3323, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSMultiAction +<<<<<< +0x3326 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3325, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +****** +0x350c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x350b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x3328 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 62, field list type 0x3327, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceModeFinder +<<<<<< +0x332a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3329, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +****** +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::DeviceModesInfo +<<<<<< +0x332c : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x332b, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +****** +0x4ce6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4ce5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x3330 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x332f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3332 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3331, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +****** +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3334 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3333, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +****** +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3336 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3335, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +****** +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x333a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3339, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +****** +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x333c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +****** +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x333e : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +****** +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3340 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x333f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +****** +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3342 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3341, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +****** +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +>>>>>> + +WARNING: UDT mismatch for MxDSMultiAction +<<<<<< +0x3344 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3343, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +****** +0x350c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x350b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 156, class name = MxDSMultiAction, UDT(0x0000350c) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3346 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3345, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +****** +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x3348 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3347, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x334a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3349, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +****** +0x371b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x334e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x334d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxTransitionManager +<<<<<< +0x3353 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3352, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +****** +0x4e4a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x4e49, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 2304, class name = MxTransitionManager, UDT(0x00004e4a) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x3355 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3354, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParam +<<<<<< +0x3359 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3358, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +****** +0x43a4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x43a3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 36, class name = MxVideoParam, UDT(0x000043a4) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x335b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x335a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxVideoParamFlags +<<<<<< +0x335d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x335c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +****** +0x3cae : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3cad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 2, class name = MxVideoParamFlags, UDT(0x00003cae) + +>>>>>> + +WARNING: UDT mismatch for MxCompositeMediaPresenter +<<<<<< +0x335f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x335e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +****** +0x337c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x337b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 80, class name = MxCompositeMediaPresenter, UDT(0x0000337c) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x3361 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3360, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x3365 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3364, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x3367 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3366, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x336c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x336b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x336e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x336d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenter +<<<<<< +0x3370 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = MxCompositePresenter, UDT(0x0000374a) + +****** +0x374a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x336f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = MxCompositePresenter, UDT(0x0000374a) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x3376 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3375, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x337a : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x3379, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for Act1State +<<<<<< +0x33ba : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x33b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = Act1State, UDT(0x0000346c) + +****** +0x346c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x346b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 28, class name = Act1State, UDT(0x0000346c) + +>>>>>> + +WARNING: UDT mismatch for LegoEntity +<<<<<< +0x33c4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x33c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +****** +0x3cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c20 + Size = 104, class name = LegoEntity, UDT(0x00003cfa) + +>>>>>> + +WARNING: UDT mismatch for LegoROI +<<<<<< +0x33cb : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33ca, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 224, class name = LegoROI, UDT(0x00004493) + +****** +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x33d0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x33cf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x33df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x33de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x33e2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x33e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x33e5 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 320, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x33ea : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x33e9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for HelicopterSubclass +<<<<<< +0x33f5 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x33f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +****** +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +>>>>>> + +WARNING: UDT mismatch for HelicopterState +<<<<<< +0x33f8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x33f7, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +****** +0x3d9b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3d9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 12, class name = HelicopterState, UDT(0x00003d9b) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x33fb : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x33fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 320, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for Radio +<<<<<< +0x33fd : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x33fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = Radio, UDT(0x00003402) + +****** +0x3402 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3401, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = Radio, UDT(0x00003402) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x3406 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3405, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x3409 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3408, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x340c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x340b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x340e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x340d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x3411 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3410, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for MxControlPresenter +<<<<<< +0x3415 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3414, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +****** +0x341a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3419, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 92, class name = MxControlPresenter, UDT(0x0000341a) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x3424 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3423, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x3427 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3426, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x342e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x342d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x3438 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3437, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for LegoGameState +<<<<<< +0x343b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x343a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +****** +0x3453 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 41, field list type 0x3452, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1072, class name = LegoGameState, UDT(0x00003453) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x344a : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3449, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for Pizzeria +<<<<<< +0x3450 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x344f, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = Pizzeria, UDT(0x00003dd2) + +****** +0x3dd2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dd1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 120, class name = Pizzeria, UDT(0x00003dd2) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x3456 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3455, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for HelicopterSubclass +<<<<<< +0x345d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x345c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +****** +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +>>>>>> + +WARNING: UDT mismatch for HelicopterSubclass +<<<<<< +0x345f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x345e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +****** +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +>>>>>> + +WARNING: UDT mismatch for HelicopterSubclass +<<<<<< +0x3461 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3460, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +****** +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +>>>>>> + +WARNING: UDT mismatch for HelicopterSubclass +<<<<<< +0x3463 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3462, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +****** +0x3466 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3465, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 52, class name = HelicopterSubclass, UDT(0x00003466) + +>>>>>> + +WARNING: UDT mismatch for Isle +<<<<<< +0x3474 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3473, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +****** +0x3478 : Length = 26, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3477, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 320, class name = Isle, UDT(0x00003478) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x3487 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3486, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for MxOmni +<<<<<< +0x3489 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x3488, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +****** +0x34bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x348b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x348a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x348d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x348c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x348f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x348e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3491 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3490, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 140, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for MxStartActionNotificationParam +<<<<<< +0x3494 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3493, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxStartActionNotificationParam, UDT(0x000034a2) + +****** +0x34a2 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x34a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 20, class name = MxStartActionNotificationParam, UDT(0x000034a2) + +>>>>>> + +WARNING: UDT mismatch for MxType4NotificationParam +<<<<<< +0x3498 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3497, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +****** +0x34c2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +>>>>>> + +WARNING: UDT mismatch for MxDSObject +<<<<<< +0x349c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x349b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +****** +0x3506 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3505, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 44, class name = MxDSObject, UDT(0x00003506) + +>>>>>> + +WARNING: UDT mismatch for MxType4NotificationParam +<<<<<< +0x34a0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x349f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +****** +0x34c2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +>>>>>> + +WARNING: UDT mismatch for MxType4NotificationParam +<<<<<< +0x34a4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34a3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +****** +0x34c2 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x34c1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x135e + Size = 24, class name = MxType4NotificationParam, UDT(0x000034c2) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x34a7 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x34a6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxOmni +<<<<<< +0x34aa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +****** +0x34bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x34ae : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x34ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxStreamer +<<<<<< +0x34b0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x34af, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +****** +0x3727 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3726, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 44, class name = MxStreamer, UDT(0x00003727) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x34b2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x34b1, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxOmni +<<<<<< +0x34b6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +****** +0x34bd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x34bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 104, class name = MxOmni, UDT(0x000034bd) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x34b8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x34b7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x34bf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x34be, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x34c9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x34c8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x34d8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x34d7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x34da : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x34dd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x34dc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x34df : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34de, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x34e1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x34e0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x34e5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x34e9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34e8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x34ed : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x34ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x34f3 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34f2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x34f5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x34f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x34f9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x34f8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxDSAction +<<<<<< +0x34fe : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 48, field list type 0x34fd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +****** +0x3cf2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 50, field list type 0x3cf1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 148, class name = MxDSAction, UDT(0x00003cf2) + +>>>>>> + +WARNING: UDT mismatch for MxDSMediaAction +<<<<<< +0x3508 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3507, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +****** +0x36b7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x36b6, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 184, class name = MxDSMediaAction, UDT(0x000036b7) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x3510 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x350f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3512 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3511, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3516 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x3515, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for Smack +<<<<<< +0x3519 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3518, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +****** +0x3569 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3568, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x351d : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x351c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3520 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x351f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x3522 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3521, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3526 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3525, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3529 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3528, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x352b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x352a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x352e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x352d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x3533 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3532, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3537 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3536, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x353b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x353a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x353e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x353d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x3540 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x353f, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x3542 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3541, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter::MxSmack +<<<<<< +0x3544 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3543, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +****** +0x3548 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmkPresenter::MxSmack, UDT(0x00003548) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3546 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3545, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x3552 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3551, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3553 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3547, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x355a : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3559, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x355c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x355b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x355e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x355d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for Smack +<<<<<< +0x3561 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3560, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +****** +0x3569 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3568, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 912, class name = Smack, UDT(0x00003569) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3563 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3562, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3566 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x3565, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x356c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x356b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3570 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x356f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3573 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 15, field list type 0x3572, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3575 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3574, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3578 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x3577, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x357d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x357c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x357f : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x357e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmackList +<<<<<< +0x3588 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3587, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +****** +0x3636 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3635, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +>>>>>> + +WARNING: UDT mismatch for MxSmackListCursor +<<<<<< +0x3591 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3590, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxSmackListCursor, UDT(0x000035d9) + +****** +0x35d9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35d8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxSmackListCursor, UDT(0x000035d9) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x35a5 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x35a4, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x35a9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x35a8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000363a) + +****** +0x363a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3639, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000363a) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x35b6 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x35b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +****** +0x371d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +>>>>>> + +WARNING: UDT mismatch for MxPtrList +<<<<<< +0x35b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x35b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000363f) + +****** +0x363f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x363e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxPtrList, UDT(0x0000363f) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x35c4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x35c3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for MxSmackList +<<<<<< +0x35d7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x35d6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +****** +0x3636 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3635, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxSmackList, UDT(0x00003636) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x35e5 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35e4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +****** +0x3707 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3706, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003707) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x35ed : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35ec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +****** +0x3709 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3708, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003709) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x35f9 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x35f8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +****** +0x370d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370d) + +>>>>>> + +WARNING: UDT mismatch for MxRegionTopBottom +<<<<<< +0x3605 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 13, field list type 0x3604, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +****** +0x3eb9 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 14, field list type 0x3eb8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxRegionTopBottom, UDT(0x00003eb9) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3607 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3606, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +****** +0x370f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x370e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000370f) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3611 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3610, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +****** +0x3711 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3710, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003711) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3619 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3618, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +****** +0x3713 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3712, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003713) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x361b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x361a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +****** +0x3715 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3714, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003715) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3620 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x361f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +****** +0x3717 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3716, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003717) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x3625 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3624, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +****** +0x3719 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3718, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00003719) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x362d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x362c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +****** +0x371b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371b) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x363c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x363b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +****** +0x371d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x371c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x0000371d) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3641 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3640, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxPoint32 +<<<<<< +0x3645 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3644, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +****** +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3649 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3648, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x364c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x364e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3650 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x364f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxPoint32 +<<<<<< +0x3653 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3652, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +****** +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +>>>>>> + +WARNING: UDT mismatch for MxSize32 +<<<<<< +0x3657 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3656, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +****** +0x3f3a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +>>>>>> + +WARNING: UDT mismatch for MxPresenter +<<<<<< +0x3659 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 39, field list type 0x3658, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +****** +0x3cfc : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 40, field list type 0x3cfb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c6a + Size = 64, class name = MxPresenter, UDT(0x00003cfc) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x366b : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x366a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x366e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x366d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3672 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3671, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3677 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3676, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3679 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3678, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x367b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x367d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x367f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x367e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3681 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3680, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3683 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3682, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3688 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3687, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x368a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3689, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x368c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x368b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxPoint32 +<<<<<< +0x3690 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x368f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +****** +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3693 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3692, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x3695 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 47, field list type 0x3694, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x3699 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3698, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x369c : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x369b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x369e : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x369d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for MxSmack +<<<<<< +0x36a3 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a2, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +****** +0x36a7 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x36a6, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1720, class name = MxSmack, UDT(0x000036a7) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x36ad : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x36ac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for MxUnknown100dbdbc +<<<<<< +0x36af : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x36ae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +****** +0x43db : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x43da, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +>>>>>> + +WARNING: UDT mismatch for MxLoopingSmkPresenter +<<<<<< +0x36b3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +****** +0x36b9 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36b8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d95 + Size = 1828, class name = MxLoopingSmkPresenter, UDT(0x000036b9) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x36b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x36b4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36bb : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36ba, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36bd : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36bf : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36be, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36c1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36c3 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36c5 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36c4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x36c7 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x36c6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x36ca : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36c9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxSmkPresenter +<<<<<< +0x36cc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +****** +0x36ce : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36cd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x26fb + Size = 1824, class name = MxSmkPresenter, UDT(0x000036ce) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x36d2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 27, field list type 0x36d1, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x36da : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x36d9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x36de : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x36dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x36e0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36df, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x36e2 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x36e4 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36e3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxStreamProvider +<<<<<< +0x36e9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x36e8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +****** +0x3738 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3737, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 16, class name = MxStreamProvider, UDT(0x00003738) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x36eb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x36ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x36f0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x36ef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x36f5 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x36f4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x36f7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x36f6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x36fb : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x36fa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x36fd : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x36fc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x36ff : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x36fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x3701 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3700, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x3703 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x3702, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x370b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x370a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxDSSubscriber +<<<<<< +0x3720 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x371f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +****** +0x3c44 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3c43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 76, class name = MxDSSubscriber, UDT(0x00003c44) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x3723 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3722, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x3725 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3724, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x3729 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3728, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x372c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x372b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +****** +0x3767 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x372f : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x372e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +****** +0x376c : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x376b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x3732 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3731, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +****** +0x3771 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x3736 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3735, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamProvider +<<<<<< +0x373a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3739, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +****** +0x3c86 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3c85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d05 + Size = 96, class name = MxDiskStreamProvider, UDT(0x00003c86) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x373c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x373b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x373f : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x373e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +****** +0x3767 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3766, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003767) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x3742 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3741, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +****** +0x376c : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x376b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x0000376c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamList +<<<<<< +0x3745 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3744, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +****** +0x3771 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3770, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamList, UDT(0x00003771) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x3749 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3748, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 84, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for LegoAnimMMPresenter +<<<<<< +0x3753 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x1fbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 72, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +****** +0x3daf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c23 + Size = 76, class name = LegoAnimMMPresenter, UDT(0x00003daf) + +>>>>>> + +WARNING: UDT mismatch for LegoEntityPresenter +<<<<<< +0x3755 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3754, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 76, class name = LegoEntityPresenter, UDT(0x00003d08) + +****** +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +>>>>>> + +WARNING: UDT mismatch for LegoWorldPresenter +<<<<<< +0x375d : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x375c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoWorldPresenter, UDT(0x00003d0a) + +****** +0x3d0a : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3d09, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 84, class name = LegoWorldPresenter, UDT(0x00003d0a) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x375e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x25cb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3760 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x375f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxNextActionDataStart +<<<<<< +0x3762 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 2, field list type 0x3761, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +****** +0x3dff : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +>>>>>> + +WARNING: UDT mismatch for MxCompositePresenterList +<<<<<< +0x377e : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 1, field list type 0x377d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxCompositePresenterList, UDT(0x00003e08) + +****** +0x3e08 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxCompositePresenterList, UDT(0x00003e08) + +>>>>>> + +WARNING: UDT mismatch for JukeBox +<<<<<< +0x3c33 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x3c32, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = JukeBox, UDT(0x00003da7) + +****** +0x3da7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3da6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 260, class name = JukeBox, UDT(0x00003da7) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x3c35 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c34, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x3c37 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c36, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x3c3a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x3c3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for MxTickleClient +<<<<<< +0x3c3e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +****** +0x3c40 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3c3f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxTickleClient, UDT(0x00003c40) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3c49 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c48, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c4c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c4b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3c4f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c4e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c52 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3c57 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c5a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c59, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3c5d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c60 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c5f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3c64 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3c63, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c67 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c66, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamerSubClass1 +<<<<<< +0x3c69 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c68, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +****** +0x3c6b : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3c6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamerSubClass1, UDT(0x00003c6b) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x3c6e : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c6d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamController +<<<<<< +0x3c77 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3c76, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +****** +0x3cb8 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3cb7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1ca4 + Size = 100, class name = MxStreamController, UDT(0x00003cb8) + +>>>>>> + +WARNING: UDT mismatch for MxDSBuffer +<<<<<< +0x3c7e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3c7d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +****** +0x3c95 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3c94, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 52, class name = MxDSBuffer, UDT(0x00003c95) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x3c84 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3c83, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x3c89 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c88, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c8b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c8a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3c8d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3c8c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxDSStreamingAction +<<<<<< +0x3c91 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c90, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +****** +0x3cb4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3cb3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 180, class name = MxDSStreamingAction, UDT(0x00003cb4) + +>>>>>> + +WARNING: UDT mismatch for MxDiskStreamController +<<<<<< +0x3c97 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3c96, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +****** +0x3e15 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 36, field list type 0x3e14, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 200, class name = MxDiskStreamController, UDT(0x00003e15) + +>>>>>> + +WARNING: UDT mismatch for LegoLoadCacheSoundPresenter +<<<<<< +0x3c9a : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c99, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 144, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +****** +0x3c9c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3c9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 144, class name = LegoLoadCacheSoundPresenter, UDT(0x00003c9c) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x3c9e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 29, field list type 0x3c9d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x3ca2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x3ca5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x3ca7 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3ca6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxBitmap +<<<<<< +0x3cac : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3cab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +****** +0x3f56 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f55, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 32, class name = MxBitmap, UDT(0x00003f56) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x3cbd : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3cbc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cc0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cbf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x3cc5 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3cc4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cc7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cc6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x3cc9 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x3cc8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3ccb : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3cca, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSAction +<<<<<< +0x3ccf : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3cce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +****** +0x3e1c : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e1b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSAction, UDT(0x00003e1c) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cd3 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cd5 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cd7 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x3cd6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x3cd9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x3ce5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 53, field list type 0x3ce4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3ce9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ce8, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 144, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3ceb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3cea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3cef : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3cee, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for LegoEntityPresenter +<<<<<< +0x3cfe : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3cfd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +****** +0x3d08 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3d07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x2092 + Size = 80, class name = LegoEntityPresenter, UDT(0x00003d08) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x3d06 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x3d05, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for CarRace +<<<<<< +0x3d91 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3d90, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 324, class name = CarRace, UDT(0x00003e0d) + +****** +0x3e0d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1d33 + Size = 340, class name = CarRace, UDT(0x00003e0d) + +>>>>>> + +WARNING: UDT mismatch for HospitalState +<<<<<< +0x3da0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3d9f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 8, class name = HospitalState, UDT(0x00003e13) + +****** +0x3e13 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e12, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 24, class name = HospitalState, UDT(0x00003e13) + +>>>>>> + +WARNING: UDT mismatch for LegoFlcTexturePresenter +<<<<<< +0x3db1 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 3, field list type 0x3db0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 104, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +****** +0x3e0f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3e0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 112, class name = LegoFlcTexturePresenter, UDT(0x00003e0f) + +>>>>>> + +WARNING: UDT mismatch for LegoModelPresenter +<<<<<< +0x3dc1 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +****** +0x4d1f : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4d1e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = LegoModelPresenter, UDT(0x00004d1f) + +>>>>>> + +WARNING: UDT mismatch for LegoTexturePresenter +<<<<<< +0x3dca : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 6, field list type 0x3dc9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +****** +0x3e11 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e34 + Size = 80, class name = LegoTexturePresenter, UDT(0x00003e11) + +>>>>>> + +WARNING: UDT mismatch for Act3Actor +<<<<<< +0x3ded : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3dec, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 8, class name = Act3Actor, UDT(0x00004e9b) + +****** +0x4e9b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4e9a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 8, class name = Act3Actor, UDT(0x00004e9b) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxNextActionDataStart +<<<<<< +0x3dfb : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +****** +0x3dff : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxNextActionDataStart +<<<<<< +0x3dfd : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +****** +0x3dff : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x3dfe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxNextActionDataStart, UDT(0x00003dff) + +>>>>>> + +WARNING: UDT mismatch for MxStreamListMxDSSubscriber +<<<<<< +0x3e03 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +****** +0x3e05 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxStreamListMxDSSubscriber, UDT(0x00003e05) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e2c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e2b, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e2e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e2d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 148, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x3e30 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e2f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxUnknown100dbdbc +<<<<<< +0x3e32 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x3e31, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +****** +0x43db : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x43da, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100dbdbc, UDT(0x000043db) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e3c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e3b, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e3e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e3d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e44 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e43, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 148, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x3e46 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e45, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e4b : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e4a, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e4e : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x3e4d, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3e4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 160, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x3e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for MxRenderSettings +<<<<<< +0x3e55 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x3e54, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +****** +0x43b8 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x43b7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = MxRenderSettings, UDT(0x000043b8) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e57 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 156, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e59 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e58, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e5c : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e5b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e5f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e5e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x3e61 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x3e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for MxVideoPresenter +<<<<<< +0x3e6b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 37, field list type 0x3e6a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +****** +0x3f0d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 38, field list type 0x3f0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c11 + Size = 100, class name = MxVideoPresenter, UDT(0x00003f0d) + +>>>>>> + +WARNING: UDT mismatch for MxRegion +<<<<<< +0x3e6e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3e6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +****** +0x3e7c : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x3e7b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bef + Size = 28, class name = MxRegion, UDT(0x00003e7c) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3e7f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e7e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3e82 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3e81, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3e86 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x3e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e88 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e87, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e8a : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e89, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e8c : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e8e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e90 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e8f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e92 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3e91, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3e94 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x3e93, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3e96 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3e95, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3e9c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x3e9b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ea0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3e9f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ea2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ea5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ea7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ea9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ea8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eab : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eaa, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ead : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eaf : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eb1 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eb3 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eb5 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3eb4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eb7 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x3eb6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ebe : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ebd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ec0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ebf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ec2 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ec4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ec6 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ec8 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ec7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eca : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ec9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ecc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ece : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxRegionCursor +<<<<<< +0x3ed0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ecf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +****** +0x3ed2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3ed1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 24, class name = MxRegionCursor, UDT(0x00003ed2) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ed4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ed6 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ed8 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3eda : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3ed9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3edc : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3edb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ede : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x3edd, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x3ee0 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x3edf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for LegoOmni +<<<<<< +0x3ee8 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x3ee7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +****** +0x4469 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4468, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x10b4 + Size = 320, class name = LegoOmni, UDT(0x00004469) + +>>>>>> + +WARNING: UDT mismatch for MxVideoManager +<<<<<< +0x3eeb : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x3eea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +****** +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3eee : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3eed, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxSize32 +<<<<<< +0x3ef0 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3eef, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +****** +0x3f3a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +>>>>>> + +WARNING: UDT mismatch for MxSize32 +<<<<<< +0x3ef2 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3ef1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +****** +0x3f3a : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f39, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxSize32, UDT(0x00003f3a) + +>>>>>> + +WARNING: UDT mismatch for MxPoint32 +<<<<<< +0x3ef4 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3ef3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +****** +0x3f38 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x3f37, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 8, class name = MxPoint32, UDT(0x00003f38) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3ef6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3ef5, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3efa : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3ef9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for LegoWorld +<<<<<< +0x3f01 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f00, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +****** +0x3f05 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 248, class name = LegoWorld, UDT(0x00003f05) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f0f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f12 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f11, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f14 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f13, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f16 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f15, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f1a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f19, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f1d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f1c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f1f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f1e, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f23 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 35, field list type 0x3f22, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f25 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3f24, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f27 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 32, field list type 0x3f26, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f29 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f28, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f2b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f2a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f2e : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f2d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f30 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 33, field list type 0x3f2f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxRect32 +<<<<<< +0x3f32 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f31, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +****** +0x3f36 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 34, field list type 0x3f35, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = MxRect32, UDT(0x00003f36) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f3d : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 28, field list type 0x3f3c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f46 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f45, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f49 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f48, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f4e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDisplaySurface +<<<<<< +0x3f50 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 30, field list type 0x3f4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +****** +0x4e57 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 31, field list type 0x4e56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1e41 + Size = 172, class name = MxDisplaySurface, UDT(0x00004e57) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x3f58 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f57, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x3f60 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x3f5f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 32, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4044 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4043, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 32, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for list > +<<<<<< +0x40a3 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x40a2, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = list >, UDT(0x0000412c) + +****** +0x412c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x40a2, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x0000412c) + +>>>>>> + +WARNING: UDT mismatch for binder2nd > +<<<<<< +0x40b4 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x40b3, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = binder2nd >, UDT(0x00004133) + +****** +0x4133 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x412d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x00004133) + +>>>>>> + +WARNING: UDT mismatch for List +<<<<<< +0x40eb : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x40ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = List, UDT(0x0000412f) + +****** +0x412f : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x40ea, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x0000412f) + +>>>>>> + +WARNING: UDT mismatch for a +<<<<<< +0x40f0 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x40ef, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = a, UDT(0x00004136) + +****** +0x4136 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4135, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = a, UDT(0x00004136) + +>>>>>> + +WARNING: UDT mismatch for list >::_Node +<<<<<< +0x4102 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 24, class name = list >::_Node, UDT(0x00004137) + +****** +0x4137 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004137) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x412b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x412a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for binder2nd > +<<<<<< +0x412e : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x412d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 124, class name = binder2nd >, UDT(0x00004133) + +****** +0x4133 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x412d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x00004133) + +>>>>>> + +WARNING: UDT mismatch for a +<<<<<< +0x4131 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4130, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 123, class name = a, UDT(0x00004136) + +****** +0x4136 : Length = 22, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4135, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = a, UDT(0x00004136) + +>>>>>> + +WARNING: UDT mismatch for list >::_Node +<<<<<< +0x4132 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 132, class name = list >::_Node, UDT(0x00004137) + +****** +0x4137 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4101, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004137) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x413f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x413e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 24, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x41ad : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x41ac, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceModeFinder +<<<<<< +0x429c : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x429b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +****** +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x429e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x429d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for list > +<<<<<< +0x42fd : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x42fc, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b3a) + +****** +0x4b3a : Length = 90, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4b39, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b3a) + +>>>>>> + +WARNING: UDT mismatch for not_equal_to +<<<<<< +0x4304 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4303, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b3e) + +****** +0x4b3e : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b3d, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b3e) + +>>>>>> + +WARNING: UDT mismatch for binder2nd > +<<<<<< +0x430e : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x430d, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 401, class name = binder2nd >, UDT(0x00004b43) + +****** +0x4b43 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4b42, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004b43) + +>>>>>> + +WARNING: UDT mismatch for unary_function +<<<<<< +0x4310 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x430f, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b45) + +****** +0x4b45 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b44, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b45) + +>>>>>> + +WARNING: UDT mismatch for binary_function +<<<<<< +0x4312 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4311, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b47) + +****** +0x4b47 : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b46, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b47) + +>>>>>> + +WARNING: UDT mismatch for greater +<<<<<< +0x4317 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4316, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004b4a) + +****** +0x4b4a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b49, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004b4a) + +>>>>>> + +WARNING: UDT mismatch for list >::_Acc +<<<<<< +0x431c : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x431b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004b4d) + +****** +0x4b4d : Length = 94, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4b4c, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004b4d) + +>>>>>> + +WARNING: UDT mismatch for reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int> +<<<<<< +0x432b : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x432a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>, UDT(0x00004b50) + +****** +0x4b50 : Length = 214, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4b4f, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement &,MxDeviceEnumerateElement *,int>, UDT(0x00004b50) + +>>>>>> + +WARNING: UDT mismatch for reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int> +<<<<<< +0x433a : Length = 234, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4339, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>, UDT(0x00004b53) + +****** +0x4b53 : Length = 234, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4b52, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDeviceEnumerateElement,MxDeviceEnumerateElement const &,MxDeviceEnumerateElement const *,int>, UDT(0x00004b53) + +>>>>>> + +WARNING: UDT mismatch for List +<<<<<< +0x4345 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4344, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b57) + +****** +0x4b57 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4b56, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b57) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x434a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4349, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for allocator +<<<<<< +0x435a : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4359, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004bb8) + +****** +0x4bb8 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4bb7, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004bb8) + +>>>>>> + +WARNING: UDT mismatch for list >::_Node +<<<<<< +0x435c : Length = 98, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x435b, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004b1f) + +****** +0x4b1f : Length = 98, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b1e, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 408, class name = list >::_Node, UDT(0x00004b1f) + +>>>>>> + +WARNING: UDT mismatch for list >::iterator +<<<<<< +0x436d : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x436c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b23) + +****** +0x4b23 : Length = 98, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b22, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b23) + +>>>>>> + +WARNING: UDT mismatch for list >::const_iterator +<<<<<< +0x4381 : Length = 106, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4380, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbb) + +****** +0x4bbb : Length = 106, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4bba, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbb) + +>>>>>> + +WARNING: UDT mismatch for iterator +<<<<<< +0x4383 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4382, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004b59) + +****** +0x4b59 : Length = 86, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b58, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004b59) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4385 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4384, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4389 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4388, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x438b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x438a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x438e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x438d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4390 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x438f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4396 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4395, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x439f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x439e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x43a1 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x43a0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x43a8 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x43a7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxVideoManager +<<<<<< +0x43ac : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x43ab, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +****** +0x4d0e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4d0d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 100, class name = MxVideoManager, UDT(0x00004d0e) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x43af : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x43ae, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x43b4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x43b3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x43b6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 54, field list type 0x43b5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x43ba : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x43b9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x43bd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x43bc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x43c0 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x43bf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x43d6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x43d5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x43d9 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x43d8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for MxUnknown100d9d00 +<<<<<< +0x43de : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x43dd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +****** +0x4436 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4435, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +>>>>>> + +WARNING: UDT mismatch for UnkLegoVideoManagerListElement +<<<<<< +0x43e2 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x43e1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +****** +0x4420 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x441f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = UnkLegoVideoManagerListElement, UDT(0x00004420) + +>>>>>> + +WARNING: UDT mismatch for MxCollection +<<<<<< +0x43e8 : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x43e7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000440f) + +****** +0x440f : Length = 70, Leaf = 0x1504 LF_CLASS + # members = 8, field list type 0x440e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 16, class name = MxCollection, UDT(0x0000440f) + +>>>>>> + +WARNING: UDT mismatch for MxList +<<<<<< +0x43f3 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x43f2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00004414) + +****** +0x4414 : Length = 62, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4413, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxList, UDT(0x00004414) + +>>>>>> + +WARNING: UDT mismatch for MxListEntry +<<<<<< +0x43ff : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x43fe, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x0000441c) + +****** +0x441c : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x441b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxListEntry, UDT(0x0000441c) + +>>>>>> + +WARNING: UDT mismatch for MxUnknown100d9d00 +<<<<<< +0x4409 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4408, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +****** +0x4436 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4435, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1bf4 + Size = 24, class name = MxUnknown100d9d00, UDT(0x00004436) + +>>>>>> + +WARNING: UDT mismatch for MxUnknown100d7c88 +<<<<<< +0x4438 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4437, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxUnknown100d7c88, UDT(0x00004457) + +****** +0x4457 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4456, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 24, class name = MxUnknown100d7c88, UDT(0x00004457) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager::CreateStruct +<<<<<< +0x445a : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4459, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +****** +0x4e38 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +>>>>>> + +WARNING: UDT mismatch for TglSurface::CreateStruct +<<<<<< +0x4467 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4459, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +****** +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x446b : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x446a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x446e : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x446d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4473 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x4472, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager::CreateStruct +<<<<<< +0x4475 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4474, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +****** +0x4e38 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +>>>>>> + +WARNING: UDT mismatch for TglSurface::CreateStruct +<<<<<< +0x4476 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4474, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +****** +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x447a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4479, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoROI +<<<<<< +0x4487 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4486, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +****** +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +>>>>>> + +WARNING: UDT mismatch for LegoROI +<<<<<< +0x4489 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4488, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +****** +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x448b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x448a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoROI +<<<<<< +0x448d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x448c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +****** +0x4493 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4492, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1cfb + Size = 268, class name = LegoROI, UDT(0x00004493) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4491 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4490, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4495 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4494, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for Hospital +<<<<<< +0x4499 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4498, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +****** +0x449d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x449c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +>>>>>> + +WARNING: UDT mismatch for Hospital +<<<<<< +0x449b : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x449a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +****** +0x449d : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x449c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1c82 + Size = 300, class name = Hospital, UDT(0x0000449d) + +>>>>>> + +WARNING: UDT mismatch for MxStreamChunk +<<<<<< +0x449f : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x449e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +****** +0x44a2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x44a1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 32, class name = MxStreamChunk, UDT(0x000044a2) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x44a6 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44a5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxDSChunk +<<<<<< +0x44aa : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44a9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +****** +0x44ae : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x44ad, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 28, class name = MxDSChunk, UDT(0x000044ae) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x44b2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x44b1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x44b5 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x44b4, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for binder2nd > +<<<<<< +0x44c5 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x44c4, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004b43) + +****** +0x4b43 : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4b42, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 404, class name = binder2nd >, UDT(0x00004b43) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x456a : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x4569, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4720 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 8, field list type 0x471f, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4782 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x4781, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4784 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4783, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4786 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 13, field list type 0x4785, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4803 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4802, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for Tgl::DeviceDirectDrawCreateData +<<<<<< +0x4806 : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4805, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +****** +0x4e3a : Length = 54, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4e39, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 20, class name = Tgl::DeviceDirectDrawCreateData, UDT(0x00004e3a) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4809 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 14, field list type 0x4808, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x480e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x480d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4816 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4815, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4900 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x48ff, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4912 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4911, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for list >::iterator +<<<<<< +0x492d : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x492c, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b7e) + +****** +0x4b7e : Length = 66, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b7d, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::iterator, UDT(0x00004b7e) + +>>>>>> + +WARNING: UDT mismatch for MxDisplayMode +<<<<<< +0x494e : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x494d, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +****** +0x4cea : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x4ce9, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +>>>>>> + +WARNING: UDT mismatch for MxDevice +<<<<<< +0x4954 : Length = 30, Leaf = 0x1505 LF_STRUCTURE + # members = 11, field list type 0x4953, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 420, class name = MxDevice, UDT(0x00004b64) + +****** +0x4b64 : Length = 30, Leaf = 0x1504 LF_CLASS + # members = 11, field list type 0x4b63, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 420, class name = MxDevice, UDT(0x00004b64) + +>>>>>> + +WARNING: UDT mismatch for List +<<<<<< +0x4962 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4961, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b6a) + +****** +0x4b6a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4b69, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = List, UDT(0x00004b6a) + +>>>>>> + +WARNING: UDT mismatch for allocator +<<<<<< +0x4984 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4983, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004b79) + +****** +0x4b79 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 15, field list type 0x4b78, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = allocator, UDT(0x00004b79) + +>>>>>> + +WARNING: UDT mismatch for list >::_Node +<<<<<< +0x4986 : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4985, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = list >::_Node, UDT(0x00004b7b) + +****** +0x4b7b : Length = 66, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b7a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 428, class name = list >::_Node, UDT(0x00004b7b) + +>>>>>> + +WARNING: UDT mismatch for list > +<<<<<< +0x49d8 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x49d7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b92) + +****** +0x4b92 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 77, field list type 0x4b91, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = list >, UDT(0x00004b92) + +>>>>>> + +WARNING: UDT mismatch for not_equal_to +<<<<<< +0x49df : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49de, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b96) + +****** +0x4b96 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b95, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = not_equal_to, UDT(0x00004b96) + +>>>>>> + +WARNING: UDT mismatch for binder2nd > +<<<<<< +0x49e9 : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x49e8, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 424, class name = binder2nd >, UDT(0x00004b9b) + +****** +0x4b9b : Length = 58, Leaf = 0x1504 LF_CLASS + # members = 5, field list type 0x4b9a, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 424, class name = binder2nd >, UDT(0x00004b9b) + +>>>>>> + +WARNING: UDT mismatch for unary_function +<<<<<< +0x49eb : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49ea, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b9d) + +****** +0x4b9d : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4b9c, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = unary_function, UDT(0x00004b9d) + +>>>>>> + +WARNING: UDT mismatch for binary_function +<<<<<< +0x49ed : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x49ec, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b9f) + +****** +0x4b9f : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4b9e, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = binary_function, UDT(0x00004b9f) + +>>>>>> + +WARNING: UDT mismatch for greater +<<<<<< +0x49f2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x49f1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004ba2) + +****** +0x4ba2 : Length = 38, Leaf = 0x1505 LF_STRUCTURE + # members = 2, field list type 0x4ba1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = greater, UDT(0x00004ba2) + +>>>>>> + +WARNING: UDT mismatch for list >::_Acc +<<<<<< +0x49f7 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x49f6, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004ba5) + +****** +0x4ba5 : Length = 62, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4ba4, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = list >::_Acc, UDT(0x00004ba5) + +>>>>>> + +WARNING: UDT mismatch for reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int> +<<<<<< +0x4a05 : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4a04, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>, UDT(0x00004ba8) + +****** +0x4ba8 : Length = 134, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4ba7, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::iterator,MxDevice,MxDevice &,MxDevice *,int>, UDT(0x00004ba8) + +>>>>>> + +WARNING: UDT mismatch for reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int> +<<<<<< +0x4a14 : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4a13, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>, UDT(0x00004bab) + +****** +0x4bab : Length = 154, Leaf = 0x1504 LF_CLASS + # members = 16, field list type 0x4baa, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = reverse_bidirectional_iterator >::const_iterator,MxDevice,MxDevice const &,MxDevice const *,int>, UDT(0x00004bab) + +>>>>>> + +WARNING: UDT mismatch for iterator +<<<<<< +0x4aba : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4ab9, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004bad) + +****** +0x4bad : Length = 70, Leaf = 0x1505 LF_STRUCTURE + # members = 3, field list type 0x4bac, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 1, class name = iterator, UDT(0x00004bad) + +>>>>>> + +WARNING: UDT mismatch for list >::const_iterator +<<<<<< +0x4acd : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4acc, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbe) + +****** +0x4bbe : Length = 74, Leaf = 0x1504 LF_CLASS + # members = 10, field list type 0x4bbd, CONSTRUCTOR, OVERLOAD, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 4, class name = list >::const_iterator, UDT(0x00004bbe) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerateElement +<<<<<< +0x4ae0 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 12, field list type 0x4adf, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +****** +0x4b1d : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4b1c, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 400, class name = MxDeviceEnumerateElement, UDT(0x00004b1d) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4ae2 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4ae1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4ae4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4ae3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4ae9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4ae8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for test +<<<<<< +0x4aee : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4aed, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = test, UDT(0x00004af0) + +****** +0x4af0 : Length = 26, Leaf = 0x1505 LF_STRUCTURE + # members = 4, field list type 0x4aef, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 16, class name = test, UDT(0x00004af0) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4af7 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4af6, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4afc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4afb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4b05 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4b04, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4b0d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4b0c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4b0f : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4b0e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bc0 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4bbf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bc3 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4bc2, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bc6 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 20, field list type 0x4bc5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bc9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4bc8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bcc : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bcb, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bcf : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bce, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4bd1 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4bd0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4c06 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4c05, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceEnumerate +<<<<<< +0x4c08 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4c07, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +****** +0x4cd9 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 24, field list type 0x4cd8, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 20, class name = MxDeviceEnumerate, UDT(0x00004cd9) + +>>>>>> + +WARNING: UDT mismatch for TowTrackMissionState +<<<<<< +0x4cce : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccd, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +****** +0x4cd0 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 21, field list type 0x4ccf, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b4d + Size = 40, class name = TowTrackMissionState, UDT(0x00004cd0) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cd2 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cd1, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDeviceModeFinder +<<<<<< +0x4cd4 : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 4, field list type 0x4cd3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +****** +0x4cdf : Length = 42, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cde, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxDeviceModeFinder, UDT(0x00004cdf) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw::DeviceModesInfo +<<<<<< +0x4cd6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4cd5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +****** +0x4ce6 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 7, field list type 0x4ce5, CONSTRUCTOR, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 380, class name = MxDirectDraw::DeviceModesInfo, UDT(0x00004ce6) + +>>>>>> + +WARNING: UDT mismatch for MxDisplayMode +<<<<<< +0x4ce2 : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 5, field list type 0x4ce1, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +****** +0x4cea : Length = 34, Leaf = 0x1505 LF_STRUCTURE + # members = 6, field list type 0x4ce9, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 12, class name = MxDisplayMode, UDT(0x00004cea) + +>>>>>> + +WARNING: UDT mismatch for MxDirectDraw +<<<<<< +0x4ce4 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 65, field list type 0x4ce3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +****** +0x4e52 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 66, field list type 0x4e51, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2176, class name = MxDirectDraw, UDT(0x00004e52) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cf1 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf0, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxAssignedDevice +<<<<<< +0x4cf4 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4cf3, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +****** +0x4d27 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4d26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cf6 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf5, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cf8 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf7, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cfa : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cf9, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4cfd : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4cfc, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxAssignedDevice +<<<<<< +0x4d01 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d00, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +****** +0x4d27 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4d26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4d03 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4d02, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4d07 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d06, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager::CreateStruct +<<<<<< +0x4d0b : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d0a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +****** +0x4e38 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +>>>>>> + +WARNING: UDT mismatch for TglSurface::CreateStruct +<<<<<< +0x4d0c : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d0a, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +****** +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4d11 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d10, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager::CreateStruct +<<<<<< +0x4d13 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d12, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +****** +0x4e38 : Length = 50, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = Lego3DManager::CreateStruct, UDT(0x00004e38) + +>>>>>> + +WARNING: UDT mismatch for TglSurface::CreateStruct +<<<<<< +0x4d14 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4d12, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +****** +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4d17 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d16, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxDirect3D +<<<<<< +0x4d19 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 18, field list type 0x4d18, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +****** +0x4e70 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 19, field list type 0x4e6f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 2196, class name = MxDirect3D, UDT(0x00004e70) + +>>>>>> + +WARNING: UDT mismatch for MxAssignedDevice +<<<<<< +0x4d1b : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 7, field list type 0x4d1a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +****** +0x4d27 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 9, field list type 0x4d26, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 228, class name = MxAssignedDevice, UDT(0x00004d27) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4d22 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4d21, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4d31 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4d30, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for TglSurface::CreateStruct +<<<<<< +0x4e3b : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4e37, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +****** +0x4ea9 : Length = 46, Leaf = 0x1505 LF_STRUCTURE + # members = 10, field list type 0x4ea8, NESTED, + Derivation list type 0x0000, VT shape type 0x0000 + Size = 40, class name = TglSurface::CreateStruct, UDT(0x00004ea9) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4e3d : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e3c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4e41 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e40, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4e43 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e42, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for Lego3DView +<<<<<< +0x4e45 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e44, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +****** +0x4e47 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 17, field list type 0x4e46, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 168, class name = Lego3DView, UDT(0x00004e47) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e4e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 55, field list type 0x4e4d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for Lego3DManager +<<<<<< +0x4e50 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e4f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +****** +0x4e68 : Length = 34, Leaf = 0x1504 LF_CLASS + # members = 12, field list type 0x4e67, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1b51 + Size = 16, class name = Lego3DManager, UDT(0x00004e68) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e55 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 56, field list type 0x4e54, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e59 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e58, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +****** +0x4e7d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e7d) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e5b : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5a, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +****** +0x4e80 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e7f, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e80) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e5d : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5c, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +****** +0x4e83 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e82, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e83) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e5f : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e5e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +****** +0x4e86 : Length = 50, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e85, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e86) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e61 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e60, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +****** +0x4e89 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e88, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e89) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e63 : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e62, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +****** +0x4e8c : Length = 54, Leaf = 0x1504 LF_CLASS + # members = 23, field list type 0x4e8b, CONSTRUCTOR, OVERLOAD, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8c) + +>>>>>> + +WARNING: UDT mismatch for MxListCursor +<<<<<< +0x4e65 : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e64, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +****** +0x4e8f : Length = 46, Leaf = 0x1504 LF_CLASS + # members = 22, field list type 0x4e8e, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x1240 + Size = 16, class name = MxListCursor, UDT(0x00004e8f) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e6a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e69, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e6c : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e6b, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e6e : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 59, field list type 0x4e6d, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e72 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 60, field list type 0x4e71, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e74 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 59, field list type 0x4e73, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e76 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e75, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e78 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 58, field list type 0x4e77, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e7a : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e79, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + +WARNING: UDT mismatch for LegoVideoManager +<<<<<< +0x4e91 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e90, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +****** +0x4e93 : Length = 38, Leaf = 0x1504 LF_CLASS + # members = 57, field list type 0x4e92, CONSTRUCTOR, + Derivation list type 0x0000, VT shape type 0x293d + Size = 1424, class name = LegoVideoManager, UDT(0x00004e93) + +>>>>>> + + +*** SYMBOLS + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\viewmanager\viewroi.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00047540], Cb: 00000007, Type: 0x1024, ViewROI::IntrinsicImportance + Parent: 00000000, End: 000000E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(0000D0) S_REGISTER: ecx, Type: 0x1022, this + +(0000E0) S_END + +(0000E4) S_GPROC32: [0001:00047550], Cb: 00000007, Type: 0x1028, ViewROI::GetGeometry + Parent: 00000000, End: 00000130, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000120) S_REGISTER: ecx, Type: 0x1022, this + +(000130) S_END + +(000134) S_GPROC32: [0001:00047560], Cb: 00000007, Type: 0x102B, ViewROI::GetGeometry + Parent: 00000000, End: 00000180, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000170) S_REGISTER: ecx, Type: 0x102A, this + +(000180) S_END + +(000184) S_GPROC32: [0001:00047570], Cb: 00000139, Type: 0x1030, ViewROI::UpdateWorldData + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 0000001F, Debug end: 000000FC + Flags: Frame Ptr Present + +(0001C4) S_LABEL32: [0001:000476A1], $L44087 +(0001D8) S_LABEL32: [0001:00047697], $L44086 +(0001EC) S_LABEL32: [0001:0004768F], $L44153 +(000200) S_LABEL32: [0001:0004767C], $L44155 +(000214) S_REGISTER: esi, Type: 0x102A, this +(000224) S_BPREL32: [00000008], Type: 0x102E, parent2world +(000240) S_BPREL32: [FFFFFFB4], Type: 0x2B94, mat + +(000250) S_END + +(000254) S_GPROC32: [0001:000476B0], Cb: 00000054, Type: 0x2B9A, Tgl::Array,4>::~Array,4> + Parent: 00000000, End: 000002F8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0002BC) S_LABEL32: [0001:000476F1], $L44171 +(0002D0) S_LABEL32: [0001:000476E7], $L44170 +(0002E4) S_BPREL32: [FFFFFFF0], Type: 0x2B95, this + +(0002F8) S_END + +(0002FC) S_GPROC32: [0001:00047710], Cb: 00000003, Type: 0x2BAC, Tgl::Array::Array + Parent: 00000000, End: 00000358, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000348) S_REGISTER: ecx, Type: 0x2BA9, this + +(000358) S_END + +(00035C) S_GPROC32: [0001:00047720], Cb: 00000001, Type: 0x2BAC, Tgl::Array::~Array + Parent: 00000000, End: 000003B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003A8) S_REGISTER: ecx, Type: 0x2BA9, this + +(0003B8) S_END + +(0003BC) S_GPROC32: [0001:00047730], Cb: 00000049, Type: 0x2B8F, Tgl::FloatMatrix4::~FloatMatrix4 + Parent: 00000000, End: 00000440, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000404) S_LABEL32: [0001:00047771], $L44183 +(000418) S_LABEL32: [0001:00047767], $L44182 +(00042C) S_BPREL32: [FFFFFFF0], Type: 0x2B8B, this + +(000440) S_END + +(000444) S_GPROC32: [0001:00047780], Cb: 00000010, Type: 0x4397, ViewROI::SetUnk101013d8 + Parent: 00000000, End: 000004AC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(000484) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_flag +(000498) S_REGISTER: al, Type: T_UCHAR(0020), oldFlag + +(0004AC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\viewmanager\viewmanager.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00047530], Cb: 00000003, Type: 0x1042, ViewManager::RemoveAll + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0000D0) S_REGISTER: ecx, Type: 0x103F, this +(0000E0) S_BPREL32: [00000004], Type: 0x1040, __formal + +(0000F8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\viewmanager\viewlodlist.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:000466B0], Cb: 000000EB, Type: 0x2813, ViewLODListManager::ViewLODListManager + Parent: 00000000, End: 00000158, Next: 00000000 + Debug start: 00000025, Debug end: 000000B4 + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:00046790], $L11355 +(0000F4) S_LABEL32: [0001:00046786], $L11354 +(000108) S_LABEL32: [0001:0004677B], $L11358 +(00011C) S_LABEL32: [0001:00046770], $L11360 +(000130) S_LABEL32: [0001:00046768], $L11361 +(000144) S_BPREL32: [FFFFFFEC], Type: 0x2812, this + +(000158) S_END + +(00015C) S_GPROC32: [0001:000467A0], Cb: 000000C4, Type: 0x2C9C, _Tree,map >::_Kfn,ROINameComparator,allocator >::~_Tree,map,map >::_Kfn,ROINameComparator,allocator >::iterator::_Inc + Parent: 00000000, End: 000003A8, Next: 00000000 + Debug start: 00000000, Debug end: 0000003B + +(000388) S_REGISTER: ecx, Type: 0x2C62, this +(000398) S_REGISTER: edx, Type: 0x2C64, _P + +(0003A8) S_END + +(0003AC) S_GPROC32: [0001:000468B0], Cb: 0000044F, Type: 0x2CB4, _Tree,map >::_Kfn,ROINameComparator,allocator >::erase + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 00000011, Debug end: 00000445 + +(000494) S_REGISTER: esi, Type: 0x2C92, this +(0004A4) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(0004C0) S_BPREL32: [00000008], Type: 0x2C75, _P +(0004D0) S_REGISTER: ecx, Type: 0x2C64, _Y +(0004E0) S_REGISTER: edx, Type: 0x2C64, _X +(0004F0) S_REGISTER: edi, Type: 0x2C64, _W +(000500) S_REGISTER: edi, Type: 0x2C64, _W + +(000510) S_END + +(000514) S_GPROC32: [0001:00046D00], Cb: 00000039, Type: 0x2CC4, _Tree,map >::_Kfn,ROINameComparator,allocator >::_Erase + Parent: 00000000, End: 0000062C, Next: 00000000 + Debug start: 00000007, Debug end: 00000033 + +(0005FC) S_REGISTER: edi, Type: 0x2C92, this +(00060C) S_BPREL32: [00000004], Type: 0x2C64, _X +(00061C) S_REGISTER: ebx, Type: 0x2C64, _Y + +(00062C) S_END + +(000630) S_GPROC32: [0001:00046D40], Cb: 00000049, Type: 0x2C3B, map >::~map > + Parent: 00000000, End: 00000730, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0006F4) S_LABEL32: [0001:00046D81], $L12293 +(000708) S_LABEL32: [0001:00046D77], $L12292 +(00071C) S_BPREL32: [FFFFFFF0], Type: 0x2C17, this + +(000730) S_END + +(000734) S_GPROC32: [0001:00046D90], Cb: 0000001E, Type: T_NOTYPE(0000), ViewLODListManager::`scalar deleting destructor' + Parent: 00000000, End: 000007B0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00078C) S_REGISTER: esi, Type: 0x2812, this +(00079C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0007B0) S_END + +(0007B4) S_GPROC32: [0001:00046DB0], Cb: 00000049, Type: 0x4458, Map::~Map + Parent: 00000000, End: 00000880, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000844) S_LABEL32: [0001:00046DF1], $L12303 +(000858) S_LABEL32: [0001:00046DE7], $L12302 +(00086C) S_BPREL32: [FFFFFFF0], Type: 0x2BBC, this + +(000880) S_END + +(000884) S_GPROC32: [0001:00046E00], Cb: 00000052, Type: 0x2813, ViewLODListManager::~ViewLODListManager + Parent: 00000000, End: 00000910, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0008D4) S_LABEL32: [0001:00046E47], $L12311 +(0008E8) S_LABEL32: [0001:00046E3D], $L12310 +(0008FC) S_BPREL32: [FFFFFFF0], Type: 0x2812, this + +(000910) S_END + +(000914) S_GPROC32: [0001:00046E60], Cb: 00000228, Type: 0x2818, ViewLODListManager::Create + Parent: 00000000, End: 00000A00, Next: 00000000 + Debug start: 00000020, Debug end: 00000201 + Flags: Frame Ptr Present + +(000958) S_LABEL32: [0001:0004707B], $L12320 +(00096C) S_LABEL32: [0001:00047071], $L12319 +(000980) S_LABEL32: [0001:00046EEC], $L12325 +(000994) S_LABEL32: [0001:00046EE4], $L12327 +(0009A8) S_REGISTER: ebx, Type: 0x2812, this +(0009B8) S_BPREL32: [00000008], Type: 0x2816, rROIName +(0009D0) S_BPREL32: [0000000C], Type: T_INT4(0074), lodCount +(0009E8) S_BPREL32: [FFFFFFF0], Type: T_32PRCHAR(0470), pROIName + +(000A00) S_END + +(000A04) S_GPROC32: [0001:00047090], Cb: 0000002B, Type: T_NOTYPE(0000), LODListBase::`scalar deleting destructor' + Parent: 00000000, End: 00000A7C, Next: 00000000 + Debug start: 00000001, Debug end: 00000027 + +(000A58) S_REGISTER: esi, Type: 0x2ACC, this +(000A68) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000A7C) S_END + +(000A80) S_GPROC32: [0001:000470C0], Cb: 00000013, Type: 0x2AD5, LODListBase::~LODListBase + Parent: 00000000, End: 00000AD4, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000AC4) S_REGISTER: ecx, Type: 0x2ACC, this + +(000AD4) S_END + +(000AD8) S_GPROC32: [0001:000470E0], Cb: 0000004B, Type: 0x2C67, _Tree,map >::_Kfn,ROINameComparator,allocator >::iterator::_Dec + Parent: 00000000, End: 00000BE8, Next: 00000000 + Debug start: 00000001, Debug end: 0000004A + +(000BC8) S_REGISTER: ecx, Type: 0x2C62, this +(000BD8) S_REGISTER: edx, Type: 0x2C64, _P + +(000BE8) S_END + +(000BEC) S_GPROC32: [0001:00047130], Cb: 000002A6, Type: 0x2CC6, _Tree,map >::_Kfn,ROINameComparator,allocator >::_Insert + Parent: 00000000, End: 00000D34, Next: 00000000 + Debug start: 00000009, Debug end: 0000029F + +(000CD8) S_REGISTER: esi, Type: 0x2C92, this +(000CE8) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000D04) S_BPREL32: [00000008], Type: 0x2C64, _X +(000D14) S_BPREL32: [0000000C], Type: 0x2C64, _Y +(000D24) S_BPREL32: [00000010], Type: 0x2C0F, _V + +(000D34) S_END + +(000D38) S_GPROC32: [0001:000473E0], Cb: 00000067, Type: T_NOTYPE(0000), ViewLODList::`scalar deleting destructor' + Parent: 00000000, End: 00000DDC, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000D8C) S_LABEL32: [0001:0004743F], $L12953 +(000DA0) S_LABEL32: [0001:00047435], $L12951 +(000DB4) S_BPREL32: [FFFFFFF0], Type: 0x27C4, this +(000DC8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000DDC) S_END + +(000DE0) S_GPROC32: [0001:00047450], Cb: 00000049, Type: 0x27D7, LODList::~LODList + Parent: 00000000, End: 00000E68, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000E2C) S_LABEL32: [0001:00047491], $L12962 +(000E40) S_LABEL32: [0001:00047487], $L12961 +(000E54) S_BPREL32: [FFFFFFF0], Type: 0x27CC, this + +(000E68) S_END + +(000E6C) S_GPROC32: [0001:000474A0], Cb: 00000005, Type: 0x281C, ViewLODListManager::Lookup + Parent: 00000000, End: 00000ED8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000EB0) S_REGISTER: ecx, Type: 0x281A, this +(000EC0) S_BPREL32: [00000004], Type: 0x2816, __formal + +(000ED8) S_END + +(000EDC) S_GPROC32: [0001:000474B0], Cb: 00000003, Type: 0x281D, ViewLODListManager::Destroy + Parent: 00000000, End: 00000F44, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000F20) S_REGISTER: ecx, Type: 0x2812, this +(000F30) S_BPREL32: [00000004], Type: 0x2081, lodList + +(000F44) S_END + +(000F48) S_GPROC32: [0001:000474C0], Cb: 00000061, Type: T_NOTYPE(0000), LODList::`scalar deleting destructor' + Parent: 00000000, End: 00000FF0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000FA0) S_LABEL32: [0001:00047519], $L12974 +(000FB4) S_LABEL32: [0001:0004750F], $L12972 +(000FC8) S_BPREL32: [FFFFFFF0], Type: 0x27CC, this +(000FDC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000FF0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\towtrackmissionstate.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000463D0], Cb: 000000A2, Type: 0x1045, TowTrackMissionState::TowTrackMissionState + Parent: 00000000, End: 00000130, Next: 00000000 + Debug start: 0000001C, Debug end: 00000079 + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:0004646A], $L2274 +(0000F4) S_LABEL32: [0001:00046460], $L2273 +(000108) S_LABEL32: [0001:00046458], $L2276 +(00011C) S_BPREL32: [FFFFFFF0], Type: 0x1044, this + +(000130) S_END + +(000134) S_GPROC32: [0001:00046480], Cb: 00000006, Type: 0x1048, TowTrackMissionState::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x1047, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:00046490], Cb: 000000A2, Type: 0x104A, TowTrackMissionState::IsA + Parent: 00000000, End: 000001F8, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001D4) S_REGISTER: ecx, Type: 0x1047, this +(0001E4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001F8) S_END + +(0001FC) S_GPROC32: [0001:00046540], Cb: 00000061, Type: T_NOTYPE(0000), TowTrackMissionState::`scalar deleting destructor' + Parent: 00000000, End: 000002A8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000258) S_LABEL32: [0001:00046599], $L2340 +(00026C) S_LABEL32: [0001:0004658F], $L2338 +(000280) S_BPREL32: [FFFFFFF0], Type: 0x1044, this +(000294) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0002A8) S_END + +(0002AC) S_GPROC32: [0001:000465B0], Cb: 000000FE, Type: 0x4CCC, TowTrackMissionState::VTable0x1c + Parent: 00000000, End: 0000034C, Next: 00000000 + Debug start: 00000021, Debug end: 000000EE + Flags: Frame Ptr Present + +(0002F4) S_LABEL32: [0001:00046621], $L2351 +(000308) S_LABEL32: [0001:00046617], $L2350 +(00031C) S_REGISTER: edi, Type: 0x1044, this +(00032C) S_BPREL32: [00000008], Type: 0x1897, p_legoFileStream + +(00034C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\towtrack.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00046130], Cb: 0000009E, Type: 0x1053, TowTrack::TowTrack + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 0000001C, Debug end: 0000007D + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:000461C6], $L47465 +(0000D0) S_LABEL32: [0001:000461BC], $L47464 +(0000E4) S_BPREL32: [FFFFFFF0], Type: 0x1052, this + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:000461D0], Cb: 00000006, Type: 0x1056, TowTrack::ClassName + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000138) S_REGISTER: ecx, Type: 0x1055, this + +(000148) S_END + +(00014C) S_GPROC32: [0001:000461E0], Cb: 00000172, Type: 0x1057, TowTrack::IsA + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000184) S_REGISTER: ecx, Type: 0x1055, this +(000194) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00046360], Cb: 00000061, Type: T_NOTYPE(0000), TowTrack::`scalar deleting destructor' + Parent: 00000000, End: 0000024C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0001FC) S_LABEL32: [0001:000463B9], $L47733 +(000210) S_LABEL32: [0001:000463AF], $L47731 +(000224) S_BPREL32: [FFFFFFF0], Type: 0x1052, this +(000238) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00024C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\view.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00045B10], Cb: 00000028, Type: 0x4D2B, ViewportAppData::ViewportAppData + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 00000008, Debug end: 00000023 + +(0000D0) S_REGISTER: esi, Type: 0x2E75, this +(0000E0) S_BPREL32: [00000004], Type: 0x4D29, pRenderer + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:00045B40], Cb: 00000079, Type: 0x2E7A, ViewportAppData::~ViewportAppData + Parent: 00000000, End: 00000198, Next: 00000000 + Debug start: 00000005, Debug end: 00000073 + +(000148) S_REGISTER: esi, Type: 0x2E75, this +(000158) S_REGISTER: edi, Type: T_INT4(0074), i +(000164) S_BPREL32: [FFFFFFFC], Type: 0x2E7C, pChildFrame +(00017C) S_BPREL32: [FFFFFFF8], Type: 0x2E7E, pChildFrames + +(000198) S_END + +(00019C) S_GPROC32: [0001:00045BC0], Cb: 000000D5, Type: 0x4D2F, TglImpl::ViewImpl::ViewportCreateAppData + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 0000001E, Debug end: 000000B0 + Flags: Frame Ptr Present + +(0001EC) S_LABEL32: [0001:00045C88], $L37312 +(000200) S_LABEL32: [0001:00045C7E], $L37311 +(000214) S_BPREL32: [00000008], Type: 0x4D29, pDevice +(000228) S_BPREL32: [0000000C], Type: 0x2E81, pView +(00023C) S_BPREL32: [00000010], Type: 0x4D2D, pCamera +(000250) S_REGISTER: ebx, Type: 0x100D, result + +(000264) S_END + +(000268) S_GPROC32: [0001:00045CA0], Cb: 00000043, Type: 0x1DAB, ViewportDestroyCallback + Parent: 00000000, End: 000002D0, Next: 00000000 + Debug start: 00000008, Debug end: 0000003E + +(0002A8) S_BPREL32: [00000004], Type: 0x1DA9, pObject +(0002BC) S_BPREL32: [00000008], Type: T_32PVOID(0403), pArg + +(0002D0) S_END + +(0002D4) S_GPROC32: [0001:00045CF0], Cb: 00000003, Type: 0x2E85, ViewportPickImpl + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00030C) S_BPREL32: [00000004], Type: 0x2E81, pViewport +(000324) S_BPREL32: [00000008], Type: T_INT4(0074), x +(000334) S_BPREL32: [0000000C], Type: T_INT4(0074), y +(000344) S_BPREL32: [00000010], Type: 0x2864, ppGroupsToPickFrom +(000364) S_BPREL32: [00000014], Type: T_INT4(0074), groupsToPickFromCount +(000388) S_BPREL32: [00000018], Type: 0x2865, rppPickedGroups +(0003A4) S_BPREL32: [0000001C], Type: 0x1934, rPickedGroupCount + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:00045D00], Cb: 00000004, Type: 0x2E87, TglImpl::ViewImpl::ImplementationDataPtr + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000418) S_REGISTER: ecx, Type: 0x2E86, this + +(000428) S_END + +(00042C) S_GPROC32: [0001:00045D10], Cb: 00000029, Type: 0x2E88, TglImpl::ViewImpl::Add + Parent: 00000000, End: 000004A0, Next: 00000000 + Debug start: 00000005, Debug end: 00000025 + +(00046C) S_REGISTER: ecx, Type: 0x2E86, this +(00047C) S_BPREL32: [00000004], Type: 0x2857, pLight +(000490) S_REGISTER: esi, Type: 0x2E7C, frame + +(0004A0) S_END + +(0004A4) S_GPROC32: [0001:00045D40], Cb: 0000002C, Type: 0x2E88, TglImpl::ViewImpl::Remove + Parent: 00000000, End: 0000051C, Next: 00000000 + Debug start: 00000005, Debug end: 00000028 + +(0004E8) S_REGISTER: ecx, Type: 0x2E86, this +(0004F8) S_BPREL32: [00000004], Type: 0x2857, pLight +(00050C) S_REGISTER: esi, Type: 0x2E7C, frame + +(00051C) S_END + +(000520) S_GPROC32: [0001:00045D70], Cb: 00000078, Type: 0x2E89, TglImpl::ViewImpl::SetCamera + Parent: 00000000, End: 000005B4, Next: 00000000 + Debug start: 00000011, Debug end: 0000006E + +(000564) S_REGISTER: edi, Type: 0x2E86, this +(000574) S_BPREL32: [00000004], Type: 0x27EF, pCamera +(000588) S_REGISTER: esi, Type: 0x4D2D, frame +(000598) S_REGISTER: ebx, Type: 0x2E8A, pViewportAppData + +(0005B4) S_END + +(0005B8) S_GPROC32: [0001:00045DF0], Cb: 00000032, Type: 0x2E8B, TglImpl::ViewImpl::SetProjection + Parent: 00000000, End: 00000624, Next: 00000000 + Debug start: 00000000, Debug end: 0000002F + +(000600) S_REGISTER: ecx, Type: 0x2E86, this +(000610) S_BPREL32: [00000004], Type: 0x1009, type + +(000624) S_END + +(000628) S_GPROC32: [0001:00045E30], Cb: 00000084, Type: 0x2E8C, TglImpl::ViewImpl::SetFrustrum + Parent: 00000000, End: 00000704, Next: 00000000 + Debug start: 0000001C, Debug end: 0000007D + +(000670) S_REGISTER: esi, Type: 0x2E86, this +(000680) S_BPREL32: [00000004], Type: T_REAL32(0040), frontClippingDistance +(0006A4) S_BPREL32: [00000008], Type: T_REAL32(0040), backClippingDistance +(0006C8) S_BPREL32: [0000000C], Type: T_REAL32(0040), degrees +(0006DC) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), field +(0006F0) S_REGISTER: eax, Type: 0x100D, result + +(000704) S_END + +(000708) S_GPROC32: [0001:00045EC0], Cb: 00000050, Type: 0x2E8C, TglImpl::ViewImpl::SetBackgroundColor + Parent: 00000000, End: 000007B8, Next: 00000000 + Debug start: 00000004, Debug end: 0000004C + +(000758) S_REGISTER: ecx, Type: 0x2E86, this +(000768) S_BPREL32: [00000004], Type: T_REAL32(0040), r +(000778) S_BPREL32: [00000008], Type: T_REAL32(0040), g +(000788) S_BPREL32: [0000000C], Type: T_REAL32(0040), b +(000798) S_REGISTER: esi, Type: 0x100D, ret +(0007A8) S_REGISTER: eax, Type: 0x2E8A, data + +(0007B8) S_END + +(0007BC) S_GPROC32: [0001:00045F10], Cb: 0000002C, Type: 0x2E8D, TglImpl::ViewImpl::GetBackgroundColor + Parent: 00000000, End: 0000085C, Next: 00000000 + Debug start: 00000000, Debug end: 00000029 + +(00080C) S_REGISTER: ecx, Type: 0x2E86, this +(00081C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), r +(00082C) S_BPREL32: [00000008], Type: T_32PREAL32(0440), g +(00083C) S_BPREL32: [0000000C], Type: T_32PREAL32(0440), b +(00084C) S_REGISTER: eax, Type: 0x2E8A, data + +(00085C) S_END + +(000860) S_GPROC32: [0001:00045F40], Cb: 00000015, Type: 0x2E8E, TglImpl::ViewImpl::Clear + Parent: 00000000, End: 000008B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(0008A0) S_REGISTER: ecx, Type: 0x2E86, this + +(0008B0) S_END + +(0008B4) S_GPROC32: [0001:00045F60], Cb: 0000007C, Type: 0x2E88, TglImpl::ViewImpl::Render + Parent: 00000000, End: 00000958, Next: 00000000 + Debug start: 00000009, Debug end: 00000075 + +(0008F8) S_REGISTER: esi, Type: 0x2E86, this +(000908) S_BPREL32: [00000004], Type: 0x2857, pCamera +(00091C) S_REGISTER: ebx, Type: 0x4D2D, light +(00092C) S_REGISTER: ebp, Type: 0x4D2D, lastRendered +(000944) S_REGISTER: edi, Type: 0x2E8A, appdata + +(000958) S_END + +(00095C) S_GPROC32: [0001:00045FE0], Cb: 00000033, Type: 0x2E8F, TglImpl::ViewImpl::ForceUpdate + Parent: 00000000, End: 000009FC, Next: 00000000 + Debug start: 00000005, Debug end: 0000002F + +(0009A4) S_REGISTER: ecx, Type: 0x2E86, this +(0009B4) S_BPREL32: [00000004], Type: T_ULONG(0022), x +(0009C4) S_BPREL32: [00000008], Type: T_ULONG(0022), y +(0009D4) S_BPREL32: [0000000C], Type: T_ULONG(0022), width +(0009E8) S_BPREL32: [00000010], Type: T_ULONG(0022), height + +(0009FC) S_END + +(000A00) S_GPROC32: [0001:00046020], Cb: 0000002D, Type: 0x2E90, TglImpl::ViewImpl::Pick + Parent: 00000000, End: 00000AF0, Next: 00000000 + Debug start: 00000000, Debug end: 0000002A + +(000A40) S_REGISTER: ecx, Type: 0x2E86, this +(000A50) S_BPREL32: [00000004], Type: T_ULONG(0022), x +(000A60) S_BPREL32: [00000008], Type: T_ULONG(0022), y +(000A70) S_BPREL32: [0000000C], Type: 0x2864, ppGroupsToPickFrom +(000A90) S_BPREL32: [00000010], Type: T_INT4(0074), groupsToPickFromCount +(000AB4) S_BPREL32: [00000014], Type: 0x2865, rppPickedGroups +(000AD0) S_BPREL32: [00000018], Type: 0x1934, rPickedGroupCount + +(000AF0) S_END + +(000AF4) S_GPROC32: [0001:00046050], Cb: 00000063, Type: 0x2E91, TglImpl::ViewImpl::TransformWorldToScreen + Parent: 00000000, End: 00000BC4, Next: 00000000 + Debug start: 00000007, Debug end: 0000005D + +(000B48) S_REGISTER: ecx, Type: 0x2E86, this +(000B58) S_BPREL32: [00000004], Type: T_32PREAL32(0440), world +(000B6C) S_BPREL32: [00000008], Type: T_32PREAL32(0440), screen +(000B80) S_BPREL32: [FFFFFFE4], Type: 0x2982, d3dRMWorld +(000B98) S_BPREL32: [FFFFFFF0], Type: 0x2E93, d3dRMScreen +(000BB0) S_REGISTER: eax, Type: 0x100D, result + +(000BC4) S_END + +(000BC8) S_GPROC32: [0001:000460C0], Cb: 00000063, Type: 0x2E91, TglImpl::ViewImpl::TransformScreenToWorld + Parent: 00000000, End: 00000C98, Next: 00000000 + Debug start: 00000007, Debug end: 0000005D + +(000C1C) S_REGISTER: ecx, Type: 0x2E86, this +(000C2C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), screen +(000C40) S_BPREL32: [00000008], Type: T_32PREAL32(0440), world +(000C54) S_BPREL32: [FFFFFFE4], Type: 0x2982, d3dRMWorld +(000C6C) S_BPREL32: [FFFFFFF0], Type: 0x2E93, d3dScreen +(000C84) S_REGISTER: eax, Type: 0x100D, result + +(000C98) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\unk.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000459C0], Cb: 00000004, Type: 0x2E96, TglImpl::UnkImpl::ImplementationDataPtr + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000D8) S_REGISTER: ecx, Type: 0x2E95, this + +(0000E8) S_END + +(0000EC) S_GPROC32: [0001:000459D0], Cb: 00000005, Type: 0x2E98, TglImpl::UnkImpl::SetMeshData + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000134) S_REGISTER: ecx, Type: 0x2E95, this +(000144) S_BPREL32: [00000004], Type: T_ULONG(0022), faceCount +(00015C) S_BPREL32: [00000008], Type: T_ULONG(0022), vertexCount +(000174) S_BPREL32: [0000000C], Type: 0x27FD, pPositions +(00018C) S_BPREL32: [00000010], Type: 0x27FD, pNormals +(0001A4) S_BPREL32: [00000014], Type: 0x27FF, pTextureCoordinates +(0001C4) S_BPREL32: [00000018], Type: T_ULONG(0022), vertexPerFaceCount +(0001E4) S_BPREL32: [0000001C], Type: T_32PULONG(0422), pFaceData + +(0001FC) S_END + +(000200) S_GPROC32: [0001:000459E0], Cb: 00000057, Type: 0x2E99, TglImpl::UnkImpl::GetBoundingBox + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 00000006, Debug end: 00000051 + +(000248) S_REGISTER: ecx, Type: 0x2E95, this +(000258) S_BPREL32: [00000004], Type: T_32PREAL32(0440), min +(000268) S_BPREL32: [00000008], Type: T_32PREAL32(0440), max +(000278) S_BPREL32: [FFFFFFE8], Type: 0x2E9B, box +(000288) S_REGISTER: eax, Type: 0x100D, result + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:00045A40], Cb: 000000C5, Type: 0x2E9E, TglImpl::UnkImpl::Clone + Parent: 00000000, End: 00000350, Next: 00000000 + Debug start: 00000020, Debug end: 000000A0 + Flags: Frame Ptr Present + +(0002E0) S_LABEL32: [0001:00045AF8], $L37145 +(0002F4) S_LABEL32: [0001:00045AEE], $L37144 +(000308) S_LABEL32: [0001:00045AA4], $L37151 +(00031C) S_LABEL32: [0001:00045A9C], $L37153 +(000330) S_REGISTER: ebx, Type: 0x2E95, this +(000340) S_REGISTER: edi, Type: 0x2E9F, mesh + +(000350) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\texture.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00045620], Cb: 00000053, Type: 0x2EA5, TglImpl::TextureImpl::SetImage + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 0000000C, Debug end: 0000004F + +(0000D4) S_BPREL32: [00000004], Type: 0x2EA1, pSelf +(0000E8) S_BPREL32: [00000008], Type: 0x2EA3, pImage +(0000FC) S_REGISTER: edi, Type: T_ULONG(0022), appData +(000110) S_REGISTER: ebx, Type: 0x100D, result + +(000124) S_END + +(000128) S_GPROC32: [0001:00045680], Cb: 0000002D, Type: 0x1DAB, TextureDestroyCallback + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000007, Debug end: 00000029 + +(000168) S_BPREL32: [00000004], Type: 0x1DA9, pObject +(00017C) S_BPREL32: [00000008], Type: T_32PVOID(0403), pArg +(000190) S_REGISTER: ebx, Type: 0x2EA3, pImage + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:000456B0], Cb: 0000007D, Type: 0x2EA9, TglImpl::TglD3DRMIMAGE::TglD3DRMIMAGE + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 00000006, Debug end: 00000079 + +(0001F8) S_REGISTER: esi, Type: 0x2EA6, this +(000208) S_BPREL32: [00000004], Type: T_INT4(0074), width +(00021C) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000230) S_BPREL32: [0000000C], Type: T_INT4(0074), depth +(000244) S_BPREL32: [00000010], Type: T_32PVOID(0403), pBuffer +(000258) S_BPREL32: [00000014], Type: T_INT4(0074), useBuffer +(000270) S_BPREL32: [00000018], Type: T_INT4(0074), paletteSize +(000288) S_BPREL32: [0000001C], Type: 0x2EA7, pEntries + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:00045730], Cb: 00000023, Type: 0x2EAA, TglImpl::TglD3DRMIMAGE::Destroy + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000001, Debug end: 00000021 + +(0002EC) S_REGISTER: esi, Type: 0x2EA6, this + +(0002FC) S_END + +(000300) S_GPROC32: [0001:00045760], Cb: 00000005, Type: 0x2EAB, TglImpl::TglD3DRMIMAGE::CreateBuffer + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00034C) S_REGISTER: ecx, Type: 0x2EA6, this +(00035C) S_BPREL32: [00000004], Type: T_INT4(0074), width +(000370) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000384) S_BPREL32: [0000000C], Type: T_INT4(0074), depth +(000398) S_BPREL32: [00000010], Type: T_32PVOID(0403), pBuffer +(0003AC) S_BPREL32: [00000014], Type: T_INT4(0074), useBuffer + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:00045770], Cb: 0000002D, Type: 0x2EAD, TglImpl::TglD3DRMIMAGE::FillRowsOfTexture + Parent: 00000000, End: 00000468, Next: 00000000 + Debug start: 00000009, Debug end: 00000028 + +(00041C) S_REGISTER: ecx, Type: 0x2EA6, this +(00042C) S_BPREL32: [00000004], Type: T_INT4(0074), y +(00043C) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000450) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), pContent + +(000468) S_END + +(00046C) S_GPROC32: [0001:000457A0], Cb: 0000008F, Type: 0x2EAF, TglImpl::TglD3DRMIMAGE::InitializePalette + Parent: 00000000, End: 00000500, Next: 00000000 + Debug start: 0000000B, Debug end: 00000089 + +(0004C0) S_REGISTER: edi, Type: 0x2EA6, this +(0004D0) S_BPREL32: [00000004], Type: T_INT4(0074), paletteSize +(0004E8) S_BPREL32: [00000008], Type: 0x2EA7, pEntries + +(000500) S_END + +(000504) S_GPROC32: [0001:00045830], Cb: 0000004A, Type: 0x2EB2, TglImpl::TextureImpl::SetTexels + Parent: 00000000, End: 000005C8, Next: 00000000 + Debug start: 00000001, Debug end: 00000046 + +(00054C) S_REGISTER: esi, Type: 0x2EB0, this +(00055C) S_BPREL32: [00000004], Type: T_INT4(0074), width +(000570) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000584) S_BPREL32: [0000000C], Type: T_INT4(0074), bitsPerTexel +(0005A0) S_BPREL32: [00000010], Type: T_32PVOID(0403), pTexels +(0005B4) S_REGISTER: eax, Type: 0x100D, result + +(0005C8) S_END + +(0005CC) S_GPROC32: [0001:00045880], Cb: 00000022, Type: 0x2EB4, TglImpl::TextureImpl::FillRowsOfTexture + Parent: 00000000, End: 00000664, Next: 00000000 + Debug start: 00000000, Debug end: 0000001F + +(00061C) S_REGISTER: ecx, Type: 0x2EB0, this +(00062C) S_BPREL32: [00000004], Type: T_INT4(0074), y +(00063C) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000650) S_BPREL32: [0000000C], Type: T_32PVOID(0403), pBuffer + +(000664) S_END + +(000668) S_GPROC32: [0001:000458B0], Cb: 00000021, Type: 0x2EB5, TglImpl::TextureImpl::Changed + Parent: 00000000, End: 000006F8, Next: 00000000 + Debug start: 00000000, Debug end: 0000001E + +(0006B0) S_REGISTER: ecx, Type: 0x2EB0, this +(0006C0) S_BPREL32: [00000004], Type: T_INT4(0074), texelsChanged +(0006DC) S_BPREL32: [00000008], Type: T_INT4(0074), paletteChanged + +(0006F8) S_END + +(0006FC) S_GPROC32: [0001:000458E0], Cb: 00000081, Type: 0x2EB8, TglImpl::TextureImpl::GetBufferAndPalette + Parent: 00000000, End: 000007FC, Next: 00000000 + Debug start: 00000006, Debug end: 0000007C + +(000750) S_REGISTER: ecx, Type: 0x2EB0, this +(000760) S_BPREL32: [00000004], Type: T_32PINT4(0474), width +(000774) S_BPREL32: [00000008], Type: T_32PINT4(0474), height +(000788) S_BPREL32: [0000000C], Type: T_32PINT4(0474), depth +(00079C) S_BPREL32: [00000010], Type: 0x1714, pBuffer +(0007B0) S_BPREL32: [00000014], Type: T_32PINT4(0474), paletteSize +(0007C8) S_BPREL32: [00000018], Type: 0x2EB6, pEntries +(0007E0) S_REGISTER: eax, Type: 0x2EA3, image +(0007F0) S_REGISTER: ecx, Type: T_INT4(0074), i + +(0007FC) S_END + +(000800) S_GPROC32: [0001:00045970], Cb: 00000033, Type: 0x2EB9, TglImpl::TextureImpl::SetPalette + Parent: 00000000, End: 00000888, Next: 00000000 + Debug start: 00000001, Debug end: 00000030 + +(000848) S_REGISTER: esi, Type: 0x2EB0, this +(000858) S_BPREL32: [00000004], Type: T_INT4(0074), entryCount +(000870) S_BPREL32: [00000008], Type: 0x2EA7, pEntries + +(000888) S_END + +(00088C) S_GPROC32: [0001:000459B0], Cb: 00000004, Type: 0x2EBA, TglImpl::TextureImpl::ImplementationDataPtr + Parent: 00000000, End: 000008F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0008E0) S_REGISTER: ecx, Type: 0x2EB0, this + +(0008F0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\renderer.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00044190], Cb: 000000E6, Type: 0x2EBB, Tgl::CreateRenderer + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 0000001D, Debug end: 000000C2 + Flags: Frame Ptr Present + +(0000C8) S_LABEL32: [0001:00044269], $L37344 +(0000DC) S_LABEL32: [0001:0004425F], $L37343 +(0000F0) S_LABEL32: [0001:000441F1], $L37350 +(000104) S_LABEL32: [0001:000441E9], $L37352 +(000118) S_REGISTER: esi, Type: 0x2EBD, renderer + +(00012C) S_END + +(000130) S_GPROC32: [0001:00044280], Cb: 00000095, Type: T_NOTYPE(0000), TglImpl::RendererImpl::`scalar deleting destructor' + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 0000002C, Debug end: 00000075 + Flags: Frame Ptr Present + +(00018C) S_LABEL32: [0001:0004430D], $L37380 +(0001A0) S_LABEL32: [0001:00044303], $L37378 +(0001B4) S_BPREL32: [FFFFFFF0], Type: 0x2EBE, this +(0001C8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00044320], Cb: 00000049, Type: 0x2EBF, Tgl::Renderer::~Renderer + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000220) S_LABEL32: [0001:00044361], $L37403 +(000234) S_LABEL32: [0001:00044357], $L37402 +(000248) S_BPREL32: [FFFFFFF0], Type: 0x27DD, this + +(00025C) S_END + +(000260) S_GPROC32: [0001:00044370], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Renderer::`scalar deleting destructor' + Parent: 00000000, End: 00000304, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0002B4) S_LABEL32: [0001:000443C9], $L37411 +(0002C8) S_LABEL32: [0001:000443BF], $L37409 +(0002DC) S_BPREL32: [FFFFFFF0], Type: 0x27DD, this +(0002F0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000304) S_END + +(000308) S_GPROC32: [0001:000443E0], Cb: 000000CA, Type: 0x2EC0, TglImpl::RendererImpl::CreateDevice + Parent: 00000000, End: 000003DC, Next: 00000000 + Debug start: 00000020, Debug end: 000000A3 + Flags: Frame Ptr Present + +(000354) S_LABEL32: [0001:0004449D], $L37423 +(000368) S_LABEL32: [0001:00044493], $L37422 +(00037C) S_LABEL32: [0001:00044444], $L37429 +(000390) S_LABEL32: [0001:0004443C], $L37431 +(0003A4) S_REGISTER: ebx, Type: 0x2EBE, this +(0003B4) S_BPREL32: [00000008], Type: 0x27E0, data +(0003C8) S_REGISTER: edi, Type: 0x2EC2, device + +(0003DC) S_END + +(0003E0) S_GPROC32: [0001:000444B0], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::DeviceImpl::`scalar deleting destructor' + Parent: 00000000, End: 0000048C, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(00043C) S_LABEL32: [0001:0004452D], $L37447 +(000450) S_LABEL32: [0001:00044523], $L37445 +(000464) S_BPREL32: [FFFFFFF0], Type: 0x2EC3, this +(000478) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00048C) S_END + +(000490) S_GPROC32: [0001:00044540], Cb: 00000049, Type: 0x2EC4, Tgl::Device::~Device + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0004CC) S_LABEL32: [0001:00044581], $L37457 +(0004E0) S_LABEL32: [0001:00044577], $L37456 +(0004F4) S_BPREL32: [FFFFFFF0], Type: 0x2845, this + +(000508) S_END + +(00050C) S_GPROC32: [0001:00044590], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Device::`scalar deleting destructor' + Parent: 00000000, End: 000005B0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000560) S_LABEL32: [0001:000445E9], $L37465 +(000574) S_LABEL32: [0001:000445DF], $L37463 +(000588) S_BPREL32: [FFFFFFF0], Type: 0x2845, this +(00059C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0005B0) S_END + +(0005B4) S_GPROC32: [0001:00044600], Cb: 000000F1, Type: 0x2EC5, TglImpl::RendererImpl::CreateDevice + Parent: 00000000, End: 0000069C, Next: 00000000 + Debug start: 00000020, Debug end: 000000CA + Flags: Frame Ptr Present + +(000600) S_LABEL32: [0001:000446E4], $L37477 +(000614) S_LABEL32: [0001:000446DA], $L37476 +(000628) S_LABEL32: [0001:00044664], $L37483 +(00063C) S_LABEL32: [0001:0004465C], $L37485 +(000650) S_REGISTER: ebx, Type: 0x2EBE, this +(000660) S_BPREL32: [00000008], Type: 0x27E5, data +(000674) S_REGISTER: esi, Type: 0x2EC2, device +(000688) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(00069C) S_END + +(0006A0) S_GPROC32: [0001:00044700], Cb: 00000125, Type: 0x2EC6, TglImpl::RendererImpl::CreateView + Parent: 00000000, End: 000007CC, Next: 00000000 + Debug start: 00000020, Debug end: 000000FE + Flags: Frame Ptr Present + +(0006EC) S_LABEL32: [0001:00044818], $L37504 +(000700) S_LABEL32: [0001:0004480E], $L37503 +(000714) S_LABEL32: [0001:00044764], $L37510 +(000728) S_LABEL32: [0001:0004475C], $L37512 +(00073C) S_REGISTER: ebx, Type: 0x2EBE, this +(00074C) S_BPREL32: [00000008], Type: 0x27EC, pDevice +(000760) S_BPREL32: [0000000C], Type: 0x27EF, pCamera +(000774) S_BPREL32: [00000010], Type: T_ULONG(0022), x +(000784) S_BPREL32: [00000014], Type: T_ULONG(0022), y +(000794) S_BPREL32: [00000018], Type: T_ULONG(0022), width +(0007A8) S_BPREL32: [0000001C], Type: T_ULONG(0022), height +(0007BC) S_REGISTER: edi, Type: 0x2EC7, view + +(0007CC) S_END + +(0007D0) S_GPROC32: [0001:00044830], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::ViewImpl::`scalar deleting destructor' + Parent: 00000000, End: 00000878, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(000828) S_LABEL32: [0001:000448AD], $L37543 +(00083C) S_LABEL32: [0001:000448A3], $L37541 +(000850) S_BPREL32: [FFFFFFF0], Type: 0x2E86, this +(000864) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000878) S_END + +(00087C) S_GPROC32: [0001:000448C0], Cb: 00000049, Type: 0x2EC8, Tgl::View::~View + Parent: 00000000, End: 000008F0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0008B4) S_LABEL32: [0001:00044901], $L37553 +(0008C8) S_LABEL32: [0001:000448F7], $L37552 +(0008DC) S_BPREL32: [FFFFFFF0], Type: 0x2855, this + +(0008F0) S_END + +(0008F4) S_GPROC32: [0001:00044910], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::View::`scalar deleting destructor' + Parent: 00000000, End: 00000994, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000944) S_LABEL32: [0001:00044969], $L37561 +(000958) S_LABEL32: [0001:0004495F], $L37559 +(00096C) S_BPREL32: [FFFFFFF0], Type: 0x2855, this +(000980) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000994) S_END + +(000998) S_GPROC32: [0001:00044980], Cb: 0000010F, Type: 0x2EC9, TglImpl::RendererImpl::CreateGroup + Parent: 00000000, End: 00000A68, Next: 00000000 + Debug start: 00000020, Debug end: 000000E8 + Flags: Frame Ptr Present + +(0009E4) S_LABEL32: [0001:00044A82], $L37573 +(0009F8) S_LABEL32: [0001:00044A78], $L37572 +(000A0C) S_LABEL32: [0001:000449E4], $L37581 +(000A20) S_LABEL32: [0001:000449DC], $L37583 +(000A34) S_REGISTER: ebx, Type: 0x2EBE, this +(000A44) S_BPREL32: [00000008], Type: 0x1027, pParent +(000A58) S_REGISTER: edi, Type: 0x2ECB, group + +(000A68) S_END + +(000A6C) S_GPROC32: [0001:00044A90], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::GroupImpl::`scalar deleting destructor' + Parent: 00000000, End: 00000B14, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(000AC4) S_LABEL32: [0001:00044B0D], $L37616 +(000AD8) S_LABEL32: [0001:00044B03], $L37614 +(000AEC) S_BPREL32: [FFFFFFF0], Type: 0x2ECC, this +(000B00) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000B14) S_END + +(000B18) S_GPROC32: [0001:00044B20], Cb: 00000049, Type: 0x2ECD, Tgl::Group::~Group + Parent: 00000000, End: 00000B90, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000B54) S_LABEL32: [0001:00044B61], $L37626 +(000B68) S_LABEL32: [0001:00044B57], $L37625 +(000B7C) S_BPREL32: [FFFFFFF0], Type: 0x2820, this + +(000B90) S_END + +(000B94) S_GPROC32: [0001:00044B70], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Group::`scalar deleting destructor' + Parent: 00000000, End: 00000C34, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000BE4) S_LABEL32: [0001:00044BC9], $L37634 +(000BF8) S_LABEL32: [0001:00044BBF], $L37632 +(000C0C) S_BPREL32: [FFFFFFF0], Type: 0x2820, this +(000C20) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000C34) S_END + +(000C38) S_GPROC32: [0001:00044BE0], Cb: 000000C0, Type: 0x2ECE, TglImpl::RendererImpl::CreateCamera + Parent: 00000000, End: 00000CF8, Next: 00000000 + Debug start: 00000020, Debug end: 0000009B + Flags: Frame Ptr Present + +(000C84) S_LABEL32: [0001:00044C93], $L37646 +(000C98) S_LABEL32: [0001:00044C89], $L37645 +(000CAC) S_LABEL32: [0001:00044C44], $L37652 +(000CC0) S_LABEL32: [0001:00044C3C], $L37654 +(000CD4) S_REGISTER: ebx, Type: 0x2EBE, this +(000CE4) S_REGISTER: edi, Type: 0x2ED0, camera + +(000CF8) S_END + +(000CFC) S_GPROC32: [0001:00044CA0], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::CameraImpl::`scalar deleting destructor' + Parent: 00000000, End: 00000DA8, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(000D58) S_LABEL32: [0001:00044D1D], $L37670 +(000D6C) S_LABEL32: [0001:00044D13], $L37668 +(000D80) S_BPREL32: [FFFFFFF0], Type: 0x2ED1, this +(000D94) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000DA8) S_END + +(000DAC) S_GPROC32: [0001:00044D30], Cb: 00000049, Type: 0x2ED2, Tgl::Camera::~Camera + Parent: 00000000, End: 00000E24, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000DE8) S_LABEL32: [0001:00044D71], $L37680 +(000DFC) S_LABEL32: [0001:00044D67], $L37679 +(000E10) S_BPREL32: [FFFFFFF0], Type: 0x286A, this + +(000E24) S_END + +(000E28) S_GPROC32: [0001:00044D80], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Camera::`scalar deleting destructor' + Parent: 00000000, End: 00000ECC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000E7C) S_LABEL32: [0001:00044DD9], $L37688 +(000E90) S_LABEL32: [0001:00044DCF], $L37686 +(000EA4) S_BPREL32: [FFFFFFF0], Type: 0x286A, this +(000EB8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000ECC) S_END + +(000ED0) S_GPROC32: [0001:00044DF0], Cb: 00000190, Type: 0x2ED4, TglImpl::RendererImpl::CreateLight + Parent: 00000000, End: 00001034, Next: 00000000 + Debug start: 00000021, Debug end: 00000153 + Flags: Frame Ptr Present + +(000F1C) S_LABEL32: [0001:00044F5D], $L37700 +(000F30) S_LABEL32: [0001:00044F53], $L37699 +(000F44) S_LABEL32: [0001:00044E55], $L37716 +(000F58) S_LABEL32: [0001:00044E4D], $L37718 +(000F6C) S_BPREL32: [FFFFFFE8], Type: 0x2EBE, this +(000F80) S_BPREL32: [00000008], Type: 0x1007, type +(000F94) S_BPREL32: [0000000C], Type: T_REAL32(0040), r +(000FA4) S_BPREL32: [00000010], Type: T_REAL32(0040), g +(000FB4) S_BPREL32: [00000014], Type: T_REAL32(0040), b +(000FC4) S_REGISTER: esi, Type: 0x2ED6, newLight +(000FD8) S_BPREL32: [FFFFFFEC], Type: 0x4D2D, frame +(000FEC) S_REGISTER: edi, Type: 0x1067, translatedType +(001008) S_REGISTER: ebx, Type: 0x100D, result +(00101C) S_BPREL32: [FFFFFFF0], Type: 0x2ED8, d3dLight + +(001034) S_END + +(001038) S_GPROC32: [0001:00044F80], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::LightImpl::`scalar deleting destructor' + Parent: 00000000, End: 000010E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(001090) S_LABEL32: [0001:00044FFD], $L37741 +(0010A4) S_LABEL32: [0001:00044FF3], $L37739 +(0010B8) S_BPREL32: [FFFFFFF0], Type: 0x2ED9, this +(0010CC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0010E0) S_END + +(0010E4) S_GPROC32: [0001:00045010], Cb: 00000049, Type: 0x2EDA, Tgl::Light::~Light + Parent: 00000000, End: 0000115C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001120) S_LABEL32: [0001:00045051], $L37751 +(001134) S_LABEL32: [0001:00045047], $L37750 +(001148) S_BPREL32: [FFFFFFF0], Type: 0x2872, this + +(00115C) S_END + +(001160) S_GPROC32: [0001:00045060], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Light::`scalar deleting destructor' + Parent: 00000000, End: 00001200, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0011B0) S_LABEL32: [0001:000450B9], $L37759 +(0011C4) S_LABEL32: [0001:000450AF], $L37757 +(0011D8) S_BPREL32: [FFFFFFF0], Type: 0x2872, this +(0011EC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001200) S_END + +(001204) S_GPROC32: [0001:000450D0], Cb: 000000BE, Type: 0x2EDB, TglImpl::RendererImpl::CreateUnk + Parent: 00000000, End: 000012C0, Next: 00000000 + Debug start: 00000020, Debug end: 00000099 + Flags: Frame Ptr Present + +(00124C) S_LABEL32: [0001:00045181], $L37771 +(001260) S_LABEL32: [0001:00045177], $L37770 +(001274) S_LABEL32: [0001:00045134], $L37777 +(001288) S_LABEL32: [0001:0004512C], $L37779 +(00129C) S_REGISTER: ebx, Type: 0x2EBE, this +(0012AC) S_REGISTER: edi, Type: 0x2E9F, unknown + +(0012C0) S_END + +(0012C4) S_GPROC32: [0001:00045190], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::UnkImpl::`scalar deleting destructor' + Parent: 00000000, End: 0000136C, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(00131C) S_LABEL32: [0001:0004520D], $L37795 +(001330) S_LABEL32: [0001:00045203], $L37793 +(001344) S_BPREL32: [FFFFFFF0], Type: 0x2E95, this +(001358) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00136C) S_END + +(001370) S_GPROC32: [0001:00045220], Cb: 00000049, Type: 0x2EDD, Tgl::Unk::~Unk + Parent: 00000000, End: 000013E4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0013A8) S_LABEL32: [0001:00045261], $L37805 +(0013BC) S_LABEL32: [0001:00045257], $L37804 +(0013D0) S_BPREL32: [FFFFFFF0], Type: 0x2EDC, this + +(0013E4) S_END + +(0013E8) S_GPROC32: [0001:00045270], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Unk::`scalar deleting destructor' + Parent: 00000000, End: 00001488, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001438) S_LABEL32: [0001:000452C9], $L37813 +(00144C) S_LABEL32: [0001:000452BF], $L37811 +(001460) S_BPREL32: [FFFFFFF0], Type: 0x2EDC, this +(001474) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001488) S_END + +(00148C) S_GPROC32: [0001:000452E0], Cb: 00000179, Type: 0x2EDE, TglImpl::RendererImpl::CreateTexture + Parent: 00000000, End: 00001610, Next: 00000000 + Debug start: 00000020, Debug end: 00000145 + Flags: Frame Ptr Present + +(0014D8) S_LABEL32: [0001:0004544C], $L37825 +(0014EC) S_LABEL32: [0001:00045442], $L37824 +(001500) S_LABEL32: [0001:00045435], $L37836 +(001514) S_LABEL32: [0001:00045344], $L37888 +(001528) S_LABEL32: [0001:0004533C], $L37890 +(00153C) S_REGISTER: ebx, Type: 0x2EBE, this +(00154C) S_BPREL32: [00000008], Type: T_INT4(0074), width +(001560) S_BPREL32: [0000000C], Type: T_INT4(0074), height +(001574) S_BPREL32: [00000010], Type: T_INT4(0074), bitsPerTexel +(001590) S_BPREL32: [00000014], Type: T_32PVOID(0403), pTexels +(0015A4) S_BPREL32: [00000018], Type: T_INT4(0074), texelsArePersistent +(0015C4) S_BPREL32: [0000001C], Type: T_INT4(0074), paletteEntryCount +(0015E4) S_BPREL32: [00000020], Type: 0x280A, pEntries +(0015FC) S_REGISTER: esi, Type: 0x2EDF, texture + +(001610) S_END + +(001614) S_GPROC32: [0001:00045460], Cb: 00000162, Type: 0x2EE0, TglImpl::RendererImpl::CreateTexture + Parent: 00000000, End: 000016E8, Next: 00000000 + Debug start: 00000020, Debug end: 00000130 + Flags: Frame Ptr Present + +(001660) S_LABEL32: [0001:000455B5], $L37938 +(001674) S_LABEL32: [0001:000455AB], $L37937 +(001688) S_LABEL32: [0001:0004559E], $L37949 +(00169C) S_LABEL32: [0001:000454C4], $L37994 +(0016B0) S_LABEL32: [0001:000454BC], $L37996 +(0016C4) S_REGISTER: esi, Type: 0x2EBE, this +(0016D4) S_REGISTER: edi, Type: 0x2EDF, texture + +(0016E8) S_END + +(0016EC) S_GPROC32: [0001:000455D0], Cb: 0000001C, Type: 0x2EE1, TglImpl::RendererImpl::SetTextureDefaultShadeCount + Parent: 00000000, End: 00001770, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(001748) S_REGISTER: ecx, Type: 0x2EBE, this +(001758) S_BPREL32: [00000004], Type: T_ULONG(0022), shadeCount + +(001770) S_END + +(001774) S_GPROC32: [0001:000455F0], Cb: 0000001C, Type: 0x2EE1, TglImpl::RendererImpl::SetTextureDefaultColorCount + Parent: 00000000, End: 000017F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(0017D0) S_REGISTER: ecx, Type: 0x2EBE, this +(0017E0) S_BPREL32: [00000004], Type: T_ULONG(0022), colorCount + +(0017F8) S_END + +(0017FC) S_GPROC32: [0001:00045610], Cb: 00000004, Type: 0x2EE2, TglImpl::RendererImpl::ImplementationDataPtr + Parent: 00000000, End: 00001860, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(001850) S_REGISTER: ecx, Type: 0x2EBE, this + +(001860) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\mesh.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00043AF0], Cb: 00000004, Type: 0x2EE5, TglImpl::MeshImpl::ImplementationDataPtr + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000D8) S_REGISTER: ecx, Type: 0x2EE4, this + +(0000E8) S_END + +(0000EC) S_GPROC32: [0001:00043B00], Cb: 0000006F, Type: 0x2EE6, TglImpl::MeshImpl::SetColor + Parent: 00000000, End: 00000180, Next: 00000000 + Debug start: 00000006, Debug end: 0000006B + +(000130) S_REGISTER: esi, Type: 0x2EE4, this +(000140) S_BPREL32: [00000004], Type: T_REAL32(0040), r +(000150) S_BPREL32: [00000008], Type: T_REAL32(0040), g +(000160) S_BPREL32: [0000000C], Type: T_REAL32(0040), b +(000170) S_BPREL32: [00000010], Type: T_REAL32(0040), a + +(000180) S_END + +(000184) S_GPROC32: [0001:00043B70], Cb: 0000002E, Type: 0x2EE7, TglImpl::MeshImpl::SetTexture + Parent: 00000000, End: 00000208, Next: 00000000 + Debug start: 00000000, Debug end: 0000002B + +(0001CC) S_REGISTER: ecx, Type: 0x2EE4, this +(0001DC) S_BPREL32: [00000004], Type: 0x2825, pTexture +(0001F4) S_REGISTER: edx, Type: 0x2EA1, texture + +(000208) S_END + +(00020C) S_GPROC32: [0001:00043BA0], Cb: 00000040, Type: 0x2EE8, TglImpl::MeshImpl::SetTextureMappingMode + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000000, Debug end: 0000003D + +(00025C) S_REGISTER: ecx, Type: 0x2EE4, this +(00026C) S_BPREL32: [00000004], Type: 0x1009, projType + +(000284) S_END + +(000288) S_GPROC32: [0001:00043BE0], Cb: 00000070, Type: 0x2EE9, TglImpl::MeshImpl::SetShadingModel + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000007, Debug end: 00000055 + +(0002D4) S_REGISTER: ecx, Type: 0x2EE4, this +(0002E4) S_BPREL32: [00000004], Type: 0x1005, model +(0002F8) S_BPREL32: [FFFFFFFC], Type: T_ULONG(0022), mode + +(00030C) S_END + +(000310) S_GPROC32: [0001:00043C50], Cb: 00000225, Type: 0x2EEB, TglImpl::MeshImpl::DeepClone + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 00000020, Debug end: 000001FE + Flags: Frame Ptr Present + +(000354) S_LABEL32: [0001:00043E68], $L37242 +(000368) S_LABEL32: [0001:00043E5E], $L37241 +(00037C) S_LABEL32: [0001:00043CB4], $L37256 +(000390) S_LABEL32: [0001:00043CAC], $L37258 +(0003A4) S_REGISTER: ebx, Type: 0x2EE4, this +(0003B4) S_BPREL32: [00000008], Type: 0x2E9D, pUnk +(0003C8) S_BPREL32: [FFFFFFC4], Type: 0x2EA1, textureRef +(0003E0) S_REGISTER: esi, Type: 0x2EEC, newMesh +(0003F4) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), index +(000408) S_BPREL32: [FFFFFFDC], Type: T_UINT4(0075), fcount +(00041C) S_BPREL32: [FFFFFFD4], Type: T_ULONG(0022), dataSize +(000434) S_BPREL32: [FFFFFFEC], Type: T_UINT4(0075), vcount +(000448) S_BPREL32: [FFFFFFD0], Type: T_ULONG(0022), color +(00045C) S_BPREL32: [FFFFFFE0], Type: T_32PUINT4(0475), faceBuffer +(000474) S_BPREL32: [FFFFFFC8], Type: T_ULONG(0022), mapping +(000488) S_BPREL32: [FFFFFFD8], Type: T_UINT4(0075), vperface +(0004A0) S_BPREL32: [FFFFFFCC], Type: T_ULONG(0022), quality +(0004B4) S_BPREL32: [FFFFFFE4], Type: 0x2EEE, vertexBuffer + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:00043E80], Cb: 00000088, Type: T_NOTYPE(0000), TglImpl::MeshImpl::`scalar deleting destructor' + Parent: 00000000, End: 0000057C, Next: 00000000 + Debug start: 00000021, Debug end: 00000069 + Flags: Frame Ptr Present + +(00052C) S_LABEL32: [0001:00043F00], $L37283 +(000540) S_LABEL32: [0001:00043EF6], $L37281 +(000554) S_BPREL32: [FFFFFFF0], Type: 0x2EE4, this +(000568) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00057C) S_END + +(000580) S_GPROC32: [0001:00043F10], Cb: 00000049, Type: 0x2EEF, Tgl::Mesh::~Mesh + Parent: 00000000, End: 000005F4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0005B8) S_LABEL32: [0001:00043F51], $L37294 +(0005CC) S_LABEL32: [0001:00043F47], $L37293 +(0005E0) S_BPREL32: [FFFFFFF0], Type: 0x283C, this + +(0005F4) S_END + +(0005F8) S_GPROC32: [0001:00043F60], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Mesh::`scalar deleting destructor' + Parent: 00000000, End: 00000698, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000648) S_LABEL32: [0001:00043FB9], $L37302 +(00065C) S_LABEL32: [0001:00043FAF], $L37300 +(000670) S_BPREL32: [FFFFFFF0], Type: 0x283C, this +(000684) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000698) S_END + +(00069C) S_GPROC32: [0001:00043FD0], Cb: 000000D3, Type: 0x2EEB, TglImpl::MeshImpl::ShallowClone + Parent: 00000000, End: 00000780, Next: 00000000 + Debug start: 00000020, Debug end: 0000009C + Flags: Frame Ptr Present + +(0006E4) S_LABEL32: [0001:00044096], $L37314 +(0006F8) S_LABEL32: [0001:0004408C], $L37313 +(00070C) S_LABEL32: [0001:00044034], $L37321 +(000720) S_LABEL32: [0001:0004402C], $L37323 +(000734) S_REGISTER: ebx, Type: 0x2EE4, this +(000744) S_BPREL32: [00000008], Type: 0x2E9D, pUnk +(000758) S_REGISTER: esi, Type: 0x2EEC, newGroup +(00076C) S_REGISTER: eax, Type: 0x2EF1, newData + +(000780) S_END + +(000784) S_GPROC32: [0001:000440B0], Cb: 000000D1, Type: 0x2EF4, TglImpl::MeshImpl::GetTexture + Parent: 00000000, End: 0000086C, Next: 00000000 + Debug start: 00000020, Debug end: 000000B2 + Flags: Frame Ptr Present + +(0007CC) S_LABEL32: [0001:00044174], $L37341 +(0007E0) S_LABEL32: [0001:0004416A], $L37340 +(0007F4) S_LABEL32: [0001:00044114], $L37349 +(000808) S_LABEL32: [0001:0004410C], $L37351 +(00081C) S_REGISTER: ebx, Type: 0x2EE4, this +(00082C) S_BPREL32: [00000008], Type: 0x2EF2, rpTexture +(000844) S_BPREL32: [FFFFFFEC], Type: 0x2EA1, texture +(000858) S_REGISTER: eax, Type: 0x100D, result + +(00086C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\light.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00043A30], Cb: 00000004, Type: 0x2EF5, TglImpl::LightImpl::ImplementationDataPtr + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000DC) S_REGISTER: ecx, Type: 0x2ED9, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:00043A40], Cb: 00000053, Type: 0x2EF6, TglImpl::LightImpl::SetTransformation + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 00000008, Debug end: 0000004C + +(000140) S_REGISTER: ecx, Type: 0x2ED9, this +(000150) S_BPREL32: [00000004], Type: 0x286D, matrix +(000164) S_BPREL32: [FFFFFFC0], Type: 0x1032, helper + +(000178) S_END + +(00017C) S_GPROC32: [0001:00043AA0], Cb: 0000004C, Type: 0x2EF7, TglImpl::LightImpl::SetColor + Parent: 00000000, End: 0000022C, Next: 00000000 + Debug start: 00000006, Debug end: 00000046 + +(0001C0) S_REGISTER: ecx, Type: 0x2ED9, this +(0001D0) S_BPREL32: [00000004], Type: T_REAL32(0040), r +(0001E0) S_BPREL32: [00000008], Type: T_REAL32(0040), g +(0001F0) S_BPREL32: [0000000C], Type: T_REAL32(0040), b +(000200) S_BPREL32: [FFFFFFF8], Type: 0x2EF9, lightArray +(000218) S_BPREL32: [FFFFFFFC], Type: 0x2ED8, light + +(00022C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\group.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000435B0], Cb: 00000004, Type: 0x2EFA, TglImpl::GroupImpl::ImplementationDataPtr + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000DC) S_REGISTER: ecx, Type: 0x2ECC, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:000435C0], Cb: 00000053, Type: 0x2EFB, TglImpl::GroupImpl::SetTransformation + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 00000008, Debug end: 0000004C + +(000140) S_REGISTER: ecx, Type: 0x2ECC, this +(000150) S_BPREL32: [00000004], Type: 0x286D, matrix +(000164) S_BPREL32: [FFFFFFC0], Type: 0x1032, helper + +(000178) S_END + +(00017C) S_GPROC32: [0001:00043620], Cb: 00000069, Type: 0x2EFC, TglImpl::GroupImpl::SetColor + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000006, Debug end: 00000065 + +(0001C0) S_REGISTER: esi, Type: 0x2ECC, this +(0001D0) S_BPREL32: [00000004], Type: T_REAL32(0040), r +(0001E0) S_BPREL32: [00000008], Type: T_REAL32(0040), g +(0001F0) S_BPREL32: [0000000C], Type: T_REAL32(0040), b +(000200) S_BPREL32: [00000010], Type: T_REAL32(0040), a + +(000210) S_END + +(000214) S_GPROC32: [0001:00043690], Cb: 0000002B, Type: 0x2EFD, TglImpl::GroupImpl::SetTexture + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 00000000, Debug end: 00000028 + +(00025C) S_REGISTER: ecx, Type: 0x2ECC, this +(00026C) S_BPREL32: [00000004], Type: 0x2825, pTexture +(000284) S_REGISTER: edx, Type: 0x2EA1, pD3DTexture + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:000436C0], Cb: 000000CB, Type: 0x2EFE, TglImpl::GroupImpl::GetTexture + Parent: 00000000, End: 0000038C, Next: 00000000 + Debug start: 00000020, Debug end: 000000AC + Flags: Frame Ptr Present + +(0002E8) S_LABEL32: [0001:0004377E], $L37220 +(0002FC) S_LABEL32: [0001:00043774], $L37219 +(000310) S_LABEL32: [0001:00043724], $L37228 +(000324) S_LABEL32: [0001:0004371C], $L37230 +(000338) S_REGISTER: ebx, Type: 0x2ECC, this +(000348) S_BPREL32: [00000008], Type: 0x2EF2, pTexture +(000360) S_BPREL32: [FFFFFFEC], Type: 0x2EA1, pD3DTexture +(000378) S_REGISTER: eax, Type: 0x100D, result + +(00038C) S_END + +(000390) S_GPROC32: [0001:00043790], Cb: 00000007, Type: 0x2BB6, Tgl::Object::~Object + Parent: 00000000, End: 000003DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(0003CC) S_REGISTER: ecx, Type: 0x2BB5, this + +(0003DC) S_END + +(0003E0) S_GPROC32: [0001:000437A0], Cb: 0000001F, Type: T_NOTYPE(0000), Tgl::Object::`scalar deleting destructor' + Parent: 00000000, End: 00000458, Next: 00000000 + Debug start: 00000006, Debug end: 0000001B + +(000434) S_REGISTER: esi, Type: 0x2BB5, this +(000444) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000458) S_END + +(00045C) S_GPROC32: [0001:000437C0], Cb: 00000085, Type: T_NOTYPE(0000), TglImpl::TextureImpl::`scalar deleting destructor' + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(0004B8) S_LABEL32: [0001:0004383D], $L37255 +(0004CC) S_LABEL32: [0001:00043833], $L37253 +(0004E0) S_BPREL32: [FFFFFFF0], Type: 0x2EB0, this +(0004F4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000508) S_END + +(00050C) S_GPROC32: [0001:00043850], Cb: 00000049, Type: 0x2EFF, Tgl::Texture::~Texture + Parent: 00000000, End: 00000588, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00054C) S_LABEL32: [0001:00043891], $L37265 +(000560) S_LABEL32: [0001:00043887], $L37264 +(000574) S_BPREL32: [FFFFFFF0], Type: 0x2834, this + +(000588) S_END + +(00058C) S_GPROC32: [0001:000438A0], Cb: 00000061, Type: T_NOTYPE(0000), Tgl::Texture::`scalar deleting destructor' + Parent: 00000000, End: 00000630, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0005E0) S_LABEL32: [0001:000438F9], $L37273 +(0005F4) S_LABEL32: [0001:000438EF], $L37271 +(000608) S_BPREL32: [FFFFFFF0], Type: 0x2834, this +(00061C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000630) S_END + +(000634) S_GPROC32: [0001:00043910], Cb: 00000049, Type: 0x2F01, TglImpl::GroupImpl::SetMaterialMode + Parent: 00000000, End: 000006B8, Next: 00000000 + Debug start: 00000007, Debug end: 00000031 + +(000680) S_REGISTER: ecx, Type: 0x2ECC, this +(000690) S_BPREL32: [00000004], Type: 0x2E6D, mode +(0006A4) S_BPREL32: [FFFFFFFC], Type: 0x1071, d3dMode + +(0006B8) S_END + +(0006BC) S_GPROC32: [0001:00043960], Cb: 00000021, Type: 0x2F02, TglImpl::GroupImpl::Add + Parent: 00000000, End: 00000720, Next: 00000000 + Debug start: 00000000, Debug end: 0000001E + +(0006FC) S_REGISTER: ecx, Type: 0x2ECC, this +(00070C) S_BPREL32: [00000004], Type: 0x2829, pMesh + +(000720) S_END + +(000724) S_GPROC32: [0001:00043990], Cb: 0000001F, Type: 0x2F03, TglImpl::GroupImpl::Add + Parent: 00000000, End: 00000788, Next: 00000000 + Debug start: 00000000, Debug end: 0000001C + +(000764) S_REGISTER: ecx, Type: 0x2ECC, this +(000774) S_BPREL32: [00000004], Type: 0x1027, pGroup + +(000788) S_END + +(00078C) S_GPROC32: [0001:000439B0], Cb: 00000022, Type: 0x2F03, TglImpl::GroupImpl::Remove + Parent: 00000000, End: 000007F4, Next: 00000000 + Debug start: 00000000, Debug end: 0000001F + +(0007D0) S_REGISTER: ecx, Type: 0x2ECC, this +(0007E0) S_BPREL32: [00000004], Type: 0x1027, pGroup + +(0007F4) S_END + +(0007F8) S_GPROC32: [0001:000439E0], Cb: 00000024, Type: 0x2F02, TglImpl::GroupImpl::Remove + Parent: 00000000, End: 00000860, Next: 00000000 + Debug start: 00000000, Debug end: 00000021 + +(00083C) S_REGISTER: ecx, Type: 0x2ECC, this +(00084C) S_BPREL32: [00000004], Type: 0x2829, pMesh + +(000860) S_END + +(000864) S_GPROC32: [0001:00043A10], Cb: 00000003, Type: 0x2F04, TglImpl::GroupImpl::RemoveAll + Parent: 00000000, End: 000008BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0008AC) S_REGISTER: ecx, Type: 0x2ECC, this + +(0008BC) S_END + +(0008C0) S_GPROC32: [0001:00043A20], Cb: 00000003, Type: 0x2F04, TglImpl::GroupImpl::Unknown + Parent: 00000000, End: 00000914, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000904) S_REGISTER: ecx, Type: 0x2ECC, this + +(000914) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\device.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00043430], Cb: 00000004, Type: 0x2F05, TglImpl::DeviceImpl::ImplementationDataPtr + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000DC) S_REGISTER: ecx, Type: 0x2EC3, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:00043440], Cb: 0000000A, Type: 0x2F06, TglImpl::DeviceImpl::GetWidth + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000138) S_REGISTER: ecx, Type: 0x2EC3, this + +(000148) S_END + +(00014C) S_GPROC32: [0001:00043450], Cb: 0000000A, Type: 0x2F06, TglImpl::DeviceImpl::GetHeight + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000194) S_REGISTER: ecx, Type: 0x2EC3, this + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:00043460], Cb: 00000008, Type: 0x2F07, TglImpl::DeviceImpl::SetColorModel + Parent: 00000000, End: 0000021C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001F4) S_REGISTER: ecx, Type: 0x2EC3, this +(000204) S_BPREL32: [00000004], Type: 0x1003, __formal + +(00021C) S_END + +(000220) S_GPROC32: [0001:00043470], Cb: 00000064, Type: 0x2F08, TglImpl::DeviceImpl::SetShadingModel + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000000, Debug end: 0000004D + +(00026C) S_REGISTER: ecx, Type: 0x2EC3, this +(00027C) S_BPREL32: [00000004], Type: 0x1005, model + +(000290) S_END + +(000294) S_GPROC32: [0001:000434E0], Cb: 0000001C, Type: 0x2F09, TglImpl::DeviceImpl::SetShadeCount + Parent: 00000000, End: 00000308, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(0002E0) S_REGISTER: ecx, Type: 0x2EC3, this +(0002F0) S_BPREL32: [00000004], Type: T_ULONG(0022), shadeCount + +(000308) S_END + +(00030C) S_GPROC32: [0001:00043500], Cb: 0000001C, Type: 0x2F0A, TglImpl::DeviceImpl::SetDither + Parent: 00000000, End: 00000378, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(000354) S_REGISTER: ecx, Type: 0x2EC3, this +(000364) S_BPREL32: [00000004], Type: T_INT4(0074), dither + +(000378) S_END + +(00037C) S_GPROC32: [0001:00043520], Cb: 0000003C, Type: 0x2F0C, TglImpl::DeviceImpl::InitFromD3DDevice + Parent: 00000000, End: 0000040C, Next: 00000000 + Debug start: 00000004, Debug end: 00000035 + +(0003CC) S_REGISTER: esi, Type: 0x2EC3, this +(0003DC) S_BPREL32: [00000004], Type: 0x27DC, __formal +(0003F4) S_BPREL32: [FFFFFFFC], Type: 0x2F0E, winDevice + +(00040C) S_END + +(000410) S_GPROC32: [0001:00043560], Cb: 00000029, Type: 0x2F0C, TglImpl::DeviceImpl::InitFromWindowsDevice + Parent: 00000000, End: 000004A4, Next: 00000000 + Debug start: 00000006, Debug end: 00000023 + +(000464) S_REGISTER: ecx, Type: 0x2EC3, this +(000474) S_BPREL32: [00000004], Type: 0x27DC, __formal +(00048C) S_BPREL32: [FFFFFFFC], Type: 0x2F0E, winDevice + +(0004A4) S_END + +(0004A8) S_GPROC32: [0001:00043590], Cb: 00000015, Type: 0x2F0F, TglImpl::DeviceImpl::Update + Parent: 00000000, End: 000004FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(0004EC) S_REGISTER: ecx, Type: 0x2EC3, this + +(0004FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\tgl\d3drm\camera.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000433A0], Cb: 00000004, Type: 0x2F10, TglImpl::CameraImpl::ImplementationDataPtr + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000DC) S_REGISTER: ecx, Type: 0x2ED1, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:000433B0], Cb: 00000078, Type: 0x2F11, TglImpl::CameraImpl::SetTransformation + Parent: 00000000, End: 00000190, Next: 00000000 + Debug start: 0000000B, Debug end: 00000070 + +(000140) S_REGISTER: esi, Type: 0x2ED1, this +(000150) S_BPREL32: [00000004], Type: 0x286D, matrix +(000164) S_BPREL32: [FFFFFFC0], Type: 0x1032, helper +(000178) S_BPREL32: [FFFFFFB4], Type: 0x2982, position + +(000190) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\skateboard.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00043110], Cb: 00000089, Type: 0x105C, SkateBoard::SkateBoard + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000006B + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00043191], $L49629 +(0000D8) S_LABEL32: [0001:00043187], $L49628 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x105B, this + +(000100) S_END + +(000104) S_GPROC32: [0001:000431A0], Cb: 00000006, Type: 0x105F, SkateBoard::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x105E, this + +(000154) S_END + +(000158) S_GPROC32: [0001:000431B0], Cb: 00000172, Type: 0x1060, SkateBoard::IsA + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000190) S_REGISTER: ecx, Type: 0x105E, this +(0001A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:00043330], Cb: 00000061, Type: T_NOTYPE(0000), SkateBoard::`scalar deleting destructor' + Parent: 00000000, End: 00000258, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000208) S_LABEL32: [0001:00043389], $L49897 +(00021C) S_LABEL32: [0001:0004337F], $L49895 +(000230) S_BPREL32: [FFFFFFF0], Type: 0x105B, this +(000244) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000258) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\scorestate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000430F0], Cb: 00000003, Type: 0x1063, ScoreState::VTable0x14 + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000C4) S_REGISTER: ecx, Type: 0x1062, this + +(0000D4) S_END + +(0000D8) S_GPROC32: [0001:00043100], Cb: 00000007, Type: 0x1063, ScoreState::SetFlag + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000114) S_REGISTER: ecx, Type: 0x1062, this + +(000124) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\score.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00042340], Cb: 0000006E, Type: 0x107C, Score::Score + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 0000001C, Debug end: 00000050 + Flags: Frame Ptr Present + +(0000B4) S_LABEL32: [0001:000423A6], $L55351 +(0000C8) S_LABEL32: [0001:0004239C], $L55350 +(0000DC) S_BPREL32: [FFFFFFF0], Type: 0x107B, this + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:000423B0], Cb: 00000006, Type: 0x107F, Score::ClassName + Parent: 00000000, End: 0000013C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00012C) S_REGISTER: ecx, Type: 0x107E, this + +(00013C) S_END + +(000140) S_GPROC32: [0001:000423C0], Cb: 0000010A, Type: 0x1080, Score::IsA + Parent: 00000000, End: 00000198, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000174) S_REGISTER: ecx, Type: 0x107E, this +(000184) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000198) S_END + +(00019C) S_GPROC32: [0001:000424D0], Cb: 0000001E, Type: T_NOTYPE(0000), Score::`scalar deleting destructor' + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001E8) S_REGISTER: esi, Type: 0x107B, this +(0001F8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00020C) S_END + +(000210) S_GPROC32: [0001:000424F0], Cb: 00000003, Type: 0x1081, Score::VTable0x5c + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00024C) S_REGISTER: ecx, Type: 0x107B, this + +(00025C) S_END + +(000260) S_GPROC32: [0001:00042500], Cb: 0000009F, Type: 0x107C, Score::~Score + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000021, Debug end: 00000080 + Flags: Frame Ptr Present + +(000298) S_LABEL32: [0001:00042597], $L55435 +(0002AC) S_LABEL32: [0001:0004258D], $L55434 +(0002C0) S_BPREL32: [FFFFFFF0], Type: 0x107B, this + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:000425A0], Cb: 00000094, Type: 0x1085, Score::Create + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000009, Debug end: 0000008F + +(000310) S_REGISTER: ebx, Type: 0x107B, this +(000320) S_BPREL32: [00000004], Type: 0x1083, p_dsObject +(000338) S_REGISTER: esi, Type: T_LONG(0012), result +(00034C) S_REGISTER: eax, Type: 0x1086, state +(00035C) S_REGISTER: edi, Type: 0x1088, gs + +(00036C) S_END + +(000370) S_GPROC32: [0001:00042640], Cb: 000000CA, Type: 0x107C, Score::DeleteScript + Parent: 00000000, End: 00000410, Next: 00000000 + Debug start: 00000024, Debug end: 000000A0 + Flags: Frame Ptr Present + +(0003AC) S_LABEL32: [0001:000426FF], $L55451 +(0003C0) S_LABEL32: [0001:000426F5], $L55450 +(0003D4) S_LABEL32: [0001:000426ED], $L55457 +(0003E8) S_BPREL32: [FFFFFFEC], Type: 0x107B, this +(0003FC) S_BPREL32: [FFFFFF58], Type: 0x3CF2, action + +(000410) S_END + +(000414) S_GPROC32: [0001:00042710], Cb: 000000F4, Type: 0x10B9, Score::Notify + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 00000005, Debug end: 000000BC + +(00044C) S_LDATA32: [0001:000427EC], Type: T_NOTYPE(0000), +(00045C) S_REGISTER: ebx, Type: 0x107B, this +(00046C) S_BPREL32: [00000004], Type: 0x10B7, p_param +(000480) S_REGISTER: edi, Type: T_LONG(0012), ret + +(000490) S_END + +(000494) S_GPROC32: [0001:00042810], Cb: 0000006E, Type: 0x10BD, Score::FUN_10001510 + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000005, Debug end: 0000006B + +(0004D0) S_REGISTER: esi, Type: 0x107B, this +(0004E0) S_BPREL32: [00000004], Type: 0x10BB, p_param +(0004F4) S_REGISTER: eax, Type: 0x109C, action + +(000508) S_END + +(00050C) S_GPROC32: [0001:00042880], Cb: 0000014C, Type: 0x107C, Score::Stop + Parent: 00000000, End: 000005E0, Next: 00000000 + Debug start: 0000001E, Debug end: 0000011F + Flags: Frame Ptr Present + +(000540) S_LABEL32: [0001:000429C1], $L55481 +(000554) S_LABEL32: [0001:000429B7], $L55480 +(000568) S_LABEL32: [0001:000429AC], $L55487 +(00057C) S_LABEL32: [0001:00042972], $L55482 +(000590) S_LABEL32: [0001:0004296A], $L55490 +(0005A4) S_BPREL32: [FFFFFFF0], Type: 0x107B, this +(0005B8) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action +(0005CC) S_BPREL32: [FFFFFEC8], Type: 0x3CF2, action2 + +(0005E0) S_END + +(0005E4) S_GPROC32: [0001:000429D0], Cb: 000002B0, Type: 0x10C1, Score::FUN_100016d0 + Parent: 00000000, End: 00000764, Next: 00000000 + Debug start: 00000023, Debug end: 00000072 + Flags: Frame Ptr Present + +(000620) S_LABEL32: [0001:00042C65], $L55502 +(000634) S_LABEL32: [0001:00042C5B], $L55498 +(000648) S_LABEL32: [0001:00042C53], $L55521 +(00065C) S_LABEL32: [0001:00042BE6], $L55501 +(000670) S_LABEL32: [0001:00042BDE], $L55518 +(000684) S_LABEL32: [0001:00042B71], $L55500 +(000698) S_LABEL32: [0001:00042B69], $L55515 +(0006AC) S_LABEL32: [0001:00042ADD], $L55499 +(0006C0) S_LABEL32: [0001:00042AD5], $L55512 +(0006D4) S_REGISTER: esi, Type: 0x107B, this +(0006E4) S_BPREL32: [00000008], Type: 0x10BF, p_param +(0006F8) S_REGISTER: cx, Type: T_SHORT(0011), l +(000704) S_REGISTER: eax, Type: 0x10C3, im +(000714) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action +(000728) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action +(00073C) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action +(000750) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action + +(000764) S_END + +(000768) S_GPROC32: [0001:00042C80], Cb: 00000049, Type: 0x10C5, Score::VTable0x68 + Parent: 00000000, End: 000007C8, Next: 00000000 + Debug start: 00000002, Debug end: 00000044 + +(0007A4) S_REGISTER: esi, Type: 0x107B, this +(0007B4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_add + +(0007C8) S_END + +(0007CC) S_GPROC32: [0001:00042CD0], Cb: 000002DC, Type: 0x107C, Score::Paint + Parent: 00000000, End: 000008B8, Next: 00000000 + Debug start: 0000000E, Debug end: 000002A6 + +(000800) S_BPREL32: [FFFFFF80], Type: 0x107B, this +(000814) S_REGISTER: esi, Type: 0x10C7, gm +(000824) S_BPREL32: [FFFFFF8C], Type: 0x10C9, l78 +(000834) S_REGISTER: ebp, Type: 0x10CB, lebp +(000844) S_REGISTER: esi, Type: 0x10CC, lesi +(000854) S_BPREL32: [FFFFFF90], Type: 0x10CE, l74 +(000864) S_BPREL32: [FFFFFF88], Type: 0x10C9, l70 +(000874) S_BPREL32: [FFFFFF94], Type: 0x10D3, desc +(000888) S_BPREL32: [FFFFFF7F], Type: T_UCHAR(0020), id +(000898) S_REGISTER: ax, Type: T_USHORT(0021), color +(0008A8) S_REGISTER: edi, Type: T_UINT4(0075), row + +(0008B8) S_END + +(0008BC) S_GPROC32: [0001:00042FB0], Cb: 00000114, Type: 0x10D5, Score::FillArea + Parent: 00000000, End: 0000098C, Next: 00000000 + Debug start: 0000003D, Debug end: 0000010A + +(0008F4) S_REGISTER: ecx, Type: 0x107B, this +(000904) S_BPREL32: [00000004], Type: T_UINT4(0075), p_x +(000914) S_BPREL32: [00000008], Type: T_UINT4(0075), p_y +(000924) S_BPREL32: [0000000C], Type: T_SHORT(0011), p_color +(000938) S_REGISTER: ebp, Type: T_INT4(0074), count +(000948) S_BPREL32: [FFFFFFA0], Type: 0x10D6, data +(00095C) S_REGISTER: edx, Type: T_UINT4(0075), size +(00096C) S_REGISTER: esi, Type: T_32PUCHAR(0420), ptr +(00097C) S_REGISTER: ebx, Type: T_UINT4(0075), value + +(00098C) S_END + +(000990) S_GPROC32: [0001:000430D0], Cb: 00000016, Type: 0x1081, Score::VTable0x64 + Parent: 00000000, End: 000009DC, Next: 00000000 + Debug start: 00000001, Debug end: 00000015 + +(0009CC) S_REGISTER: esi, Type: 0x107B, this + +(0009DC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + + +(000004) S_OBJNAME: Signature: 00000000, C:\Users\CHRIST~1\AppData\Local\Temp\lnk2 + +(000038) S_COMPILE: + Language: LINK + Target processor: 8080 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft CVTRES 4.00 + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\registrationbook.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00042140], Cb: 0000005D, Type: 0x10D9, RegistrationBook::RegistrationBook + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00042195], $L47123 +(0000E8) S_LABEL32: [0001:0004218B], $L47122 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x10D8, this + +(000110) S_END + +(000114) S_GPROC32: [0001:000421A0], Cb: 00000006, Type: 0x10DC, RegistrationBook::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x10DB, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:000421B0], Cb: 0000010A, Type: 0x10DD, RegistrationBook::IsA + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001AC) S_REGISTER: ecx, Type: 0x10DB, this +(0001BC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:000422C0], Cb: 0000001E, Type: T_NOTYPE(0000), RegistrationBook::`scalar deleting destructor' + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00022C) S_REGISTER: esi, Type: 0x10D8, this +(00023C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000250) S_END + +(000254) S_GPROC32: [0001:000422E0], Cb: 0000004F, Type: 0x10D9, RegistrationBook::~RegistrationBook + Parent: 00000000, End: 000002DC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002A0) S_LABEL32: [0001:00042327], $L47205 +(0002B4) S_LABEL32: [0001:0004231D], $L47204 +(0002C8) S_BPREL32: [FFFFFFF0], Type: 0x10D8, this + +(0002DC) S_END + +(0002E0) S_GPROC32: [0001:00042330], Cb: 00000005, Type: 0x10DE, RegistrationBook::Notify + Parent: 00000000, End: 00000344, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000320) S_REGISTER: ecx, Type: 0x10D8, this +(000330) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000344) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\realtime\vector.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000417C0], Cb: 0000001D, Type: 0x10E2, Vector2Impl::AddVectorImpl + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(0000CC) S_REGISTER: ecx, Type: 0x10E0, this +(0000DC) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:000417E0], Cb: 0000001C, Type: 0x10E4, Vector2Impl::AddScalarImpl + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(000138) S_REGISTER: ecx, Type: 0x10E0, this +(000148) S_BPREL32: [00000004], Type: T_REAL32(0040), p_value + +(00015C) S_END + +(000160) S_GPROC32: [0001:00041800], Cb: 0000001D, Type: 0x10E2, Vector2Impl::SubVectorImpl + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(0001A4) S_REGISTER: ecx, Type: 0x10E0, this +(0001B4) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00041820], Cb: 0000001D, Type: 0x10E2, Vector2Impl::MullVectorImpl + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(000210) S_REGISTER: ecx, Type: 0x10E0, this +(000220) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000234) S_END + +(000238) S_GPROC32: [0001:00041840], Cb: 0000001C, Type: 0x10E2, Vector2Impl::MullScalarImpl + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(00027C) S_REGISTER: ecx, Type: 0x10E0, this +(00028C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:00041860], Cb: 0000001C, Type: 0x10E2, Vector2Impl::DivScalarImpl + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(0002E8) S_REGISTER: ecx, Type: 0x10E0, this +(0002F8) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(00030C) S_END + +(000310) S_GPROC32: [0001:00041880], Cb: 00000017, Type: 0x10E8, Vector2Impl::DotImpl + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(00034C) S_REGISTER: ecx, Type: 0x10E6, this +(00035C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(00036C) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(00037C) S_END + +(000380) S_GPROC32: [0001:000418A0], Cb: 00000014, Type: 0x10E2, Vector2Impl::EqualsImpl + Parent: 00000000, End: 000003F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(0003C0) S_REGISTER: ecx, Type: 0x10E0, this +(0003D0) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data +(0003E4) S_REGISTER: edx, Type: T_32PREAL32(0440), vec + +(0003F4) S_END + +(0003F8) S_GPROC32: [0001:000418C0], Cb: 00000004, Type: 0x10E9, Vector2Impl::GetData + Parent: 00000000, End: 00000444, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000434) S_REGISTER: ecx, Type: 0x10E0, this + +(000444) S_END + +(000448) S_GPROC32: [0001:000418D0], Cb: 00000004, Type: 0x10EA, Vector2Impl::GetData + Parent: 00000000, End: 00000494, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000484) S_REGISTER: ecx, Type: 0x10E6, this + +(000494) S_END + +(000498) S_GPROC32: [0001:000418E0], Cb: 00000011, Type: 0x10EB, Vector2Impl::Clear + Parent: 00000000, End: 000004F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(0004D4) S_REGISTER: ecx, Type: 0x10E0, this +(0004E4) S_REGISTER: eax, Type: T_32PREAL32(0440), vec + +(0004F4) S_END + +(0004F8) S_GPROC32: [0001:00041900], Cb: 00000012, Type: 0x10E8, Vector2Impl::Dot + Parent: 00000000, End: 00000560, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(000530) S_REGISTER: ecx, Type: 0x10E6, this +(000540) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(000550) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(000560) S_END + +(000564) S_GPROC32: [0001:00041920], Cb: 00000018, Type: 0x10EE, Vector2Impl::Dot + Parent: 00000000, End: 000005CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(00059C) S_REGISTER: ecx, Type: 0x10E6, this +(0005AC) S_BPREL32: [00000004], Type: 0x10EC, p_a +(0005BC) S_BPREL32: [00000008], Type: 0x10EC, p_b + +(0005CC) S_END + +(0005D0) S_GPROC32: [0001:00041940], Cb: 00000015, Type: 0x10F0, Vector2Impl::Dot + Parent: 00000000, End: 00000638, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000608) S_REGISTER: ecx, Type: 0x10E6, this +(000618) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(000628) S_BPREL32: [00000008], Type: 0x10EC, p_b + +(000638) S_END + +(00063C) S_GPROC32: [0001:00041960], Cb: 00000015, Type: 0x10F2, Vector2Impl::Dot + Parent: 00000000, End: 000006A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000674) S_REGISTER: ecx, Type: 0x10E6, this +(000684) S_BPREL32: [00000004], Type: 0x10EC, p_a +(000694) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(0006A4) S_END + +(0006A8) S_GPROC32: [0001:00041980], Cb: 00000010, Type: 0x10F3, Vector2Impl::LenSquared + Parent: 00000000, End: 000006F8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(0006E8) S_REGISTER: ecx, Type: 0x10E6, this + +(0006F8) S_END + +(0006FC) S_GPROC32: [0001:00041990], Cb: 00000051, Type: 0x10F4, Vector2Impl::Unitize + Parent: 00000000, End: 0000076C, Next: 00000000 + Debug start: 00000005, Debug end: 0000004C + +(000738) S_REGISTER: esi, Type: 0x10E0, this +(000748) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), sq +(000758) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), root + +(00076C) S_END + +(000770) S_GPROC32: [0001:000419F0], Cb: 0000000C, Type: 0x10E4, Vector2Impl::Add + Parent: 00000000, End: 000007CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0007A8) S_REGISTER: ecx, Type: 0x10E0, this +(0007B8) S_BPREL32: [00000004], Type: T_REAL32(0040), p_value + +(0007CC) S_END + +(0007D0) S_GPROC32: [0001:00041A00], Cb: 0000000D, Type: 0x10E2, Vector2Impl::Add + Parent: 00000000, End: 0000082C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000808) S_REGISTER: ecx, Type: 0x10E0, this +(000818) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_other + +(00082C) S_END + +(000830) S_GPROC32: [0001:00041A10], Cb: 00000010, Type: 0x10F6, Vector2Impl::Add + Parent: 00000000, End: 0000088C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000868) S_REGISTER: ecx, Type: 0x10E0, this +(000878) S_BPREL32: [00000004], Type: 0x10EC, p_other + +(00088C) S_END + +(000890) S_GPROC32: [0001:00041A20], Cb: 0000000D, Type: 0x10E2, Vector2Impl::Sub + Parent: 00000000, End: 000008EC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0008C8) S_REGISTER: ecx, Type: 0x10E0, this +(0008D8) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_other + +(0008EC) S_END + +(0008F0) S_GPROC32: [0001:00041A30], Cb: 00000010, Type: 0x10F6, Vector2Impl::Sub + Parent: 00000000, End: 0000094C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000928) S_REGISTER: ecx, Type: 0x10E0, this +(000938) S_BPREL32: [00000004], Type: 0x10EC, p_other + +(00094C) S_END + +(000950) S_GPROC32: [0001:00041A40], Cb: 0000000D, Type: 0x10E2, Vector2Impl::Mul + Parent: 00000000, End: 000009AC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000988) S_REGISTER: ecx, Type: 0x10E0, this +(000998) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_other + +(0009AC) S_END + +(0009B0) S_GPROC32: [0001:00041A50], Cb: 00000010, Type: 0x10F6, Vector2Impl::Mul + Parent: 00000000, End: 00000A0C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0009E8) S_REGISTER: ecx, Type: 0x10E0, this +(0009F8) S_BPREL32: [00000004], Type: 0x10EC, p_other + +(000A0C) S_END + +(000A10) S_GPROC32: [0001:00041A60], Cb: 0000000D, Type: 0x337E, Vector2Impl::Mul + Parent: 00000000, End: 00000A6C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000A48) S_REGISTER: ecx, Type: 0x10E0, this +(000A58) S_BPREL32: [00000004], Type: 0x18A9, p_value + +(000A6C) S_END + +(000A70) S_GPROC32: [0001:00041A70], Cb: 0000000D, Type: 0x337E, Vector2Impl::Div + Parent: 00000000, End: 00000ACC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000AA8) S_REGISTER: ecx, Type: 0x10E0, this +(000AB8) S_BPREL32: [00000004], Type: 0x18A9, p_value + +(000ACC) S_END + +(000AD0) S_GPROC32: [0001:00041A80], Cb: 0000000D, Type: 0x10E2, Vector2Impl::SetVector + Parent: 00000000, End: 00000B34, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000B10) S_REGISTER: ecx, Type: 0x10E0, this +(000B20) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_other + +(000B34) S_END + +(000B38) S_GPROC32: [0001:00041A90], Cb: 00000010, Type: 0x10F6, Vector2Impl::SetVector + Parent: 00000000, End: 00000B9C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000B78) S_REGISTER: ecx, Type: 0x10E0, this +(000B88) S_BPREL32: [00000004], Type: 0x10EC, p_other + +(000B9C) S_END + +(000BA0) S_GPROC32: [0001:00041AA0], Cb: 00000044, Type: 0x10F9, Vector3Impl::EqualsCrossImpl + Parent: 00000000, End: 00000C14, Next: 00000000 + Debug start: 00000005, Debug end: 00000041 + +(000BE4) S_REGISTER: ecx, Type: 0x10F8, this +(000BF4) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(000C04) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(000C14) S_END + +(000C18) S_GPROC32: [0001:00041AF0], Cb: 00000018, Type: 0x10FC, Vector3Impl::EqualsCross + Parent: 00000000, End: 00000C88, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000C58) S_REGISTER: ecx, Type: 0x10F8, this +(000C68) S_BPREL32: [00000004], Type: 0x10FA, p_a +(000C78) S_BPREL32: [00000008], Type: 0x10FA, p_b + +(000C88) S_END + +(000C8C) S_GPROC32: [0001:00041B10], Cb: 00000015, Type: 0x10FE, Vector3Impl::EqualsCross + Parent: 00000000, End: 00000CFC, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000CCC) S_REGISTER: ecx, Type: 0x10F8, this +(000CDC) S_BPREL32: [00000004], Type: 0x10FA, p_a +(000CEC) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(000CFC) S_END + +(000D00) S_GPROC32: [0001:00041B30], Cb: 00000015, Type: 0x1100, Vector3Impl::EqualsCross + Parent: 00000000, End: 00000D70, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000D40) S_REGISTER: ecx, Type: 0x10F8, this +(000D50) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(000D60) S_BPREL32: [00000008], Type: 0x10FA, p_b + +(000D70) S_END + +(000D74) S_GPROC32: [0001:00041B50], Cb: 00000037, Type: 0x1103, Vector4Impl::AddVectorImpl + Parent: 00000000, End: 00000DDC, Next: 00000000 + Debug start: 00000000, Debug end: 00000034 + +(000DB8) S_REGISTER: ecx, Type: 0x1102, this +(000DC8) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000DDC) S_END + +(000DE0) S_GPROC32: [0001:00041B90], Cb: 00000038, Type: 0x1104, Vector4Impl::AddScalarImpl + Parent: 00000000, End: 00000E48, Next: 00000000 + Debug start: 00000000, Debug end: 00000035 + +(000E24) S_REGISTER: ecx, Type: 0x1102, this +(000E34) S_BPREL32: [00000004], Type: T_REAL32(0040), p_value + +(000E48) S_END + +(000E4C) S_GPROC32: [0001:00041BD0], Cb: 00000037, Type: 0x1103, Vector4Impl::SubVectorImpl + Parent: 00000000, End: 00000EB4, Next: 00000000 + Debug start: 00000000, Debug end: 00000034 + +(000E90) S_REGISTER: ecx, Type: 0x1102, this +(000EA0) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000EB4) S_END + +(000EB8) S_GPROC32: [0001:00041C10], Cb: 00000037, Type: 0x1103, Vector4Impl::MullVectorImpl + Parent: 00000000, End: 00000F20, Next: 00000000 + Debug start: 00000000, Debug end: 00000034 + +(000EFC) S_REGISTER: ecx, Type: 0x1102, this +(000F0C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000F20) S_END + +(000F24) S_GPROC32: [0001:00041C50], Cb: 00000034, Type: 0x1103, Vector4Impl::MullScalarImpl + Parent: 00000000, End: 00000F8C, Next: 00000000 + Debug start: 00000000, Debug end: 00000031 + +(000F68) S_REGISTER: ecx, Type: 0x1102, this +(000F78) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000F8C) S_END + +(000F90) S_GPROC32: [0001:00041C90], Cb: 00000034, Type: 0x1103, Vector4Impl::DivScalarImpl + Parent: 00000000, End: 00000FF8, Next: 00000000 + Debug start: 00000000, Debug end: 00000031 + +(000FD4) S_REGISTER: ecx, Type: 0x1102, this +(000FE4) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(000FF8) S_END + +(000FFC) S_GPROC32: [0001:00041CD0], Cb: 00000027, Type: 0x1107, Vector4Impl::DotImpl + Parent: 00000000, End: 00001068, Next: 00000000 + Debug start: 00000000, Debug end: 00000024 + +(001038) S_REGISTER: ecx, Type: 0x1106, this +(001048) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(001058) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(001068) S_END + +(00106C) S_GPROC32: [0001:00041D00], Cb: 00000020, Type: 0x1103, Vector4Impl::EqualsImpl + Parent: 00000000, End: 000010E0, Next: 00000000 + Debug start: 00000000, Debug end: 0000001D + +(0010AC) S_REGISTER: ecx, Type: 0x1102, this +(0010BC) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data +(0010D0) S_REGISTER: edx, Type: T_32PREAL32(0440), vec + +(0010E0) S_END + +(0010E4) S_GPROC32: [0001:00041D20], Cb: 00000097, Type: 0x1108, Vector4Impl::SetMatrixProductImpl + Parent: 00000000, End: 00001168, Next: 00000000 + Debug start: 00000005, Debug end: 00000094 + +(001130) S_REGISTER: ecx, Type: 0x1102, this +(001140) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_vec +(001154) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_mat + +(001168) S_END + +(00116C) S_GPROC32: [0001:00041DC0], Cb: 00000018, Type: 0x110B, Vector4Impl::SetMatrixProduct + Parent: 00000000, End: 000011E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(0011B4) S_REGISTER: ecx, Type: 0x1102, this +(0011C4) S_BPREL32: [00000004], Type: 0x1109, p_a +(0011D4) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(0011E4) S_END + +(0011E8) S_GPROC32: [0001:00041DE0], Cb: 00000011, Type: 0x110C, Vector4Impl::Clear + Parent: 00000000, End: 00001244, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(001224) S_REGISTER: ecx, Type: 0x1102, this +(001234) S_REGISTER: eax, Type: T_32PREAL32(0440), vec + +(001244) S_END + +(001248) S_GPROC32: [0001:00041E00], Cb: 00000020, Type: 0x110D, Vector4Impl::LenSquared + Parent: 00000000, End: 00001298, Next: 00000000 + Debug start: 00000000, Debug end: 0000001F + +(001288) S_REGISTER: ecx, Type: 0x1106, this + +(001298) S_END + +(00129C) S_GPROC32: [0001:00041E20], Cb: 00000028, Type: 0x1103, Vector4Impl::EqualsScalar + Parent: 00000000, End: 00001304, Next: 00000000 + Debug start: 00000004, Debug end: 00000025 + +(0012E0) S_REGISTER: ecx, Type: 0x1102, this +(0012F0) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(001304) S_END + +(001308) S_GPROC32: [0001:00041E50], Cb: 0000006E, Type: 0x110E, Vector4Impl::NormalizeQuaternion + Parent: 00000000, End: 00001384, Next: 00000000 + Debug start: 00000006, Debug end: 0000006D + +(001350) S_REGISTER: ecx, Type: 0x1102, this +(001360) S_BPREL32: [FFFFFFF8], Type: T_REAL32(0040), magnitude +(001378) S_REGISTER: ecx, Type: T_32PREAL32(0440), v + +(001384) S_END + +(001388) S_GPROC32: [0001:00041EC0], Cb: 000000C5, Type: 0x1110, Vector4Impl::UnknownQuaternionOp + Parent: 00000000, End: 00001420, Next: 00000000 + Debug start: 00000007, Debug end: 000000BF + +(0013D0) S_REGISTER: ecx, Type: 0x1102, this +(0013E0) S_BPREL32: [00000004], Type: 0x1109, p_a +(0013F0) S_BPREL32: [00000008], Type: 0x1109, p_b +(001400) S_REGISTER: edi, Type: T_32PREAL32(0440), bDat +(001410) S_REGISTER: ebx, Type: T_32PREAL32(0440), aDat + +(001420) S_END + +(001424) S_GPROC32: [0001:00041F90], Cb: 0000002A, Type: 0x1111, Vector3Impl::AddVectorImpl + Parent: 00000000, End: 0000148C, Next: 00000000 + Debug start: 00000000, Debug end: 00000027 + +(001468) S_REGISTER: ecx, Type: 0x10F8, this +(001478) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(00148C) S_END + +(001490) S_GPROC32: [0001:00041FC0], Cb: 0000002A, Type: 0x1112, Vector3Impl::AddScalarImpl + Parent: 00000000, End: 000014F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000027 + +(0014D4) S_REGISTER: ecx, Type: 0x10F8, this +(0014E4) S_BPREL32: [00000004], Type: T_REAL32(0040), p_value + +(0014F8) S_END + +(0014FC) S_GPROC32: [0001:00041FF0], Cb: 0000002A, Type: 0x1111, Vector3Impl::SubVectorImpl + Parent: 00000000, End: 00001564, Next: 00000000 + Debug start: 00000000, Debug end: 00000027 + +(001540) S_REGISTER: ecx, Type: 0x10F8, this +(001550) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(001564) S_END + +(001568) S_GPROC32: [0001:00042020], Cb: 0000002A, Type: 0x1111, Vector3Impl::MullVectorImpl + Parent: 00000000, End: 000015D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000027 + +(0015AC) S_REGISTER: ecx, Type: 0x10F8, this +(0015BC) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0015D0) S_END + +(0015D4) S_GPROC32: [0001:00042050], Cb: 00000028, Type: 0x1111, Vector3Impl::MullScalarImpl + Parent: 00000000, End: 0000163C, Next: 00000000 + Debug start: 00000000, Debug end: 00000025 + +(001618) S_REGISTER: ecx, Type: 0x10F8, this +(001628) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(00163C) S_END + +(001640) S_GPROC32: [0001:00042080], Cb: 00000028, Type: 0x1111, Vector3Impl::DivScalarImpl + Parent: 00000000, End: 000016A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000025 + +(001684) S_REGISTER: ecx, Type: 0x10F8, this +(001694) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0016A8) S_END + +(0016AC) S_GPROC32: [0001:000420B0], Cb: 0000001F, Type: 0x1115, Vector3Impl::DotImpl + Parent: 00000000, End: 00001718, Next: 00000000 + Debug start: 00000000, Debug end: 0000001C + +(0016E8) S_REGISTER: ecx, Type: 0x1114, this +(0016F8) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_a +(001708) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_b + +(001718) S_END + +(00171C) S_GPROC32: [0001:000420D0], Cb: 0000001A, Type: 0x1111, Vector3Impl::EqualsImpl + Parent: 00000000, End: 00001790, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(00175C) S_REGISTER: ecx, Type: 0x10F8, this +(00176C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data +(001780) S_REGISTER: edx, Type: T_32PREAL32(0440), vec + +(001790) S_END + +(001794) S_GPROC32: [0001:000420F0], Cb: 0000000E, Type: 0x1116, Vector3Impl::Clear + Parent: 00000000, End: 000017F0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0017D0) S_REGISTER: ecx, Type: 0x10F8, this +(0017E0) S_REGISTER: eax, Type: T_32PREAL32(0440), vec + +(0017F0) S_END + +(0017F4) S_GPROC32: [0001:00042100], Cb: 00000018, Type: 0x1117, Vector3Impl::LenSquared + Parent: 00000000, End: 00001844, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(001834) S_REGISTER: ecx, Type: 0x1114, this + +(001844) S_END + +(001848) S_GPROC32: [0001:00042120], Cb: 00000020, Type: 0x1111, Vector3Impl::EqualsScalar + Parent: 00000000, End: 000018B0, Next: 00000000 + Debug start: 00000004, Debug end: 0000001D + +(00188C) S_REGISTER: ecx, Type: 0x10F8, this +(00189C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_value + +(0018B0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\realtime\realtimeview.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00041760], Cb: 0000000E, Type: 0x1119, RealtimeView::SetUserMaxLOD + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(0000D4) S_BPREL32: [00000004], Type: T_REAL32(0040), p_lod + +(0000E8) S_END + +(0000EC) S_GPROC32: [0001:00041770], Cb: 0000000A, Type: 0x1119, RealtimeView::SetPartsThreshold + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000134) S_BPREL32: [00000004], Type: T_REAL32(0040), p_threshold + +(00014C) S_END + +(000150) S_GPROC32: [0001:00041780], Cb: 00000007, Type: 0x111A, RealtimeView::GetUserMaxLOD + Parent: 00000000, End: 00000194, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000194) S_END + +(000198) S_GPROC32: [0001:00041790], Cb: 00000007, Type: 0x111A, RealtimeView::GetPartsThreshold + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:000417A0], Cb: 0000001A, Type: 0x111B, RealtimeView::UpdateMaxLOD + Parent: 00000000, End: 00000228, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(000228) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\realtime\realtime.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00041550], Cb: 00000205, Type: 0x1120, CalcLocalTransform + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 0000000B, Debug end: 00000201 + +(0000C8) S_BPREL32: [00000004], Type: 0x111C, p_posVec +(0000E0) S_BPREL32: [00000008], Type: 0x111C, p_dirVec +(0000F8) S_BPREL32: [0000000C], Type: 0x111C, p_upVec +(00010C) S_BPREL32: [00000010], Type: 0x111E, p_outMatrix +(000124) S_BPREL32: [FFFFFFF4], Type: 0x1121, z_axis +(000138) S_BPREL32: [FFFFFFE8], Type: 0x1121, x_axis +(00014C) S_BPREL32: [FFFFFFDC], Type: 0x1121, y_axis + +(000160) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\realtime\orientableroi.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:000413F0], Cb: 00000011, Type: 0x1124, OrientableROI::VTable0x1c + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000002, Debug end: 0000000E + +(0000D4) S_REGISTER: esi, Type: 0x1123, this + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:00041410], Cb: 00000023, Type: 0x1128, OrientableROI::SetLocalTransform + Parent: 00000000, End: 00000158, Next: 00000000 + Debug start: 00000006, Debug end: 0000001E + +(000130) S_REGISTER: edi, Type: 0x1123, this +(000140) S_BPREL32: [00000004], Type: 0x1126, p_transform + +(000158) S_END + +(00015C) S_GPROC32: [0001:00041440], Cb: 0000004B, Type: 0x1129, OrientableROI::VTable0x24 + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000011, Debug end: 00000042 + +(0001A0) S_REGISTER: ebx, Type: 0x1123, this +(0001B0) S_BPREL32: [00000004], Type: 0x102E, p_transform +(0001C8) S_BPREL32: [FFFFFFB8], Type: 0x1135, l_matrix + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:00041490], Cb: 0000007E, Type: 0x1129, OrientableROI::UpdateWorldData + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000011, Debug end: 00000075 + +(00022C) S_REGISTER: ebx, Type: 0x1123, this +(00023C) S_BPREL32: [00000004], Type: 0x102E, p_transform +(000254) S_BPREL32: [FFFFFFB8], Type: 0x1135, l_matrix +(00026C) S_BPREL32: [FFFFFFB4], Type: 0x114E, iter +(000280) S_REGISTER: ecx, Type: 0x1140, child + +(000290) S_END + +(000294) S_GPROC32: [0001:00041510], Cb: 00000001, Type: 0x1124, OrientableROI::UpdateWorldVelocity + Parent: 00000000, End: 000002F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002E0) S_REGISTER: ecx, Type: 0x1123, this + +(0002F0) S_END + +(0002F4) S_GPROC32: [0001:00041520], Cb: 0000000F, Type: 0x1154, OrientableROI::GetWorldVelocity + Parent: 00000000, End: 0000034C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(00033C) S_REGISTER: ecx, Type: 0x1153, this + +(00034C) S_END + +(000350) S_GPROC32: [0001:00041530], Cb: 00000004, Type: 0x1158, OrientableROI::GetWorldBoundingBox + Parent: 00000000, End: 000003AC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(00039C) S_REGISTER: ecx, Type: 0x1153, this + +(0003AC) S_END + +(0003B0) S_GPROC32: [0001:00041540], Cb: 00000007, Type: 0x115C, OrientableROI::GetWorldBoundingSphere + Parent: 00000000, End: 00000410, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000400) S_REGISTER: ecx, Type: 0x1153, this + +(000410) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\realtime\matrix.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00041180], Cb: 00000015, Type: 0x1160, Matrix4Impl::EqualsMatrixData + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 00000002, Debug end: 00000010 + +(0000D0) S_REGISTER: ecx, Type: 0x115D, this +(0000E0) S_BPREL32: [00000004], Type: 0x115E, p_matrix + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:000411A0], Cb: 00000018, Type: 0x1163, Matrix4Impl::EqualsMatrixImpl + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000006, Debug end: 00000013 + +(000144) S_REGISTER: ecx, Type: 0x115D, this +(000154) S_BPREL32: [00000004], Type: 0x1161, p_other + +(000168) S_END + +(00016C) S_GPROC32: [0001:000411C0], Cb: 0000000A, Type: 0x1165, Matrix4Impl::AnotherSetData + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0001B0) S_REGISTER: ecx, Type: 0x115D, this +(0001C0) S_BPREL32: [00000004], Type: 0x1130, p_data + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:000411D0], Cb: 0000000A, Type: 0x1165, Matrix4Impl::SetData + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000214) S_REGISTER: ecx, Type: 0x115D, this +(000224) S_BPREL32: [00000004], Type: 0x1130, p_data + +(000238) S_END + +(00023C) S_GPROC32: [0001:000411E0], Cb: 00000004, Type: 0x1168, Matrix4Impl::GetData + Parent: 00000000, End: 00000288, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000278) S_REGISTER: ecx, Type: 0x1167, this + +(000288) S_END + +(00028C) S_GPROC32: [0001:000411F0], Cb: 00000004, Type: 0x116A, Matrix4Impl::GetData + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0002C8) S_REGISTER: ecx, Type: 0x115D, this + +(0002D8) S_END + +(0002DC) S_GPROC32: [0001:00041200], Cb: 00000014, Type: 0x116C, Matrix4Impl::Element + Parent: 00000000, End: 00000350, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000318) S_REGISTER: ecx, Type: 0x1167, this +(000328) S_BPREL32: [00000004], Type: T_INT4(0074), p_row +(00033C) S_BPREL32: [00000008], Type: T_INT4(0074), p_col + +(000350) S_END + +(000354) S_GPROC32: [0001:00041220], Cb: 00000014, Type: 0x116D, Matrix4Impl::Element + Parent: 00000000, End: 000003C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000390) S_REGISTER: ecx, Type: 0x115D, this +(0003A0) S_BPREL32: [00000004], Type: T_INT4(0074), p_row +(0003B4) S_BPREL32: [00000008], Type: T_INT4(0074), p_col + +(0003C8) S_END + +(0003CC) S_GPROC32: [0001:00041240], Cb: 0000000F, Type: 0x116E, Matrix4Impl::Clear + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 00000003, Debug end: 0000000D + +(000408) S_REGISTER: ecx, Type: 0x115D, this + +(000418) S_END + +(00041C) S_GPROC32: [0001:00041250], Cb: 00000026, Type: 0x116E, Matrix4Impl::SetIdentity + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000001, Debug end: 00000025 + +(00045C) S_REGISTER: esi, Type: 0x115D, this + +(00046C) S_END + +(000470) S_GPROC32: [0001:00041280], Cb: 00000028, Type: 0x1170, Matrix4Impl::operator+= + Parent: 00000000, End: 000004D8, Next: 00000000 + Debug start: 00000003, Debug end: 00000025 + +(0004B0) S_REGISTER: ecx, Type: 0x115D, this +(0004C0) S_BPREL32: [00000004], Type: 0x115E, p_matrix + +(0004D8) S_END + +(0004DC) S_GPROC32: [0001:000412B0], Cb: 00000033, Type: 0x1172, Matrix4Impl::TranslateBy + Parent: 00000000, End: 0000055C, Next: 00000000 + Debug start: 00000000, Debug end: 00000030 + +(00051C) S_REGISTER: ecx, Type: 0x115D, this +(00052C) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_x +(00053C) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_y +(00054C) S_BPREL32: [0000000C], Type: T_32PREAL32(0440), p_z + +(00055C) S_END + +(000560) S_GPROC32: [0001:000412F0], Cb: 00000027, Type: 0x1172, Matrix4Impl::SetTranslation + Parent: 00000000, End: 000005E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000024 + +(0005A4) S_REGISTER: ecx, Type: 0x115D, this +(0005B4) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_x +(0005C4) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_y +(0005D4) S_BPREL32: [0000000C], Type: T_32PREAL32(0440), p_z + +(0005E4) S_END + +(0005E8) S_GPROC32: [0001:00041320], Cb: 00000063, Type: 0x1174, Matrix4Impl::EqualsDataProduct + Parent: 00000000, End: 00000670, Next: 00000000 + Debug start: 0000000F, Debug end: 00000059 + +(000630) S_REGISTER: ecx, Type: 0x115D, this +(000640) S_BPREL32: [00000004], Type: 0x115E, p_a +(000650) S_BPREL32: [00000008], Type: 0x115E, p_b +(000660) S_REGISTER: ebp, Type: T_32PREAL32(0440), cur + +(000670) S_END + +(000674) S_GPROC32: [0001:00041390], Cb: 00000018, Type: 0x1176, Matrix4Impl::EqualsMxProduct + Parent: 00000000, End: 000006E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(0006B8) S_REGISTER: ecx, Type: 0x115D, this +(0006C8) S_BPREL32: [00000004], Type: 0x1161, p_a +(0006D8) S_BPREL32: [00000008], Type: 0x1161, p_b + +(0006E8) S_END + +(0006EC) S_GPROC32: [0001:000413B0], Cb: 00000003, Type: 0x1178, Matrix4Impl::ToQuaternion + Parent: 00000000, End: 00000758, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000730) S_REGISTER: ecx, Type: 0x115D, this +(000740) S_BPREL32: [00000004], Type: 0x1109, p_outQuat + +(000758) S_END + +(00075C) S_GPROC32: [0001:000413C0], Cb: 00000008, Type: 0x3381, Matrix4Impl::FromQuaternion + Parent: 00000000, End: 000007C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0007A0) S_REGISTER: ecx, Type: 0x115D, this +(0007B0) S_BPREL32: [00000004], Type: 0x337F, p_vec + +(0007C4) S_END + +(0007C8) S_GPROC32: [0001:000413D0], Cb: 0000000C, Type: 0x117C, Matrix4Impl::operator= + Parent: 00000000, End: 0000082C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000808) S_REGISTER: ecx, Type: 0x115D, this +(000818) S_BPREL32: [00000004], Type: 0x1126, p_other + +(00082C) S_END + +(000830) S_GPROC32: [0001:000413E0], Cb: 0000000C, Type: 0x1132, Matrix4Data::operator= + Parent: 00000000, End: 00000894, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000870) S_REGISTER: ecx, Type: 0x112A, this +(000880) S_BPREL32: [00000004], Type: 0x102E, p_other + +(000894) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\radiostate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00040FD0], Cb: 00000073, Type: 0x117F, RadioState::RadioState + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0004103B], $L2227 +(0000D8) S_LABEL32: [0001:00041031], $L2226 +(0000EC) S_LABEL32: [0001:00041029], $L2229 +(000100) S_BPREL32: [FFFFFFF0], Type: 0x117E, this + +(000114) S_END + +(000118) S_GPROC32: [0001:00041050], Cb: 00000006, Type: 0x1182, RadioState::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x1181, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00041060], Cb: 000000A2, Type: 0x1183, RadioState::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001A4) S_REGISTER: ecx, Type: 0x1181, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00041110], Cb: 00000061, Type: T_NOTYPE(0000), RadioState::`scalar deleting destructor' + Parent: 00000000, End: 0000026C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00021C) S_LABEL32: [0001:00041169], $L2293 +(000230) S_LABEL32: [0001:0004115F], $L2291 +(000244) S_BPREL32: [FFFFFFF0], Type: 0x117E, this +(000258) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00026C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\radio.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00040E10], Cb: 00000082, Type: 0x1186, Radio::Radio + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 0000001C, Debug end: 00000064 + Flags: Frame Ptr Present + +(0000B4) S_LABEL32: [0001:00040E8A], $L43853 +(0000C8) S_LABEL32: [0001:00040E80], $L43852 +(0000DC) S_BPREL32: [FFFFFFF0], Type: 0x1185, this + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:00040EA0], Cb: 00000006, Type: 0x1189, Radio::ClassName + Parent: 00000000, End: 0000013C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00012C) S_REGISTER: ecx, Type: 0x1188, this + +(00013C) S_END + +(000140) S_GPROC32: [0001:00040EB0], Cb: 00000072, Type: 0x118A, Radio::IsA + Parent: 00000000, End: 00000198, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000174) S_REGISTER: ecx, Type: 0x1188, this +(000184) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000198) S_END + +(00019C) S_GPROC32: [0001:00040F30], Cb: 0000001E, Type: T_NOTYPE(0000), Radio::`scalar deleting destructor' + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001E8) S_REGISTER: esi, Type: 0x1185, this +(0001F8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00020C) S_END + +(000210) S_GPROC32: [0001:00040F50], Cb: 0000004F, Type: 0x1186, Radio::~Radio + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000248) S_LABEL32: [0001:00040F97], $L43885 +(00025C) S_LABEL32: [0001:00040F8D], $L43884 +(000270) S_BPREL32: [FFFFFFF0], Type: 0x1185, this + +(000284) S_END + +(000288) S_GPROC32: [0001:00040FA0], Cb: 0000002D, Type: 0x1186, Radio::CreateRadioState + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000002, Debug end: 0000002B + +(0002C8) S_REGISTER: esi, Type: 0x1185, this +(0002D8) S_REGISTER: eax, Type: 0x33F9, state +(0002E8) S_REGISTER: edi, Type: 0x1088, gameState + +(0002FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\racestate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00040C20], Cb: 00000073, Type: 0x118C, RaceState::RaceState + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00040C8B], $L2252 +(0000D4) S_LABEL32: [0001:00040C81], $L2251 +(0000E8) S_LABEL32: [0001:00040C79], $L2254 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x118B, this + +(000110) S_END + +(000114) S_GPROC32: [0001:00040CA0], Cb: 00000006, Type: 0x118F, RaceState::ClassName + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000150) S_REGISTER: ecx, Type: 0x118E, this + +(000160) S_END + +(000164) S_GPROC32: [0001:00040CB0], Cb: 000000A2, Type: 0x1190, RaceState::IsA + Parent: 00000000, End: 000001C0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00019C) S_REGISTER: ecx, Type: 0x118E, this +(0001AC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C0) S_END + +(0001C4) S_GPROC32: [0001:00040D60], Cb: 00000061, Type: T_NOTYPE(0000), RaceState::`scalar deleting destructor' + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000214) S_LABEL32: [0001:00040DB9], $L2318 +(000228) S_LABEL32: [0001:00040DAF], $L2316 +(00023C) S_BPREL32: [FFFFFFF0], Type: 0x118B, this +(000250) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000264) S_END + +(000268) S_GPROC32: [0001:00040DD0], Cb: 00000032, Type: 0x1193, RaceState::GetState + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000004, Debug end: 0000002F + +(0002A4) S_REGISTER: ecx, Type: 0x118B, this +(0002B4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_id +(0002C8) S_REGISTER: ax, Type: T_SHORT(0011), i + +(0002D4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\racestandsentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\racecar.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:000409B0], Cb: 00000067, Type: 0x1196, RaceCar::RaceCar + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:00040A0F], $L47464 +(0000CC) S_LABEL32: [0001:00040A05], $L47463 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x1195, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00040A20], Cb: 00000006, Type: 0x1199, RaceCar::ClassName + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000134) S_REGISTER: ecx, Type: 0x1198, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00040A30], Cb: 00000172, Type: 0x119A, RaceCar::IsA + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(00017C) S_REGISTER: ecx, Type: 0x1198, this +(00018C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00040BB0], Cb: 0000001E, Type: T_NOTYPE(0000), RaceCar::`scalar deleting destructor' + Parent: 00000000, End: 00000218, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001F4) S_REGISTER: esi, Type: 0x1195, this +(000204) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000218) S_END + +(00021C) S_GPROC32: [0001:00040BD0], Cb: 0000004F, Type: 0x1196, RaceCar::~RaceCar + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000258) S_LABEL32: [0001:00040C17], $L47733 +(00026C) S_LABEL32: [0001:00040C0D], $L47732 +(000280) S_BPREL32: [FFFFFFF0], Type: 0x1195, this + +(000294) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\policestate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00040800], Cb: 00000073, Type: 0x119D, PoliceState::PoliceState + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0004086B], $L2227 +(0000D8) S_LABEL32: [0001:00040861], $L2226 +(0000EC) S_LABEL32: [0001:00040859], $L2229 +(000100) S_BPREL32: [FFFFFFF0], Type: 0x119C, this + +(000114) S_END + +(000118) S_GPROC32: [0001:00040880], Cb: 00000006, Type: 0x11A0, PoliceState::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x119F, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00040890], Cb: 000000A2, Type: 0x11A1, PoliceState::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001A4) S_REGISTER: ecx, Type: 0x119F, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00040940], Cb: 00000061, Type: T_NOTYPE(0000), PoliceState::`scalar deleting destructor' + Parent: 00000000, End: 00000270, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000220) S_LABEL32: [0001:00040999], $L2293 +(000234) S_LABEL32: [0001:0004098F], $L2291 +(000248) S_BPREL32: [FFFFFFF0], Type: 0x119C, this +(00025C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000270) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\policeentity.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\police.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00040600], Cb: 0000005D, Type: 0x11A4, Police::Police + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:00040655], $L47123 +(0000CC) S_LABEL32: [0001:0004064B], $L47122 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x11A3, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00040660], Cb: 00000006, Type: 0x11A7, Police::ClassName + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000134) S_REGISTER: ecx, Type: 0x11A6, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00040670], Cb: 0000010A, Type: 0x11A8, Police::IsA + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(00017C) S_REGISTER: ecx, Type: 0x11A6, this +(00018C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00040780], Cb: 0000001E, Type: T_NOTYPE(0000), Police::`scalar deleting destructor' + Parent: 00000000, End: 00000214, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001F0) S_REGISTER: esi, Type: 0x11A3, this +(000200) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000214) S_END + +(000218) S_GPROC32: [0001:000407A0], Cb: 0000004F, Type: 0x11A4, Police::~Police + Parent: 00000000, End: 0000028C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000250) S_LABEL32: [0001:000407E7], $L47205 +(000264) S_LABEL32: [0001:000407DD], $L47204 +(000278) S_BPREL32: [FFFFFFF0], Type: 0x11A3, this + +(00028C) S_END + +(000290) S_GPROC32: [0001:000407F0], Cb: 00000005, Type: 0x11A9, Police::Notify + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002C8) S_REGISTER: ecx, Type: 0x11A3, this +(0002D8) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0002EC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\pizzeriastate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00040450], Cb: 00000073, Type: 0x11AC, PizzeriaState::PizzeriaState + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:000404BB], $L2227 +(0000E0) S_LABEL32: [0001:000404B1], $L2226 +(0000F4) S_LABEL32: [0001:000404A9], $L2229 +(000108) S_BPREL32: [FFFFFFF0], Type: 0x11AB, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:000404D0], Cb: 00000006, Type: 0x11AF, PizzeriaState::ClassName + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000160) S_REGISTER: ecx, Type: 0x11AE, this + +(000170) S_END + +(000174) S_GPROC32: [0001:000404E0], Cb: 000000A2, Type: 0x11B0, PizzeriaState::IsA + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001B0) S_REGISTER: ecx, Type: 0x11AE, this +(0001C0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00040590], Cb: 00000061, Type: T_NOTYPE(0000), PizzeriaState::`scalar deleting destructor' + Parent: 00000000, End: 0000027C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00022C) S_LABEL32: [0001:000405E9], $L2293 +(000240) S_LABEL32: [0001:000405DF], $L2291 +(000254) S_BPREL32: [FFFFFFF0], Type: 0x11AB, this +(000268) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00027C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\pizzeria.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\pizzamissionstate.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00040420], Cb: 00000030, Type: 0x11B4, PizzaMissionState::GetState + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000004, Debug end: 0000002D + +(0000D0) S_REGISTER: ecx, Type: 0x11B3, this +(0000E0) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_id +(0000F4) S_REGISTER: ax, Type: T_SHORT(0011), i + +(000100) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\pizza.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00040190], Cb: 0000009C, Type: 0x11B7, Pizza::Pizza + Parent: 00000000, End: 00000104, Next: 00000000 + Debug start: 0000001C, Debug end: 00000073 + Flags: Frame Ptr Present + +(0000B4) S_LABEL32: [0001:00040224], $L47314 +(0000C8) S_LABEL32: [0001:0004021A], $L47313 +(0000DC) S_LABEL32: [0001:00040212], $L47316 +(0000F0) S_BPREL32: [FFFFFFF0], Type: 0x11B6, this + +(000104) S_END + +(000108) S_GPROC32: [0001:00040230], Cb: 00000006, Type: 0x11BF, Pizza::ClassName + Parent: 00000000, End: 00000150, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000140) S_REGISTER: ecx, Type: 0x11BE, this + +(000150) S_END + +(000154) S_GPROC32: [0001:00040240], Cb: 0000013E, Type: 0x11C0, Pizza::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(000188) S_REGISTER: ecx, Type: 0x11BE, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:00040380], Cb: 0000001E, Type: T_NOTYPE(0000), Pizza::`scalar deleting destructor' + Parent: 00000000, End: 00000220, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001FC) S_REGISTER: esi, Type: 0x11B6, this +(00020C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000220) S_END + +(000224) S_GPROC32: [0001:000403A0], Cb: 00000066, Type: 0x11B7, Pizza::~Pizza + Parent: 00000000, End: 00000298, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(00025C) S_LABEL32: [0001:000403FE], $L47518 +(000270) S_LABEL32: [0001:000403F4], $L47517 +(000284) S_BPREL32: [FFFFFFF0], Type: 0x11B6, this + +(000298) S_END + +(00029C) S_GPROC32: [0001:00040410], Cb: 00000003, Type: 0x11C3, Pizza::Tickle + Parent: 00000000, End: 000002E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002D4) S_REGISTER: ecx, Type: 0x11B6, this + +(0002E4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxwavepresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003F7D0], Cb: 0000005D, Type: 0x11C6, MxWavePresenter::~MxWavePresenter + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0003F825], $L45165 +(0000E8) S_LABEL32: [0001:0003F81B], $L45164 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x11C5, this + +(000110) S_END + +(000114) S_GPROC32: [0001:0003F830], Cb: 00000008, Type: 0x11C6, MxWavePresenter::Destroy + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000154) S_REGISTER: ecx, Type: 0x11C5, this + +(000164) S_END + +(000168) S_GPROC32: [0001:0003F840], Cb: 00000004, Type: 0x11C7, MxWavePresenter::IsPaused + Parent: 00000000, End: 000001BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0001AC) S_REGISTER: ecx, Type: 0x11C5, this + +(0001BC) S_END + +(0001C0) S_GPROC32: [0001:0003F850], Cb: 0000001B, Type: 0x11C6, MxWavePresenter::Init + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(000200) S_REGISTER: ecx, Type: 0x11C5, this + +(000210) S_END + +(000214) S_GPROC32: [0001:0003F870], Cb: 00000017, Type: 0x11C8, MxWavePresenter::AddToManager + Parent: 00000000, End: 00000280, Next: 00000000 + Debug start: 00000002, Debug end: 00000014 + +(00025C) S_REGISTER: esi, Type: 0x11C5, this +(00026C) S_REGISTER: edi, Type: T_LONG(0012), result + +(000280) S_END + +(000284) S_GPROC32: [0001:0003F890], Cb: 00000044, Type: 0x11C9, MxWavePresenter::Destroy + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 00000001, Debug end: 00000040 + +(0002C4) S_REGISTER: esi, Type: 0x11C5, this +(0002D4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0002F4) S_END + +(0002F8) S_GPROC32: [0001:0003F8E0], Cb: 00000033, Type: 0x11CA, MxWavePresenter::GetPlayedChunks + Parent: 00000000, End: 000003AC, Next: 00000000 + Debug start: 0000000B, Debug end: 0000002E + +(000340) S_REGISTER: esi, Type: 0x11C5, this +(000350) S_REGISTER: bl, Type: T_CHAR(0010), playedChunks +(000368) S_BPREL32: [FFFFFFF8], Type: T_ULONG(0022), dwCurrentPlayCursor +(000388) S_BPREL32: [FFFFFFFC], Type: T_ULONG(0022), dwCurrentWriteCursor + +(0003AC) S_END + +(0003B0) S_GPROC32: [0001:0003F920], Cb: 00000022, Type: 0x11C7, MxWavePresenter::FUN_100b1ba0 + Parent: 00000000, End: 00000408, Next: 00000000 + Debug start: 00000001, Debug end: 00000021 + +(0003F8) S_REGISTER: esi, Type: 0x11C5, this + +(000408) S_END + +(00040C) S_GPROC32: [0001:0003F950], Cb: 00000111, Type: 0x11CC, MxWavePresenter::WriteToSoundBuffer + Parent: 00000000, End: 00000530, Next: 00000000 + Debug start: 00000009, Debug end: 00000107 + +(000458) S_REGISTER: ebp, Type: 0x11C5, this +(000468) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_audioPtr +(000480) S_BPREL32: [00000008], Type: T_UINT4(0075), p_length +(000498) S_BPREL32: [FFFFFFF0], Type: T_32PVOID(0403), pvAudioPtr2 +(0004B0) S_BPREL32: [FFFFFFF4], Type: T_ULONG(0022), dwAudioBytes1 +(0004CC) S_BPREL32: [FFFFFFE8], Type: T_32PVOID(0403), pvAudioPtr1 +(0004E4) S_BPREL32: [FFFFFFF8], Type: T_ULONG(0022), dwAudioBytes2 +(000500) S_BPREL32: [FFFFFFE4], Type: T_ULONG(0022), dwStatus +(000518) S_BPREL32: [FFFFFFEC], Type: T_ULONG(0022), dwOffset + +(000530) S_END + +(000534) S_GPROC32: [0001:0003FA70], Cb: 00000060, Type: 0x11C6, MxWavePresenter::ReadyTickle + Parent: 00000000, End: 00000598, Next: 00000000 + Debug start: 00000006, Debug end: 0000005B + +(000578) S_REGISTER: ebx, Type: 0x11C5, this +(000588) S_REGISTER: ebp, Type: 0x11CE, chunk + +(000598) S_END + +(00059C) S_GPROC32: [0001:0003FAD0], Cb: 0000014A, Type: 0x11C6, MxWavePresenter::StartingTickle + Parent: 00000000, End: 00000648, Next: 00000000 + Debug start: 00000008, Debug end: 00000143 + +(0005E4) S_REGISTER: esi, Type: 0x11C5, this +(0005F4) S_REGISTER: ebx, Type: 0x11CE, chunk +(000604) S_BPREL32: [FFFFFFD8], Type: 0x11D0, waveFormatEx +(000620) S_REGISTER: ecx, Type: T_UINT4(0075), length +(000634) S_BPREL32: [FFFFFFEC], Type: 0x11D4, desc + +(000648) S_END + +(00064C) S_GPROC32: [0001:0003FC20], Cb: 0000013B, Type: 0x11C6, MxWavePresenter::StreamingTickle + Parent: 00000000, End: 00000704, Next: 00000000 + Debug start: 00000020, Debug end: 00000114 + Flags: Frame Ptr Present + +(000694) S_LABEL32: [0001:0003FD4E], $L45300 +(0006A8) S_LABEL32: [0001:0003FD44], $L45299 +(0006BC) S_LABEL32: [0001:0003FCBB], $L45321 +(0006D0) S_REGISTER: esi, Type: 0x11C5, this +(0006E0) S_REGISTER: ebx, Type: 0x11CE, chunk +(0006F0) S_BPREL32: [FFFFFFEC], Type: T_32PUCHAR(0420), data + +(000704) S_END + +(000708) S_GPROC32: [0001:0003FD60], Cb: 00000066, Type: 0x11C6, MxWavePresenter::DoneTickle + Parent: 00000000, End: 000007B8, Next: 00000000 + Debug start: 00000005, Debug end: 00000060 + +(00074C) S_REGISTER: esi, Type: 0x11C5, this +(00075C) S_REGISTER: al, Type: T_CHAR(0010), playedChunks +(000774) S_BPREL32: [FFFFFFF8], Type: T_ULONG(0022), dwCurrentPlayCursor +(000794) S_BPREL32: [FFFFFFFC], Type: T_ULONG(0022), dwCurrentWriteCursor + +(0007B8) S_END + +(0007BC) S_GPROC32: [0001:0003FDD0], Cb: 0000002E, Type: 0x11D6, MxWavePresenter::AppendChunk + Parent: 00000000, End: 00000824, Next: 00000000 + Debug start: 00000002, Debug end: 00000029 + +(000800) S_REGISTER: edi, Type: 0x11C5, this +(000810) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(000824) S_END + +(000828) S_GPROC32: [0001:0003FE00], Cb: 00000114, Type: 0x11C8, MxWavePresenter::PutData + Parent: 00000000, End: 000008B4, Next: 00000000 + Debug start: 0000001C, Debug end: 000000F6 + Flags: Frame Ptr Present + +(000868) S_LABEL32: [0001:0003FF0C], $L45373 +(00087C) S_LABEL32: [0001:0003FF02], $L45372 +(000890) S_REGISTER: esi, Type: 0x11C5, this +(0008A0) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(0008B4) S_END + +(0008B8) S_GPROC32: [0001:0003FF20], Cb: 00000077, Type: 0x11C6, MxWavePresenter::EndAction + Parent: 00000000, End: 00000948, Next: 00000000 + Debug start: 0000001C, Debug end: 00000057 + Flags: Frame Ptr Present + +(0008FC) S_LABEL32: [0001:0003FF8F], $L45385 +(000910) S_LABEL32: [0001:0003FF85], $L45384 +(000924) S_REGISTER: esi, Type: 0x11C5, this +(000934) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000948) S_END + +(00094C) S_GPROC32: [0001:0003FFA0], Cb: 0000005B, Type: 0x11E0, MxWavePresenter::SetVolume + Parent: 00000000, End: 000009CC, Next: 00000000 + Debug start: 00000003, Debug end: 00000055 + +(000990) S_REGISTER: edi, Type: 0x11C5, this +(0009A0) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume +(0009B8) S_REGISTER: ebx, Type: T_INT4(0074), volume + +(0009CC) S_END + +(0009D0) S_GPROC32: [0001:00040000], Cb: 0000003C, Type: 0x11C9, MxWavePresenter::Enable + Parent: 00000000, End: 00000A38, Next: 00000000 + Debug start: 00000002, Debug end: 00000037 + +(000A10) S_REGISTER: esi, Type: 0x11C5, this +(000A20) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable + +(000A38) S_END + +(000A3C) S_GPROC32: [0001:00040040], Cb: 00000093, Type: 0x11C6, MxWavePresenter::ParseExtra + Parent: 00000000, End: 00000AD4, Next: 00000000 + Debug start: 0000000B, Debug end: 00000089 + +(000A80) S_REGISTER: ebx, Type: 0x11C5, this +(000A90) S_BPREL32: [FFFFFC00], Type: 0x11E1, extraCopy +(000AA8) S_REGISTER: esi, Type: T_32PRCHAR(0470), extraData +(000ABC) S_BPREL32: [FFFFFE00], Type: 0x11E1, soundValue + +(000AD4) S_END + +(000AD8) S_GPROC32: [0001:000400E0], Cb: 00000022, Type: 0x11C6, MxWavePresenter::Pause + Parent: 00000000, End: 00000B28, Next: 00000000 + Debug start: 00000001, Debug end: 00000020 + +(000B18) S_REGISTER: esi, Type: 0x11C5, this + +(000B28) S_END + +(000B2C) S_GPROC32: [0001:00040110], Cb: 00000073, Type: 0x11C6, MxWavePresenter::Resume + Parent: 00000000, End: 00000B7C, Next: 00000000 + Debug start: 00000001, Debug end: 00000071 + +(000B6C) S_REGISTER: esi, Type: 0x11C5, this + +(000B7C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvideopresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003E8A0], Cb: 00000003, Type: 0x11E4, MxVideoPresenter::LoadHeader + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0000CC) S_REGISTER: ecx, Type: 0x11E3, this +(0000DC) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:0003E8B0], Cb: 00000001, Type: 0x11E5, MxVideoPresenter::CreateBitmap + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00013C) S_REGISTER: ecx, Type: 0x11E3, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0003E8C0], Cb: 00000003, Type: 0x11E4, MxVideoPresenter::LoadFrame + Parent: 00000000, End: 000001B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000194) S_REGISTER: ecx, Type: 0x11E3, this +(0001A4) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(0001B8) S_END + +(0001BC) S_GPROC32: [0001:0003E8D0], Cb: 00000001, Type: 0x11E5, MxVideoPresenter::RealizePalette + Parent: 00000000, End: 00000214, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000204) S_REGISTER: ecx, Type: 0x11E3, this + +(000214) S_END + +(000218) S_GPROC32: [0001:0003E8E0], Cb: 0000005D, Type: 0x11E5, MxVideoPresenter::~MxVideoPresenter + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000264) S_LABEL32: [0001:0003E935], $L46731 +(000278) S_LABEL32: [0001:0003E92B], $L46730 +(00028C) S_BPREL32: [FFFFFFF0], Type: 0x11E3, this + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:0003E940], Cb: 00000008, Type: 0x11E5, MxVideoPresenter::Destroy + Parent: 00000000, End: 000002F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0002E8) S_REGISTER: ecx, Type: 0x11E3, this + +(0002F8) S_END + +(0002FC) S_GPROC32: [0001:0003E950], Cb: 00000004, Type: 0x11E8, MxVideoPresenter::VTable0x78 + Parent: 00000000, End: 00000350, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000340) S_REGISTER: ecx, Type: 0x11E3, this + +(000350) S_END + +(000354) S_GPROC32: [0001:0003E960], Cb: 00000012, Type: 0x11E9, MxVideoPresenter::VTable0x7c + Parent: 00000000, End: 000003A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000398) S_REGISTER: ecx, Type: 0x11E3, this + +(0003A8) S_END + +(0003AC) S_GPROC32: [0001:0003E980], Cb: 00000018, Type: 0x11EA, MxVideoPresenter::GetWidth + Parent: 00000000, End: 00000400, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(0003F0) S_REGISTER: ecx, Type: 0x11E3, this + +(000400) S_END + +(000404) S_GPROC32: [0001:0003E9A0], Cb: 0000001E, Type: 0x11EA, MxVideoPresenter::GetHeight + Parent: 00000000, End: 00000458, Next: 00000000 + Debug start: 00000000, Debug end: 0000001D + +(000448) S_REGISTER: ecx, Type: 0x11E3, this + +(000458) S_END + +(00045C) S_GPROC32: [0001:0003E9C0], Cb: 0000015E, Type: 0x11F1, MxVideoPresenter::AlphaMask::AlphaMask + Parent: 00000000, End: 0000059C, Next: 00000000 + Debug start: 0000000F, Debug end: 00000155 + +(0004AC) S_REGISTER: esi, Type: 0x11EC, this +(0004BC) S_BPREL32: [00000004], Type: 0x11EF, p_bitmap +(0004D4) S_REGISTER: ecx, Type: T_LONG(0012), height +(0004E8) S_REGISTER: edi, Type: T_32PUCHAR(0420), tPtr +(0004F8) S_BPREL32: [FFFFFFF4], Type: T_INT4(0074), rowSeek +(00050C) S_BPREL32: [FFFFFFFC], Type: T_INT4(0074), j +(00051C) S_REGISTER: eax, Type: T_UINT4(0075), rowsBeforeTop +(000534) S_BPREL32: [FFFFFFEC], Type: T_32PUCHAR(0420), bitmapSrcPtr +(000550) S_BPREL32: [FFFFFFF0], Type: T_INT4(0074), offset +(000564) S_REGISTER: eax, Type: T_UINT4(0075), biCompression +(00057C) S_REGISTER: ebp, Type: T_INT4(0074), size +(00058C) S_BPREL32: [FFFFFFF8], Type: T_INT4(0074), i + +(00059C) S_END + +(0005A0) S_GPROC32: [0001:0003EB20], Cb: 0000001E, Type: T_NOTYPE(0000), MxVideoPresenter::AlphaMask::`scalar deleting destructor' + Parent: 00000000, End: 00000628, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000604) S_REGISTER: esi, Type: 0x11EC, this +(000614) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000628) S_END + +(00062C) S_GPROC32: [0001:0003EB40], Cb: 0000005D, Type: 0x11F5, MxVideoPresenter::AlphaMask::AlphaMask + Parent: 00000000, End: 000006B0, Next: 00000000 + Debug start: 0000000C, Debug end: 00000058 + +(00067C) S_REGISTER: ebx, Type: 0x11EC, this +(00068C) S_BPREL32: [00000004], Type: 0x11F3, p_alpha +(0006A0) S_REGISTER: ebp, Type: T_INT4(0074), size + +(0006B0) S_END + +(0006B4) S_GPROC32: [0001:0003EBA0], Cb: 00000017, Type: 0x11F6, MxVideoPresenter::AlphaMask::~AlphaMask + Parent: 00000000, End: 00000714, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000704) S_REGISTER: ecx, Type: 0x11EC, this + +(000714) S_END + +(000718) S_GPROC32: [0001:0003EBC0], Cb: 00000066, Type: 0x11F8, MxVideoPresenter::AlphaMask::IsHit + Parent: 00000000, End: 000007A4, Next: 00000000 + Debug start: 0000000D, Debug end: 00000061 + +(000764) S_REGISTER: ecx, Type: 0x11EC, this +(000774) S_BPREL32: [00000004], Type: T_UINT4(0075), p_x +(000784) S_BPREL32: [00000008], Type: T_UINT4(0075), p_y +(000794) S_REGISTER: edi, Type: T_INT4(0074), pos + +(0007A4) S_END + +(0007A8) S_GPROC32: [0001:0003EC30], Cb: 00000049, Type: 0x11E5, MxVideoPresenter::Init + Parent: 00000000, End: 000007F8, Next: 00000000 + Debug start: 00000003, Debug end: 00000047 + +(0007E8) S_REGISTER: esi, Type: 0x11E3, this + +(0007F8) S_END + +(0007FC) S_GPROC32: [0001:0003EC80], Cb: 000000F7, Type: 0x11F9, MxVideoPresenter::Destroy + Parent: 00000000, End: 000008B0, Next: 00000000 + Debug start: 00000008, Debug end: 000000EE + +(000840) S_REGISTER: esi, Type: 0x11E3, this +(000850) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor +(000870) S_REGISTER: edi, Type: T_INT4(0074), height +(000884) S_REGISTER: edx, Type: T_INT4(0074), y +(000890) S_REGISTER: ecx, Type: T_INT4(0074), x +(00089C) S_BPREL32: [FFFFFFF0], Type: 0x3F36, rect + +(0008B0) S_END + +(0008B4) S_GPROC32: [0001:0003ED80], Cb: 00000044, Type: 0x11E5, MxVideoPresenter::NextFrame + Parent: 00000000, End: 00000918, Next: 00000000 + Debug start: 00000002, Debug end: 00000041 + +(0008F8) S_REGISTER: edi, Type: 0x11E3, this +(000908) S_REGISTER: esi, Type: 0x11CE, chunk + +(000918) S_END + +(00091C) S_GPROC32: [0001:0003EDD0], Cb: 0000015F, Type: 0x121B, MxVideoPresenter::IsHit + Parent: 00000000, End: 00000A50, Next: 00000000 + Debug start: 0000000C, Debug end: 00000156 + +(00095C) S_REGISTER: esi, Type: 0x11E3, this +(00096C) S_BPREL32: [00000004], Type: T_INT4(0074), p_x +(00097C) S_BPREL32: [00000008], Type: T_INT4(0074), p_y +(00098C) S_BPREL32: [FFFFFFF8], Type: T_LONG(0012), maxY +(0009A0) S_REGISTER: edx, Type: T_LONG(0012), height +(0009B4) S_REGISTER: ebp, Type: T_LONG(0012), seekRow +(0009C8) S_REGISTER: eax, Type: T_LONG(0012), maxX +(0009D8) S_BPREL32: [FFFFFFFC], Type: T_LONG(0012), minY +(0009EC) S_REGISTER: ebx, Type: T_32PUCHAR(0420), pixel +(0009FC) S_REGISTER: ecx, Type: T_LONG(0012), minX +(000A0C) S_REGISTER: eax, Type: 0x109C, action +(000A20) S_BPREL32: [FFFFFFF8], Type: T_LONG(0012), biCompression +(000A3C) S_REGISTER: eax, Type: T_LONG(0012), heightAbs + +(000A50) S_END + +(000A54) S_GPROC32: [0001:0003EF30], Cb: 000004E6, Type: 0x11E5, MxVideoPresenter::PutFrame + Parent: 00000000, End: 00000B80, Next: 00000000 + Debug start: 0000001E, Debug end: 00000178 + Flags: Frame Ptr Present + +(000A98) S_LABEL32: [0001:0003F40E], $L46920 +(000AAC) S_LABEL32: [0001:0003F404], $L46919 +(000AC0) S_REGISTER: edi, Type: 0x11E3, this +(000AD0) S_BPREL32: [FFFFFFD0], Type: 0x1295, displaySurface +(000AEC) S_REGISTER: ebx, Type: 0x1CF9, region +(000B00) S_REGISTER: esi, Type: 0x11E7, ddSurface +(000B14) S_BPREL32: [FFFFFFD4], Type: 0x3F36, rectDest +(000B2C) S_BPREL32: [FFFFFFE4], Type: 0x3F36, rectSrc +(000B40) S_BPREL32: [FFFFFFBC], Type: 0x3F36, rect +(000B54) S_BPREL32: [FFFFFFA4], Type: 0x3ED2, cursor +(000B68) S_REGISTER: eax, Type: 0x3584, regionRect + +(000B80) S_END + +(000B84) S_GPROC32: [0001:0003F420], Cb: 0000003E, Type: 0x11E5, MxVideoPresenter::ReadyTickle + Parent: 00000000, End: 00000BEC, Next: 00000000 + Debug start: 00000005, Debug end: 0000003A + +(000BCC) S_REGISTER: ebx, Type: 0x11E3, this +(000BDC) S_REGISTER: esi, Type: 0x11CE, chunk + +(000BEC) S_END + +(000BF0) S_GPROC32: [0001:0003F460], Cb: 0000003A, Type: 0x11E5, MxVideoPresenter::StartingTickle + Parent: 00000000, End: 00000C58, Next: 00000000 + Debug start: 00000002, Debug end: 00000037 + +(000C38) S_REGISTER: esi, Type: 0x11E3, this +(000C48) S_REGISTER: edi, Type: 0x11CE, chunk + +(000C58) S_END + +(000C5C) S_GPROC32: [0001:0003F4A0], Cb: 000000A0, Type: 0x11E5, MxVideoPresenter::StreamingTickle + Parent: 00000000, End: 00000CC4, Next: 00000000 + Debug start: 00000006, Debug end: 0000009C + +(000CA8) S_REGISTER: esi, Type: 0x11E3, this +(000CB8) S_REGISTER: di, Type: T_SHORT(0011), i + +(000CC4) S_END + +(000CC8) S_GPROC32: [0001:0003F540], Cb: 000000AD, Type: 0x11E5, MxVideoPresenter::RepeatingTickle + Parent: 00000000, End: 00000D30, Next: 00000000 + Debug start: 00000006, Debug end: 000000A8 + +(000D14) S_REGISTER: esi, Type: 0x11E3, this +(000D24) S_REGISTER: di, Type: T_SHORT(0011), i + +(000D30) S_END + +(000D34) S_GPROC32: [0001:0003F5F0], Cb: 00000069, Type: 0x11E5, MxVideoPresenter::Unk5Tickle + Parent: 00000000, End: 00000DA0, Next: 00000000 + Debug start: 00000002, Debug end: 00000066 + +(000D78) S_REGISTER: esi, Type: 0x11E3, this +(000D88) S_REGISTER: eax, Type: T_LONG(0012), sustainTime + +(000DA0) S_END + +(000DA4) S_GPROC32: [0001:0003F660], Cb: 00000026, Type: 0x121C, MxVideoPresenter::AddToManager + Parent: 00000000, End: 00000E10, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(000DEC) S_REGISTER: esi, Type: 0x11E3, this +(000DFC) S_REGISTER: edi, Type: T_LONG(0012), result + +(000E10) S_END + +(000E14) S_GPROC32: [0001:0003F690], Cb: 000000A4, Type: 0x11E5, MxVideoPresenter::EndAction + Parent: 00000000, End: 00000EF4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000084 + Flags: Frame Ptr Present + +(000E58) S_LABEL32: [0001:0003F72C], $L47257 +(000E6C) S_LABEL32: [0001:0003F722], $L47256 +(000E80) S_REGISTER: esi, Type: 0x11E3, this +(000E90) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(000EA4) S_REGISTER: edx, Type: T_LONG(0012), height +(000EB8) S_REGISTER: esi, Type: T_INT4(0074), y +(000EC4) S_REGISTER: ecx, Type: T_INT4(0074), x +(000ED0) S_REGISTER: eax, Type: T_LONG(0012), width +(000EE0) S_BPREL32: [FFFFFFE0], Type: 0x3F36, rect + +(000EF4) S_END + +(000EF8) S_GPROC32: [0001:0003F740], Cb: 0000007F, Type: 0x121C, MxVideoPresenter::PutData + Parent: 00000000, End: 00000F88, Next: 00000000 + Debug start: 0000001C, Debug end: 00000061 + Flags: Frame Ptr Present + +(000F3C) S_LABEL32: [0001:0003F7B7], $L47277 +(000F50) S_LABEL32: [0001:0003F7AD], $L47276 +(000F64) S_REGISTER: esi, Type: 0x11E3, this +(000F74) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000F88) S_END + +(000F8C) S_GPROC32: [0001:0003F7C0], Cb: 00000003, Type: 0x11E9, MxVideoPresenter::VTable0x74 + Parent: 00000000, End: 00000FE0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000FD0) S_REGISTER: ecx, Type: 0x11E3, this + +(000FE0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvideoparamflags.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0003E870], Cb: 00000029, Type: 0x121F, MxVideoParamFlags::MxVideoParamFlags + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000028 + +(0000D8) S_REGISTER: ecx, Type: 0x121E, this + +(0000E8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvideoparam.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0003E6B0], Cb: 00000030, Type: 0x1222, MxVideoParam::MxVideoParam + Parent: 00000000, End: 000000D8, Next: 00000000 + Debug start: 00000001, Debug end: 0000002E + +(0000C8) S_REGISTER: esi, Type: 0x1221, this + +(0000D8) S_END + +(0000DC) S_GPROC32: [0001:0003E6E0], Cb: 0000004F, Type: 0x1228, MxVideoParam::MxVideoParam + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000002, Debug end: 0000004B + +(000120) S_REGISTER: esi, Type: 0x1221, this +(000130) S_BPREL32: [00000004], Type: 0x1223, p_rect +(000144) S_BPREL32: [00000008], Type: 0x1225, p_palette +(00015C) S_BPREL32: [0000000C], Type: T_ULONG(0022), p_backBuffers +(000178) S_BPREL32: [00000010], Type: 0x1226, p_flags + +(00018C) S_END + +(000190) S_GPROC32: [0001:0003E730], Cb: 0000005A, Type: 0x122B, MxVideoParam::MxVideoParam + Parent: 00000000, End: 00000200, Next: 00000000 + Debug start: 00000002, Debug end: 00000056 + +(0001D4) S_REGISTER: esi, Type: 0x1221, this +(0001E4) S_BPREL32: [00000004], Type: 0x1229, p_videoParam + +(000200) S_END + +(000204) S_GPROC32: [0001:0003E790], Cb: 00000011, Type: 0x1222, MxVideoParam::~MxVideoParam + Parent: 00000000, End: 00000258, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(000248) S_REGISTER: ecx, Type: 0x1221, this + +(000258) S_END + +(00025C) S_GPROC32: [0001:0003E7B0], Cb: 00000070, Type: 0x122C, MxVideoParam::SetDeviceName + Parent: 00000000, End: 000002C8, Next: 00000000 + Debug start: 00000006, Debug end: 0000006A + +(0002A0) S_REGISTER: ebx, Type: 0x1221, this +(0002B0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_deviceId + +(0002C8) S_END + +(0002CC) S_GPROC32: [0001:0003E820], Cb: 00000048, Type: 0x1230, MxVideoParam::operator= + Parent: 00000000, End: 00000338, Next: 00000000 + Debug start: 00000001, Debug end: 00000044 + +(00030C) S_REGISTER: esi, Type: 0x1221, this +(00031C) S_BPREL32: [00000004], Type: 0x122E, p_videoParam + +(000338) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvideomanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003DC50], Cb: 0000007B, Type: 0x1233, MxVideoManager::MxVideoManager + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 00000052 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0003DCC3], $L47305 +(0000E4) S_LABEL32: [0001:0003DCB9], $L47304 +(0000F8) S_LABEL32: [0001:0003DCAE], $L47306 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x1232, this + +(000120) S_END + +(000124) S_GPROC32: [0001:0003DCD0], Cb: 0000001E, Type: T_NOTYPE(0000), MxVideoManager::`scalar deleting destructor' + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000178) S_REGISTER: esi, Type: 0x1232, this +(000188) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:0003DCF0], Cb: 00000003, Type: 0x1235, MxVideoManager::VTable0x34 + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0001E4) S_REGISTER: ecx, Type: 0x1232, this +(0001F4) S_BPREL32: [00000004], Type: T_UINT4(0075), p_x +(000204) S_BPREL32: [00000008], Type: T_UINT4(0075), p_y +(000214) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_width +(000228) S_BPREL32: [00000010], Type: T_UINT4(0075), p_height + +(000240) S_END + +(000244) S_GPROC32: [0001:0003DD00], Cb: 00000071, Type: 0x1233, MxVideoManager::~MxVideoManager + Parent: 00000000, End: 000002DC, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(00028C) S_LABEL32: [0001:0003DD69], $L47330 +(0002A0) S_LABEL32: [0001:0003DD5F], $L47329 +(0002B4) S_LABEL32: [0001:0003DD54], $L47331 +(0002C8) S_BPREL32: [FFFFFFF0], Type: 0x1232, this + +(0002DC) S_END + +(0002E0) S_GPROC32: [0001:0003DD80], Cb: 00000015, Type: 0x1236, MxVideoManager::Init + Parent: 00000000, End: 0000032C, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(00031C) S_REGISTER: ecx, Type: 0x1232, this + +(00032C) S_END + +(000330) S_GPROC32: [0001:0003DDA0], Cb: 0000009F, Type: 0x1237, MxVideoManager::Destroy + Parent: 00000000, End: 000003A0, Next: 00000000 + Debug start: 00000002, Debug end: 0000009A + +(000370) S_REGISTER: edi, Type: 0x1232, this +(000380) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0003A0) S_END + +(0003A4) S_GPROC32: [0001:0003DE40], Cb: 00000061, Type: 0x1233, MxVideoManager::UpdateRegion + Parent: 00000000, End: 000003F8, Next: 00000000 + Debug start: 00000006, Debug end: 0000005C + +(0003E8) S_REGISTER: esi, Type: 0x1232, this + +(0003F8) S_END + +(0003FC) S_GPROC32: [0001:0003DEB0], Cb: 000001B2, Type: 0x1233, MxVideoManager::SortPresenterList + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 00000020, Debug end: 00000158 + Flags: Frame Ptr Present + +(000448) S_LABEL32: [0001:0003E05A], $L47388 +(00045C) S_LABEL32: [0001:0003E050], $L47387 +(000470) S_LABEL32: [0001:0003E048], $L47409 +(000484) S_LABEL32: [0001:0003E040], $L47411 +(000498) S_LABEL32: [0001:0003E038], $L47413 +(0004AC) S_LABEL32: [0001:0003E030], $L47389 +(0004C0) S_LABEL32: [0001:0003E028], $L47427 +(0004D4) S_LABEL32: [0001:0003E020], $L47429 +(0004E8) S_LABEL32: [0001:0003E018], $L47431 +(0004FC) S_REGISTER: esi, Type: 0x1232, this +(00050C) S_REGISTER: ecx, Type: T_UINT4(0075), count +(00051C) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, b +(00052C) S_BPREL32: [FFFFFFD4], Type: 0x2CE4, a +(00053C) S_REGISTER: al, Type: T_UCHAR(0020), finished +(000550) S_REGISTER: edx, Type: T_UINT4(0075), i +(00055C) S_BPREL32: [FFFFFFCC], Type: 0x1243, presenterB +(000574) S_BPREL32: [FFFFFFD0], Type: 0x1243, presenterA + +(00058C) S_END + +(000590) S_GPROC32: [0001:0003E070], Cb: 00000217, Type: 0x4D09, MxVideoManager::VTable0x28 + Parent: 00000000, End: 0000076C, Next: 00000000 + Debug start: 00000024, Debug end: 000001E3 + Flags: Frame Ptr Present + +(0005D4) S_LABEL32: [0001:0003E27A], $L47530 +(0005E8) S_LABEL32: [0001:0003E270], $L47529 +(0005FC) S_LABEL32: [0001:0003E263], $L47536 +(000610) S_LABEL32: [0001:0003E215], $L47539 +(000624) S_LABEL32: [0001:0003E146], $L47533 +(000638) S_LABEL32: [0001:0003E235], done +(000648) S_REGISTER: esi, Type: 0x1232, this +(000658) S_BPREL32: [00000008], Type: 0x1229, p_videoParam +(000674) S_BPREL32: [0000000C], Type: 0x1245, p_pDirectDraw +(000690) S_BPREL32: [00000010], Type: 0x4792, p_pDirect3D +(0006A8) S_BPREL32: [00000014], Type: 0x11E7, p_ddSurface1 +(0006C4) S_BPREL32: [00000018], Type: 0x11E7, p_ddSurface2 +(0006E0) S_BPREL32: [0000001C], Type: 0x1247, p_ddClipper +(0006F8) S_BPREL32: [00000020], Type: T_UINT4(0075), p_frequencyMS +(000714) S_BPREL32: [00000024], Type: T_UCHAR(0020), p_createThread +(000730) S_REGISTER: ebx, Type: T_LONG(0012), status +(000744) S_BPREL32: [FFFFFFF3], Type: T_UCHAR(0020), locked +(000758) S_REGISTER: eax, Type: 0x1225, palette + +(00076C) S_END + +(000770) S_GPROC32: [0001:0003E290], Cb: 00000230, Type: 0x124B, MxVideoManager::Create + Parent: 00000000, End: 000008C4, Next: 00000000 + Debug start: 00000024, Debug end: 000001FC + Flags: Frame Ptr Present + +(0007B0) S_LABEL32: [0001:0003E4B3], $L47561 +(0007C4) S_LABEL32: [0001:0003E4A9], $L47560 +(0007D8) S_LABEL32: [0001:0003E49C], $L47567 +(0007EC) S_LABEL32: [0001:0003E44E], $L47570 +(000800) S_LABEL32: [0001:0003E38B], $L47564 +(000814) S_LABEL32: [0001:0003E46E], done +(000824) S_REGISTER: esi, Type: 0x1232, this +(000834) S_BPREL32: [00000008], Type: 0x1229, p_videoParam +(000850) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_frequencyMS +(00086C) S_BPREL32: [00000010], Type: T_UCHAR(0020), p_createThread +(000888) S_REGISTER: ebx, Type: T_LONG(0012), status +(00089C) S_BPREL32: [FFFFFFF3], Type: T_UCHAR(0020), locked +(0008B0) S_REGISTER: eax, Type: 0x1225, palette + +(0008C4) S_END + +(0008C8) S_GPROC32: [0001:0003E4C0], Cb: 00000008, Type: 0x1233, MxVideoManager::Destroy + Parent: 00000000, End: 00000918, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000908) S_REGISTER: ecx, Type: 0x1232, this + +(000918) S_END + +(00091C) S_GPROC32: [0001:0003E4D0], Cb: 0000002B, Type: 0x124D, MxVideoManager::InvalidateRect + Parent: 00000000, End: 00000988, Next: 00000000 + Debug start: 00000002, Debug end: 00000026 + +(000964) S_REGISTER: esi, Type: 0x1232, this +(000974) S_BPREL32: [00000004], Type: 0x1223, p_rect + +(000988) S_END + +(00098C) S_GPROC32: [0001:0003E500], Cb: 00000144, Type: 0x1236, MxVideoManager::Tickle + Parent: 00000000, End: 00000A94, Next: 00000000 + Debug start: 00000021, Debug end: 00000104 + Flags: Frame Ptr Present + +(0009CC) S_LABEL32: [0001:0003E63C], $L47591 +(0009E0) S_LABEL32: [0001:0003E632], $L47590 +(0009F4) S_LABEL32: [0001:0003E62A], $L47592 +(000A08) S_LABEL32: [0001:0003E622], $L47595 +(000A1C) S_LABEL32: [0001:0003E61A], $L47597 +(000A30) S_LABEL32: [0001:0003E612], $L47599 +(000A44) S_REGISTER: esi, Type: 0x1232, this +(000A54) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(000A6C) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(000A80) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(000A94) S_END + +(000A98) S_GPROC32: [0001:0003E650], Cb: 0000005C, Type: 0x124F, MxVideoManager::RealizePalette + Parent: 00000000, End: 00000B24, Next: 00000000 + Debug start: 00000008, Debug end: 00000052 + +(000AE0) S_REGISTER: edi, Type: 0x1232, this +(000AF0) S_BPREL32: [00000004], Type: 0x1225, p_palette +(000B08) S_BPREL32: [FFFFFC00], Type: 0x1251, paletteEntries + +(000B24) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvariabletable.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003D3D0], Cb: 00000037, Type: 0x1257, MxVariableTable::Compare + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000000, Debug end: 00000034 + +(0000C8) S_REGISTER: ecx, Type: 0x1253, this +(0000D8) S_BPREL32: [00000004], Type: 0x1255, p_var0 +(0000EC) S_BPREL32: [00000008], Type: 0x1255, p_var1 + +(000100) S_END + +(000104) S_GPROC32: [0001:0003D410], Cb: 00000021, Type: 0x1259, MxVariableTable::Hash + Parent: 00000000, End: 00000194, Next: 00000000 + Debug start: 00000005, Debug end: 0000001D + +(000144) S_REGISTER: ecx, Type: 0x1253, this +(000154) S_BPREL32: [00000004], Type: 0x1255, p_var +(000168) S_REGISTER: edx, Type: T_INT4(0074), i +(000174) S_REGISTER: ecx, Type: T_32PRCHAR(0470), str +(000184) S_REGISTER: eax, Type: T_UINT4(0075), value + +(000194) S_END + +(000198) S_GPROC32: [0001:0003D440], Cb: 000002D6, Type: 0x125B, MxVariableTable::SetVariable + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000020, Debug end: 00000290 + Flags: Frame Ptr Present + +(0001DC) S_LABEL32: [0001:0003D70E], $L1475 +(0001F0) S_LABEL32: [0001:0003D704], $L1474 +(000204) S_LABEL32: [0001:0003D6FC], $L1492 +(000218) S_LABEL32: [0001:0003D6EF], $L1476 +(00022C) S_LABEL32: [0001:0003D6E2], $L1512 +(000240) S_LABEL32: [0001:0003D5A7], $L1482 +(000254) S_LABEL32: [0001:0003D59C], $L1483 +(000268) S_LABEL32: [0001:0003D4F2], $L1496 +(00027C) S_LABEL32: [0001:0003D4E7], $L1497 +(000290) S_REGISTER: esi, Type: 0x1253, this +(0002A0) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_key +(0002B4) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_value +(0002C8) S_BPREL32: [FFFFFFE8], Type: 0x1255, var +(0002D8) S_BPREL32: [FFFFFFD4], Type: 0x126A, cursor + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:0003D720], Cb: 00000049, Type: 0x1266, MxHashTableCursor::~MxHashTableCursor + Parent: 00000000, End: 00000398, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00035C) S_LABEL32: [0001:0003D761], $L1593 +(000370) S_LABEL32: [0001:0003D757], $L1592 +(000384) S_BPREL32: [FFFFFFF0], Type: 0x125D, this + +(000398) S_END + +(00039C) S_GPROC32: [0001:0003D770], Cb: 00000061, Type: T_NOTYPE(0000), MxHashTableCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000454, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000404) S_LABEL32: [0001:0003D7C9], $L1601 +(000418) S_LABEL32: [0001:0003D7BF], $L1599 +(00042C) S_BPREL32: [FFFFFFF0], Type: 0x125D, this +(000440) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000454) S_END + +(000458) S_GPROC32: [0001:0003D7E0], Cb: 000001AF, Type: 0x126B, MxVariableTable::SetVariable + Parent: 00000000, End: 00000524, Next: 00000000 + Debug start: 0000001E, Debug end: 00000176 + Flags: Frame Ptr Present + +(00049C) S_LABEL32: [0001:0003D987], $L1609 +(0004B0) S_LABEL32: [0001:0003D97D], $L1608 +(0004C4) S_LABEL32: [0001:0003D975], $L1611 +(0004D8) S_LABEL32: [0001:0003D968], $L1623 +(0004EC) S_REGISTER: edi, Type: 0x1253, this +(0004FC) S_BPREL32: [00000008], Type: 0x1255, p_var +(000510) S_BPREL32: [FFFFFFE4], Type: 0x126A, cursor + +(000524) S_END + +(000528) S_GPROC32: [0001:0003D990], Cb: 000001B7, Type: 0x126C, MxVariableTable::GetVariable + Parent: 00000000, End: 0000067C, Next: 00000000 + Debug start: 00000027, Debug end: 0000016A + Flags: Frame Ptr Present + +(00056C) S_LABEL32: [0001:0003DB3F], $L1662 +(000580) S_LABEL32: [0001:0003DB35], $L1661 +(000594) S_LABEL32: [0001:0003DB2D], $L1681 +(0005A8) S_LABEL32: [0001:0003DB20], $L1663 +(0005BC) S_LABEL32: [0001:0003DB15], $L1671 +(0005D0) S_LABEL32: [0001:0003DB0A], $L1672 +(0005E4) S_LABEL32: [0001:0003DA35], $L1685 +(0005F8) S_LABEL32: [0001:0003DA2A], $L1686 +(00060C) S_REGISTER: esi, Type: 0x1253, this +(00061C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_key +(000630) S_BPREL32: [FFFFFFEF], Type: T_UCHAR(0020), found +(000644) S_BPREL32: [FFFFFFD8], Type: 0x1255, var +(000654) S_BPREL32: [FFFFFFDC], Type: 0x126A, cursor +(000668) S_BPREL32: [FFFFFFD4], Type: T_32PRCHAR(0470), value + +(00067C) S_END + +(000680) S_GPROC32: [0001:0003DB50], Cb: 000000C3, Type: 0x126E, MxHashTable::Resize + Parent: 00000000, End: 00000738, Next: 00000000 + Debug start: 00000013, Debug end: 000000BB + +(0006CC) S_REGISTER: esi, Type: 0x126D, this +(0006DC) S_BPREL32: [FFFFFFF4], Type: 0x126F, oldTable +(0006F4) S_REGISTER: ebx, Type: T_UINT4(0075), oldSize +(000708) S_REGISTER: edi, Type: 0x126F, newTable +(00071C) S_REGISTER: edi, Type: 0x1268, t +(000728) S_REGISTER: ebp, Type: 0x1268, next + +(000738) S_END + +(00073C) S_GPROC32: [0001:0003DC20], Cb: 00000030, Type: 0x1271, MxHashTable::NodeInsert + Parent: 00000000, End: 000007C4, Next: 00000000 + Debug start: 00000003, Debug end: 0000002D + +(00078C) S_REGISTER: ecx, Type: 0x126D, this +(00079C) S_BPREL32: [00000004], Type: 0x1268, p_node +(0007B0) S_REGISTER: edx, Type: T_INT4(0074), bucket + +(0007C4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxvariable.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0003D330], Cb: 00000004, Type: 0x1275, MxVariable::GetValue + Parent: 00000000, End: 000000D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000C0) S_REGISTER: ecx, Type: 0x1274, this + +(0000D0) S_END + +(0000D4) S_GPROC32: [0001:0003D340], Cb: 00000010, Type: 0x1276, MxVariable::SetValue + Parent: 00000000, End: 00000134, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000110) S_REGISTER: ecx, Type: 0x1274, this +(000120) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_value + +(000134) S_END + +(000138) S_GPROC32: [0001:0003D350], Cb: 00000074, Type: 0x1277, MxVariable::Destroy + Parent: 00000000, End: 000001C4, Next: 00000000 + Debug start: 0000001D, Debug end: 00000047 + Flags: Frame Ptr Present + +(000174) S_LABEL32: [0001:0003D3B9], $L1090 +(000188) S_LABEL32: [0001:0003D3AF], $L1088 +(00019C) S_LABEL32: [0001:0003D3A4], $L1091 +(0001B0) S_BPREL32: [FFFFFFF0], Type: 0x1274, this + +(0001C4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxunknown100d7c88.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0003D2C0], Cb: 00000052, Type: 0x4423, MxUnknown100d7c88::~MxUnknown100d7c88 + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0003D307], $L1048 +(0000F0) S_LABEL32: [0001:0003D2FD], $L1047 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x4422, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:0003D320], Cb: 00000004, Type: 0x4424, MxUnknown100d7c88::VTable0x00 + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000164) S_REGISTER: ecx, Type: 0x4422, this + +(000174) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxtype17notificationparam.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxtransitionmanager.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0003C470], Cb: 00000076, Type: 0x127C, MxTransitionManager::MxTransitionManager + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005F + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0003C4DE], $L59058 +(0000F0) S_LABEL32: [0001:0003C4D4], $L59057 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x127B, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:0003C4F0], Cb: 00000006, Type: 0x127F, MxTransitionManager::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x127E, this + +(000174) S_END + +(000178) S_GPROC32: [0001:0003C500], Cb: 00000072, Type: 0x1280, MxTransitionManager::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001B8) S_REGISTER: ecx, Type: 0x127E, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:0003C580], Cb: 0000001E, Type: T_NOTYPE(0000), MxTransitionManager::`scalar deleting destructor' + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00023C) S_REGISTER: esi, Type: 0x127B, this +(00024C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000260) S_END + +(000264) S_GPROC32: [0001:0003C5A0], Cb: 00000099, Type: 0x127C, MxTransitionManager::~MxTransitionManager + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 00000021, Debug end: 0000007A + Flags: Frame Ptr Present + +(0002B8) S_LABEL32: [0001:0003C631], $L59095 +(0002CC) S_LABEL32: [0001:0003C627], $L59094 +(0002E0) S_BPREL32: [FFFFFFF0], Type: 0x127B, this + +(0002F4) S_END + +(0002F8) S_GPROC32: [0001:0003C640], Cb: 00000015, Type: 0x1281, MxTransitionManager::GetDDrawSurfaceFromVideoManager + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 00000001, Debug end: 00000013 + +(000354) S_REGISTER: esi, Type: 0x127B, this + +(000364) S_END + +(000368) S_GPROC32: [0001:0003C660], Cb: 000000A4, Type: 0x1281, MxTransitionManager::Tickle + Parent: 00000000, End: 000003BC, Next: 00000000 + Debug start: 00000005, Debug end: 00000086 + +(0003AC) S_REGISTER: ebx, Type: 0x127B, this + +(0003BC) S_END + +(0003C0) S_GPROC32: [0001:0003C710], Cb: 000000BC, Type: 0x1285, MxTransitionManager::StartTransition + Parent: 00000000, End: 000004C8, Next: 00000000 + Debug start: 00000002, Debug end: 000000B8 + +(00040C) S_REGISTER: esi, Type: 0x127B, this +(00041C) S_BPREL32: [00000004], Type: 0x1283, p_animationType +(000438) S_BPREL32: [00000008], Type: T_INT4(0074), p_speed +(00044C) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_doCopy +(000464) S_BPREL32: [00000010], Type: T_UCHAR(0020), p_playMusicInAnim +(000484) S_REGISTER: ecx, Type: 0x1287, tickleManager +(00049C) S_REGISTER: eax, Type: 0x10C3, inputManager +(0004B4) S_REGISTER: eax, Type: 0x109C, action + +(0004C8) S_END + +(0004CC) S_GPROC32: [0001:0003C7D0], Cb: 000000B6, Type: 0x1288, MxTransitionManager::EndTransition + Parent: 00000000, End: 00000590, Next: 00000000 + Debug start: 0000001C, Debug end: 0000008C + Flags: Frame Ptr Present + +(000518) S_LABEL32: [0001:0003C87E], $L59123 +(00052C) S_LABEL32: [0001:0003C874], $L59122 +(000540) S_LABEL32: [0001:0003C86C], $L59125 +(000554) S_REGISTER: esi, Type: 0x127B, this +(000564) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_notifyWorld +(000580) S_REGISTER: ecx, Type: 0x128A, world + +(000590) S_END + +(000594) S_GPROC32: [0001:0003C890], Cb: 0000001B, Type: 0x127C, MxTransitionManager::TransitionNone + Parent: 00000000, End: 000005F0, Next: 00000000 + Debug start: 00000001, Debug end: 00000019 + +(0005E0) S_REGISTER: esi, Type: 0x127B, this + +(0005F0) S_END + +(0005F4) S_GPROC32: [0001:0003C8B0], Cb: 000001B4, Type: 0x127C, MxTransitionManager::TransitionDissolve + Parent: 00000000, End: 000006E4, Next: 00000000 + Debug start: 0000000F, Debug end: 000001AC + +(000644) S_REGISTER: esi, Type: 0x127B, this +(000654) S_REGISTER: eax, Type: T_LONG(0012), res +(000664) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000678) S_REGISTER: eax, Type: T_INT4(0074), i +(000684) S_REGISTER: edx, Type: T_INT4(0074), swap +(000694) S_REGISTER: bp, Type: T_USHORT(0021), t +(0006A0) S_REGISTER: edi, Type: T_INT4(0074), col +(0006B0) S_REGISTER: ecx, Type: T_INT4(0074), row +(0006C0) S_REGISTER: edx, Type: T_INT4(0074), xShift +(0006D4) S_REGISTER: eax, Type: 0x11E7, surf + +(0006E4) S_END + +(0006E8) S_GPROC32: [0001:0003CA70], Cb: 00000296, Type: 0x127C, MxTransitionManager::TransitionPixelation + Parent: 00000000, End: 00000888, Next: 00000000 + Debug start: 00000013, Debug end: 0000028E + +(00073C) S_BPREL32: [FFFFFF84], Type: 0x127B, this +(000750) S_REGISTER: eax, Type: T_LONG(0012), res +(000760) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000774) S_REGISTER: eax, Type: T_INT4(0074), i +(000780) S_REGISTER: eax, Type: T_INT4(0074), swap +(000790) S_REGISTER: bx, Type: T_USHORT(0021), t +(00079C) S_BPREL32: [FFFFFF88], Type: T_INT4(0074), col +(0007AC) S_BPREL32: [FFFFFF90], Type: T_INT4(0074), row +(0007BC) S_REGISTER: esi, Type: T_INT4(0074), xShift +(0007D0) S_REGISTER: eax, Type: T_INT4(0074), bytesPerPixel +(0007E8) S_REGISTER: ebx, Type: T_INT4(0074), k +(0007F4) S_REGISTER: ebx, Type: T_32PUCHAR(0420), source +(000808) S_REGISTER: edi, Type: T_32PUCHAR(0420), surface +(00081C) S_REGISTER: edx, Type: T_UINT4(0075), sample +(000830) S_REGISTER: ebp, Type: T_UINT4(0075), newColor +(000844) S_REGISTER: eax, Type: T_32PUINT4(0475), dest +(000854) S_REGISTER: ebp, Type: T_UINT4(0075), newColor +(000868) S_REGISTER: eax, Type: T_32PUINT4(0475), dest +(000878) S_REGISTER: eax, Type: 0x11E7, surf + +(000888) S_END + +(00088C) S_GPROC32: [0001:0003CD10], Cb: 00000100, Type: 0x127C, MxTransitionManager::TransitionWipe + Parent: 00000000, End: 0000091C, Next: 00000000 + Debug start: 00000008, Debug end: 000000F9 + +(0008D8) S_REGISTER: esi, Type: 0x127B, this +(0008E8) S_REGISTER: eax, Type: T_LONG(0012), res +(0008F8) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(00090C) S_REGISTER: ebx, Type: T_32PUCHAR(0420), line + +(00091C) S_END + +(000920) S_GPROC32: [0001:0003CE10], Cb: 00000167, Type: 0x127C, MxTransitionManager::TransitionWindows + Parent: 00000000, End: 000009F4, Next: 00000000 + Debug start: 0000000F, Debug end: 0000015F + +(000970) S_REGISTER: esi, Type: 0x127B, this +(000980) S_REGISTER: eax, Type: T_LONG(0012), res +(000990) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(0009A4) S_REGISTER: ebx, Type: T_INT4(0074), bytesPerPixel +(0009BC) S_BPREL32: [FFFFFF90], Type: T_INT4(0074), bytesPerLine +(0009D8) S_REGISTER: ebp, Type: T_INT4(0074), i +(0009E4) S_REGISTER: edx, Type: T_32PUCHAR(0420), line + +(0009F4) S_END + +(0009F8) S_GPROC32: [0001:0003CF80], Cb: 00000087, Type: 0x127C, MxTransitionManager::TransitionBroken + Parent: 00000000, End: 00000A7C, Next: 00000000 + Debug start: 00000007, Debug end: 00000081 + +(000A48) S_REGISTER: esi, Type: 0x127B, this +(000A58) S_REGISTER: eax, Type: T_LONG(0012), res +(000A68) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd + +(000A7C) S_END + +(000A80) S_GPROC32: [0001:0003D010], Cb: 00000058, Type: 0x128D, MxTransitionManager::SetWaitIndicator + Parent: 00000000, End: 00000B14, Next: 00000000 + Debug start: 00000001, Debug end: 00000054 + +(000AD0) S_REGISTER: esi, Type: 0x127B, this +(000AE0) S_BPREL32: [00000004], Type: 0x128B, p_waitIndicator +(000AFC) S_REGISTER: eax, Type: 0x128F, videoManager + +(000B14) S_END + +(000B18) S_GPROC32: [0001:0003D070], Cb: 000000A1, Type: 0x1293, MxTransitionManager::SubmitCopyRect + Parent: 00000000, End: 00000BE4, Next: 00000000 + Debug start: 00000009, Debug end: 00000097 + +(000B64) S_REGISTER: ebx, Type: 0x127B, this +(000B74) S_BPREL32: [00000004], Type: 0x1291, p_ddsc +(000B88) S_REGISTER: ecx, Type: T_UINT4(0075), bytesPerPixel +(000BA0) S_REGISTER: edx, Type: T_32PUCHAR(0420), src +(000BB0) S_BPREL32: [FFFFFFFC], Type: T_INT4(0074), y +(000BC0) S_REGISTER: eax, Type: T_32PUCHAR(0420), dst +(000BD0) S_REGISTER: ebp, Type: T_INT4(0074), copyPitch + +(000BE4) S_END + +(000BE8) S_GPROC32: [0001:0003D120], Cb: 00000192, Type: 0x1293, MxTransitionManager::SetupCopyRect + Parent: 00000000, End: 00000CFC, Next: 00000000 + Debug start: 00000009, Debug end: 00000188 + +(000C34) S_REGISTER: ebx, Type: 0x127B, this +(000C44) S_BPREL32: [00000004], Type: 0x1291, p_ddsc +(000C58) S_BPREL32: [FFFFFFF8], Type: T_INT4(0074), height +(000C6C) S_REGISTER: ebp, Type: T_32PUCHAR(0420), src +(000C7C) S_BPREL32: [FFFFFFF8], Type: T_INT4(0074), i +(000C8C) S_BPREL32: [FFFFFFFC], Type: T_UINT4(0075), copyPitch +(000CA4) S_REGISTER: edx, Type: T_32PUCHAR(0420), dst +(000CB4) S_REGISTER: eax, Type: T_INT4(0074), width +(000CC4) S_REGISTER: edi, Type: 0x1295, displaySurface +(000CE0) S_REGISTER: edi, Type: 0x1295, displaySurface + +(000CFC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxtimer.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0003C330], Cb: 0000006C, Type: 0x1298, MxTimer::MxTimer + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000055 + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:0003C394], $L29939 +(0000CC) S_LABEL32: [0001:0003C38A], $L29938 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x1297, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:0003C3A0], Cb: 00000061, Type: T_NOTYPE(0000), MxTimer::`scalar deleting destructor' + Parent: 00000000, End: 00000198, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000148) S_LABEL32: [0001:0003C3F9], $L29959 +(00015C) S_LABEL32: [0001:0003C3EF], $L29957 +(000170) S_BPREL32: [FFFFFFF0], Type: 0x1297, this +(000184) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000198) S_END + +(00019C) S_GPROC32: [0001:0003C410], Cb: 00000013, Type: 0x1299, MxTimer::GetRealTime + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000001, Debug end: 00000011 + +(0001D8) S_REGISTER: esi, Type: 0x1297, this + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:0003C430], Cb: 00000013, Type: 0x1298, MxTimer::Start + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000001, Debug end: 00000011 + +(000224) S_REGISTER: esi, Type: 0x1297, this + +(000234) S_END + +(000238) S_GPROC32: [0001:0003C450], Cb: 0000001A, Type: 0x1298, MxTimer::Stop + Parent: 00000000, End: 00000280, Next: 00000000 + Debug start: 00000001, Debug end: 00000018 + +(000270) S_REGISTER: esi, Type: 0x1297, this + +(000280) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxticklemanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003BFD0], Cb: 0000001D, Type: 0x129D, MxTickleClient::MxTickleClient + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(0000D0) S_REGISTER: ecx, Type: 0x129B, this +(0000E0) S_BPREL32: [00000004], Type: 0x10AE, p_client +(0000F8) S_BPREL32: [00000008], Type: T_INT4(0074), p_interval + +(000110) S_END + +(000114) S_GPROC32: [0001:0003BFF0], Cb: 000000AD, Type: 0x129F, MxTickleManager::~MxTickleManager + Parent: 00000000, End: 000001C4, Next: 00000000 + Debug start: 0000002C, Debug end: 00000082 + Flags: Frame Ptr Present + +(000160) S_LABEL32: [0001:0003C095], $L39720 +(000174) S_LABEL32: [0001:0003C08B], $L39719 +(000188) S_LABEL32: [0001:0003C080], $L39721 +(00019C) S_BPREL32: [FFFFFFF0], Type: 0x129E, this +(0001B0) S_REGISTER: esi, Type: 0x12A0, client + +(0001C4) S_END + +(0001C8) S_GPROC32: [0001:0003C0A0], Cb: 000000B7, Type: 0x12A1, MxTickleManager::Tickle + Parent: 00000000, End: 0000024C, Next: 00000000 + Debug start: 00000009, Debug end: 000000B0 + +(000208) S_REGISTER: esi, Type: 0x129E, this +(000218) S_BPREL32: [FFFFFFF8], Type: 0x12B8, it +(000228) S_REGISTER: edi, Type: T_INT4(0074), time +(000238) S_REGISTER: ebp, Type: 0x12A0, client + +(00024C) S_END + +(000250) S_GPROC32: [0001:0003C160], Cb: 000000D4, Type: 0x12B9, MxTickleManager::RegisterClient + Parent: 00000000, End: 00000300, Next: 00000000 + Debug start: 00000020, Debug end: 000000AB + Flags: Frame Ptr Present + +(000298) S_LABEL32: [0001:0003C227], $L40050 +(0002AC) S_LABEL32: [0001:0003C21D], $L40049 +(0002C0) S_REGISTER: esi, Type: 0x129E, this +(0002D0) S_BPREL32: [00000008], Type: 0x10AE, p_client +(0002E8) S_BPREL32: [0000000C], Type: T_INT4(0074), p_interval + +(000300) S_END + +(000304) S_GPROC32: [0001:0003C240], Cb: 0000003D, Type: 0x12BA, MxTickleManager::UnregisterClient + Parent: 00000000, End: 0000039C, Next: 00000000 + Debug start: 00000006, Debug end: 00000037 + +(000350) S_REGISTER: ecx, Type: 0x129E, this +(000360) S_BPREL32: [00000004], Type: 0x10AE, p_client +(000378) S_BPREL32: [FFFFFFFC], Type: 0x12B8, it +(000388) S_REGISTER: eax, Type: 0x12A0, client + +(00039C) S_END + +(0003A0) S_GPROC32: [0001:0003C280], Cb: 00000051, Type: 0x12B9, MxTickleManager::SetClientTickleInterval + Parent: 00000000, End: 00000454, Next: 00000000 + Debug start: 00000005, Debug end: 00000049 + +(0003F0) S_REGISTER: ecx, Type: 0x129E, this +(000400) S_BPREL32: [00000004], Type: 0x10AE, p_client +(000418) S_BPREL32: [00000008], Type: T_INT4(0074), p_interval +(000430) S_BPREL32: [FFFFFFFC], Type: 0x12B8, it +(000440) S_REGISTER: ecx, Type: 0x12A0, client + +(000454) S_END + +(000458) S_GPROC32: [0001:0003C2E0], Cb: 0000004F, Type: 0x12BB, MxTickleManager::GetClientTickleInterval + Parent: 00000000, End: 000004F4, Next: 00000000 + Debug start: 00000009, Debug end: 00000049 + +(0004A8) S_REGISTER: ecx, Type: 0x129E, this +(0004B8) S_BPREL32: [00000004], Type: 0x10AE, p_client +(0004D0) S_BPREL32: [FFFFFFFC], Type: 0x12B8, it +(0004E0) S_REGISTER: eax, Type: 0x12A0, client + +(0004F4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxthread.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0003BCF0], Cb: 0000006B, Type: 0x12BE, MxTickleThread::MxTickleThread + Parent: 00000000, End: 00000138, Next: 00000000 + Debug start: 0000001C, Debug end: 00000048 + Flags: Frame Ptr Present + +(0000C8) S_LABEL32: [0001:0003BD53], $L30452 +(0000DC) S_LABEL32: [0001:0003BD49], $L30451 +(0000F0) S_BPREL32: [FFFFFFF0], Type: 0x12BD, this +(000104) S_BPREL32: [00000008], Type: 0x10AE, p_target +(00011C) S_BPREL32: [0000000C], Type: T_INT4(0074), p_frequencyMS + +(000138) S_END + +(00013C) S_GPROC32: [0001:0003BD60], Cb: 00000067, Type: T_NOTYPE(0000), MxTickleThread::`scalar deleting destructor' + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000190) S_LABEL32: [0001:0003BDBF], $L30463 +(0001A4) S_LABEL32: [0001:0003BDB5], $L30461 +(0001B8) S_BPREL32: [FFFFFFF0], Type: 0x12BD, this +(0001CC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:0003BDD0], Cb: 00000069, Type: 0x12BF, MxTickleThread::Run + Parent: 00000000, End: 0000028C, Next: 00000000 + Debug start: 00000004, Debug end: 00000064 + +(000220) S_REGISTER: edi, Type: 0x12BD, this +(000230) S_REGISTER: ebx, Type: 0x12C0, timer +(000240) S_REGISTER: ebp, Type: T_INT4(0074), lastTickled +(000258) S_REGISTER: eax, Type: T_INT4(0074), timeRemainingMS +(000274) S_REGISTER: esi, Type: T_LONG(0012), currentTime + +(00028C) S_END + +(000290) S_GPROC32: [0001:0003BE40], Cb: 0000006B, Type: 0x12C3, MxThread::MxThread + Parent: 00000000, End: 00000308, Next: 00000000 + Debug start: 0000001C, Debug end: 00000051 + Flags: Frame Ptr Present + +(0002CC) S_LABEL32: [0001:0003BEA0], $L30480 +(0002E0) S_LABEL32: [0001:0003BE96], $L30479 +(0002F4) S_BPREL32: [FFFFFFF0], Type: 0x12C2, this + +(000308) S_END + +(00030C) S_GPROC32: [0001:0003BEB0], Cb: 0000001E, Type: T_NOTYPE(0000), MxThread::`scalar deleting destructor' + Parent: 00000000, End: 00000380, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00035C) S_REGISTER: esi, Type: 0x12C2, this +(00036C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000380) S_END + +(000384) S_GPROC32: [0001:0003BED0], Cb: 00000067, Type: 0x12C3, MxThread::~MxThread + Parent: 00000000, End: 000003FC, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(0003C0) S_LABEL32: [0001:0003BF2C], $L30492 +(0003D4) S_LABEL32: [0001:0003BF22], $L30491 +(0003E8) S_BPREL32: [FFFFFFF0], Type: 0x12C2, this + +(0003FC) S_END + +(000400) S_GPROC32: [0001:0003BF40], Cb: 00000049, Type: 0x12C4, MxThread::Start + Parent: 00000000, End: 00000484, Next: 00000000 + Debug start: 00000002, Debug end: 00000044 + +(000438) S_REGISTER: esi, Type: 0x12C2, this +(000448) S_BPREL32: [00000004], Type: T_INT4(0074), p_stack +(00045C) S_BPREL32: [00000008], Type: T_INT4(0074), p_flag +(000470) S_REGISTER: edi, Type: T_LONG(0012), result + +(000484) S_END + +(000488) S_GPROC32: [0001:0003BF90], Cb: 0000000E, Type: 0x12C5, MxThread::Sleep + Parent: 00000000, End: 000004EC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0004C0) S_REGISTER: ecx, Type: 0x12C2, this +(0004D0) S_BPREL32: [00000004], Type: T_INT4(0074), p_milliseconds + +(0004EC) S_END + +(0004F0) S_GPROC32: [0001:0003BFA0], Cb: 0000000F, Type: 0x12C3, MxThread::Terminate + Parent: 00000000, End: 0000053C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(00052C) S_REGISTER: ecx, Type: 0x12C2, this + +(00053C) S_END + +(000540) S_GPROC32: [0001:0003BFB0], Cb: 00000008, Type: 0x12C7, MxThread::ThreadProc + Parent: 00000000, End: 00000594, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(00057C) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_thread + +(000594) S_END + +(000598) S_GPROC32: [0001:0003BFC0], Cb: 0000000D, Type: 0x12C8, MxThread::Run + Parent: 00000000, End: 000005E0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000C + +(0005D0) S_REGISTER: ecx, Type: 0x12C2, this + +(0005E0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstring.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0003B7B0], Cb: 00000073, Type: 0x12CA, MxString::MxString + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005C + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:0003B81B], $L1410 +(0000D0) S_LABEL32: [0001:0003B811], $L1409 +(0000E4) S_BPREL32: [FFFFFFF0], Type: 0x12C9, this + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:0003B830], Cb: 0000001E, Type: T_NOTYPE(0000), MxString::`scalar deleting destructor' + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00014C) S_REGISTER: esi, Type: 0x12C9, this +(00015C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000170) S_END + +(000174) S_GPROC32: [0001:0003B850], Cb: 000000A1, Type: 0x12CE, MxString::MxString + Parent: 00000000, End: 00000200, Next: 00000000 + Debug start: 00000021, Debug end: 0000007D + Flags: Frame Ptr Present + +(0001B0) S_LABEL32: [0001:0003B8E9], $L1432 +(0001C4) S_LABEL32: [0001:0003B8DF], $L1431 +(0001D8) S_BPREL32: [FFFFFFF0], Type: 0x12C9, this +(0001EC) S_BPREL32: [00000008], Type: 0x12CC, p_str + +(000200) S_END + +(000204) S_GPROC32: [0001:0003B900], Cb: 000000C8, Type: 0x12CF, MxString::MxString + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000021, Debug end: 000000A4 + Flags: Frame Ptr Present + +(000240) S_LABEL32: [0001:0003B9C0], $L1440 +(000254) S_LABEL32: [0001:0003B9B6], $L1439 +(000268) S_BPREL32: [FFFFFFF0], Type: 0x12C9, this +(00027C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_str + +(000290) S_END + +(000294) S_GPROC32: [0001:0003B9D0], Cb: 00000062, Type: 0x12CA, MxString::~MxString + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000021, Debug end: 00000043 + Flags: Frame Ptr Present + +(0002D0) S_LABEL32: [0001:0003BA2A], $L1449 +(0002E4) S_LABEL32: [0001:0003BA20], $L1448 +(0002F8) S_BPREL32: [FFFFFFF0], Type: 0x12C9, this + +(00030C) S_END + +(000310) S_GPROC32: [0001:0003BA40], Cb: 0000000D, Type: 0x12CA, MxString::ToUpperCase + Parent: 00000000, End: 00000360, Next: 00000000 + Debug start: 00000000, Debug end: 0000000C + +(000350) S_REGISTER: ecx, Type: 0x12C9, this + +(000360) S_END + +(000364) S_GPROC32: [0001:0003BA50], Cb: 0000000D, Type: 0x12CA, MxString::ToLowerCase + Parent: 00000000, End: 000003B4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000C + +(0003A4) S_REGISTER: ecx, Type: 0x12C9, this + +(0003B4) S_END + +(0003B8) S_GPROC32: [0001:0003BA60], Cb: 0000005D, Type: 0x12D1, MxString::operator= + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 00000006, Debug end: 00000058 + +(0003F4) S_REGISTER: ebx, Type: 0x12C9, this +(000404) S_BPREL32: [00000004], Type: 0x12CC, p_str + +(000418) S_END + +(00041C) S_GPROC32: [0001:0003BAC0], Cb: 00000067, Type: 0x12D2, MxString::operator= + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000006, Debug end: 00000062 + +(000458) S_REGISTER: ebx, Type: 0x12C9, this +(000468) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_data + +(00047C) S_END + +(000480) S_GPROC32: [0001:0003BB30], Cb: 0000010D, Type: 0x12D3, MxString::operator+ + Parent: 00000000, End: 00000548, Next: 00000000 + Debug start: 00000027, Debug end: 000000DC + Flags: Frame Ptr Present + +(0004BC) S_LABEL32: [0001:0003BC35], $L1467 +(0004D0) S_LABEL32: [0001:0003BC2B], $L1466 +(0004E4) S_LABEL32: [0001:0003BC1C], $L1470 +(0004F8) S_REGISTER: ebx, Type: 0x12C9, this +(000508) S_BPREL32: [00000008], Type: T_NOTYPE(0000), __$ReturnUdt +(000524) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_str +(000538) S_BPREL32: [FFFFFFE0], Type: 0x12DB, tmp + +(000548) S_END + +(00054C) S_GPROC32: [0001:0003BC40], Cb: 000000A6, Type: 0x12D6, MxString::operator+= + Parent: 00000000, End: 000005D0, Next: 00000000 + Debug start: 0000000D, Debug end: 0000009E + +(000588) S_REGISTER: ebx, Type: 0x12C9, this +(000598) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_str +(0005AC) S_REGISTER: ebp, Type: T_INT4(0074), newlen +(0005C0) S_BPREL32: [FFFFFFFC], Type: T_32PRCHAR(0470), tmp + +(0005D0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstreamprovider.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0003B790], Cb: 0000000C, Type: 0x12E1, MxStreamProvider::SetResourceToGet + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0000D4) S_REGISTER: ecx, Type: 0x12DD, this +(0000E4) S_BPREL32: [00000004], Type: 0x12DF, p_resource + +(0000FC) S_END + +(000100) S_GPROC32: [0001:0003B7A0], Cb: 00000003, Type: 0x3733, MxStreamProvider::VTable0x20 + Parent: 00000000, End: 0000016C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000144) S_REGISTER: ecx, Type: 0x12DD, this +(000154) S_BPREL32: [00000004], Type: 0x109C, p_action + +(00016C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstreamlist.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0003B590], Cb: 00000065, Type: 0x3E01, MxStreamListMxDSSubscriber::Find + Parent: 00000000, End: 00000104, Next: 00000000 + Debug start: 0000000B, Debug end: 0000005F + +(0000CC) S_REGISTER: ecx, Type: 0x137C, this +(0000DC) S_BPREL32: [00000004], Type: 0x1697, p_object +(0000F4) S_BPREL32: [FFFFFFFC], Type: 0x2A5D, it + +(000104) S_END + +(000108) S_GPROC32: [0001:0003B600], Cb: 000000A4, Type: 0x12E6, MxStreamListMxDSAction::Find + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 0000000C, Debug end: 0000009B + +(00014C) S_REGISTER: esi, Type: 0x12E4, this +(00015C) S_BPREL32: [00000004], Type: 0x109C, p_action +(000174) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_delete +(00018C) S_BPREL32: [FFFFFFFC], Type: 0x12FD, it +(00019C) S_REGISTER: edi, Type: 0x109C, found + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:0003B6B0], Cb: 00000051, Type: 0x1303, MxStreamListMxNextActionDataStart::Find + Parent: 00000000, End: 00000248, Next: 00000000 + Debug start: 00000009, Debug end: 0000004B + +(000200) S_REGISTER: ecx, Type: 0x1301, this +(000210) S_BPREL32: [00000004], Type: T_UINT4(0075), p_id +(000224) S_BPREL32: [00000008], Type: T_SHORT(0011), p_value +(000238) S_BPREL32: [FFFFFFFC], Type: 0x131A, it + +(000248) S_END + +(00024C) S_GPROC32: [0001:0003B710], Cb: 0000007F, Type: 0x1303, MxStreamListMxNextActionDataStart::FindAndErase + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000009, Debug end: 00000076 + +(0002A4) S_REGISTER: esi, Type: 0x1301, this +(0002B4) S_BPREL32: [00000004], Type: T_UINT4(0075), p_id +(0002C8) S_BPREL32: [00000008], Type: T_SHORT(0011), p_value +(0002DC) S_BPREL32: [FFFFFFFC], Type: 0x131A, it +(0002EC) S_REGISTER: edi, Type: 0x12FF, match + +(0002FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstreamer.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0003A7F0], Cb: 0000010B, Type: 0x131F, MxStreamer::MxStreamer + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AA + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0003A8F3], $L50542 +(0000D8) S_LABEL32: [0001:0003A8E9], $L50541 +(0000EC) S_LABEL32: [0001:0003A8DE], $L50543 +(000100) S_LABEL32: [0001:0003A8D3], $L50580 +(000114) S_LABEL32: [0001:0003A8C8], $L50544 +(000128) S_LABEL32: [0001:0003A8BD], $L50547 +(00013C) S_LABEL32: [0001:0003A8B2], $L50545 +(000150) S_LABEL32: [0001:0003A8A7], $L50563 +(000164) S_BPREL32: [FFFFFFEC], Type: 0x131E, this + +(000178) S_END + +(00017C) S_GPROC32: [0001:0003A900], Cb: 0000000C, Type: 0x1322, MxStreamerSubClass1::~MxStreamerSubClass1 + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0001D0) S_REGISTER: ecx, Type: 0x1321, this + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:0003A910], Cb: 00000006, Type: 0x1325, MxStreamer::ClassName + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000224) S_REGISTER: ecx, Type: 0x1324, this + +(000234) S_END + +(000238) S_GPROC32: [0001:0003A920], Cb: 00000072, Type: 0x1326, MxStreamer::IsA + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000270) S_REGISTER: ecx, Type: 0x1324, this +(000280) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000294) S_END + +(000298) S_GPROC32: [0001:0003A9A0], Cb: 00000064, Type: 0x1329, list >::~list > + Parent: 00000000, End: 0000034C, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(00033C) S_REGISTER: esi, Type: 0x1328, this + +(00034C) S_END + +(000350) S_GPROC32: [0001:0003AA10], Cb: 0000001E, Type: T_NOTYPE(0000), MxStreamer::`scalar deleting destructor' + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0003A0) S_REGISTER: esi, Type: 0x131E, this +(0003B0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:0003AA30], Cb: 00000049, Type: 0x132C, List::~List + Parent: 00000000, End: 00000464, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000428) S_LABEL32: [0001:0003AA71], $L50774 +(00043C) S_LABEL32: [0001:0003AA67], $L50773 +(000450) S_BPREL32: [FFFFFFF0], Type: 0x132B, this + +(000464) S_END + +(000468) S_GPROC32: [0001:0003AA80], Cb: 00000049, Type: 0x132F, MxStreamerSubClass2::~MxStreamerSubClass2 + Parent: 00000000, End: 000004F8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0004BC) S_LABEL32: [0001:0003AAC1], $L50782 +(0004D0) S_LABEL32: [0001:0003AAB7], $L50781 +(0004E4) S_BPREL32: [FFFFFFF0], Type: 0x132E, this + +(0004F8) S_END + +(0004FC) S_GPROC32: [0001:0003AAD0], Cb: 00000049, Type: 0x1332, MxStreamerSubClass3::~MxStreamerSubClass3 + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000550) S_LABEL32: [0001:0003AB11], $L50790 +(000564) S_LABEL32: [0001:0003AB07], $L50789 +(000578) S_BPREL32: [FFFFFFF0], Type: 0x1331, this + +(00058C) S_END + +(000590) S_GPROC32: [0001:0003AB20], Cb: 00000040, Type: 0x1333, MxStreamer::Create + Parent: 00000000, End: 000005E8, Next: 00000000 + Debug start: 00000001, Debug end: 0000003F + +(0005CC) S_REGISTER: esi, Type: 0x131E, this +(0005DC) S_REGISTER: eax, Type: T_32PUCHAR(0420), b + +(0005E8) S_END + +(0005EC) S_GPROC32: [0001:0003AB60], Cb: 000000E8, Type: 0x131F, MxStreamer::~MxStreamer + Parent: 00000000, End: 000006B0, Next: 00000000 + Debug start: 0000002C, Debug end: 000000A7 + Flags: Frame Ptr Present + +(00062C) S_LABEL32: [0001:0003AC40], $L50806 +(000640) S_LABEL32: [0001:0003AC36], $L50805 +(000654) S_LABEL32: [0001:0003AC2B], $L50807 +(000668) S_LABEL32: [0001:0003AC20], $L50808 +(00067C) S_LABEL32: [0001:0003AC15], $L50809 +(000690) S_BPREL32: [FFFFFFF0], Type: 0x131E, this +(0006A4) S_REGISTER: esi, Type: 0x12DF, c + +(0006B0) S_END + +(0006B4) S_GPROC32: [0001:0003AC50], Cb: 00000138, Type: 0x1335, MxStreamer::Open + Parent: 00000000, End: 000007A8, Next: 00000000 + Debug start: 00000023, Debug end: 0000006D + Flags: Frame Ptr Present + +(0006EC) S_LABEL32: [0001:0003AD7B], $L50925 +(000700) S_LABEL32: [0001:0003AD71], $L50921 +(000714) S_LABEL32: [0001:0003AD5B], $L50931 +(000728) S_LABEL32: [0001:0003AD50], $L50932 +(00073C) S_LABEL32: [0001:0003AD01], $L50922 +(000750) S_BPREL32: [FFFFFFEC], Type: 0x131E, this +(000764) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_name +(000778) S_BPREL32: [0000000C], Type: T_USHORT(0021), p_lookupType +(000794) S_REGISTER: ebx, Type: 0x12DF, stream + +(0007A8) S_END + +(0007AC) S_GPROC32: [0001:0003AD90], Cb: 00000006, Type: 0x1339, MxRAMStreamController::ClassName + Parent: 00000000, End: 00000804, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0007F4) S_REGISTER: ecx, Type: 0x1338, this + +(000804) S_END + +(000808) S_GPROC32: [0001:0003ADA0], Cb: 000000A2, Type: 0x133A, MxRAMStreamController::IsA + Parent: 00000000, End: 00000870, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00084C) S_REGISTER: ecx, Type: 0x1338, this +(00085C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000870) S_END + +(000874) S_GPROC32: [0001:0003AE50], Cb: 00000079, Type: T_NOTYPE(0000), MxRAMStreamController::`scalar deleting destructor' + Parent: 00000000, End: 00000934, Next: 00000000 + Debug start: 0000001D, Debug end: 0000004F + Flags: Frame Ptr Present + +(0008D0) S_LABEL32: [0001:0003AEC1], $L50966 +(0008E4) S_LABEL32: [0001:0003AEB7], $L50964 +(0008F8) S_LABEL32: [0001:0003AEAC], $L50967 +(00090C) S_BPREL32: [FFFFFFF0], Type: 0x133B, this +(000920) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000934) S_END + +(000938) S_GPROC32: [0001:0003AED0], Cb: 0000018B, Type: 0x133C, MxStreamer::Close + Parent: 00000000, End: 00000A28, Next: 00000000 + Debug start: 00000023, Debug end: 000000A3 + Flags: Frame Ptr Present + +(000974) S_LABEL32: [0001:0003B050], $L50983 +(000988) S_LABEL32: [0001:0003B046], $L50982 +(00099C) S_LABEL32: [0001:0003B03E], $L50986 +(0009B0) S_LABEL32: [0001:0003B036], $L51014 +(0009C4) S_LABEL32: [0001:0003B02E], $L51016 +(0009D8) S_REGISTER: esi, Type: 0x131E, this +(0009E8) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_name +(0009FC) S_BPREL32: [FFFFFFF0], Type: 0x1353, it +(000A0C) S_BPREL32: [FFFFFF50], Type: 0x3CF2, ds +(000A1C) S_REGISTER: edi, Type: 0x12DF, c + +(000A28) S_END + +(000A2C) S_GPROC32: [0001:0003B060], Cb: 0000004F, Type: 0x1359, MxStreamerNotification::~MxStreamerNotification + Parent: 00000000, End: 00000AC0, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000A84) S_LABEL32: [0001:0003B0A7], $L51105 +(000A98) S_LABEL32: [0001:0003B09D], $L51104 +(000AAC) S_BPREL32: [FFFFFFF0], Type: 0x1356, this + +(000AC0) S_END + +(000AC4) S_GPROC32: [0001:0003B0B0], Cb: 00000067, Type: T_NOTYPE(0000), MxStreamerNotification::`scalar deleting destructor' + Parent: 00000000, End: 00000B70, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000B20) S_LABEL32: [0001:0003B10F], $L51113 +(000B34) S_LABEL32: [0001:0003B105], $L51111 +(000B48) S_BPREL32: [FFFFFFF0], Type: 0x1356, this +(000B5C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000B70) S_END + +(000B74) S_GPROC32: [0001:0003B120], Cb: 000000AC, Type: 0x135B, MxStreamerNotification::Clone + Parent: 00000000, End: 00000C1C, Next: 00000000 + Debug start: 0000001E, Debug end: 00000084 + Flags: Frame Ptr Present + +(000BBC) S_LABEL32: [0001:0003B1BF], $L51124 +(000BD0) S_LABEL32: [0001:0003B1B5], $L51123 +(000BE4) S_LABEL32: [0001:0003B193], $L51128 +(000BF8) S_LABEL32: [0001:0003B18B], $L51130 +(000C0C) S_REGISTER: edi, Type: 0x1356, this + +(000C1C) S_END + +(000C20) S_GPROC32: [0001:0003B1D0], Cb: 00000079, Type: 0x1360, MxStreamer::GetOpenStream + Parent: 00000000, End: 00000CA8, Next: 00000000 + Debug start: 0000000E, Debug end: 00000073 + +(000C64) S_REGISTER: ecx, Type: 0x131E, this +(000C74) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name +(000C88) S_BPREL32: [FFFFFFFC], Type: 0x1353, it +(000C98) S_REGISTER: eax, Type: 0x1361, atom + +(000CA8) S_END + +(000CAC) S_GPROC32: [0001:0003B250], Cb: 0000007F, Type: 0x1362, MxStreamer::AddStreamControllerToOpenList + Parent: 00000000, End: 00000D28, Next: 00000000 + Debug start: 00000009, Debug end: 00000077 + +(000D00) S_REGISTER: esi, Type: 0x131E, this +(000D10) S_BPREL32: [00000004], Type: 0x12DF, p_stream + +(000D28) S_END + +(000D2C) S_GPROC32: [0001:0003B2D0], Cb: 0000003E, Type: 0x1364, MxStreamer::FUN_100b99b0 + Parent: 00000000, End: 00000DAC, Next: 00000000 + Debug start: 00000001, Debug end: 0000003B + +(000D6C) S_REGISTER: ecx, Type: 0x131E, this +(000D7C) S_BPREL32: [00000004], Type: 0x109C, p_action +(000D94) S_REGISTER: ecx, Type: 0x12DF, controller + +(000DAC) S_END + +(000DB0) S_GPROC32: [0001:0003B310], Cb: 00000140, Type: 0x1364, MxStreamer::DeleteObject + Parent: 00000000, End: 00000EB8, Next: 00000000 + Debug start: 0000001E, Debug end: 0000010E + Flags: Frame Ptr Present + +(000DF0) S_LABEL32: [0001:0003B445], $L51348 +(000E04) S_LABEL32: [0001:0003B43B], $L51347 +(000E18) S_LABEL32: [0001:0003B433], $L51384 +(000E2C) S_LABEL32: [0001:0003B42B], $L51387 +(000E40) S_BPREL32: [FFFFFFE4], Type: 0x131E, this +(000E54) S_BPREL32: [00000008], Type: 0x109C, p_dsAction +(000E6C) S_BPREL32: [FFFFFFF0], Type: 0x1353, it +(000E7C) S_BPREL32: [FFFFFF50], Type: 0x3CF2, tempAction +(000E94) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result +(000EA8) S_REGISTER: ecx, Type: T_32PRCHAR(0470), id + +(000EB8) S_END + +(000EBC) S_GPROC32: [0001:0003B450], Cb: 00000024, Type: 0x1365, MxStreamer::FUN_100b9b30 + Parent: 00000000, End: 00000F3C, Next: 00000000 + Debug start: 00000001, Debug end: 00000021 + +(000EFC) S_REGISTER: ecx, Type: 0x131E, this +(000F0C) S_BPREL32: [00000004], Type: 0x1083, p_dsObject +(000F24) S_REGISTER: eax, Type: 0x12DF, controller + +(000F3C) S_END + +(000F40) S_GPROC32: [0001:0003B480], Cb: 00000108, Type: 0x1366, MxStreamer::Notify + Parent: 00000000, End: 00001020, Next: 00000000 + Debug start: 00000023, Debug end: 000000CB + Flags: Frame Ptr Present + +(000F7C) S_LABEL32: [0001:0003B57D], $L51412 +(000F90) S_LABEL32: [0001:0003B573], $L51411 +(000FA4) S_LABEL32: [0001:0003B56B], $L51415 +(000FB8) S_LABEL32: [0001:0003B563], $L51420 +(000FCC) S_LABEL32: [0001:0003B55B], $L51422 +(000FE0) S_REGISTER: esi, Type: 0x131E, this +(000FF0) S_BPREL32: [00000008], Type: 0x10B7, p_param +(001004) S_BPREL32: [FFFFFF50], Type: 0x3CF2, ds +(001014) S_REGISTER: edi, Type: 0x12DF, c + +(001020) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstreamcontroller.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00039360], Cb: 00000008, Type: 0x1368, MxStreamController::VTable0x18 + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0000D4) S_REGISTER: ecx, Type: 0x1367, this +(0000E4) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(0000FC) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(000114) S_END + +(000118) S_GPROC32: [0001:00039370], Cb: 00000008, Type: 0x1368, MxStreamController::VTable0x1c + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000160) S_REGISTER: ecx, Type: 0x1367, this +(000170) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000188) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00039380], Cb: 00000003, Type: 0x36CF, MxStreamController::VTable0x28 + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0001EC) S_REGISTER: ecx, Type: 0x1367, this + +(0001FC) S_END + +(000200) S_GPROC32: [0001:00039390], Cb: 000001CC, Type: 0x136A, MxStreamController::MxStreamController + Parent: 00000000, End: 000003F4, Next: 00000000 + Debug start: 00000021, Debug end: 000000E6 + Flags: Frame Ptr Present + +(000250) S_LABEL32: [0001:00039554], $L51483 +(000264) S_LABEL32: [0001:0003954A], $L51482 +(000278) S_LABEL32: [0001:0003953F], $L51484 +(00028C) S_LABEL32: [0001:00039534], $L51485 +(0002A0) S_LABEL32: [0001:00039529], $L51486 +(0002B4) S_LABEL32: [0001:0003951E], $L51492 +(0002C8) S_LABEL32: [0001:00039513], $L51494 +(0002DC) S_LABEL32: [0001:00039508], $L51497 +(0002F0) S_LABEL32: [0001:000394FD], $L51487 +(000304) S_LABEL32: [0001:000394F2], $L51515 +(000318) S_LABEL32: [0001:000394E7], $L51517 +(00032C) S_LABEL32: [0001:000394DC], $L51520 +(000340) S_LABEL32: [0001:000394D1], $L51488 +(000354) S_LABEL32: [0001:000394C6], $L51603 +(000368) S_LABEL32: [0001:000394BB], $L51605 +(00037C) S_LABEL32: [0001:000394B0], $L51608 +(000390) S_LABEL32: [0001:000394A5], $L51489 +(0003A4) S_LABEL32: [0001:0003949A], $L51626 +(0003B8) S_LABEL32: [0001:0003948F], $L51628 +(0003CC) S_LABEL32: [0001:00039484], $L51631 +(0003E0) S_BPREL32: [FFFFFFEC], Type: 0x1367, this + +(0003F4) S_END + +(0003F8) S_GPROC32: [0001:00039560], Cb: 00000064, Type: 0x136D, list >::~list > + Parent: 00000000, End: 000004B8, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(0004A8) S_REGISTER: esi, Type: 0x136C, this + +(0004B8) S_END + +(0004BC) S_GPROC32: [0001:000395D0], Cb: 00000064, Type: 0x1372, list >::~list > + Parent: 00000000, End: 00000560, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(000550) S_REGISTER: esi, Type: 0x1371, this + +(000560) S_END + +(000564) S_GPROC32: [0001:00039640], Cb: 00000026, Type: 0x1376, list >::_Buynode + Parent: 00000000, End: 00000614, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(0005CC) S_REGISTER: ecx, Type: 0x1371, this +(0005DC) S_BPREL32: [00000004], Type: 0x1374, _Narg +(0005F0) S_BPREL32: [00000008], Type: 0x1374, _Parg +(000604) S_REGISTER: eax, Type: 0x1374, _S + +(000614) S_END + +(000618) S_GPROC32: [0001:00039670], Cb: 00000006, Type: 0x1379, MxStreamController::ClassName + Parent: 00000000, End: 00000670, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000660) S_REGISTER: ecx, Type: 0x1378, this + +(000670) S_END + +(000674) S_GPROC32: [0001:00039680], Cb: 00000072, Type: 0x137A, MxStreamController::IsA + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0006B4) S_REGISTER: ecx, Type: 0x1378, this +(0006C4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:00039700], Cb: 0000001E, Type: T_NOTYPE(0000), MxStreamController::`scalar deleting destructor' + Parent: 00000000, End: 00000758, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000734) S_REGISTER: esi, Type: 0x1367, this +(000744) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000758) S_END + +(00075C) S_GPROC32: [0001:00039720], Cb: 00000049, Type: 0x137D, MxStreamListMxDSSubscriber::~MxStreamListMxDSSubscriber + Parent: 00000000, End: 000007F8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0007BC) S_LABEL32: [0001:00039761], $L52089 +(0007D0) S_LABEL32: [0001:00039757], $L52088 +(0007E4) S_BPREL32: [FFFFFFF0], Type: 0x137C, this + +(0007F8) S_END + +(0007FC) S_GPROC32: [0001:00039770], Cb: 00000049, Type: 0x137E, MxStreamListMxNextActionDataStart::~MxStreamListMxNextActionDataStart + Parent: 00000000, End: 000008A8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00086C) S_LABEL32: [0001:000397B1], $L52105 +(000880) S_LABEL32: [0001:000397A7], $L52104 +(000894) S_BPREL32: [FFFFFFF0], Type: 0x1301, this + +(0008A8) S_END + +(0008AC) S_GPROC32: [0001:000397C0], Cb: 00000049, Type: 0x1381, MxStreamList::~MxStreamList + Parent: 00000000, End: 00000950, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000914) S_LABEL32: [0001:00039801], $L52113 +(000928) S_LABEL32: [0001:000397F7], $L52112 +(00093C) S_BPREL32: [FFFFFFF0], Type: 0x1380, this + +(000950) S_END + +(000954) S_GPROC32: [0001:00039810], Cb: 00000049, Type: 0x1384, MxStreamList::~MxStreamList + Parent: 00000000, End: 00000A08, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0009CC) S_LABEL32: [0001:00039851], $L52129 +(0009E0) S_LABEL32: [0001:00039847], $L52128 +(0009F4) S_BPREL32: [FFFFFFF0], Type: 0x1383, this + +(000A08) S_END + +(000A0C) S_GPROC32: [0001:00039860], Cb: 00000049, Type: 0x1387, List::~List + Parent: 00000000, End: 00000AA0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000A64) S_LABEL32: [0001:000398A1], $L52137 +(000A78) S_LABEL32: [0001:00039897], $L52136 +(000A8C) S_BPREL32: [FFFFFFF0], Type: 0x1386, this + +(000AA0) S_END + +(000AA4) S_GPROC32: [0001:000398B0], Cb: 00000049, Type: 0x138A, List::~List + Parent: 00000000, End: 00000B48, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000B0C) S_LABEL32: [0001:000398F1], $L52153 +(000B20) S_LABEL32: [0001:000398E7], $L52152 +(000B34) S_BPREL32: [FFFFFFF0], Type: 0x1389, this + +(000B48) S_END + +(000B4C) S_GPROC32: [0001:00039900], Cb: 0000024A, Type: 0x136A, MxStreamController::~MxStreamController + Parent: 00000000, End: 00000CD0, Next: 00000000 + Debug start: 00000028, Debug end: 000001E0 + Flags: Frame Ptr Present + +(000B9C) S_LABEL32: [0001:00039B42], $L52171 +(000BB0) S_LABEL32: [0001:00039B38], $L52170 +(000BC4) S_LABEL32: [0001:00039B2D], $L52172 +(000BD8) S_LABEL32: [0001:00039B22], $L52173 +(000BEC) S_LABEL32: [0001:00039B17], $L52174 +(000C00) S_LABEL32: [0001:00039B0C], $L52175 +(000C14) S_LABEL32: [0001:00039B01], $L52176 +(000C28) S_LABEL32: [0001:00039AF6], $L52177 +(000C3C) S_LABEL32: [0001:00039AEE], $L52178 +(000C50) S_LABEL32: [0001:00039A8A], $L52183 +(000C64) S_BPREL32: [FFFFFFF0], Type: 0x1367, this +(000C78) S_BPREL32: [FFFFFFE8], Type: 0x1EEA, subscriber +(000C90) S_BPREL32: [FFFFFFEC], Type: 0x109C, action +(000CA4) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock +(000CB8) S_BPREL32: [FFFFFFE8], Type: 0x138E, provider + +(000CD0) S_END + +(000CD4) S_GPROC32: [0001:00039B50], Cb: 00000017, Type: 0x12F4, list >::iterator::operator++ + Parent: 00000000, End: 00000D98, Next: 00000000 + Debug start: 00000005, Debug end: 00000011 + +(000D40) S_REGISTER: ecx, Type: 0x12E9, this +(000D50) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000D6C) S_BPREL32: [00000008], Type: T_INT4(0074), __formal +(000D84) S_BPREL32: [FFFFFFFC], Type: 0x12FD, _Tmp + +(000D98) S_END + +(000D9C) S_GPROC32: [0001:00039B70], Cb: 000000A7, Type: 0x138B, MxStreamController::Open + Parent: 00000000, End: 00000E6C, Next: 00000000 + Debug start: 0000001F, Debug end: 0000007F + Flags: Frame Ptr Present + +(000DDC) S_LABEL32: [0001:00039C0F], $L52528 +(000DF0) S_LABEL32: [0001:00039C05], $L52527 +(000E04) S_LABEL32: [0001:00039BFD], $L52529 +(000E18) S_REGISTER: esi, Type: 0x1367, this +(000E28) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_filename +(000E40) S_BPREL32: [FFFFFEEC], Type: 0x138C, sourceName +(000E58) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000E6C) S_END + +(000E70) S_GPROC32: [0001:00039C20], Cb: 00000050, Type: 0x36F9, MxStreamController::AddSubscriber + Parent: 00000000, End: 00000EE8, Next: 00000000 + Debug start: 00000009, Debug end: 00000048 + +(000EBC) S_REGISTER: esi, Type: 0x1367, this +(000ECC) S_BPREL32: [00000004], Type: 0x1EEA, p_subscriber + +(000EE8) S_END + +(000EEC) S_GPROC32: [0001:00039C70], Cb: 0000006B, Type: 0x36F9, MxStreamController::RemoveSubscriber + Parent: 00000000, End: 00000F64, Next: 00000000 + Debug start: 00000004, Debug end: 00000064 + +(000F38) S_REGISTER: esi, Type: 0x1367, this +(000F48) S_BPREL32: [00000004], Type: 0x1EEA, p_subscriber + +(000F64) S_END + +(000F68) S_GPROC32: [0001:00039CE0], Cb: 000000A5, Type: 0x138D, MxStreamController::VTable0x20 + Parent: 00000000, End: 00001068, Next: 00000000 + Debug start: 00000021, Debug end: 00000083 + Flags: Frame Ptr Present + +(000FB0) S_LABEL32: [0001:00039D7D], $L52759 +(000FC4) S_LABEL32: [0001:00039D73], $L52758 +(000FD8) S_REGISTER: esi, Type: 0x1367, this +(000FE8) S_BPREL32: [00000008], Type: 0x109C, p_action +(001000) S_REGISTER: edi, Type: T_UINT4(0075), offset +(001014) S_REGISTER: ebx, Type: T_INT4(0074), objectId +(001028) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock +(00103C) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), result +(001050) S_BPREL32: [FFFFFFF0], Type: 0x138E, provider + +(001068) S_END + +(00106C) S_GPROC32: [0001:00039D90], Cb: 000000B4, Type: 0x138D, MxStreamController::VTable0x24 + Parent: 00000000, End: 00001118, Next: 00000000 + Debug start: 0000001D, Debug end: 00000060 + Flags: Frame Ptr Present + +(0010B4) S_LABEL32: [0001:00039E3C], $L52769 +(0010C8) S_LABEL32: [0001:00039E32], $L52768 +(0010DC) S_REGISTER: esi, Type: 0x1367, this +(0010EC) S_BPREL32: [00000008], Type: 0x109C, p_action +(001104) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(001118) S_END + +(00111C) S_GPROC32: [0001:00039E50], Cb: 000000F2, Type: 0x1391, MxStreamController::FUN_100c1800 + Parent: 00000000, End: 000011E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000085 + Flags: Frame Ptr Present + +(001164) S_LABEL32: [0001:00039F35], $L52784 +(001178) S_LABEL32: [0001:00039F2B], $L52783 +(00118C) S_LABEL32: [0001:00039EBB], $L52893 +(0011A0) S_BPREL32: [FFFFFFEC], Type: 0x1367, this +(0011B4) S_BPREL32: [00000008], Type: 0x109C, p_action +(0011CC) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_val + +(0011E0) S_END + +(0011E4) S_GPROC32: [0001:00039F50], Cb: 00000006, Type: 0x1394, MxNextActionDataStart::ClassName + Parent: 00000000, End: 0000123C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00122C) S_REGISTER: ecx, Type: 0x1393, this + +(00123C) S_END + +(001240) S_GPROC32: [0001:00039F60], Cb: 00000072, Type: 0x1395, MxNextActionDataStart::IsA + Parent: 00000000, End: 000012A8, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(001284) S_REGISTER: ecx, Type: 0x1393, this +(001294) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0012A8) S_END + +(0012AC) S_GPROC32: [0001:00039FE0], Cb: 00000061, Type: T_NOTYPE(0000), MxNextActionDataStart::`scalar deleting destructor' + Parent: 00000000, End: 00001358, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001308) S_LABEL32: [0001:0003A039], $L52925 +(00131C) S_LABEL32: [0001:0003A02F], $L52923 +(001330) S_BPREL32: [FFFFFFF0], Type: 0x1396, this +(001344) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001358) S_END + +(00135C) S_GPROC32: [0001:0003A050], Cb: 000001D0, Type: 0x1391, MxStreamController::FUN_100c1a00 + Parent: 00000000, End: 000014B8, Next: 00000000 + Debug start: 00000020, Debug end: 00000123 + Flags: Frame Ptr Present + +(0013A4) S_LABEL32: [0001:0003A213], $L52942 +(0013B8) S_LABEL32: [0001:0003A209], $L52941 +(0013CC) S_REGISTER: esi, Type: 0x1367, this +(0013DC) S_BPREL32: [00000008], Type: 0x109C, p_action +(0013F4) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_offset +(00140C) S_REGISTER: ecx, Type: T_UINT4(0075), fileSize +(001420) S_REGISTER: ecx, Type: T_LONG(0012), time +(001430) S_BPREL32: [FFFFFFF0], Type: 0x12FD, it +(001440) S_REGISTER: cx, Type: T_SHORT(0011), newUnknown24 +(001458) S_REGISTER: ebx, Type: 0x109C, action +(00146C) S_BPREL32: [FFFFFFF0], Type: 0x12FD, it +(00147C) S_REGISTER: ebx, Type: 0x109C, action +(001490) S_BPREL32: [FFFFFFF0], Type: 0x2A5D, it +(0014A0) S_REGISTER: eax, Type: 0x1EEA, subscriber + +(0014B8) S_END + +(0014BC) S_GPROC32: [0001:0003A220], Cb: 000000C1, Type: 0x1391, MxStreamController::VTable0x2c + Parent: 00000000, End: 00001580, Next: 00000000 + Debug start: 00000021, Debug end: 00000057 + Flags: Frame Ptr Present + +(001504) S_LABEL32: [0001:0003A2D9], $L53125 +(001518) S_LABEL32: [0001:0003A2CF], $L53124 +(00152C) S_REGISTER: esi, Type: 0x1367, this +(00153C) S_BPREL32: [00000008], Type: 0x109C, p_action +(001554) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_bufferval +(00156C) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(001580) S_END + +(001584) S_GPROC32: [0001:0003A2F0], Cb: 000000B2, Type: 0x138D, MxStreamController::VTable0x30 + Parent: 00000000, End: 00001668, Next: 00000000 + Debug start: 0000001D, Debug end: 00000091 + Flags: Frame Ptr Present + +(0015CC) S_LABEL32: [0001:0003A39A], $L53137 +(0015E0) S_LABEL32: [0001:0003A390], $L53136 +(0015F4) S_REGISTER: esi, Type: 0x1367, this +(001604) S_BPREL32: [00000008], Type: 0x109C, p_action +(00161C) S_REGISTER: edi, Type: 0x109C, action +(001630) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(001644) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), result +(001658) S_REGISTER: esi, Type: 0x12FF, data + +(001668) S_END + +(00166C) S_GPROC32: [0001:0003A3B0], Cb: 000000C4, Type: 0x138D, MxStreamController::InsertActionToList54 + Parent: 00000000, End: 00001734, Next: 00000000 + Debug start: 00000021, Debug end: 00000053 + Flags: Frame Ptr Present + +(0016BC) S_LABEL32: [0001:0003A46C], $L53152 +(0016D0) S_LABEL32: [0001:0003A462], $L53151 +(0016E4) S_REGISTER: esi, Type: 0x1367, this +(0016F4) S_BPREL32: [00000008], Type: 0x109C, p_action +(00170C) S_BPREL32: [FFFFFFF0], Type: 0x109C, action +(001720) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(001734) S_END + +(001738) S_GPROC32: [0001:0003A480], Cb: 00000088, Type: 0x34A5, MxStreamController::FUN_100c1e70 + Parent: 00000000, End: 0000180C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000068 + Flags: Frame Ptr Present + +(001780) S_LABEL32: [0001:0003A500], $L53263 +(001794) S_LABEL32: [0001:0003A4F6], $L53262 +(0017A8) S_REGISTER: esi, Type: 0x1367, this +(0017B8) S_BPREL32: [00000008], Type: 0x108E, p_action +(0017D0) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(0017E4) S_BPREL32: [FFFFFFF0], Type: 0x1243, result +(0017F8) S_REGISTER: eax, Type: 0x109C, action + +(00180C) S_END + +(001810) S_GPROC32: [0001:0003A510], Cb: 000001AA, Type: 0x138D, MxStreamController::FUN_100c1f00 + Parent: 00000000, End: 00001960, Next: 00000000 + Debug start: 00000021, Debug end: 00000091 + Flags: Frame Ptr Present + +(001858) S_LABEL32: [0001:0003A6B2], $L53279 +(00186C) S_LABEL32: [0001:0003A6A8], $L53278 +(001880) S_LABEL32: [0001:0003A69B], $L53280 +(001894) S_LABEL32: [0001:0003A693], $L53285 +(0018A8) S_LABEL32: [0001:0003A68B], $L53296 +(0018BC) S_LABEL32: [0001:0003A683], $L53298 +(0018D0) S_LABEL32: [0001:0003A57E], $L53292 +(0018E4) S_REGISTER: esi, Type: 0x1367, this +(0018F4) S_BPREL32: [00000008], Type: 0x109C, p_action +(00190C) S_BPREL32: [FFFFFFEC], Type: T_UINT4(0075), objectId +(001924) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock +(001938) S_BPREL32: [FFFFFFF0], Type: 0x109C, action +(00194C) S_BPREL32: [FFFFFFE0], Type: 0x2D08, cursor + +(001960) S_END + +(001964) S_GPROC32: [0001:0003A6C0], Cb: 00000018, Type: 0x3CAF, MxStreamController::FindNextActionDataStartFromStreamingAction + Parent: 00000000, End: 000019F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(0019CC) S_REGISTER: ecx, Type: 0x1367, this +(0019DC) S_BPREL32: [00000004], Type: 0x1607, p_action + +(0019F4) S_END + +(0019F8) S_GPROC32: [0001:0003A6E0], Cb: 0000010F, Type: 0x1397, MxStreamController::FUN_100c20d0 + Parent: 00000000, End: 00001ADC, Next: 00000000 + Debug start: 00000020, Debug end: 000000DA + Flags: Frame Ptr Present + +(001A40) S_LABEL32: [0001:0003A7E7], $L53405 +(001A54) S_LABEL32: [0001:0003A7DD], $L53404 +(001A68) S_LABEL32: [0001:0003A7D5], $L53408 +(001A7C) S_LABEL32: [0001:0003A7CD], $L53410 +(001A90) S_REGISTER: esi, Type: 0x1367, this +(001AA0) S_BPREL32: [00000008], Type: 0x1083, p_obj +(001AB4) S_BPREL32: [FFFFFFE0], Type: 0x109C, action +(001AC8) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(001ADC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstreamchunk.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00039180], Cb: 00000066, Type: 0x1ED0, MxStreamChunk::~MxStreamChunk + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000391DE], $L50325 +(0000E4) S_LABEL32: [0001:000391D4], $L50324 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x159E, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:000391F0], Cb: 00000047, Type: 0x34C4, MxStreamChunk::ReadChunk + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 0000000B, Debug end: 00000043 + +(000150) S_REGISTER: edi, Type: 0x159E, this +(000160) S_BPREL32: [00000004], Type: 0x1619, p_buffer +(000178) S_BPREL32: [00000008], Type: T_32PUCHAR(0420), p_chunkData +(000190) S_REGISTER: esi, Type: T_LONG(0012), result + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:00039240], Cb: 0000003D, Type: 0x34C5, MxStreamChunk::ReadChunkHeader + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 00000003, Debug end: 00000039 + +(0001F0) S_REGISTER: ecx, Type: 0x159E, this +(000200) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_chunkData +(000218) S_REGISTER: eax, Type: T_UINT4(0075), headersize +(000230) S_REGISTER: esi, Type: T_32PUCHAR(0420), chunkData + +(000244) S_END + +(000248) S_GPROC32: [0001:00039280], Cb: 00000083, Type: 0x3CB2, MxStreamChunk::SendChunk + Parent: 00000000, End: 000002F8, Next: 00000000 + Debug start: 0000000E, Debug end: 0000007C + +(000288) S_REGISTER: esi, Type: 0x159E, this +(000298) S_BPREL32: [00000004], Type: 0x3CB0, p_subscriberList +(0002B8) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_append +(0002D0) S_BPREL32: [0000000C], Type: T_SHORT(0011), p_obj24val +(0002E8) S_BPREL32: [FFFFFFFC], Type: 0x2A5D, it + +(0002F8) S_END + +(0002FC) S_GPROC32: [0001:00039310], Cb: 0000000A, Type: 0x34C6, MxStreamChunk::SetBuffer + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00033C) S_REGISTER: ecx, Type: 0x159E, this +(00034C) S_BPREL32: [00000004], Type: 0x1619, p_buffer + +(000364) S_END + +(000368) S_GPROC32: [0001:00039320], Cb: 00000008, Type: 0x3CC1, MxStreamChunk::IntoFlags + Parent: 00000000, End: 000003C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0003A8) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_buffer + +(0003C0) S_END + +(0003C4) S_GPROC32: [0001:00039330], Cb: 00000008, Type: 0x3CD1, MxStreamChunk::IntoObjectId + Parent: 00000000, End: 00000420, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000408) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_buffer + +(000420) S_END + +(000424) S_GPROC32: [0001:00039340], Cb: 00000008, Type: 0x44A0, MxStreamChunk::IntoTime + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000464) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_buffer + +(00047C) S_END + +(000480) S_GPROC32: [0001:00039350], Cb: 00000008, Type: 0x3CD1, MxStreamChunk::IntoLength + Parent: 00000000, End: 000004DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0004C4) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_buffer + +(0004DC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxstillpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00038B20], Cb: 00000008, Type: 0x139F, MxStillPresenter::Destroy + Parent: 00000000, End: 000000DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0000CC) S_REGISTER: ecx, Type: 0x139E, this + +(0000DC) S_END + +(0000E0) S_GPROC32: [0001:00038B30], Cb: 00000041, Type: 0x13A0, MxStillPresenter::Destroy + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000002, Debug end: 0000003C + +(000124) S_REGISTER: edi, Type: 0x139E, this +(000134) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000154) S_END + +(000158) S_GPROC32: [0001:00038B80], Cb: 00000044, Type: 0x13A1, MxStillPresenter::LoadHeader + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000006, Debug end: 0000003E + +(00019C) S_REGISTER: esi, Type: 0x139E, this +(0001AC) S_BPREL32: [00000004], Type: 0x11CE, p_chunk +(0001C0) S_REGISTER: edi, Type: T_32PUCHAR(0420), data + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:00038BD0], Cb: 000000A0, Type: 0x139F, MxStillPresenter::CreateBitmap + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 0000001D, Debug end: 0000007D + Flags: Frame Ptr Present + +(00021C) S_LABEL32: [0001:00038C63], $L48145 +(000230) S_LABEL32: [0001:00038C59], $L48142 +(000244) S_REGISTER: edi, Type: 0x139E, this + +(000254) S_END + +(000258) S_GPROC32: [0001:00038C70], Cb: 0000001F, Type: 0x139F, MxStillPresenter::NextFrame + Parent: 00000000, End: 000002BC, Next: 00000000 + Debug start: 00000002, Debug end: 0000001C + +(00029C) S_REGISTER: esi, Type: 0x139E, this +(0002AC) S_REGISTER: edi, Type: 0x11CE, chunk + +(0002BC) S_END + +(0002C0) S_GPROC32: [0001:00038C90], Cb: 00000151, Type: 0x13A1, MxStillPresenter::LoadFrame + Parent: 00000000, End: 000003A0, Next: 00000000 + Debug start: 00000021, Debug end: 00000122 + Flags: Frame Ptr Present + +(000304) S_LABEL32: [0001:00038DD4], $L48167 +(000318) S_LABEL32: [0001:00038DCA], $L48164 +(00032C) S_REGISTER: ebx, Type: 0x139E, this +(00033C) S_BPREL32: [00000008], Type: 0x11CE, p_chunk +(000350) S_REGISTER: esi, Type: T_INT4(0074), height +(000364) S_REGISTER: edx, Type: T_INT4(0074), y +(000370) S_REGISTER: ecx, Type: T_INT4(0074), x +(00037C) S_BPREL32: [FFFFFFDC], Type: 0x3F36, rect +(000390) S_BPREL32: [FFFFFFF0], Type: T_UINT4(0075), und + +(0003A0) S_END + +(0003A4) S_GPROC32: [0001:00038DF0], Cb: 00000026, Type: 0x139F, MxStillPresenter::RealizePalette + Parent: 00000000, End: 00000410, Next: 00000000 + Debug start: 00000004, Debug end: 00000024 + +(0003EC) S_REGISTER: ecx, Type: 0x139E, this +(0003FC) S_REGISTER: esi, Type: 0x1225, palette + +(000410) S_END + +(000414) S_GPROC32: [0001:00038E20], Cb: 00000023, Type: 0x139F, MxStillPresenter::StartingTickle + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000001, Debug end: 00000021 + +(00045C) S_REGISTER: esi, Type: 0x139E, this + +(00046C) S_END + +(000470) S_GPROC32: [0001:00038E50], Cb: 0000005A, Type: 0x139F, MxStillPresenter::StreamingTickle + Parent: 00000000, End: 000004DC, Next: 00000000 + Debug start: 00000002, Debug end: 00000057 + +(0004BC) S_REGISTER: esi, Type: 0x139E, this +(0004CC) S_REGISTER: edi, Type: 0x11CE, chunk + +(0004DC) S_END + +(0004E0) S_GPROC32: [0001:00038EB0], Cb: 00000044, Type: 0x139F, MxStillPresenter::RepeatingTickle + Parent: 00000000, End: 0000053C, Next: 00000000 + Debug start: 00000004, Debug end: 0000003F + +(00052C) S_REGISTER: edi, Type: 0x139E, this + +(00053C) S_END + +(000540) S_GPROC32: [0001:00038F00], Cb: 000000F2, Type: 0x2D72, MxStillPresenter::VTable0x88 + Parent: 00000000, End: 00000618, Next: 00000000 + Debug start: 0000000C, Debug end: 000000E8 + +(000584) S_REGISTER: ebx, Type: 0x139E, this +(000594) S_BPREL32: [00000004], Type: T_INT4(0074), p_x +(0005A4) S_BPREL32: [00000008], Type: T_INT4(0074), p_y +(0005B4) S_REGISTER: ebp, Type: T_INT4(0074), y +(0005C0) S_REGISTER: esi, Type: T_INT4(0074), x +(0005CC) S_REGISTER: edi, Type: T_INT4(0074), height +(0005E0) S_BPREL32: [FFFFFFF0], Type: 0x3F36, rectB +(0005F4) S_BPREL32: [FFFFFFE0], Type: 0x3F36, rectA +(000608) S_REGISTER: eax, Type: T_INT4(0074), width + +(000618) S_END + +(00061C) S_GPROC32: [0001:00039000], Cb: 00000099, Type: 0x13A0, MxStillPresenter::Enable + Parent: 00000000, End: 000006C4, Next: 00000000 + Debug start: 0000000A, Debug end: 00000090 + +(00065C) S_REGISTER: edi, Type: 0x139E, this +(00066C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable +(000684) S_REGISTER: esi, Type: T_INT4(0074), height +(000698) S_REGISTER: edx, Type: T_INT4(0074), y +(0006A4) S_REGISTER: ecx, Type: T_INT4(0074), x +(0006B0) S_BPREL32: [FFFFFFF0], Type: 0x3F36, rect + +(0006C4) S_END + +(0006C8) S_GPROC32: [0001:000390A0], Cb: 000000CC, Type: 0x139F, MxStillPresenter::ParseExtra + Parent: 00000000, End: 00000750, Next: 00000000 + Debug start: 0000000B, Debug end: 000000C2 + +(00070C) S_REGISTER: ebx, Type: 0x139E, this +(00071C) S_BPREL32: [FFFFFE00], Type: 0x11E1, output +(000730) S_REGISTER: edx, Type: T_UINT4(0075), len +(000740) S_BPREL32: [FFFFFC00], Type: 0x11E1, buf + +(000750) S_END + +(000754) S_GPROC32: [0001:00039170], Cb: 00000003, Type: 0x13A4, MxStillPresenter::Clone + Parent: 00000000, End: 000007A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000794) S_REGISTER: ecx, Type: 0x139E, this + +(0007A4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxsoundpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00038A30], Cb: 0000005D, Type: 0x13A7, MxSoundPresenter::~MxSoundPresenter + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00038A85], $L44597 +(0000E8) S_LABEL32: [0001:00038A7B], $L44596 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x13A6, this + +(000110) S_END + +(000114) S_GPROC32: [0001:00038A90], Cb: 00000008, Type: 0x13A7, MxSoundPresenter::Destroy + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000158) S_REGISTER: ecx, Type: 0x13A6, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00038AA0], Cb: 00000047, Type: 0x13A8, MxSoundPresenter::Destroy + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000002, Debug end: 00000042 + +(0001B0) S_REGISTER: edi, Type: 0x13A6, this +(0001C0) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:00038AF0], Cb: 00000026, Type: 0x13A9, MxSoundPresenter::AddToManager + Parent: 00000000, End: 0000024C, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(00022C) S_REGISTER: esi, Type: 0x13A6, this +(00023C) S_REGISTER: edi, Type: T_LONG(0012), ret + +(00024C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxsoundmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00038260], Cb: 00000064, Type: 0x13AD, MxSoundManager::MxSoundManager + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000382BC], $L45966 +(0000E4) S_LABEL32: [0001:000382B2], $L45965 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x13AC, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:000382D0], Cb: 0000001E, Type: T_NOTYPE(0000), MxSoundManager::`scalar deleting destructor' + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000164) S_REGISTER: esi, Type: 0x13AC, this +(000174) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000188) S_END + +(00018C) S_GPROC32: [0001:000382F0], Cb: 0000005D, Type: 0x13AD, MxSoundManager::~MxSoundManager + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0001D4) S_LABEL32: [0001:00038345], $L45988 +(0001E8) S_LABEL32: [0001:0003833B], $L45987 +(0001FC) S_BPREL32: [FFFFFFF0], Type: 0x13AC, this + +(000210) S_END + +(000214) S_GPROC32: [0001:00038350], Cb: 00000009, Type: 0x13AD, MxSoundManager::Init + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000250) S_REGISTER: ecx, Type: 0x13AC, this + +(000260) S_END + +(000264) S_GPROC32: [0001:00038360], Cb: 00000065, Type: 0x13AE, MxSoundManager::Destroy + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000002, Debug end: 00000060 + +(0002A4) S_REGISTER: esi, Type: 0x13AC, this +(0002B4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:000383D0], Cb: 000001F9, Type: 0x13B0, MxSoundManager::Create + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000020, Debug end: 000001E9 + Flags: Frame Ptr Present + +(000318) S_LABEL32: [0001:0003857B], $L46005 +(00032C) S_LABEL32: [0001:00038571], $L46004 +(000340) S_LABEL32: [0001:0003859B], done +(000350) S_REGISTER: esi, Type: 0x13AC, this +(000360) S_BPREL32: [00000008], Type: T_UINT4(0075), p_frequencyMS +(00037C) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_createThread +(000398) S_REGISTER: edi, Type: T_LONG(0012), status +(0003AC) S_BPREL32: [FFFFFFE0], Type: 0x11D0, format +(0003C0) S_BPREL32: [FFFFFFC8], Type: 0x11D4, desc +(0003D4) S_BPREL32: [FFFFFFF3], Type: T_UCHAR(0020), locked + +(0003E8) S_END + +(0003EC) S_GPROC32: [0001:000385D0], Cb: 00000008, Type: 0x13AD, MxSoundManager::Destroy + Parent: 00000000, End: 0000043C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00042C) S_REGISTER: ecx, Type: 0x13AC, this + +(00043C) S_END + +(000440) S_GPROC32: [0001:000385E0], Cb: 00000102, Type: 0x13B1, MxSoundManager::SetVolume + Parent: 00000000, End: 0000053C, Next: 00000000 + Debug start: 00000021, Debug end: 000000C6 + Flags: Frame Ptr Present + +(000484) S_LABEL32: [0001:000386DA], $L46018 +(000498) S_LABEL32: [0001:000386D0], $L46017 +(0004AC) S_LABEL32: [0001:000386C8], $L46020 +(0004C0) S_LABEL32: [0001:000386C0], $L46022 +(0004D4) S_LABEL32: [0001:000386B8], $L46024 +(0004E8) S_REGISTER: edi, Type: 0x13AC, this +(0004F8) S_BPREL32: [00000008], Type: T_INT4(0074), p_volume +(000510) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(000528) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor + +(00053C) S_END + +(000540) S_GPROC32: [0001:000386F0], Cb: 0000011B, Type: 0x13B5, MxSoundManager::FUN_100aebd0 + Parent: 00000000, End: 0000067C, Next: 00000000 + Debug start: 0000001D, Debug end: 000000BE + Flags: Frame Ptr Present + +(000584) S_LABEL32: [0001:00038803], $L46106 +(000598) S_LABEL32: [0001:000387F9], $L46105 +(0005AC) S_LABEL32: [0001:000387F1], $L46107 +(0005C0) S_LABEL32: [0001:000387E9], $L46115 +(0005D4) S_LABEL32: [0001:000387E1], $L46117 +(0005E8) S_LABEL32: [0001:000387D9], $L46119 +(0005FC) S_REGISTER: esi, Type: 0x13AC, this +(00060C) S_BPREL32: [00000008], Type: 0x13B3, p_atomId +(000624) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_objectId +(00063C) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(000654) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(000668) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(00067C) S_END + +(000680) S_GPROC32: [0001:00038810], Cb: 0000001A, Type: 0x13B6, MxSoundManager::FUN_100aecf0 + Parent: 00000000, End: 000006EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(0006C4) S_REGISTER: ecx, Type: 0x13AC, this +(0006D4) S_BPREL32: [00000004], Type: T_UINT4(0075), p_undefined + +(0006EC) S_END + +(0006F0) S_GPROC32: [0001:00038830], Cb: 000000FF, Type: 0x13AD, MxSoundManager::Pause + Parent: 00000000, End: 000007F8, Next: 00000000 + Debug start: 0000001D, Debug end: 000000BE + Flags: Frame Ptr Present + +(000730) S_LABEL32: [0001:00038927], $L46150 +(000744) S_LABEL32: [0001:0003891D], $L46149 +(000758) S_LABEL32: [0001:00038915], $L46151 +(00076C) S_LABEL32: [0001:0003890D], $L46153 +(000780) S_LABEL32: [0001:00038905], $L46155 +(000794) S_LABEL32: [0001:000388FD], $L46157 +(0007A8) S_REGISTER: esi, Type: 0x13AC, this +(0007B8) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(0007D0) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(0007E4) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(0007F8) S_END + +(0007FC) S_GPROC32: [0001:00038930], Cb: 000000FF, Type: 0x13AD, MxSoundManager::Resume + Parent: 00000000, End: 00000904, Next: 00000000 + Debug start: 0000001D, Debug end: 000000BE + Flags: Frame Ptr Present + +(00083C) S_LABEL32: [0001:00038A27], $L46186 +(000850) S_LABEL32: [0001:00038A1D], $L46185 +(000864) S_LABEL32: [0001:00038A15], $L46187 +(000878) S_LABEL32: [0001:00038A0D], $L46189 +(00088C) S_LABEL32: [0001:00038A05], $L46191 +(0008A0) S_LABEL32: [0001:000389FD], $L46193 +(0008B4) S_REGISTER: esi, Type: 0x13AC, this +(0008C4) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(0008DC) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(0008F0) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(000904) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxsmkpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000376B0], Cb: 000000D2, Type: 0x13B9, MxSmkPresenter::MxSmkPresenter + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 0000001D, Debug end: 0000008D + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0003777A], $L47033 +(0000E4) S_LABEL32: [0001:00037770], $L47032 +(0000F8) S_LABEL32: [0001:00037768], $L47035 +(00010C) S_LABEL32: [0001:00037760], $L47037 +(000120) S_LABEL32: [0001:00037758], $L47039 +(000134) S_LABEL32: [0001:0003774D], $L47040 +(000148) S_BPREL32: [FFFFFFF0], Type: 0x13B8, this + +(00015C) S_END + +(000160) S_GPROC32: [0001:00037790], Cb: 00000006, Type: 0x13BC, MxSmkPresenter::ClassName + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001A4) S_REGISTER: ecx, Type: 0x13BB, this + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:000377A0], Cb: 0000001E, Type: T_NOTYPE(0000), MxSmkPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00020C) S_REGISTER: esi, Type: 0x13B8, this +(00021C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000230) S_END + +(000234) S_GPROC32: [0001:000377C0], Cb: 0000005D, Type: 0x13B9, MxSmkPresenter::~MxSmkPresenter + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(00027C) S_LABEL32: [0001:00037815], $L47234 +(000290) S_LABEL32: [0001:0003780B], $L47233 +(0002A4) S_BPREL32: [FFFFFFF0], Type: 0x13B8, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:00037820], Cb: 00000028, Type: 0x13B9, MxSmkPresenter::Init + Parent: 00000000, End: 00000308, Next: 00000000 + Debug start: 00000003, Debug end: 00000027 + +(0002F8) S_REGISTER: edx, Type: 0x13B8, this + +(000308) S_END + +(00030C) S_GPROC32: [0001:00037850], Cb: 0000003D, Type: 0x13BD, MxSmkPresenter::Destroy + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000002, Debug end: 00000038 + +(00034C) S_REGISTER: edi, Type: 0x13B8, this +(00035C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(00037C) S_END + +(000380) S_GPROC32: [0001:00037890], Cb: 00000017, Type: 0x13BE, MxSmkPresenter::LoadHeader + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(0003C4) S_REGISTER: ecx, Type: 0x13B8, this +(0003D4) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(0003E8) S_END + +(0003EC) S_GPROC32: [0001:000378B0], Cb: 00000095, Type: 0x13B9, MxSmkPresenter::CreateBitmap + Parent: 00000000, End: 00000468, Next: 00000000 + Debug start: 0000001D, Debug end: 0000006F + Flags: Frame Ptr Present + +(000430) S_LABEL32: [0001:00037938], $L47254 +(000444) S_LABEL32: [0001:0003792E], $L47251 +(000458) S_REGISTER: edi, Type: 0x13B8, this + +(000468) S_END + +(00046C) S_GPROC32: [0001:00037950], Cb: 000001F1, Type: 0x13BE, MxSmkPresenter::LoadFrame + Parent: 00000000, End: 00000640, Next: 00000000 + Debug start: 00000021, Debug end: 00000195 + Flags: Frame Ptr Present + +(0004B0) S_LABEL32: [0001:00037B39], $L47264 +(0004C4) S_LABEL32: [0001:00037B2F], $L47263 +(0004D8) S_LABEL32: [0001:00037B27], $L47279 +(0004EC) S_LABEL32: [0001:00037B1F], $L47281 +(000500) S_LABEL32: [0001:00037B17], $L47286 +(000514) S_LABEL32: [0001:00037B0F], $L47265 +(000528) S_LABEL32: [0001:00037B07], $L47302 +(00053C) S_LABEL32: [0001:00037AFF], $L47304 +(000550) S_LABEL32: [0001:00037AF7], $L47306 +(000564) S_REGISTER: esi, Type: 0x13B8, this +(000574) S_BPREL32: [00000008], Type: 0x11CE, p_chunk +(000588) S_REGISTER: bl, Type: T_UCHAR(0020), paletteChanged +(0005A4) S_BPREL32: [FFFFFFF0], Type: 0x17C2, bitmapInfo +(0005BC) S_BPREL32: [FFFFFFB8], Type: 0x365F, List +(0005D0) S_BPREL32: [FFFFFFE0], Type: 0x3667, cursor +(0005E4) S_BPREL32: [FFFFFFB4], Type: T_32PUCHAR(0420), bitmapData +(0005FC) S_REGISTER: edi, Type: T_32PUCHAR(0420), chunkData +(000610) S_BPREL32: [FFFFFFD0], Type: 0x3F36, invalidateRect +(00062C) S_BPREL32: [FFFFFFF0], Type: 0x3584, rect + +(000640) S_END + +(000644) S_GPROC32: [0001:00037B50], Cb: 00000065, Type: 0x3594, MxCollection::MxCollection + Parent: 00000000, End: 000006DC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000047 + Flags: Frame Ptr Present + +(0006A0) S_LABEL32: [0001:00037BAD], $L47353 +(0006B4) S_LABEL32: [0001:00037BA3], $L47352 +(0006C8) S_BPREL32: [FFFFFFF0], Type: 0x3593, this + +(0006DC) S_END + +(0006E0) S_GPROC32: [0001:00037BC0], Cb: 00000001, Type: 0x3595, MxCollection::Destroy + Parent: 00000000, End: 00000744, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00072C) S_BPREL32: [00000004], Type: 0x3584, __formal + +(000744) S_END + +(000748) S_GPROC32: [0001:00037BD0], Cb: 0000004F, Type: 0x3594, MxCollection::~MxCollection + Parent: 00000000, End: 000007E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0007A4) S_LABEL32: [0001:00037C17], $L47364 +(0007B8) S_LABEL32: [0001:00037C0D], $L47363 +(0007CC) S_BPREL32: [FFFFFFF0], Type: 0x3593, this + +(0007E0) S_END + +(0007E4) S_GPROC32: [0001:00037C20], Cb: 00000005, Type: 0x3597, MxCollection::Compare + Parent: 00000000, End: 00000870, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000830) S_REGISTER: ecx, Type: 0x3593, this +(000840) S_BPREL32: [00000004], Type: 0x3584, __formal +(000858) S_BPREL32: [00000008], Type: 0x3584, __formal + +(000870) S_END + +(000874) S_GPROC32: [0001:00037C30], Cb: 0000000E, Type: 0x3637, MxPtrList::Destroy + Parent: 00000000, End: 000008CC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0008B8) S_BPREL32: [00000004], Type: 0x3584, p_obj + +(0008CC) S_END + +(0008D0) S_GPROC32: [0001:00037C40], Cb: 00000061, Type: T_NOTYPE(0000), MxRectList::`scalar deleting destructor' + Parent: 00000000, End: 00000970, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000920) S_LABEL32: [0001:00037C99], $L47377 +(000934) S_LABEL32: [0001:00037C8F], $L47375 +(000948) S_BPREL32: [FFFFFFF0], Type: 0x365B, this +(00095C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000970) S_END + +(000974) S_GPROC32: [0001:00037CB0], Cb: 00000049, Type: 0x3599, MxPtrList::~MxPtrList + Parent: 00000000, End: 00000A04, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0009C8) S_LABEL32: [0001:00037CF1], $L47386 +(0009DC) S_LABEL32: [0001:00037CE7], $L47385 +(0009F0) S_BPREL32: [FFFFFFF0], Type: 0x3598, this + +(000A04) S_END + +(000A08) S_GPROC32: [0001:00037D00], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000AB8, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000A68) S_LABEL32: [0001:00037D5F], $L47394 +(000A7C) S_LABEL32: [0001:00037D55], $L47392 +(000A90) S_BPREL32: [FFFFFFF0], Type: 0x3593, this +(000AA4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000AB8) S_END + +(000ABC) S_GPROC32: [0001:00037D70], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000B64, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(000B14) S_LABEL32: [0001:00037E0B], $L47403 +(000B28) S_LABEL32: [0001:00037E01], $L47401 +(000B3C) S_BPREL32: [FFFFFFF0], Type: 0x359B, this +(000B50) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000B64) S_END + +(000B68) S_GPROC32: [0001:00037E20], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 00000C14, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000BC4) S_LABEL32: [0001:00037E79], $L47437 +(000BD8) S_LABEL32: [0001:00037E6F], $L47435 +(000BEC) S_BPREL32: [FFFFFFF0], Type: 0x3598, this +(000C00) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000C14) S_END + +(000C18) S_GPROC32: [0001:00037E90], Cb: 00000049, Type: 0x365D, MxRectList::~MxRectList + Parent: 00000000, End: 00000C94, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000C58) S_LABEL32: [0001:00037ED1], $L47446 +(000C6C) S_LABEL32: [0001:00037EC7], $L47445 +(000C80) S_BPREL32: [FFFFFFF0], Type: 0x365B, this + +(000C94) S_END + +(000C98) S_GPROC32: [0001:00037EE0], Cb: 00000061, Type: T_NOTYPE(0000), MxRectListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000D40, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000CF0) S_LABEL32: [0001:00037F39], $L47454 +(000D04) S_LABEL32: [0001:00037F2F], $L47452 +(000D18) S_BPREL32: [FFFFFFF0], Type: 0x3661, this +(000D2C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000D40) S_END + +(000D44) S_GPROC32: [0001:00037F50], Cb: 00000049, Type: 0x359D, MxPtrListCursor::~MxPtrListCursor + Parent: 00000000, End: 00000DE0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000DA4) S_LABEL32: [0001:00037F91], $L47463 +(000DB8) S_LABEL32: [0001:00037F87], $L47462 +(000DCC) S_BPREL32: [FFFFFFF0], Type: 0x359C, this + +(000DE0) S_END + +(000DE4) S_GPROC32: [0001:00037FA0], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000E94, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000E44) S_LABEL32: [0001:00037FF9], $L47471 +(000E58) S_LABEL32: [0001:00037FEF], $L47469 +(000E6C) S_BPREL32: [FFFFFFF0], Type: 0x359F, this +(000E80) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000E94) S_END + +(000E98) S_GPROC32: [0001:00038010], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000F48, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000EF8) S_LABEL32: [0001:00038069], $L47480 +(000F0C) S_LABEL32: [0001:0003805F], $L47478 +(000F20) S_BPREL32: [FFFFFFF0], Type: 0x359C, this +(000F34) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000F48) S_END + +(000F4C) S_GPROC32: [0001:00038080], Cb: 00000049, Type: 0x35A0, MxListCursor::~MxListCursor + Parent: 00000000, End: 00000FE4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000FA8) S_LABEL32: [0001:000380C1], $L47489 +(000FBC) S_LABEL32: [0001:000380B7], $L47488 +(000FD0) S_BPREL32: [FFFFFFF0], Type: 0x359F, this + +(000FE4) S_END + +(000FE8) S_GPROC32: [0001:000380D0], Cb: 00000049, Type: 0x3665, MxRectListCursor::~MxRectListCursor + Parent: 00000000, End: 00001070, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001034) S_LABEL32: [0001:00038111], $L47497 +(001048) S_LABEL32: [0001:00038107], $L47496 +(00105C) S_BPREL32: [FFFFFFF0], Type: 0x3661, this + +(001070) S_END + +(001074) S_GPROC32: [0001:00038120], Cb: 00000053, Type: 0x13B9, MxSmkPresenter::VTable0x88 + Parent: 00000000, End: 000010D8, Next: 00000000 + Debug start: 00000006, Debug end: 00000050 + +(0010B8) S_REGISTER: ecx, Type: 0x13B8, this +(0010C8) S_REGISTER: edx, Type: T_UINT4(0075), und + +(0010D8) S_END + +(0010DC) S_GPROC32: [0001:00038180], Cb: 00000026, Type: 0x13B9, MxSmkPresenter::RealizePalette + Parent: 00000000, End: 00001148, Next: 00000000 + Debug start: 00000004, Debug end: 00000024 + +(001124) S_REGISTER: ecx, Type: 0x13B8, this +(001134) S_REGISTER: esi, Type: 0x1225, palette + +(001148) S_END + +(00114C) S_GPROC32: [0001:000381B0], Cb: 00000005, Type: 0x36C8, MxSmkPresenter::AddToManager + Parent: 00000000, End: 000011A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001190) S_REGISTER: ecx, Type: 0x13B8, this + +(0011A0) S_END + +(0011A4) S_GPROC32: [0001:000381C0], Cb: 00000008, Type: 0x13B9, MxSmkPresenter::Destroy + Parent: 00000000, End: 000011F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0011E4) S_REGISTER: ecx, Type: 0x13B8, this + +(0011F4) S_END + +(0011F8) S_GPROC32: [0001:000381D0], Cb: 0000008B, Type: 0x35A1, MxList::~MxList + Parent: 00000000, End: 00001284, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(001248) S_LABEL32: [0001:00038253], $L47517 +(00125C) S_LABEL32: [0001:00038249], $L47516 +(001270) S_BPREL32: [FFFFFFF0], Type: 0x359B, this + +(001284) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxsmack.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00037040], Cb: 00000296, Type: 0x3554, MxSmack::LoadHeader + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000007, Debug end: 0000028E + +(0000BC) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_data +(0000D0) S_BPREL32: [00000008], Type: 0x354A, p_mxSmack +(0000E8) S_BPREL32: [FFFFFFF4], Type: T_32PUCHAR(0420), huffmanTrees +(000104) S_BPREL32: [FFFFFFF8], Type: T_32PUCHAR(0420), frameTypes +(00011C) S_REGISTER: ebp, Type: T_LONG(0012), result +(000130) S_BPREL32: [FFFFFFFC], Type: T_32PUINT4(0475), frameSizes +(000148) S_REGISTER: eax, Type: T_UINT4(0075), treeSize +(00015C) S_REGISTER: ecx, Type: T_32PUINT4(0475), data +(00016C) S_REGISTER: edx, Type: T_INT4(0074), width +(00017C) S_REGISTER: esi, Type: T_UINT4(0075), size + +(00018C) S_END + +(000190) S_GPROC32: [0001:000372E0], Cb: 00000066, Type: 0x3555, MxSmack::Destroy + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000001, Debug end: 00000064 + +(0001C8) S_BPREL32: [00000004], Type: 0x354A, p_mxSmack + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:00037350], Cb: 0000029A, Type: 0x369A, MxSmack::LoadFrame + Parent: 00000000, End: 000003AC, Next: 00000000 + Debug start: 00000029, Debug end: 00000268 + Flags: Frame Ptr Present + +(000220) S_LABEL32: [0001:000375DD], $L31873 +(000234) S_LABEL32: [0001:000375D3], $L31872 +(000248) S_LABEL32: [0001:000375C6], $L31886 +(00025C) S_BPREL32: [00000008], Type: 0x17C2, p_bitmapInfo +(000278) S_BPREL32: [0000000C], Type: T_32PUCHAR(0420), p_bitmapData +(000294) S_BPREL32: [00000010], Type: 0x354A, p_mxSmack +(0002AC) S_BPREL32: [00000014], Type: T_32PUCHAR(0420), p_chunkData +(0002C4) S_BPREL32: [00000018], Type: T_UCHAR(0020), p_paletteChanged +(0002E4) S_BPREL32: [0000001C], Type: 0x3662, p_list +(0002F8) S_BPREL32: [FFFFFFF2], Type: T_USHORT(0021), und +(000308) S_BPREL32: [FFFFFFC4], Type: 0x369F, smackRect +(000320) S_BPREL32: [FFFFFFD4], Type: 0x3F36, rect +(000334) S_REGISTER: ebx, Type: T_32PUCHAR(0420), intoPalette +(00034C) S_BPREL32: [FFFFFFEE], Type: T_USHORT(0021), paletteIndex +(000368) S_BPREL32: [FFFFFCC0], Type: 0x2704, palette +(00037C) S_BPREL32: [FFFFFFE4], Type: T_32PUCHAR(0420), currentPalette +(000398) S_REGISTER: edx, Type: T_32PUCHAR(0420), intoChunk + +(0003AC) S_END + +(0003B0) S_GPROC32: [0001:000375F0], Cb: 000000C0, Type: 0x36A5, MxSmack::GetRect + Parent: 00000000, End: 00000484, Next: 00000000 + Debug start: 00000011, Debug end: 000000B9 + +(0003E8) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_unk0x6b4 +(000400) S_BPREL32: [00000008], Type: T_32PUSHORT(0421), p_und +(000414) S_BPREL32: [0000000C], Type: T_32PULONG(0422), p_smackRect +(00042C) S_BPREL32: [00000010], Type: 0x3584, p_rect +(000440) S_REGISTER: ebp, Type: T_ULONG(0022), left +(000450) S_REGISTER: edi, Type: T_ULONG(0022), bottom +(000464) S_BPREL32: [FFFFFFFC], Type: T_ULONG(0022), top +(000474) S_REGISTER: ebx, Type: T_ULONG(0022), right + +(000484) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxsemaphore.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00036FC0], Cb: 00000010, Type: 0x13C6, MxSemaphore::MxSemaphore + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(0000C4) S_REGISTER: ecx, Type: 0x13C5, this + +(0000D4) S_END + +(0000D8) S_GPROC32: [0001:00036FD0], Cb: 0000002D, Type: 0x13C7, MxSemaphore::Init + Parent: 00000000, End: 0000016C, Next: 00000000 + Debug start: 00000008, Debug end: 00000028 + +(000114) S_REGISTER: esi, Type: 0x13C5, this +(000124) S_BPREL32: [00000004], Type: T_UINT4(0075), p_initialCount +(000140) S_BPREL32: [00000008], Type: T_UINT4(0075), p_maxCount +(000158) S_REGISTER: edi, Type: T_LONG(0012), result + +(00016C) S_END + +(000170) S_GPROC32: [0001:00037000], Cb: 00000012, Type: 0x13C8, MxSemaphore::Wait + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(0001AC) S_REGISTER: ecx, Type: 0x13C5, this +(0001BC) S_BPREL32: [00000004], Type: T_UINT4(0075), p_timeoutMS + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00037020], Cb: 00000014, Type: 0x13C8, MxSemaphore::Release + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000214) S_REGISTER: ecx, Type: 0x13C5, this +(000224) S_BPREL32: [00000004], Type: T_UINT4(0075), p_releaseCount + +(000240) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxscheduler.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00036FA0], Cb: 00000003, Type: 0x13CB, MxScheduler::GetInstance + Parent: 00000000, End: 000000C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000C4) S_END + +(0000C8) S_GPROC32: [0001:00036FB0], Cb: 00000003, Type: 0x13CE, MxScheduler::StartMultiTasking + Parent: 00000000, End: 00000138, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000110) S_REGISTER: ecx, Type: 0x13CC, this +(000120) S_BPREL32: [00000004], Type: T_ULONG(0022), __formal + +(000138) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxregioncursor.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00036460], Cb: 000000F6, Type: 0x3E75, MxRegionCursor::MxRegionCursor + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000021, Debug end: 000000C8 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0003654E], $L2382 +(0000E4) S_LABEL32: [0001:00036544], $L2381 +(0000F8) S_LABEL32: [0001:00036537], $L2383 +(00010C) S_LABEL32: [0001:00036506], $L2387 +(000120) S_LABEL32: [0001:000364FE], $L2389 +(000134) S_LABEL32: [0001:000364F6], $L2391 +(000148) S_BPREL32: [FFFFFFEC], Type: 0x3E73, this +(00015C) S_BPREL32: [00000008], Type: 0x1CF9, p_region + +(000174) S_END + +(000178) S_GPROC32: [0001:00036560], Cb: 00000004, Type: 0x3E9D, MxRegionCursor::GetRect + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0001B8) S_REGISTER: ecx, Type: 0x3E73, this + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00036570], Cb: 00000009, Type: 0x3E9E, MxRegionCursor::HasRect + Parent: 00000000, End: 0000021C, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(00020C) S_REGISTER: ecx, Type: 0x3E73, this + +(00021C) S_END + +(000220) S_GPROC32: [0001:00036580], Cb: 0000001E, Type: T_NOTYPE(0000), MxRegionCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000298, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000274) S_REGISTER: esi, Type: 0x3E73, this +(000284) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000298) S_END + +(00029C) S_GPROC32: [0001:000365A0], Cb: 00000086, Type: 0x3E76, MxRegionCursor::~MxRegionCursor + Parent: 00000000, End: 00000320, Next: 00000000 + Debug start: 00000021, Debug end: 00000067 + Flags: Frame Ptr Present + +(0002E4) S_LABEL32: [0001:0003661E], $L2477 +(0002F8) S_LABEL32: [0001:00036614], $L2476 +(00030C) S_BPREL32: [FFFFFFF0], Type: 0x3E73, this + +(000320) S_END + +(000324) S_GPROC32: [0001:00036630], Cb: 00000087, Type: 0x3E9D, MxRegionCursor::VTable0x18 + Parent: 00000000, End: 000003A8, Next: 00000000 + Debug start: 00000004, Debug end: 00000082 + +(000368) S_REGISTER: esi, Type: 0x3E73, this +(000378) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(000390) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(0003A8) S_END + +(0003AC) S_GPROC32: [0001:000366C0], Cb: 00000087, Type: 0x3E9D, MxRegionCursor::VTable0x20 + Parent: 00000000, End: 00000430, Next: 00000000 + Debug start: 00000004, Debug end: 00000082 + +(0003F0) S_REGISTER: esi, Type: 0x3E73, this +(000400) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(000418) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(000430) S_END + +(000434) S_GPROC32: [0001:00036750], Cb: 00000100, Type: 0x3E9D, MxRegionCursor::VTable0x28 + Parent: 00000000, End: 000004B8, Next: 00000000 + Debug start: 00000004, Debug end: 000000FB + +(000478) S_REGISTER: esi, Type: 0x3E73, this +(000488) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(0004A0) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(0004B8) S_END + +(0004BC) S_GPROC32: [0001:00036850], Cb: 00000100, Type: 0x3E9D, MxRegionCursor::VTable0x30 + Parent: 00000000, End: 00000540, Next: 00000000 + Debug start: 00000004, Debug end: 000000FB + +(000500) S_REGISTER: esi, Type: 0x3E73, this +(000510) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(000528) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(000540) S_END + +(000544) S_GPROC32: [0001:00036950], Cb: 00000020, Type: 0x3E83, MxRegionCursor::VTable0x14 + Parent: 00000000, End: 000005AC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001C + +(000588) S_REGISTER: esi, Type: 0x3E73, this +(000598) S_BPREL32: [00000004], Type: 0x1223, p_rect + +(0005AC) S_END + +(0005B0) S_GPROC32: [0001:00036970], Cb: 00000020, Type: 0x3E83, MxRegionCursor::VTable0x1c + Parent: 00000000, End: 00000618, Next: 00000000 + Debug start: 00000001, Debug end: 0000001C + +(0005F4) S_REGISTER: esi, Type: 0x3E73, this +(000604) S_BPREL32: [00000004], Type: 0x1223, p_rect + +(000618) S_END + +(00061C) S_GPROC32: [0001:00036990], Cb: 000000E2, Type: 0x3E83, MxRegionCursor::VTable0x24 + Parent: 00000000, End: 000006B4, Next: 00000000 + Debug start: 00000009, Debug end: 000000D9 + +(000660) S_REGISTER: esi, Type: 0x3E73, this +(000670) S_BPREL32: [00000004], Type: 0x1223, p_rect +(000684) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight +(00069C) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom + +(0006B4) S_END + +(0006B8) S_GPROC32: [0001:00036A80], Cb: 000000E2, Type: 0x3E83, MxRegionCursor::VTable0x2c + Parent: 00000000, End: 00000750, Next: 00000000 + Debug start: 00000009, Debug end: 000000D9 + +(0006FC) S_REGISTER: esi, Type: 0x3E73, this +(00070C) S_BPREL32: [00000004], Type: 0x1223, p_rect +(000720) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight +(000738) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom + +(000750) S_END + +(000754) S_GPROC32: [0001:00036B70], Cb: 0000003A, Type: 0x3E76, MxRegionCursor::Reset + Parent: 00000000, End: 000007A4, Next: 00000000 + Debug start: 00000001, Debug end: 00000038 + +(000794) S_REGISTER: esi, Type: 0x3E73, this + +(0007A4) S_END + +(0007A8) S_GPROC32: [0001:00036BB0], Cb: 000000C7, Type: 0x3E9A, MxRegionCursor::FUN_100c46c0 + Parent: 00000000, End: 0000087C, Next: 00000000 + Debug start: 0000001E, Debug end: 0000009E + Flags: Frame Ptr Present + +(0007EC) S_LABEL32: [0001:00036C6A], $L2725 +(000800) S_LABEL32: [0001:00036C60], $L2722 +(000814) S_LABEL32: [0001:00036C3A], $L2729 +(000828) S_LABEL32: [0001:00036C32], $L2731 +(00083C) S_LABEL32: [0001:00036C2A], $L2733 +(000850) S_REGISTER: edi, Type: 0x3E73, this +(000860) S_BPREL32: [00000008], Type: 0x3E98, p_leftRightList + +(00087C) S_END + +(000880) S_GPROC32: [0001:00036C80], Cb: 0000009D, Type: 0x3E97, MxRegionCursor::UpdateRect + Parent: 00000000, End: 00000950, Next: 00000000 + Debug start: 0000001D, Debug end: 00000080 + Flags: Frame Ptr Present + +(0008C4) S_LABEL32: [0001:00036D10], $L2797 +(0008D8) S_LABEL32: [0001:00036D06], $L2796 +(0008EC) S_REGISTER: esi, Type: 0x3E73, this +(0008FC) S_BPREL32: [00000008], Type: T_INT4(0074), p_left +(000910) S_BPREL32: [0000000C], Type: T_INT4(0074), p_top +(000924) S_BPREL32: [00000010], Type: T_INT4(0074), p_right +(000938) S_BPREL32: [00000014], Type: T_INT4(0074), p_bottom + +(000950) S_END + +(000954) S_GPROC32: [0001:00036D20], Cb: 00000133, Type: 0x3E84, MxRegionCursor::FUN_100c4a20 + Parent: 00000000, End: 000009EC, Next: 00000000 + Debug start: 0000000A, Debug end: 0000012A + +(000998) S_REGISTER: edi, Type: 0x3E73, this +(0009A8) S_BPREL32: [00000004], Type: 0x1223, p_rect +(0009BC) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(0009D4) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(0009EC) S_END + +(0009F0) S_GPROC32: [0001:00036E60], Cb: 00000134, Type: 0x3E84, MxRegionCursor::FUN_100c4b50 + Parent: 00000000, End: 00000A88, Next: 00000000 + Debug start: 0000000A, Debug end: 0000012B + +(000A34) S_REGISTER: edi, Type: 0x3E73, this +(000A44) S_BPREL32: [00000004], Type: 0x1223, p_rect +(000A58) S_BPREL32: [FFFFFFF8], Type: 0x13D1, topBottom +(000A70) S_BPREL32: [FFFFFFFC], Type: 0x13D6, leftRight + +(000A88) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxregion.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:000346C0], Cb: 0000011D, Type: 0x13DB, MxRegion::MxRegion + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 00000021, Debug end: 000000EE + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:000347D5], $L2385 +(0000D0) S_LABEL32: [0001:000347CB], $L2384 +(0000E4) S_LABEL32: [0001:000347BE], $L2386 +(0000F8) S_LABEL32: [0001:00034781], $L2397 +(00010C) S_LABEL32: [0001:00034779], $L2399 +(000120) S_LABEL32: [0001:00034771], $L2404 +(000134) S_LABEL32: [0001:00034769], $L2406 +(000148) S_BPREL32: [FFFFFFEC], Type: 0x13DA, this + +(00015C) S_END + +(000160) S_GPROC32: [0001:000347E0], Cb: 00000001, Type: 0x13DF, MxCollection::Destroy + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0001B4) S_BPREL32: [00000004], Type: 0x13D1, __formal + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:000347F0], Cb: 0000004F, Type: 0x13DE, MxCollection::~MxCollection + Parent: 00000000, End: 0000027C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000240) S_LABEL32: [0001:00034837], $L2451 +(000254) S_LABEL32: [0001:0003482D], $L2450 +(000268) S_BPREL32: [FFFFFFF0], Type: 0x13DD, this + +(00027C) S_END + +(000280) S_GPROC32: [0001:00034840], Cb: 00000005, Type: 0x13E1, MxCollection::Compare + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002D4) S_REGISTER: ecx, Type: 0x13DD, this +(0002E4) S_BPREL32: [00000004], Type: 0x13D1, __formal +(0002FC) S_BPREL32: [00000008], Type: 0x13D1, __formal + +(000314) S_END + +(000318) S_GPROC32: [0001:00034850], Cb: 00000021, Type: 0x35DA, MxPtrList::Destroy + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001F + +(000368) S_BPREL32: [00000004], Type: 0x13D1, p_obj + +(00037C) S_END + +(000380) S_GPROC32: [0001:00034880], Cb: 00000061, Type: T_NOTYPE(0000), MxRegionTopBottomList::`scalar deleting destructor' + Parent: 00000000, End: 0000042C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0003DC) S_LABEL32: [0001:000348D9], $L2479 +(0003F0) S_LABEL32: [0001:000348CF], $L2477 +(000404) S_BPREL32: [FFFFFFF0], Type: 0x3E63, this +(000418) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00042C) S_END + +(000430) S_GPROC32: [0001:000348F0], Cb: 00000049, Type: 0x13E5, MxPtrList::~MxPtrList + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000494) S_LABEL32: [0001:00034931], $L2488 +(0004A8) S_LABEL32: [0001:00034927], $L2487 +(0004BC) S_BPREL32: [FFFFFFF0], Type: 0x13E4, this + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:00034940], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(00053C) S_LABEL32: [0001:0003499F], $L2496 +(000550) S_LABEL32: [0001:00034995], $L2494 +(000564) S_BPREL32: [FFFFFFF0], Type: 0x13DD, this +(000578) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00058C) S_END + +(000590) S_GPROC32: [0001:000349B0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000644, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(0005F4) S_LABEL32: [0001:00034A4B], $L2505 +(000608) S_LABEL32: [0001:00034A41], $L2503 +(00061C) S_BPREL32: [FFFFFFF0], Type: 0x13E7, this +(000630) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000644) S_END + +(000648) S_GPROC32: [0001:00034A60], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 000006FC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0006AC) S_LABEL32: [0001:00034AB9], $L2539 +(0006C0) S_LABEL32: [0001:00034AAF], $L2537 +(0006D4) S_BPREL32: [FFFFFFF0], Type: 0x13E4, this +(0006E8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0006FC) S_END + +(000700) S_GPROC32: [0001:00034AD0], Cb: 0000001E, Type: T_NOTYPE(0000), MxRegion::`scalar deleting destructor' + Parent: 00000000, End: 00000774, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000750) S_REGISTER: esi, Type: 0x13DA, this +(000760) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000774) S_END + +(000778) S_GPROC32: [0001:00034AF0], Cb: 0000000C, Type: 0x13E8, MxRegion::VTable0x20 + Parent: 00000000, End: 000007C4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0007B4) S_REGISTER: ecx, Type: 0x13DA, this + +(0007C4) S_END + +(0007C8) S_GPROC32: [0001:00034B00], Cb: 00000063, Type: 0x13DB, MxRegion::~MxRegion + Parent: 00000000, End: 00000840, Next: 00000000 + Debug start: 00000021, Debug end: 00000044 + Flags: Frame Ptr Present + +(000804) S_LABEL32: [0001:00034B5B], $L2555 +(000818) S_LABEL32: [0001:00034B51], $L2554 +(00082C) S_BPREL32: [FFFFFFF0], Type: 0x13DA, this + +(000840) S_END + +(000844) S_GPROC32: [0001:00034B70], Cb: 0000004F, Type: 0x13DB, MxRegion::Reset + Parent: 00000000, End: 0000088C, Next: 00000000 + Debug start: 00000009, Debug end: 0000004C + +(00087C) S_REGISTER: esi, Type: 0x13DA, this + +(00088C) S_END + +(000890) S_GPROC32: [0001:00034BC0], Cb: 00000485, Type: 0x13E9, MxRegion::VTable0x18 + Parent: 00000000, End: 00000A58, Next: 00000000 + Debug start: 0000002C, Debug end: 0000043C + Flags: Frame Ptr Present + +(0008CC) S_LABEL32: [0001:0003503D], $L2595 +(0008E0) S_LABEL32: [0001:00035033], $L2594 +(0008F4) S_LABEL32: [0001:0003502B], $L2666 +(000908) S_LABEL32: [0001:00035023], $L2668 +(00091C) S_LABEL32: [0001:0003501B], $L2670 +(000930) S_LABEL32: [0001:0003500E], $L2602 +(000944) S_LABEL32: [0001:00034F75], $L2758 +(000958) S_LABEL32: [0001:00034F68], $L2599 +(00096C) S_LABEL32: [0001:00034F5B], $L2722 +(000980) S_LABEL32: [0001:00034F4E], $L2596 +(000994) S_LABEL32: [0001:00034F41], $L2686 +(0009A8) S_BPREL32: [FFFFFFE8], Type: 0x13DA, this +(0009BC) S_BPREL32: [00000008], Type: 0x1223, p_rect +(0009D0) S_BPREL32: [FFFFFFEC], Type: 0x13D1, topBottom +(0009E8) S_BPREL32: [FFFFFFC4], Type: 0x3E69, cursor +(0009FC) S_BPREL32: [FFFFFFD8], Type: 0x3F36, rect +(000A10) S_BPREL32: [FFFFFFAC], Type: 0x3F36, newRect +(000A24) S_BPREL32: [FFFFFFBC], Type: 0x13D1, newTopBottom +(000A40) S_REGISTER: esi, Type: 0x13D1, newTopBottom + +(000A58) S_END + +(000A5C) S_GPROC32: [0001:00035050], Cb: 00000019, Type: 0x1427, MxListEntry::MxListEntry + Parent: 00000000, End: 00000B14, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000AC8) S_REGISTER: ecx, Type: 0x1426, this +(000AD8) S_BPREL32: [00000004], Type: 0x13D1, p_obj +(000AEC) S_BPREL32: [00000008], Type: 0x141E, p_prev +(000B00) S_BPREL32: [0000000C], Type: 0x141E, p_next + +(000B14) S_END + +(000B18) S_GPROC32: [0001:00035070], Cb: 00000061, Type: T_NOTYPE(0000), MxRegionTopBottomListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000BCC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000B7C) S_LABEL32: [0001:000350C9], $L2828 +(000B90) S_LABEL32: [0001:000350BF], $L2826 +(000BA4) S_BPREL32: [FFFFFFF0], Type: 0x3E65, this +(000BB8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000BCC) S_END + +(000BD0) S_GPROC32: [0001:000350E0], Cb: 00000049, Type: 0x2CEE, MxPtrListCursor::~MxPtrListCursor + Parent: 00000000, End: 00000C7C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000C40) S_LABEL32: [0001:00035121], $L2837 +(000C54) S_LABEL32: [0001:00035117], $L2836 +(000C68) S_BPREL32: [FFFFFFF0], Type: 0x2CED, this + +(000C7C) S_END + +(000C80) S_GPROC32: [0001:00035130], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000D38, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000CE8) S_LABEL32: [0001:00035189], $L2845 +(000CFC) S_LABEL32: [0001:0003517F], $L2843 +(000D10) S_BPREL32: [FFFFFFF0], Type: 0x13F3, this +(000D24) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000D38) S_END + +(000D3C) S_GPROC32: [0001:000351A0], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000DF4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000DA4) S_LABEL32: [0001:000351F9], $L2854 +(000DB8) S_LABEL32: [0001:000351EF], $L2852 +(000DCC) S_BPREL32: [FFFFFFF0], Type: 0x2CED, this +(000DE0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000DF4) S_END + +(000DF8) S_GPROC32: [0001:00035210], Cb: 00000049, Type: 0x13F5, MxListCursor::~MxListCursor + Parent: 00000000, End: 00000EA4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000E68) S_LABEL32: [0001:00035251], $L2863 +(000E7C) S_LABEL32: [0001:00035247], $L2862 +(000E90) S_BPREL32: [FFFFFFF0], Type: 0x13F3, this + +(000EA4) S_END + +(000EA8) S_GPROC32: [0001:00035260], Cb: 00000049, Type: 0x3E67, MxRegionTopBottomListCursor::~MxRegionTopBottomListCursor + Parent: 00000000, End: 00000F48, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000F0C) S_LABEL32: [0001:000352A1], $L2871 +(000F20) S_LABEL32: [0001:00035297], $L2870 +(000F34) S_BPREL32: [FFFFFFF0], Type: 0x3E65, this + +(000F48) S_END + +(000F4C) S_GPROC32: [0001:000352B0], Cb: 00000146, Type: 0x13F7, MxRegion::VTable0x1c + Parent: 00000000, End: 0000103C, Next: 00000000 + Debug start: 00000021, Debug end: 00000133 + Flags: Frame Ptr Present + +(000F88) S_LABEL32: [0001:000353D9], $L2881 +(000F9C) S_LABEL32: [0001:000353CF], $L2880 +(000FB0) S_LABEL32: [0001:000353C7], $L2887 +(000FC4) S_LABEL32: [0001:000353BF], $L2889 +(000FD8) S_LABEL32: [0001:000353B7], $L2891 +(000FEC) S_REGISTER: ecx, Type: 0x13DA, this +(000FFC) S_BPREL32: [00000008], Type: 0x1223, p_rect +(001010) S_BPREL32: [FFFFFFE0], Type: 0x13D1, topBottom +(001028) S_BPREL32: [FFFFFFE4], Type: 0x3E69, cursor + +(00103C) S_END + +(001040) S_GPROC32: [0001:00035400], Cb: 000000E8, Type: 0x13F9, MxRegionTopBottom::MxRegionTopBottom + Parent: 00000000, End: 00001140, Next: 00000000 + Debug start: 00000023, Debug end: 000000C9 + Flags: Frame Ptr Present + +(00108C) S_LABEL32: [0001:000354DB], $L2931 +(0010A0) S_LABEL32: [0001:000354D1], $L2930 +(0010B4) S_LABEL32: [0001:000354A8], $L2935 +(0010C8) S_LABEL32: [0001:000354A0], $L2937 +(0010DC) S_LABEL32: [0001:00035498], $L2942 +(0010F0) S_LABEL32: [0001:00035490], $L2944 +(001104) S_REGISTER: esi, Type: 0x13F8, this +(001114) S_BPREL32: [00000008], Type: T_INT4(0074), p_top +(001128) S_BPREL32: [0000000C], Type: T_INT4(0074), p_bottom + +(001140) S_END + +(001144) S_GPROC32: [0001:000354F0], Cb: 00000001, Type: 0x13FD, MxCollection::Destroy + Parent: 00000000, End: 000011B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001198) S_BPREL32: [00000004], Type: 0x13D6, __formal + +(0011B0) S_END + +(0011B4) S_GPROC32: [0001:00035500], Cb: 0000004F, Type: 0x13FC, MxCollection::~MxCollection + Parent: 00000000, End: 00001260, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(001224) S_LABEL32: [0001:00035547], $L2977 +(001238) S_LABEL32: [0001:0003553D], $L2976 +(00124C) S_BPREL32: [FFFFFFF0], Type: 0x13FB, this + +(001260) S_END + +(001264) S_GPROC32: [0001:00035550], Cb: 00000005, Type: 0x13FF, MxCollection::Compare + Parent: 00000000, End: 000012F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0012B8) S_REGISTER: ecx, Type: 0x13FB, this +(0012C8) S_BPREL32: [00000004], Type: 0x13D6, __formal +(0012E0) S_BPREL32: [00000008], Type: 0x13D6, __formal + +(0012F8) S_END + +(0012FC) S_GPROC32: [0001:00035560], Cb: 0000000E, Type: 0x35DB, MxPtrList::Destroy + Parent: 00000000, End: 00001360, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(00134C) S_BPREL32: [00000004], Type: 0x13D6, p_obj + +(001360) S_END + +(001364) S_GPROC32: [0001:00035570], Cb: 00000061, Type: T_NOTYPE(0000), MxRegionLeftRightList::`scalar deleting destructor' + Parent: 00000000, End: 00001410, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0013C0) S_LABEL32: [0001:000355C9], $L2990 +(0013D4) S_LABEL32: [0001:000355BF], $L2988 +(0013E8) S_BPREL32: [FFFFFFF0], Type: 0x1400, this +(0013FC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001410) S_END + +(001414) S_GPROC32: [0001:000355E0], Cb: 00000049, Type: 0x1403, MxPtrList::~MxPtrList + Parent: 00000000, End: 000014B4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001478) S_LABEL32: [0001:00035621], $L2999 +(00148C) S_LABEL32: [0001:00035617], $L2998 +(0014A0) S_BPREL32: [FFFFFFF0], Type: 0x1402, this + +(0014B4) S_END + +(0014B8) S_GPROC32: [0001:00035630], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00001570, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(001520) S_LABEL32: [0001:0003568F], $L3007 +(001534) S_LABEL32: [0001:00035685], $L3005 +(001548) S_BPREL32: [FFFFFFF0], Type: 0x13FB, this +(00155C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001570) S_END + +(001574) S_GPROC32: [0001:000356A0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00001628, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(0015D8) S_LABEL32: [0001:0003573B], $L3016 +(0015EC) S_LABEL32: [0001:00035731], $L3014 +(001600) S_BPREL32: [FFFFFFF0], Type: 0x1405, this +(001614) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001628) S_END + +(00162C) S_GPROC32: [0001:00035750], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 000016E0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001690) S_LABEL32: [0001:000357A9], $L3050 +(0016A4) S_LABEL32: [0001:0003579F], $L3048 +(0016B8) S_BPREL32: [FFFFFFF0], Type: 0x1402, this +(0016CC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0016E0) S_END + +(0016E4) S_GPROC32: [0001:000357C0], Cb: 00000191, Type: 0x1406, MxRegionTopBottom::MxRegionTopBottom + Parent: 00000000, End: 000017F8, Next: 00000000 + Debug start: 00000021, Debug end: 00000158 + Flags: Frame Ptr Present + +(001730) S_LABEL32: [0001:00035944], $L3063 +(001744) S_LABEL32: [0001:0003593A], $L3062 +(001758) S_LABEL32: [0001:0003592D], $L3066 +(00176C) S_LABEL32: [0001:00035920], $L3075 +(001780) S_LABEL32: [0001:0003586C], $L3112 +(001794) S_LABEL32: [0001:00035864], $L3114 +(0017A8) S_LABEL32: [0001:0003585C], $L3119 +(0017BC) S_LABEL32: [0001:00035854], $L3121 +(0017D0) S_BPREL32: [FFFFFFE8], Type: 0x13F8, this +(0017E4) S_BPREL32: [00000008], Type: 0x1223, p_rect + +(0017F8) S_END + +(0017FC) S_GPROC32: [0001:00035960], Cb: 00000270, Type: 0x13F9, MxRegionTopBottom::FUN_100c5280 + Parent: 00000000, End: 00001980, Next: 00000000 + Debug start: 00000027, Debug end: 00000217 + Flags: Frame Ptr Present + +(001844) S_LABEL32: [0001:00035BC8], $L3157 +(001858) S_LABEL32: [0001:00035BBE], $L3156 +(00186C) S_LABEL32: [0001:00035BB6], $L3205 +(001880) S_LABEL32: [0001:00035BAE], $L3207 +(001894) S_LABEL32: [0001:00035BA6], $L3158 +(0018A8) S_LABEL32: [0001:00035B9E], $L3216 +(0018BC) S_LABEL32: [0001:00035B96], $L3218 +(0018D0) S_LABEL32: [0001:00035B89], $L3165 +(0018E4) S_LABEL32: [0001:00035B1E], $L3162 +(0018F8) S_LABEL32: [0001:00035A40], $L3159 +(00190C) S_BPREL32: [FFFFFFDC], Type: 0x13F8, this +(001920) S_BPREL32: [00000008], Type: T_INT4(0074), p_left +(001934) S_BPREL32: [0000000C], Type: T_INT4(0074), p_right +(001948) S_BPREL32: [FFFFFFCC], Type: 0x2CF6, b +(001958) S_BPREL32: [FFFFFFF0], Type: 0x13D6, leftRight +(001970) S_BPREL32: [FFFFFFE0], Type: 0x2CF6, a + +(001980) S_END + +(001984) S_GPROC32: [0001:00035BD0], Cb: 00000066, Type: 0x1411, MxListCursor::MxListCursor + Parent: 00000000, End: 00001A40, Next: 00000000 + Debug start: 0000001C, Debug end: 00000043 + Flags: Frame Ptr Present + +(0019F0) S_LABEL32: [0001:00035C2E], $L3258 +(001A04) S_LABEL32: [0001:00035C24], $L3257 +(001A18) S_BPREL32: [FFFFFFF0], Type: 0x1410, this +(001A2C) S_BPREL32: [00000008], Type: 0x140A, p_list + +(001A40) S_END + +(001A44) S_GPROC32: [0001:00035C40], Cb: 00000061, Type: T_NOTYPE(0000), MxRegionLeftRightListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00001AF8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001AA8) S_LABEL32: [0001:00035C99], $L3266 +(001ABC) S_LABEL32: [0001:00035C8F], $L3264 +(001AD0) S_BPREL32: [FFFFFFF0], Type: 0x2CF1, this +(001AE4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001AF8) S_END + +(001AFC) S_GPROC32: [0001:00035CB0], Cb: 00000049, Type: 0x2CF8, MxPtrListCursor::~MxPtrListCursor + Parent: 00000000, End: 00001BA8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001B6C) S_LABEL32: [0001:00035CF1], $L3275 +(001B80) S_LABEL32: [0001:00035CE7], $L3274 +(001B94) S_BPREL32: [FFFFFFF0], Type: 0x2CF7, this + +(001BA8) S_END + +(001BAC) S_GPROC32: [0001:00035D00], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00001C64, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001C14) S_LABEL32: [0001:00035D59], $L3283 +(001C28) S_LABEL32: [0001:00035D4F], $L3281 +(001C3C) S_BPREL32: [FFFFFFF0], Type: 0x1410, this +(001C50) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001C64) S_END + +(001C68) S_GPROC32: [0001:00035D70], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00001D20, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001CD0) S_LABEL32: [0001:00035DC9], $L3292 +(001CE4) S_LABEL32: [0001:00035DBF], $L3290 +(001CF8) S_BPREL32: [FFFFFFF0], Type: 0x2CF7, this +(001D0C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001D20) S_END + +(001D24) S_GPROC32: [0001:00035DE0], Cb: 00000049, Type: 0x1413, MxListCursor::~MxListCursor + Parent: 00000000, End: 00001DD0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001D94) S_LABEL32: [0001:00035E21], $L3301 +(001DA8) S_LABEL32: [0001:00035E17], $L3300 +(001DBC) S_BPREL32: [FFFFFFF0], Type: 0x1410, this + +(001DD0) S_END + +(001DD4) S_GPROC32: [0001:00035E30], Cb: 00000049, Type: 0x2CF4, MxRegionLeftRightListCursor::~MxRegionLeftRightListCursor + Parent: 00000000, End: 00001E74, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001E38) S_LABEL32: [0001:00035E71], $L3309 +(001E4C) S_LABEL32: [0001:00035E67], $L3308 +(001E60) S_BPREL32: [FFFFFFF0], Type: 0x2CF1, this + +(001E74) S_END + +(001E78) S_GPROC32: [0001:00035E80], Cb: 0000001B, Type: 0x1419, MxListCursor::operator= + Parent: 00000000, End: 00001EF0, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(001ECC) S_REGISTER: ecx, Type: 0x1410, this +(001EDC) S_BPREL32: [00000004], Type: 0x1417, __that + +(001EF0) S_END + +(001EF4) S_GPROC32: [0001:00035EA0], Cb: 000001D4, Type: 0x141A, MxRegionTopBottom::Clone + Parent: 00000000, End: 00002010, Next: 00000000 + Debug start: 0000001E, Debug end: 0000018F + Flags: Frame Ptr Present + +(001F34) S_LABEL32: [0001:00036067], $L3322 +(001F48) S_LABEL32: [0001:0003605D], $L3321 +(001F5C) S_LABEL32: [0001:00036055], $L3325 +(001F70) S_LABEL32: [0001:0003604D], $L3378 +(001F84) S_LABEL32: [0001:00036045], $L3380 +(001F98) S_LABEL32: [0001:0003603D], $L3382 +(001FAC) S_LABEL32: [0001:00036010], $L3329 +(001FC0) S_LABEL32: [0001:00036003], $L3344 +(001FD4) S_REGISTER: edi, Type: 0x13F8, this +(001FE4) S_BPREL32: [FFFFFFE0], Type: 0x2CF6, cursor +(001FF8) S_BPREL32: [FFFFFFD4], Type: 0x13D6, leftRight + +(002010) S_END + +(002014) S_GPROC32: [0001:00036080], Cb: 00000106, Type: 0x141B, MxRegionTopBottom::FUN_100c57b0 + Parent: 00000000, End: 00002110, Next: 00000000 + Debug start: 0000001C, Debug end: 000000AB + Flags: Frame Ptr Present + +(00205C) S_LABEL32: [0001:0003617E], $L3414 +(002070) S_LABEL32: [0001:00036174], $L3413 +(002084) S_LABEL32: [0001:0003616C], $L3420 +(002098) S_LABEL32: [0001:00036164], $L3422 +(0020AC) S_LABEL32: [0001:0003615C], $L3424 +(0020C0) S_REGISTER: ecx, Type: 0x13F8, this +(0020D0) S_BPREL32: [00000008], Type: 0x1223, p_rect +(0020E4) S_BPREL32: [FFFFFFE4], Type: 0x2CF6, cursor +(0020F8) S_BPREL32: [FFFFFFE0], Type: 0x13D6, leftRight + +(002110) S_END + +(002114) S_GPROC32: [0001:00036190], Cb: 0000008B, Type: 0x1421, MxList::~MxList + Parent: 00000000, End: 000021B4, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(002178) S_LABEL32: [0001:00036213], $L3456 +(00218C) S_LABEL32: [0001:00036209], $L3455 +(0021A0) S_BPREL32: [FFFFFFF0], Type: 0x1405, this + +(0021B4) S_END + +(0021B8) S_GPROC32: [0001:00036220], Cb: 000000A1, Type: 0x1425, MxList::InsertEntry + Parent: 00000000, End: 00002280, Next: 00000000 + Debug start: 0000001D, Debug end: 00000076 + Flags: Frame Ptr Present + +(002208) S_LABEL32: [0001:000362B4], $L3480 +(00221C) S_LABEL32: [0001:000362AA], $L3479 +(002230) S_REGISTER: edi, Type: 0x1405, this +(002240) S_BPREL32: [00000008], Type: 0x13D6, p_newobj +(002258) S_BPREL32: [0000000C], Type: 0x1423, p_prev +(00226C) S_BPREL32: [00000010], Type: 0x1423, p_next + +(002280) S_END + +(002284) S_GPROC32: [0001:000362D0], Cb: 0000008B, Type: 0x141C, MxList::~MxList + Parent: 00000000, End: 00002324, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(0022E8) S_LABEL32: [0001:00036353], $L3494 +(0022FC) S_LABEL32: [0001:00036349], $L3493 +(002310) S_BPREL32: [FFFFFFF0], Type: 0x13E7, this + +(002324) S_END + +(002328) S_GPROC32: [0001:00036360], Cb: 000000A1, Type: 0x1420, MxList::InsertEntry + Parent: 00000000, End: 000023F0, Next: 00000000 + Debug start: 0000001D, Debug end: 00000076 + Flags: Frame Ptr Present + +(002378) S_LABEL32: [0001:000363F4], $L3518 +(00238C) S_LABEL32: [0001:000363EA], $L3517 +(0023A0) S_REGISTER: edi, Type: 0x13E7, this +(0023B0) S_BPREL32: [00000008], Type: 0x13D1, p_newobj +(0023C8) S_BPREL32: [0000000C], Type: 0x141E, p_prev +(0023DC) S_BPREL32: [00000010], Type: 0x141E, p_next + +(0023F0) S_END + +(0023F4) S_GPROC32: [0001:00036410], Cb: 00000043, Type: 0x1429, MxList::DeleteEntry + Parent: 00000000, End: 00002468, Next: 00000000 + Debug start: 00000008, Debug end: 0000003E + +(002444) S_REGISTER: esi, Type: 0x1405, this +(002454) S_BPREL32: [00000004], Type: 0x1423, p_match + +(002468) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxramstreamprovider.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000341E0], Cb: 00000086, Type: 0x142C, MxRAMStreamProvider::MxRAMStreamProvider + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000060 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0003425E], $L45414 +(0000F0) S_LABEL32: [0001:00034254], $L45413 +(000104) S_LABEL32: [0001:0003424C], $L45416 +(000118) S_BPREL32: [FFFFFFF0], Type: 0x142B, this + +(00012C) S_END + +(000130) S_GPROC32: [0001:00034270], Cb: 00000006, Type: 0x142F, MxRAMStreamProvider::ClassName + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000178) S_REGISTER: ecx, Type: 0x142E, this + +(000188) S_END + +(00018C) S_GPROC32: [0001:00034280], Cb: 000000A2, Type: 0x1430, MxRAMStreamProvider::IsA + Parent: 00000000, End: 000001F0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001CC) S_REGISTER: ecx, Type: 0x142E, this +(0001DC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001F0) S_END + +(0001F4) S_GPROC32: [0001:00034330], Cb: 0000001E, Type: T_NOTYPE(0000), MxRAMStreamProvider::`scalar deleting destructor' + Parent: 00000000, End: 00000274, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000250) S_REGISTER: esi, Type: 0x142B, this +(000260) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000274) S_END + +(000278) S_GPROC32: [0001:00034350], Cb: 00000004, Type: 0x1431, MxRAMStreamProvider::GetFileSize + Parent: 00000000, End: 000002D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0002C0) S_REGISTER: ecx, Type: 0x142B, this + +(0002D0) S_END + +(0002D4) S_GPROC32: [0001:00034360], Cb: 00000006, Type: 0x36E5, MxRAMStreamProvider::GetStreamBuffersNum + Parent: 00000000, End: 00000334, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000324) S_REGISTER: ecx, Type: 0x142B, this + +(000334) S_END + +(000338) S_GPROC32: [0001:00034370], Cb: 00000004, Type: 0x1431, MxRAMStreamProvider::GetLengthInDWords + Parent: 00000000, End: 00000398, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000388) S_REGISTER: ecx, Type: 0x142B, this + +(000398) S_END + +(00039C) S_GPROC32: [0001:00034380], Cb: 00000004, Type: 0x1432, MxRAMStreamProvider::GetBufferForDWords + Parent: 00000000, End: 000003FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0003EC) S_REGISTER: ecx, Type: 0x142B, this + +(0003FC) S_END + +(000400) S_GPROC32: [0001:00034390], Cb: 00000083, Type: 0x142C, MxRAMStreamProvider::~MxRAMStreamProvider + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 00000025, Debug end: 00000063 + Flags: Frame Ptr Present + +(000454) S_LABEL32: [0001:0003440B], $L45507 +(000468) S_LABEL32: [0001:00034401], $L45506 +(00047C) S_BPREL32: [FFFFFFF0], Type: 0x142B, this + +(000490) S_END + +(000494) S_GPROC32: [0001:00034420], Cb: 0000029F, Type: 0x1433, MxRAMStreamProvider::SetResourceToGet + Parent: 00000000, End: 000005FC, Next: 00000000 + Debug start: 0000002B, Debug end: 00000258 + Flags: Frame Ptr Present + +(0004E4) S_LABEL32: [0001:000346B7], $L45525 +(0004F8) S_LABEL32: [0001:000346AD], $L45524 +(00050C) S_LABEL32: [0001:000346A5], $L45528 +(000520) S_LABEL32: [0001:0003469D], $L45527 +(000534) S_LABEL32: [0001:00034695], $L45526 +(000548) S_LABEL32: [0001:00034688], $L45529 +(00055C) S_LABEL32: [0001:000345AA], $L45534 +(000570) S_LABEL32: [0001:000345A2], $L45533 +(000584) S_LABEL32: [0001:0003459A], $L45532 +(000598) S_LABEL32: [0001:0003464C], done +(0005A8) S_BPREL32: [FFFFFFF0], Type: 0x142B, this +(0005BC) S_BPREL32: [00000008], Type: 0x12DF, p_resource +(0005D4) S_BPREL32: [FFFFFFCC], Type: 0x12DB, path +(0005E8) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(0005FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxramstreamcontroller.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00033E70], Cb: 000000FE, Type: 0x1434, MxRAMStreamController::Open + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 0000001D, Debug end: 00000052 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00033F66], $L45479 +(0000E8) S_LABEL32: [0001:00033F5C], $L45478 +(0000FC) S_LABEL32: [0001:00033F4F], $L45480 +(000110) S_REGISTER: esi, Type: 0x133B, this +(000120) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_filename +(000138) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(00014C) S_END + +(000150) S_GPROC32: [0001:00033F70], Cb: 00000108, Type: 0x1435, MxRAMStreamController::VTable0x20 + Parent: 00000000, End: 0000026C, Next: 00000000 + Debug start: 00000024, Debug end: 000000B6 + Flags: Frame Ptr Present + +(00019C) S_LABEL32: [0001:00034070], $L45498 +(0001B0) S_LABEL32: [0001:00034066], $L45497 +(0001C4) S_LABEL32: [0001:0003405B], $L45499 +(0001D8) S_REGISTER: esi, Type: 0x133B, this +(0001E8) S_BPREL32: [00000008], Type: 0x109C, p_action +(000200) S_REGISTER: ebx, Type: T_INT4(0074), unk0x24 +(000214) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(000228) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), result +(00023C) S_REGISTER: eax, Type: 0x109C, action +(000250) S_BPREL32: [FFFFFF38], Type: 0x3CB4, streamingaction + +(00026C) S_END + +(000270) S_GPROC32: [0001:00034080], Cb: 000000A0, Type: 0x1435, MxRAMStreamController::VTable0x24 + Parent: 00000000, End: 00000320, Next: 00000000 + Debug start: 00000020, Debug end: 0000007C + Flags: Frame Ptr Present + +(0002BC) S_LABEL32: [0001:00034115], $L45513 +(0002D0) S_LABEL32: [0001:0003410B], $L45512 +(0002E4) S_REGISTER: edi, Type: 0x133B, this +(0002F4) S_BPREL32: [00000008], Type: 0x109C, p_action +(00030C) S_BPREL32: [FFFFFF60], Type: 0x3CF2, action + +(000320) S_END + +(000324) S_GPROC32: [0001:00034120], Cb: 000000A4, Type: 0x3382, MxRAMStreamController::DeserializeObject + Parent: 00000000, End: 00000400, Next: 00000000 + Debug start: 00000021, Debug end: 0000008B + Flags: Frame Ptr Present + +(000374) S_LABEL32: [0001:000341BC], $L45524 +(000388) S_LABEL32: [0001:000341B2], $L45523 +(00039C) S_REGISTER: esi, Type: 0x133B, this +(0003AC) S_BPREL32: [00000008], Type: 0x1602, p_action +(0003C4) S_BPREL32: [FFFFFFE8], Type: 0x1607, value +(0003D8) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(0003EC) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(000400) S_END + +(000404) S_GPROC32: [0001:000341D0], Cb: 00000003, Type: 0x1438, ReadData + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000434) S_BPREL32: [00000004], Type: T_32PUINT4(0475), p_fileSizeBuffer +(000454) S_BPREL32: [00000008], Type: T_UINT4(0075), p_fileSize + +(00046C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxpresenter.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00033540], Cb: 00000001, Type: 0x143E, MxPresenter::VTable0x14 + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0000C4) S_REGISTER: ecx, Type: 0x143D, this + +(0000D4) S_END + +(0000D8) S_GPROC32: [0001:00033550], Cb: 0000001E, Type: 0x143E, MxPresenter::ReadyTickle + Parent: 00000000, End: 00000128, Next: 00000000 + Debug start: 00000001, Debug end: 0000001C + +(000118) S_REGISTER: esi, Type: 0x143D, this + +(000128) S_END + +(00012C) S_GPROC32: [0001:00033570], Cb: 00000017, Type: 0x143E, MxPresenter::StartingTickle + Parent: 00000000, End: 00000180, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000170) S_REGISTER: eax, Type: 0x143D, this + +(000180) S_END + +(000184) S_GPROC32: [0001:00033590], Cb: 00000017, Type: 0x143E, MxPresenter::StreamingTickle + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(0001C8) S_REGISTER: eax, Type: 0x143D, this + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:000335B0], Cb: 00000017, Type: 0x143E, MxPresenter::RepeatingTickle + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000220) S_REGISTER: eax, Type: 0x143D, this + +(000230) S_END + +(000234) S_GPROC32: [0001:000335D0], Cb: 00000017, Type: 0x143E, MxPresenter::Unk5Tickle + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000274) S_REGISTER: eax, Type: 0x143D, this + +(000284) S_END + +(000288) S_GPROC32: [0001:000335F0], Cb: 00000017, Type: 0x143E, MxPresenter::DoneTickle + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(0002C8) S_REGISTER: eax, Type: 0x143D, this + +(0002D8) S_END + +(0002DC) S_GPROC32: [0001:00033610], Cb: 00000067, Type: 0x143E, MxPresenter::~MxPresenter + Parent: 00000000, End: 00000370, Next: 00000000 + Debug start: 00000023, Debug end: 0000003D + Flags: Frame Ptr Present + +(000320) S_LABEL32: [0001:0003366F], $L50832 +(000334) S_LABEL32: [0001:00033665], $L50831 +(000348) S_LABEL32: [0001:0003365A], $L50833 +(00035C) S_BPREL32: [FFFFFFF0], Type: 0x143D, this + +(000370) S_END + +(000374) S_GPROC32: [0001:00033680], Cb: 00000003, Type: 0x143F, MxPresenter::AddToManager + Parent: 00000000, End: 000003C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0003B8) S_REGISTER: ecx, Type: 0x143D, this + +(0003C8) S_END + +(0003CC) S_GPROC32: [0001:00033690], Cb: 00000005, Type: 0x143E, MxPresenter::Destroy + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000408) S_REGISTER: ecx, Type: 0x143D, this + +(000418) S_END + +(00041C) S_GPROC32: [0001:000336A0], Cb: 00000019, Type: 0x1443, MxPresenter::SetTickleState + Parent: 00000000, End: 0000048C, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000460) S_REGISTER: edx, Type: 0x143D, this +(000470) S_BPREL32: [00000004], Type: 0x1441, p_tickleState + +(00048C) S_END + +(000490) S_GPROC32: [0001:000336C0], Cb: 00000010, Type: 0x1444, MxPresenter::HasTickleStatePassed + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0004DC) S_REGISTER: ecx, Type: 0x143D, this +(0004EC) S_BPREL32: [00000004], Type: 0x1441, p_tickleState + +(000508) S_END + +(00050C) S_GPROC32: [0001:000336D0], Cb: 00000003, Type: 0x143F, MxPresenter::PutData + Parent: 00000000, End: 00000558, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000548) S_REGISTER: ecx, Type: 0x143D, this + +(000558) S_END + +(00055C) S_GPROC32: [0001:000336E0], Cb: 00000005, Type: 0x1445, MxPresenter::IsHit + Parent: 00000000, End: 000005C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000598) S_REGISTER: ecx, Type: 0x143D, this +(0005A8) S_BPREL32: [00000004], Type: T_INT4(0074), p_x +(0005B8) S_BPREL32: [00000008], Type: T_INT4(0074), p_y + +(0005C8) S_END + +(0005CC) S_GPROC32: [0001:000336F0], Cb: 00000024, Type: 0x143E, MxPresenter::Init + Parent: 00000000, End: 00000618, Next: 00000000 + Debug start: 00000013, Debug end: 0000001E + +(000608) S_REGISTER: ecx, Type: 0x143D, this + +(000618) S_END + +(00061C) S_GPROC32: [0001:00033720], Cb: 000000B4, Type: 0x1447, MxPresenter::StartAction + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000021, Debug end: 00000092 + Flags: Frame Ptr Present + +(00065C) S_LABEL32: [0001:000337CC], $L50884 +(000670) S_LABEL32: [0001:000337C2], $L50883 +(000684) S_REGISTER: esi, Type: 0x143D, this +(000694) S_BPREL32: [00000008], Type: 0x12DF, __formal +(0006AC) S_BPREL32: [0000000C], Type: 0x109C, p_action +(0006C4) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:000337E0], Cb: 00000176, Type: 0x143E, MxPresenter::EndAction + Parent: 00000000, End: 000007D0, Next: 00000000 + Debug start: 00000025, Debug end: 00000127 + Flags: Frame Ptr Present + +(00071C) S_LABEL32: [0001:0003394E], $L50906 +(000730) S_LABEL32: [0001:00033944], $L50905 +(000744) S_LABEL32: [0001:0003393C], $L50907 +(000758) S_LABEL32: [0001:00033934], $L50909 +(00076C) S_LABEL32: [0001:0003392C], $L50913 +(000780) S_LABEL32: [0001:00033924], $L50927 +(000794) S_LABEL32: [0001:00033917], $L50914 +(0007A8) S_BPREL32: [FFFFFFF0], Type: 0x143D, this +(0007BC) S_BPREL32: [FFFFFFD4], Type: 0x11DF, lock + +(0007D0) S_END + +(0007D4) S_GPROC32: [0001:00033960], Cb: 0000014C, Type: 0x143E, MxPresenter::ParseExtra + Parent: 00000000, End: 000008E4, Next: 00000000 + Debug start: 00000024, Debug end: 0000012A + Flags: Frame Ptr Present + +(000814) S_LABEL32: [0001:00033AA4], $L51042 +(000828) S_LABEL32: [0001:00033A9A], $L51041 +(00083C) S_REGISTER: ebx, Type: 0x143D, this +(00084C) S_REGISTER: cx, Type: T_USHORT(0021), len +(00085C) S_REGISTER: esi, Type: T_32PRCHAR(0470), extraData +(000870) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(000884) S_BPREL32: [FFFFFAF0], Type: 0x11E1, worldValue +(00089C) S_BPREL32: [FFFFFCF0], Type: 0x11E1, extraCopy +(0008B4) S_REGISTER: eax, Type: T_32PRCHAR(0470), token +(0008C4) S_BPREL32: [FFFFFEF0], Type: 0x138C, buf +(0008D4) S_REGISTER: esi, Type: T_INT4(0074), val + +(0008E4) S_END + +(0008E8) S_GPROC32: [0001:00033AB0], Cb: 000000DB, Type: 0x144B, MxPresenter::SendToCompositePresenter + Parent: 00000000, End: 000009C4, Next: 00000000 + Debug start: 0000001B, Debug end: 000000AA + Flags: Frame Ptr Present + +(000938) S_LABEL32: [0001:00033B83], $L51058 +(00094C) S_LABEL32: [0001:00033B79], $L51057 +(000960) S_LABEL32: [0001:00033B71], $L51059 +(000974) S_LABEL32: [0001:00033B69], $L51065 +(000988) S_BPREL32: [FFFFFFF0], Type: 0x143D, this +(00099C) S_BPREL32: [00000008], Type: 0x1449, p_omni +(0009B0) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock + +(0009C4) S_END + +(0009C8) S_GPROC32: [0001:00033B90], Cb: 000000D0, Type: 0x143F, MxPresenter::Tickle + Parent: 00000000, End: 00000A50, Next: 00000000 + Debug start: 0000001C, Debug end: 0000009A + Flags: Frame Ptr Present + +(000A04) S_LABEL32: [0001:00033C40], $L51077 +(000A18) S_LABEL32: [0001:00033C36], $L51076 +(000A2C) S_REGISTER: esi, Type: 0x143D, this +(000A3C) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000A50) S_END + +(000A54) S_GPROC32: [0001:00033C60], Cb: 00000035, Type: 0x144C, MxPresenter::Enable + Parent: 00000000, End: 00000AC8, Next: 00000000 + Debug start: 00000001, Debug end: 00000031 + +(000A90) S_REGISTER: esi, Type: 0x143D, this +(000AA0) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable +(000AB8) S_REGISTER: eax, Type: T_UINT4(0075), flags + +(000AC8) S_END + +(000ACC) S_GPROC32: [0001:00033CA0], Cb: 000000F4, Type: 0x144F, PresenterNameDispatch + Parent: 00000000, End: 00000B34, Next: 00000000 + Debug start: 00000006, Debug end: 000000D1 + +(000B0C) S_BPREL32: [00000004], Type: 0x144D, p_action +(000B24) S_REGISTER: esi, Type: T_32PRCHAR(0470), name + +(000B34) S_END + +(000B38) S_GPROC32: [0001:00033DA0], Cb: 000000A4, Type: 0x3CF3, MxPresenter::CreateEntityBackend + Parent: 00000000, End: 00000BE0, Next: 00000000 + Debug start: 00000011, Debug end: 00000099 + +(000B80) S_REGISTER: edx, Type: 0x143D, this +(000B90) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name +(000BA4) S_BPREL32: [FFFFFC00], Type: 0x11E1, buffer +(000BB8) S_REGISTER: cx, Type: T_USHORT(0021), extraLen +(000BCC) S_BPREL32: [FFFFFE00], Type: 0x11E1, buffer2 + +(000BE0) S_END + +(000BE4) S_GPROC32: [0001:00033E50], Cb: 00000013, Type: 0x1450, MxPresenter::IsEnabled + Parent: 00000000, End: 00000C34, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000C24) S_REGISTER: ecx, Type: 0x143D, this + +(000C34) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxparam.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxpalette.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00032E90], Cb: 0000007B, Type: 0x1452, MxPalette::MxPalette + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005A + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00032F03], $L45820 +(0000D4) S_LABEL32: [0001:00032EF9], $L45819 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x1451, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:00032F10], Cb: 0000001E, Type: T_NOTYPE(0000), MxPalette::`scalar deleting destructor' + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000150) S_REGISTER: esi, Type: 0x1451, this +(000160) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000174) S_END + +(000178) S_GPROC32: [0001:00032F30], Cb: 000000B7, Type: 0x1457, MxPalette::MxPalette + Parent: 00000000, End: 00000214, Next: 00000000 + Debug start: 0000001D, Debug end: 0000009D + Flags: Frame Ptr Present + +(0001B4) S_LABEL32: [0001:00032FDF], $L45842 +(0001C8) S_LABEL32: [0001:00032FD5], $L45841 +(0001DC) S_BPREL32: [FFFFFFF0], Type: 0x1451, this +(0001F0) S_BPREL32: [00000008], Type: 0x1455, p_colors +(000208) S_REGISTER: eax, Type: T_INT4(0074), i + +(000214) S_END + +(000218) S_GPROC32: [0001:00032FF0], Cb: 00000063, Type: 0x1452, MxPalette::~MxPalette + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000021, Debug end: 00000044 + Flags: Frame Ptr Present + +(000258) S_LABEL32: [0001:0003304B], $L45852 +(00026C) S_LABEL32: [0001:00033041], $L45851 +(000280) S_BPREL32: [FFFFFFF0], Type: 0x1451, this + +(000294) S_END + +(000298) S_GPROC32: [0001:00033060], Cb: 000000AC, Type: 0x145A, MxPalette::CreateNativePalette + Parent: 00000000, End: 000002F0, Next: 00000000 + Debug start: 00000002, Debug end: 000000AA + +(0002E0) S_REGISTER: edi, Type: 0x1451, this + +(0002F0) S_END + +(0002F4) S_GPROC32: [0001:00033110], Cb: 00000093, Type: 0x145B, MxPalette::Clone + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 00000020, Debug end: 00000077 + Flags: Frame Ptr Present + +(00032C) S_LABEL32: [0001:00033196], $L45877 +(000340) S_LABEL32: [0001:0003318C], $L45876 +(000354) S_REGISTER: esi, Type: 0x1451, this + +(000364) S_END + +(000368) S_GPROC32: [0001:000331B0], Cb: 00000017, Type: 0x145E, MxPalette::GetEntries + Parent: 00000000, End: 000003D0, Next: 00000000 + Debug start: 00000002, Debug end: 00000013 + +(0003A8) S_REGISTER: ecx, Type: 0x1451, this +(0003B8) S_BPREL32: [00000004], Type: 0x145C, p_entries + +(0003D0) S_END + +(0003D4) S_GPROC32: [0001:000331D0], Cb: 00000146, Type: 0x145E, MxPalette::SetEntries + Parent: 00000000, End: 00000450, Next: 00000000 + Debug start: 00000004, Debug end: 0000013F + +(000414) S_REGISTER: ecx, Type: 0x1451, this +(000424) S_BPREL32: [00000004], Type: 0x145C, p_entries +(00043C) S_REGISTER: ebp, Type: T_LONG(0012), status + +(000450) S_END + +(000454) S_GPROC32: [0001:00033320], Cb: 00000056, Type: 0x145E, MxPalette::SetSkyColor + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 00000002, Debug end: 00000052 + +(000494) S_REGISTER: ecx, Type: 0x1451, this +(0004A4) S_BPREL32: [00000004], Type: 0x145C, p_skyColor +(0004BC) S_REGISTER: esi, Type: T_LONG(0012), status + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:00033380], Cb: 00000008, Type: 0x1452, MxPalette::Detach + Parent: 00000000, End: 00000520, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000510) S_REGISTER: ecx, Type: 0x1451, this + +(000520) S_END + +(000524) S_GPROC32: [0001:00033390], Cb: 0000004A, Type: 0x1461, MxPalette::operator== + Parent: 00000000, End: 00000594, Next: 00000000 + Debug start: 00000003, Debug end: 00000047 + +(000564) S_REGISTER: ecx, Type: 0x1451, this +(000574) S_BPREL32: [00000004], Type: 0x145F, p_other +(000588) S_REGISTER: edx, Type: T_INT4(0074), i + +(000594) S_END + +(000598) S_GPROC32: [0001:000333E0], Cb: 00000083, Type: 0x1462, MxPalette::ApplySystemEntriesToPalette + Parent: 00000000, End: 00000620, Next: 00000000 + Debug start: 00000004, Debug end: 0000007C + +(0005E8) S_REGISTER: ecx, Type: 0x1451, this +(0005F8) S_BPREL32: [00000004], Type: 0x145C, p_entries +(000610) S_REGISTER: ebx, Type: T_32PVOID(0403), hdc + +(000620) S_END + +(000624) S_GPROC32: [0001:00033470], Cb: 0000006A, Type: 0x1462, MxPalette::GetDefaultPalette + Parent: 00000000, End: 000006A0, Next: 00000000 + Debug start: 00000003, Debug end: 00000064 + +(000668) S_REGISTER: ecx, Type: 0x1451, this +(000678) S_BPREL32: [00000004], Type: 0x145C, p_entries +(000690) S_REGISTER: ebx, Type: T_32PVOID(0403), hdc + +(0006A0) S_END + +(0006A4) S_GPROC32: [0001:000334E0], Cb: 00000052, Type: 0x1463, MxPalette::Reset + Parent: 00000000, End: 0000070C, Next: 00000000 + Debug start: 00000005, Debug end: 0000004A + +(0006DC) S_REGISTER: edi, Type: 0x1451, this +(0006EC) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_ignoreSkyColor + +(00070C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxomnicreateparam.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00032D30], Cb: 000000C2, Type: 0x146A, MxOmniCreateParam::MxOmniCreateParam + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 00000031, Debug end: 00000088 + Flags: Frame Ptr Present + +(0000D8) S_LABEL32: [0001:00032DEA], $L31568 +(0000EC) S_LABEL32: [0001:00032DE0], $L31567 +(000100) S_LABEL32: [0001:00032DD5], $L31569 +(000114) S_LABEL32: [0001:00032DCA], $L31570 +(000128) S_BPREL32: [FFFFFFF0], Type: 0x1465, this +(00013C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_mediaPath +(000154) S_BPREL32: [0000000C], Type: 0x1467, p_windowHandle +(000170) S_BPREL32: [00000010], Type: 0x1229, p_vparam +(000188) S_BPREL32: [00000014], Type: 0x1478, p_flags + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:00032E00], Cb: 0000008C, Type: T_NOTYPE(0000), MxOmniCreateParam::`scalar deleting destructor' + Parent: 00000000, End: 00000270, Next: 00000000 + Debug start: 0000001B, Debug end: 00000057 + Flags: Frame Ptr Present + +(0001F8) S_LABEL32: [0001:00032E84], $L31587 +(00020C) S_LABEL32: [0001:00032E7A], $L31585 +(000220) S_LABEL32: [0001:00032E6F], $L31588 +(000234) S_LABEL32: [0001:00032E64], $L31589 +(000248) S_BPREL32: [FFFFFFF0], Type: 0x1465, this +(00025C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000270) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxomnicreateflags.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00032CF0], Cb: 00000032, Type: 0x1470, MxOmniCreateFlags::MxOmniCreateFlags + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000031 + +(0000D8) S_REGISTER: ecx, Type: 0x146F, this + +(0000E8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxomni.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00031290], Cb: 000000B8, Type: 0x147D, DeleteObjects + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000026, Debug end: 0000008C + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:0003133D], $L55868 +(0000CC) S_LABEL32: [0001:00031333], $L55867 +(0000E0) S_LABEL32: [0001:0003132B], $L55871 +(0000F4) S_BPREL32: [00000008], Type: 0x1065, p_id +(000108) S_BPREL32: [0000000C], Type: T_INT4(0074), p_first +(00011C) S_BPREL32: [00000010], Type: T_INT4(0074), p_last +(000130) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action +(000144) S_REGISTER: edi, Type: T_INT4(0074), first + +(000154) S_END + +(000158) S_GPROC32: [0001:00031350], Cb: 00000004, Type: 0x147F, MxOmni::IsTimerRunning + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000198) S_REGISTER: ecx, Type: 0x147E, this + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00031360], Cb: 00000009, Type: 0x1482, ObjectFactory + Parent: 00000000, End: 000001E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0001E4) S_END + +(0001E8) S_GPROC32: [0001:00031370], Cb: 00000009, Type: 0x1485, NotificationManager + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000224) S_END + +(000228) S_GPROC32: [0001:00031380], Cb: 00000009, Type: 0x1486, TickleManager + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000260) S_END + +(000264) S_GPROC32: [0001:00031390], Cb: 00000009, Type: 0x1487, Timer + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000294) S_END + +(000298) S_GPROC32: [0001:000313A0], Cb: 00000009, Type: 0x148A, AtomIdCounterSet + Parent: 00000000, End: 000002D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0002D0) S_END + +(0002D4) S_GPROC32: [0001:000313B0], Cb: 00000009, Type: 0x148C, Streamer + Parent: 00000000, End: 00000304, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000304) S_END + +(000308) S_GPROC32: [0001:000313C0], Cb: 00000009, Type: 0x148E, MSoundManager + Parent: 00000000, End: 00000340, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000340) S_END + +(000344) S_GPROC32: [0001:000313D0], Cb: 00000009, Type: 0x1490, MVideoManager + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(00037C) S_END + +(000380) S_GPROC32: [0001:000313E0], Cb: 00000009, Type: 0x1492, VariableTable + Parent: 00000000, End: 000003B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0003B8) S_END + +(0003BC) S_GPROC32: [0001:000313F0], Cb: 00000009, Type: 0x1495, MusicManager + Parent: 00000000, End: 000003F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0003F0) S_END + +(0003F4) S_GPROC32: [0001:00031400], Cb: 00000009, Type: 0x1498, EventManager + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000428) S_END + +(00042C) S_GPROC32: [0001:00031410], Cb: 00000012, Type: 0x34B9, DeleteObject + Parent: 00000000, End: 00000478, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000460) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(000478) S_END + +(00047C) S_GPROC32: [0001:00031430], Cb: 00000092, Type: 0x149A, MxOmni::MxOmni + Parent: 00000000, End: 00000518, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005E + Flags: Frame Ptr Present + +(0004B4) S_LABEL32: [0001:000314BA], $L55934 +(0004C8) S_LABEL32: [0001:000314B0], $L55933 +(0004DC) S_LABEL32: [0001:000314A5], $L55935 +(0004F0) S_LABEL32: [0001:0003149A], $L55936 +(000504) S_BPREL32: [FFFFFFF0], Type: 0x147E, this + +(000518) S_END + +(00051C) S_GPROC32: [0001:000314D0], Cb: 0000001E, Type: T_NOTYPE(0000), MxOmni::`scalar deleting destructor' + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000568) S_REGISTER: esi, Type: 0x147E, this +(000578) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00058C) S_END + +(000590) S_GPROC32: [0001:000314F0], Cb: 00000005, Type: 0x149E, MxOmni::FindWorld + Parent: 00000000, End: 00000624, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0005CC) S_REGISTER: ecx, Type: 0x147E, this +(0005DC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), __formal +(0005F4) S_BPREL32: [00000008], Type: T_INT4(0074), __formal +(00060C) S_BPREL32: [0000000C], Type: 0x1243, __formal + +(000624) S_END + +(000628) S_GPROC32: [0001:00031500], Cb: 00000003, Type: 0x14A0, MxOmni::NotifyCurrentEntity + Parent: 00000000, End: 00000690, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00066C) S_REGISTER: ecx, Type: 0x147E, this +(00067C) S_BPREL32: [00000004], Type: 0x135A, p_param + +(000690) S_END + +(000694) S_GPROC32: [0001:00031510], Cb: 00000083, Type: 0x149A, MxOmni::~MxOmni + Parent: 00000000, End: 00000730, Next: 00000000 + Debug start: 00000021, Debug end: 0000004E + Flags: Frame Ptr Present + +(0006CC) S_LABEL32: [0001:0003158B], $L55959 +(0006E0) S_LABEL32: [0001:00031581], $L55958 +(0006F4) S_LABEL32: [0001:00031576], $L55960 +(000708) S_LABEL32: [0001:0003156B], $L55961 +(00071C) S_BPREL32: [FFFFFFF0], Type: 0x147E, this + +(000730) S_END + +(000734) S_GPROC32: [0001:000315A0], Cb: 0000002A, Type: 0x149A, MxOmni::Init + Parent: 00000000, End: 00000778, Next: 00000000 + Debug start: 00000000, Debug end: 00000029 + +(000768) S_REGISTER: ecx, Type: 0x147E, this + +(000778) S_END + +(00077C) S_GPROC32: [0001:000315D0], Cb: 0000000A, Type: 0x14A1, MxOmni::SetInstance + Parent: 00000000, End: 000007D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0007B8) S_BPREL32: [00000004], Type: 0x1449, p_instance + +(0007D0) S_END + +(0007D4) S_GPROC32: [0001:000315E0], Cb: 00000604, Type: 0x14A4, MxOmni::Create + Parent: 00000000, End: 00000A10, Next: 00000000 + Debug start: 00000028, Debug end: 000005D0 + Flags: Frame Ptr Present + +(00080C) S_LABEL32: [0001:00031BD7], $L56014 +(000820) S_LABEL32: [0001:00031BCD], $L56013 +(000834) S_LABEL32: [0001:00031BC0], $L56053 +(000848) S_LABEL32: [0001:00031B4C], $L56048 +(00085C) S_LABEL32: [0001:00031ADA], $L56043 +(000870) S_LABEL32: [0001:00031A68], $L56038 +(000884) S_LABEL32: [0001:000319C6], $L56032 +(000898) S_LABEL32: [0001:0003195A], $L56029 +(0008AC) S_LABEL32: [0001:000318F8], $L56026 +(0008C0) S_LABEL32: [0001:000318D8], $L56289 +(0008D4) S_LABEL32: [0001:000318CD], $L56290 +(0008E8) S_LABEL32: [0001:000318C2], $L56293 +(0008FC) S_LABEL32: [0001:00031855], $L56023 +(000910) S_LABEL32: [0001:00031806], $L56020 +(000924) S_LABEL32: [0001:000317E6], $L56270 +(000938) S_LABEL32: [0001:000317DE], $L56272 +(00094C) S_LABEL32: [0001:000317D6], $L56274 +(000960) S_LABEL32: [0001:00031736], $L56017 +(000974) S_LABEL32: [0001:000316BD], $L56083 +(000988) S_LABEL32: [0001:000316B5], $L56086 +(00099C) S_LABEL32: [0001:000316AD], $L56088 +(0009B0) S_LABEL32: [0001:000316A5], $L56089 +(0009C4) S_LABEL32: [0001:00031B9A], done +(0009D4) S_BPREL32: [FFFFFFEC], Type: 0x147E, this +(0009E8) S_BPREL32: [00000008], Type: 0x14A2, p_param +(0009FC) S_BPREL32: [FFFFFFDC], Type: T_LONG(0012), result + +(000A10) S_END + +(000A14) S_GPROC32: [0001:00031BF0], Cb: 00000001, Type: 0x14A7, _Lockit::~_Lockit + Parent: 00000000, End: 00000A60, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000A50) S_REGISTER: ecx, Type: 0x14A6, this + +(000A60) S_END + +(000A64) S_GPROC32: [0001:00031C00], Cb: 000000C4, Type: 0x14AA, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::~_Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator::_Inc + Parent: 00000000, End: 00000CAC, Next: 00000000 + Debug start: 00000000, Debug end: 0000003B + +(000C8C) S_REGISTER: ecx, Type: 0x14AC, this +(000C9C) S_REGISTER: edx, Type: 0x147A, _P + +(000CAC) S_END + +(000CB0) S_GPROC32: [0001:00031D10], Cb: 00000448, Type: 0x14AF, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::erase + Parent: 00000000, End: 00000E0C, Next: 00000000 + Debug start: 00000011, Debug end: 0000043E + +(000D90) S_REGISTER: esi, Type: 0x14A9, this +(000DA0) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000DBC) S_BPREL32: [00000008], Type: 0x14C3, _P +(000DCC) S_REGISTER: ecx, Type: 0x147A, _Y +(000DDC) S_REGISTER: edx, Type: 0x147A, _X +(000DEC) S_REGISTER: edi, Type: 0x147A, _W +(000DFC) S_REGISTER: edi, Type: 0x147A, _W + +(000E0C) S_END + +(000E10) S_GPROC32: [0001:00032160], Cb: 00000039, Type: 0x14C4, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Erase + Parent: 00000000, End: 00000F24, Next: 00000000 + Debug start: 00000007, Debug end: 00000033 + +(000EF4) S_REGISTER: edi, Type: 0x14A9, this +(000F04) S_BPREL32: [00000004], Type: 0x147A, _X +(000F14) S_REGISTER: ebx, Type: 0x147A, _Y + +(000F24) S_END + +(000F28) S_GPROC32: [0001:000321A0], Cb: 00000049, Type: 0x14C7, set >::~set > + Parent: 00000000, End: 00001028, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000FEC) S_LABEL32: [0001:000321E1], $L57139 +(001000) S_LABEL32: [0001:000321D7], $L57138 +(001014) S_BPREL32: [FFFFFFF0], Type: 0x14C6, this + +(001028) S_END + +(00102C) S_GPROC32: [0001:000321F0], Cb: 00000009, Type: 0x14C8, MxVariableTable::Destroy + Parent: 00000000, End: 00001080, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(00106C) S_BPREL32: [00000004], Type: 0x1255, p_obj + +(001080) S_END + +(001084) S_GPROC32: [0001:00032200], Cb: 00000001, Type: 0x14CC, MxCollection::Destroy + Parent: 00000000, End: 000010E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0010D0) S_BPREL32: [00000004], Type: 0x1255, __formal + +(0010E8) S_END + +(0010EC) S_GPROC32: [0001:00032210], Cb: 0000004F, Type: 0x14CB, MxCollection::~MxCollection + Parent: 00000000, End: 00001188, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00114C) S_LABEL32: [0001:00032257], $L57151 +(001160) S_LABEL32: [0001:0003224D], $L57150 +(001174) S_BPREL32: [FFFFFFF0], Type: 0x14CA, this + +(001188) S_END + +(00118C) S_GPROC32: [0001:00032260], Cb: 00000005, Type: 0x14CD, MxCollection::Compare + Parent: 00000000, End: 00001218, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0011D8) S_REGISTER: ecx, Type: 0x14CA, this +(0011E8) S_BPREL32: [00000004], Type: 0x1255, __formal +(001200) S_BPREL32: [00000008], Type: 0x1255, __formal + +(001218) S_END + +(00121C) S_GPROC32: [0001:00032270], Cb: 00000005, Type: 0x14CE, MxHashTable::Hash + Parent: 00000000, End: 0000128C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001264) S_REGISTER: ecx, Type: 0x126D, this +(001274) S_BPREL32: [00000004], Type: 0x1255, __formal + +(00128C) S_END + +(001290) S_GPROC32: [0001:00032280], Cb: 00000061, Type: T_NOTYPE(0000), MxVariableTable::`scalar deleting destructor' + Parent: 00000000, End: 00001338, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0012E8) S_LABEL32: [0001:000322D9], $L57163 +(0012FC) S_LABEL32: [0001:000322CF], $L57161 +(001310) S_BPREL32: [FFFFFFF0], Type: 0x1253, this +(001324) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001338) S_END + +(00133C) S_GPROC32: [0001:000322F0], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 000013EC, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(00139C) S_LABEL32: [0001:0003234F], $L57172 +(0013B0) S_LABEL32: [0001:00032345], $L57170 +(0013C4) S_BPREL32: [FFFFFFF0], Type: 0x14CA, this +(0013D8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0013EC) S_END + +(0013F0) S_GPROC32: [0001:00032360], Cb: 000000DF, Type: T_NOTYPE(0000), MxHashTable::`scalar deleting destructor' + Parent: 00000000, End: 000014A0, Next: 00000000 + Debug start: 00000029, Debug end: 000000BD + Flags: Frame Ptr Present + +(001450) S_LABEL32: [0001:00032437], $L57181 +(001464) S_LABEL32: [0001:0003242D], $L57179 +(001478) S_BPREL32: [FFFFFFF0], Type: 0x126D, this +(00148C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0014A0) S_END + +(0014A4) S_GPROC32: [0001:00032440], Cb: 00000049, Type: 0x14D1, Set::~Set + Parent: 00000000, End: 00001568, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00152C) S_LABEL32: [0001:00032481], $L57335 +(001540) S_LABEL32: [0001:00032477], $L57334 +(001554) S_BPREL32: [FFFFFFF0], Type: 0x14D0, this + +(001568) S_END + +(00156C) S_GPROC32: [0001:00032490], Cb: 000001FD, Type: 0x149A, MxOmni::Destroy + Parent: 00000000, End: 00001644, Next: 00000000 + Debug start: 00000022, Debug end: 000001CA + Flags: Frame Ptr Present + +(0015A4) S_LABEL32: [0001:00032682], $L57367 +(0015B8) S_LABEL32: [0001:00032678], $L57366 +(0015CC) S_LABEL32: [0001:00032670], $L57435 +(0015E0) S_LABEL32: [0001:00032668], $L57428 +(0015F4) S_BPREL32: [FFFFFFF0], Type: 0x147E, this +(001608) S_BPREL32: [FFFFFF4C], Type: 0x3CF2, action +(00161C) S_BPREL32: [FFFFFFE8], Type: 0x14E5, begin +(001630) S_BPREL32: [FFFFFFDC], Type: 0x14B5, value + +(001644) S_END + +(001648) S_GPROC32: [0001:00032690], Cb: 00000024, Type: 0x14E6, MxOmni::Start + Parent: 00000000, End: 000016BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000021 + +(001680) S_REGISTER: ecx, Type: 0x147E, this +(001690) S_BPREL32: [00000004], Type: 0x109C, p_dsAction +(0016A8) S_REGISTER: eax, Type: T_LONG(0012), result + +(0016BC) S_END + +(0016C0) S_GPROC32: [0001:000326C0], Cb: 00000014, Type: 0x34B3, MxOmni::DeleteObject + Parent: 00000000, End: 00001724, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(0016FC) S_REGISTER: ecx, Type: 0x147E, this +(00170C) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(001724) S_END + +(001728) S_GPROC32: [0001:000326E0], Cb: 00000213, Type: 0x347C, MxOmni::CreatePresenter + Parent: 00000000, End: 0000189C, Next: 00000000 + Debug start: 00000028, Debug end: 000001B9 + Flags: Frame Ptr Present + +(001768) S_LABEL32: [0001:000328EB], $L57469 +(00177C) S_LABEL32: [0001:000328E1], $L57467 +(001790) S_LABEL32: [0001:000328D9], $L57479 +(0017A4) S_LABEL32: [0001:000328D1], $L57483 +(0017B8) S_LABEL32: [0001:000328C9], $L57497 +(0017CC) S_LABEL32: [0001:000328C1], $L57468 +(0017E0) S_LABEL32: [0001:000328B9], $L57540 +(0017F4) S_LABEL32: [0001:000328B1], $L57544 +(001808) S_LABEL32: [0001:000328A9], $L57558 +(00181C) S_REGISTER: esi, Type: 0x147E, this +(00182C) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(001848) S_BPREL32: [0000000C], Type: 0x108E, p_action +(001860) S_BPREL32: [FFFFFFF0], Type: 0x1243, object +(001874) S_REGISTER: ebx, Type: T_LONG(0012), result +(001888) S_REGISTER: edi, Type: 0x1243, sender + +(00189C) S_END + +(0018A0) S_GPROC32: [0001:00032900], Cb: 00000049, Type: 0x347F, MxStartActionNotificationParam::~MxStartActionNotificationParam + Parent: 00000000, End: 00001944, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001908) S_LABEL32: [0001:00032941], $L57667 +(00191C) S_LABEL32: [0001:00032937], $L57666 +(001930) S_BPREL32: [FFFFFFF0], Type: 0x347E, this + +(001944) S_END + +(001948) S_GPROC32: [0001:00032950], Cb: 00000049, Type: 0x3482, MxType4NotificationParam::~MxType4NotificationParam + Parent: 00000000, End: 000019E0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0019A4) S_LABEL32: [0001:00032991], $L57684 +(0019B8) S_LABEL32: [0001:00032987], $L57683 +(0019CC) S_BPREL32: [FFFFFFF0], Type: 0x3481, this + +(0019E0) S_END + +(0019E4) S_GPROC32: [0001:000329A0], Cb: 00000006, Type: 0x14E8, MxOmni::GetInstance + Parent: 00000000, End: 00001A20, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001A20) S_END + +(001A24) S_GPROC32: [0001:000329B0], Cb: 00000020, Type: 0x14E9, MxOmni::DestroyInstance + Parent: 00000000, End: 00001A64, Next: 00000000 + Debug start: 00000000, Debug end: 0000001F + +(001A64) S_END + +(001A68) S_GPROC32: [0001:000329D0], Cb: 00000003, Type: 0x34BB, MxOmni::FUN_100b06b0 + Parent: 00000000, End: 00001AD0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001AA4) S_BPREL32: [00000004], Type: 0x109C, p_action +(001ABC) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_name + +(001AD0) S_END + +(001AD4) S_GPROC32: [0001:000329E0], Cb: 00000087, Type: 0x14EA, MxOmni::Notify + Parent: 00000000, End: 00001B6C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000048 + Flags: Frame Ptr Present + +(001B0C) S_LABEL32: [0001:00032A5F], $L57703 +(001B20) S_LABEL32: [0001:00032A55], $L57702 +(001B34) S_REGISTER: esi, Type: 0x147E, this +(001B44) S_BPREL32: [00000008], Type: 0x10B7, p_param +(001B58) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(001B6C) S_END + +(001B70) S_GPROC32: [0001:00032A70], Cb: 0000007E, Type: 0x14EA, MxOmni::HandleActionEnd + Parent: 00000000, End: 00001C00, Next: 00000000 + Debug start: 00000007, Debug end: 00000079 + +(001BB0) S_REGISTER: ecx, Type: 0x147E, this +(001BC0) S_BPREL32: [00000004], Type: 0x10B7, p_param +(001BD4) S_REGISTER: eax, Type: 0x12DF, controller +(001BEC) S_REGISTER: edi, Type: 0x109C, action + +(001C00) S_END + +(001C04) S_GPROC32: [0001:00032AF0], Cb: 00000006, Type: 0x14EB, MxOmni::GetHD + Parent: 00000000, End: 00001C3C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001C3C) S_END + +(001C40) S_GPROC32: [0001:00032B00], Cb: 0000002B, Type: 0x14EC, MxOmni::SetHD + Parent: 00000000, End: 00001C8C, Next: 00000000 + Debug start: 00000009, Debug end: 00000028 + +(001C78) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_hd + +(001C8C) S_END + +(001C90) S_GPROC32: [0001:00032B30], Cb: 00000006, Type: 0x14EB, MxOmni::GetCD + Parent: 00000000, End: 00001CC8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001CC8) S_END + +(001CCC) S_GPROC32: [0001:00032B40], Cb: 0000002B, Type: 0x14EC, MxOmni::SetCD + Parent: 00000000, End: 00001D18, Next: 00000000 + Debug start: 00000009, Debug end: 00000028 + +(001D04) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_cd + +(001D18) S_END + +(001D1C) S_GPROC32: [0001:00032B70], Cb: 00000006, Type: 0x14ED, MxOmni::IsSound3D + Parent: 00000000, End: 00001D58, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001D58) S_END + +(001D5C) S_GPROC32: [0001:00032B80], Cb: 0000000A, Type: 0x14EE, MxOmni::SetSound3D + Parent: 00000000, End: 00001DB4, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(001D98) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_use3dSound + +(001DB4) S_END + +(001DB8) S_GPROC32: [0001:00032B90], Cb: 00000030, Type: 0x14EF, MxOmni::DoesEntityExist + Parent: 00000000, End: 00001E30, Next: 00000000 + Debug start: 00000005, Debug end: 0000002D + +(001DF8) S_REGISTER: esi, Type: 0x147E, this +(001E08) S_BPREL32: [00000004], Type: 0x108E, p_dsAction +(001E20) S_REGISTER: eax, Type: 0x14F1, Queue + +(001E30) S_END + +(001E34) S_GPROC32: [0001:00032BC0], Cb: 00000029, Type: 0x149A, MxOmni::StartTimer + Parent: 00000000, End: 00001E80, Next: 00000000 + Debug start: 00000001, Debug end: 00000027 + +(001E70) S_REGISTER: esi, Type: 0x147E, this + +(001E80) S_END + +(001E84) S_GPROC32: [0001:00032BF0], Cb: 00000029, Type: 0x149A, MxOmni::StopTimer + Parent: 00000000, End: 00001ED0, Next: 00000000 + Debug start: 00000001, Debug end: 00000027 + +(001EC0) S_REGISTER: esi, Type: 0x147E, this + +(001ED0) S_END + +(001ED4) S_GPROC32: [0001:00032C20], Cb: 000000C7, Type: 0x126E, MxHashTable::~MxHashTable + Parent: 00000000, End: 00001F70, Next: 00000000 + Debug start: 00000029, Debug end: 000000A5 + Flags: Frame Ptr Present + +(001F34) S_LABEL32: [0001:00032CDF], $L57755 +(001F48) S_LABEL32: [0001:00032CD5], $L57754 +(001F5C) S_BPREL32: [FFFFFFF0], Type: 0x126D, this + +(001F70) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxobjectfactory.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00030420], Cb: 000003DF, Type: 0x14F3, MxObjectFactory::MxObjectFactory + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 0000001F, Debug end: 000002DB + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000307F7], $L46928 +(0000E4) S_LABEL32: [0001:000307ED], $L46927 +(0000F8) S_LABEL32: [0001:000307E2], $L46929 +(00010C) S_LABEL32: [0001:000307D7], $L46930 +(000120) S_LABEL32: [0001:000307CC], $L46931 +(000134) S_LABEL32: [0001:000307C1], $L46932 +(000148) S_LABEL32: [0001:000307B6], $L46933 +(00015C) S_LABEL32: [0001:000307AB], $L46934 +(000170) S_LABEL32: [0001:000307A0], $L46935 +(000184) S_LABEL32: [0001:00030795], $L46936 +(000198) S_LABEL32: [0001:0003078A], $L46937 +(0001AC) S_LABEL32: [0001:0003077F], $L46938 +(0001C0) S_LABEL32: [0001:00030774], $L46939 +(0001D4) S_LABEL32: [0001:00030769], $L46940 +(0001E8) S_LABEL32: [0001:00030761], $L46941 +(0001FC) S_LABEL32: [0001:00030759], $L46942 +(000210) S_LABEL32: [0001:00030751], $L46943 +(000224) S_LABEL32: [0001:00030749], $L46944 +(000238) S_LABEL32: [0001:00030741], $L46945 +(00024C) S_LABEL32: [0001:00030739], $L46946 +(000260) S_LABEL32: [0001:00030731], $L46947 +(000274) S_LABEL32: [0001:00030729], $L46948 +(000288) S_LABEL32: [0001:00030721], $L46949 +(00029C) S_LABEL32: [0001:00030719], $L46950 +(0002B0) S_LABEL32: [0001:00030711], $L46951 +(0002C4) S_LABEL32: [0001:00030709], $L46952 +(0002D8) S_BPREL32: [FFFFFFF0], Type: 0x14F2, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:00030800], Cb: 0000015C, Type: T_NOTYPE(0000), MxObjectFactory::`scalar deleting destructor' + Parent: 00000000, End: 00000488, Next: 00000000 + Debug start: 00000020, Debug end: 000000B9 + Flags: Frame Ptr Present + +(000348) S_LABEL32: [0001:00030954], $L46994 +(00035C) S_LABEL32: [0001:0003094A], $L46992 +(000370) S_LABEL32: [0001:0003093F], $L46995 +(000384) S_LABEL32: [0001:00030934], $L46996 +(000398) S_LABEL32: [0001:00030929], $L46997 +(0003AC) S_LABEL32: [0001:0003091E], $L46998 +(0003C0) S_LABEL32: [0001:00030913], $L46999 +(0003D4) S_LABEL32: [0001:00030908], $L47000 +(0003E8) S_LABEL32: [0001:000308FD], $L47001 +(0003FC) S_LABEL32: [0001:000308F2], $L47002 +(000410) S_LABEL32: [0001:000308E7], $L47003 +(000424) S_LABEL32: [0001:000308DC], $L47004 +(000438) S_LABEL32: [0001:000308D1], $L47005 +(00044C) S_LABEL32: [0001:000308C6], $L47006 +(000460) S_BPREL32: [FFFFFFF0], Type: 0x14F2, this +(000474) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000488) S_END + +(00048C) S_GPROC32: [0001:00030960], Cb: 00000564, Type: 0x14F4, MxObjectFactory::Create + Parent: 00000000, End: 00000798, Next: 00000000 + Debug start: 00000027, Debug end: 000000BC + Flags: Frame Ptr Present + +(0004CC) S_LABEL32: [0001:00030EBC], $L47039 +(0004E0) S_LABEL32: [0001:00030EB2], $L47038 +(0004F4) S_LABEL32: [0001:00030EA5], $L47073 +(000508) S_LABEL32: [0001:00030E98], $L47089 +(00051C) S_LABEL32: [0001:00030E45], $L47070 +(000530) S_LABEL32: [0001:00030E01], $L47067 +(000544) S_LABEL32: [0001:00030DC0], $L47064 +(000558) S_LABEL32: [0001:00030D7F], $L47061 +(00056C) S_LABEL32: [0001:00030D3E], $L47058 +(000580) S_LABEL32: [0001:00030D31], $L47141 +(000594) S_LABEL32: [0001:00030D29], $L47143 +(0005A8) S_LABEL32: [0001:00030D21], $L47145 +(0005BC) S_LABEL32: [0001:00030D19], $L47147 +(0005D0) S_LABEL32: [0001:00030D11], $L47149 +(0005E4) S_LABEL32: [0001:00030D06], $L47150 +(0005F8) S_LABEL32: [0001:00030C63], $L47055 +(00060C) S_LABEL32: [0001:00030C56], $L47093 +(000620) S_LABEL32: [0001:00030C4E], $L47095 +(000634) S_LABEL32: [0001:00030C46], $L47097 +(000648) S_LABEL32: [0001:00030C3E], $L47099 +(00065C) S_LABEL32: [0001:00030C33], $L47100 +(000670) S_LABEL32: [0001:00030B9A], $L47052 +(000684) S_LABEL32: [0001:00030B56], $L47049 +(000698) S_LABEL32: [0001:00030B15], $L47046 +(0006AC) S_LABEL32: [0001:00030B08], $L47121 +(0006C0) S_LABEL32: [0001:00030B00], $L47123 +(0006D4) S_LABEL32: [0001:00030AF8], $L47125 +(0006E8) S_LABEL32: [0001:00030AED], $L47126 +(0006FC) S_LABEL32: [0001:00030A65], $L47043 +(000710) S_LABEL32: [0001:00030A2B], $L47040 +(000724) S_LABEL32: [0001:000309F8], $L47178 +(000738) S_LABEL32: [0001:000309ED], $L47179 +(00074C) S_REGISTER: esi, Type: 0x14F2, this +(00075C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_name +(000770) S_BPREL32: [FFFFFFE8], Type: 0x10AE, object +(000784) S_BPREL32: [FFFFFFEC], Type: 0x4E96, atom + +(000798) S_END + +(00079C) S_GPROC32: [0001:00030ED0], Cb: 00000006, Type: 0x1505, MxLoopingMIDIPresenter::ClassName + Parent: 00000000, End: 000007F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0007E8) S_REGISTER: ecx, Type: 0x1504, this + +(0007F8) S_END + +(0007FC) S_GPROC32: [0001:00030EE0], Cb: 00000172, Type: 0x1506, MxLoopingMIDIPresenter::IsA + Parent: 00000000, End: 00000864, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000840) S_REGISTER: ecx, Type: 0x1504, this +(000850) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000864) S_END + +(000868) S_GPROC32: [0001:00031060], Cb: 00000006, Type: 0x1509, MxStillPresenter::ClassName + Parent: 00000000, End: 000008BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0008AC) S_REGISTER: ecx, Type: 0x1508, this + +(0008BC) S_END + +(0008C0) S_GPROC32: [0001:00031070], Cb: 0000010A, Type: 0x150A, MxStillPresenter::IsA + Parent: 00000000, End: 00000924, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000900) S_REGISTER: ecx, Type: 0x1508, this +(000910) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000924) S_END + +(000928) S_GPROC32: [0001:00031180], Cb: 00000075, Type: T_NOTYPE(0000), MxStillPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000009D0, Next: 00000000 + Debug start: 00000021, Debug end: 00000056 + Flags: Frame Ptr Present + +(000980) S_LABEL32: [0001:000311ED], $L47538 +(000994) S_LABEL32: [0001:000311E3], $L47536 +(0009A8) S_BPREL32: [FFFFFFF0], Type: 0x139E, this +(0009BC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0009D0) S_END + +(0009D4) S_GPROC32: [0001:00031200], Cb: 00000061, Type: T_NOTYPE(0000), MxLoopingMIDIPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000A80, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000A30) S_LABEL32: [0001:00031259], $L47698 +(000A44) S_LABEL32: [0001:0003124F], $L47696 +(000A58) S_BPREL32: [FFFFFFF0], Type: 0x150B, this +(000A6C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000A80) S_END + +(000A84) S_GPROC32: [0001:00031270], Cb: 00000011, Type: 0x150C, MxObjectFactory::Destroy + Parent: 00000000, End: 00000AEC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(000AC4) S_REGISTER: ecx, Type: 0x14F2, this +(000AD4) S_BPREL32: [00000004], Type: 0x10AE, p_object + +(000AEC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxnotificationparam.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00030380], Cb: 00000092, Type: 0x150E, MxNotificationParam::Clone + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 0000001D, Debug end: 0000006B + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:00030405], $L802 +(0000E4) S_LABEL32: [0001:000303FB], $L801 +(0000F8) S_LABEL32: [0001:000303DA], $L806 +(00010C) S_REGISTER: edi, Type: 0x150D, this + +(00011C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxnotificationmanager.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:0002F700], Cb: 0000001B, Type: 0x1512, MxNotification::MxNotification + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 00000005, Debug end: 00000017 + +(0000D8) S_REGISTER: esi, Type: 0x1510, this +(0000E8) S_BPREL32: [00000004], Type: 0x10AE, p_target +(000100) S_BPREL32: [00000008], Type: 0x135A, p_param + +(000114) S_END + +(000118) S_GPROC32: [0001:0002F720], Cb: 0000000E, Type: 0x1513, MxNotification::~MxNotification + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000160) S_REGISTER: ecx, Type: 0x1510, this + +(000170) S_END + +(000174) S_GPROC32: [0001:0002F730], Cb: 000000C6, Type: 0x1515, MxNotificationManager::MxNotificationManager + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 00000021, Debug end: 00000077 + Flags: Frame Ptr Present + +(0001C8) S_LABEL32: [0001:0002F7EE], $L44864 +(0001DC) S_LABEL32: [0001:0002F7E4], $L44863 +(0001F0) S_LABEL32: [0001:0002F7D9], $L44865 +(000204) S_LABEL32: [0001:0002F7CE], $L44866 +(000218) S_LABEL32: [0001:0002F7C3], $L44868 +(00022C) S_LABEL32: [0001:0002F7B8], $L44871 +(000240) S_BPREL32: [FFFFFFEC], Type: 0x1514, this + +(000254) S_END + +(000258) S_GPROC32: [0001:0002F800], Cb: 00000064, Type: 0x1518, list >::~list > + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(0002DC) S_REGISTER: esi, Type: 0x1517, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:0002F870], Cb: 0000001E, Type: T_NOTYPE(0000), MxNotificationManager::`scalar deleting destructor' + Parent: 00000000, End: 00000370, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00034C) S_REGISTER: esi, Type: 0x1514, this +(00035C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000370) S_END + +(000374) S_GPROC32: [0001:0002F890], Cb: 00000049, Type: 0x151B, MxIdList::~MxIdList + Parent: 00000000, End: 000003EC, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0003B0) S_LABEL32: [0001:0002F8D1], $L45064 +(0003C4) S_LABEL32: [0001:0002F8C7], $L45063 +(0003D8) S_BPREL32: [FFFFFFF0], Type: 0x151A, this + +(0003EC) S_END + +(0003F0) S_GPROC32: [0001:0002F8E0], Cb: 00000049, Type: 0x151E, List::~List + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000440) S_LABEL32: [0001:0002F921], $L45072 +(000454) S_LABEL32: [0001:0002F917], $L45071 +(000468) S_BPREL32: [FFFFFFF0], Type: 0x151D, this + +(00047C) S_END + +(000480) S_GPROC32: [0001:0002F930], Cb: 000000EB, Type: 0x1515, MxNotificationManager::~MxNotificationManager + Parent: 00000000, End: 00000578, Next: 00000000 + Debug start: 00000021, Debug end: 000000A6 + Flags: Frame Ptr Present + +(0004D8) S_LABEL32: [0001:0002FA13], $L45082 +(0004EC) S_LABEL32: [0001:0002FA09], $L45081 +(000500) S_LABEL32: [0001:0002F9FE], $L45083 +(000514) S_LABEL32: [0001:0002F9F3], $L45084 +(000528) S_LABEL32: [0001:0002F9EB], $L45085 +(00053C) S_LABEL32: [0001:0002F9E3], $L45089 +(000550) S_BPREL32: [FFFFFFF0], Type: 0x1514, this +(000564) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(000578) S_END + +(00057C) S_GPROC32: [0001:0002FA20], Cb: 00000049, Type: 0x1521, List::~List + Parent: 00000000, End: 00000610, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0005D4) S_LABEL32: [0001:0002FA61], $L45102 +(0005E8) S_LABEL32: [0001:0002FA57], $L45101 +(0005FC) S_BPREL32: [FFFFFFF0], Type: 0x1520, this + +(000610) S_END + +(000614) S_GPROC32: [0001:0002FA70], Cb: 00000064, Type: 0x1524, list >::~list > + Parent: 00000000, End: 000006B8, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(0006A8) S_REGISTER: esi, Type: 0x1523, this + +(0006B8) S_END + +(0006BC) S_GPROC32: [0001:0002FAE0], Cb: 000000BB, Type: 0x1525, MxNotificationManager::Create + Parent: 00000000, End: 000007B0, Next: 00000000 + Debug start: 00000020, Debug end: 00000083 + Flags: Frame Ptr Present + +(000704) S_LABEL32: [0001:0002FB8E], $L45218 +(000718) S_LABEL32: [0001:0002FB84], $L45217 +(00072C) S_LABEL32: [0001:0002FB41], $L45222 +(000740) S_LABEL32: [0001:0002FB39], $L45225 +(000754) S_REGISTER: edi, Type: 0x1514, this +(000764) S_BPREL32: [00000008], Type: T_UINT4(0075), p_frequencyMS +(000780) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_createThread +(00079C) S_REGISTER: ebx, Type: T_LONG(0012), result + +(0007B0) S_END + +(0007B4) S_GPROC32: [0001:0002FBA0], Cb: 00000135, Type: 0x1526, MxNotificationManager::Send + Parent: 00000000, End: 00000894, Next: 00000000 + Debug start: 00000021, Debug end: 0000004A + Flags: Frame Ptr Present + +(0007F8) S_LABEL32: [0001:0002FCCD], $L45307 +(00080C) S_LABEL32: [0001:0002FCC3], $L45306 +(000820) S_LABEL32: [0001:0002FCB6], $L45308 +(000834) S_REGISTER: esi, Type: 0x1514, this +(000844) S_BPREL32: [00000008], Type: 0x10AE, p_listener +(00085C) S_BPREL32: [0000000C], Type: 0x135A, p_param +(000870) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock +(000884) S_BPREL32: [FFFFFFF0], Type: 0x153D, it + +(000894) S_END + +(000898) S_GPROC32: [0001:0002FCE0], Cb: 0000018F, Type: 0x153E, MxNotificationManager::Tickle + Parent: 00000000, End: 000009A0, Next: 00000000 + Debug start: 00000021, Debug end: 00000082 + Flags: Frame Ptr Present + +(0008E0) S_LABEL32: [0001:0002FE62], $L45469 +(0008F4) S_LABEL32: [0001:0002FE58], $L45468 +(000908) S_LABEL32: [0001:0002FE50], $L45472 +(00091C) S_LABEL32: [0001:0002FE48], $L45646 +(000930) S_LABEL32: [0001:0002FD42], $L45575 +(000944) S_LABEL32: [0001:0002FD3A], $L45578 +(000958) S_BPREL32: [FFFFFFEC], Type: 0x1514, this +(00096C) S_REGISTER: eax, Type: 0x14F1, temp1 +(00097C) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(000990) S_REGISTER: ebx, Type: 0x153F, notif + +(0009A0) S_END + +(0009A4) S_GPROC32: [0001:0002FE70], Cb: 00000257, Type: 0x1540, MxNotificationManager::FlushPending + Parent: 00000000, End: 00000AD8, Next: 00000000 + Debug start: 00000026, Debug end: 0000021B + Flags: Frame Ptr Present + +(0009F0) S_LABEL32: [0001:000300BF], $L45670 +(000A04) S_LABEL32: [0001:000300B5], $L45669 +(000A18) S_LABEL32: [0001:000300AD], $L45784 +(000A2C) S_LABEL32: [0001:000300A5], $L45787 +(000A40) S_LABEL32: [0001:0003009D], $L45671 +(000A54) S_REGISTER: esi, Type: 0x1514, this +(000A64) S_BPREL32: [00000008], Type: 0x10AE, p_listener +(000A7C) S_BPREL32: [FFFFFFEC], Type: 0x153F, notif +(000A90) S_BPREL32: [FFFFFFDC], Type: 0x1544, pending +(000AA4) S_BPREL32: [FFFFFFF0], Type: 0x155B, it +(000AB4) S_BPREL32: [FFFFFFD4], Type: 0x11DF, lock +(000AC8) S_BPREL32: [FFFFFFF0], Type: 0x155B, it + +(000AD8) S_END + +(000ADC) S_GPROC32: [0001:000300D0], Cb: 0000000E, Type: 0x155C, list >::begin + Parent: 00000000, End: 00000B6C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000B40) S_REGISTER: ecx, Type: 0x1523, this +(000B50) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt + +(000B6C) S_END + +(000B70) S_GPROC32: [0001:000300E0], Cb: 0000004E, Type: 0x155F, list >::insert + Parent: 00000000, End: 00000C20, Next: 00000000 + Debug start: 00000005, Debug end: 0000004B + +(000BD4) S_REGISTER: esi, Type: 0x1523, this +(000BE4) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000C00) S_BPREL32: [00000008], Type: 0x155B, _P +(000C10) S_BPREL32: [0000000C], Type: 0x155D, _X + +(000C20) S_END + +(000C24) S_GPROC32: [0001:00030130], Cb: 00000045, Type: 0x1561, list >::erase + Parent: 00000000, End: 00000CC4, Next: 00000000 + Debug start: 0000000B, Debug end: 0000003E + +(000C88) S_REGISTER: esi, Type: 0x1523, this +(000C98) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000CB4) S_BPREL32: [00000008], Type: 0x155B, _P + +(000CC4) S_END + +(000CC8) S_GPROC32: [0001:00030180], Cb: 00000026, Type: 0x1563, list >::_Buynode + Parent: 00000000, End: 00000D78, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(000D30) S_REGISTER: ecx, Type: 0x1523, this +(000D40) S_BPREL32: [00000004], Type: 0x1549, _Narg +(000D54) S_BPREL32: [00000008], Type: 0x1549, _Parg +(000D68) S_REGISTER: eax, Type: 0x1549, _S + +(000D78) S_END + +(000D7C) S_GPROC32: [0001:000301B0], Cb: 00000049, Type: 0x1542, MxNotificationPtrList::~MxNotificationPtrList + Parent: 00000000, End: 00000E10, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000DD4) S_LABEL32: [0001:000301F1], $L45998 +(000DE8) S_LABEL32: [0001:000301E7], $L45997 +(000DFC) S_BPREL32: [FFFFFFF0], Type: 0x1541, this + +(000E10) S_END + +(000E14) S_GPROC32: [0001:00030200], Cb: 000000C2, Type: 0x1540, MxNotificationManager::Register + Parent: 00000000, End: 00000ED0, Next: 00000000 + Debug start: 00000021, Debug end: 00000067 + Flags: Frame Ptr Present + +(000E5C) S_LABEL32: [0001:000302BA], $L46010 +(000E70) S_LABEL32: [0001:000302B0], $L46009 +(000E84) S_REGISTER: esi, Type: 0x1514, this +(000E94) S_BPREL32: [00000008], Type: 0x10AE, p_listener +(000EAC) S_BPREL32: [FFFFFFF0], Type: 0x153D, it +(000EBC) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock + +(000ED0) S_END + +(000ED4) S_GPROC32: [0001:000302D0], Cb: 000000AE, Type: 0x1540, MxNotificationManager::Unregister + Parent: 00000000, End: 00000F94, Next: 00000000 + Debug start: 0000001D, Debug end: 0000008B + Flags: Frame Ptr Present + +(000F20) S_LABEL32: [0001:00030376], $L46169 +(000F34) S_LABEL32: [0001:0003036C], $L46168 +(000F48) S_REGISTER: esi, Type: 0x1514, this +(000F58) S_BPREL32: [00000008], Type: 0x10AE, p_listener +(000F70) S_BPREL32: [FFFFFFF0], Type: 0x153D, it +(000F80) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock + +(000F94) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxmusicpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002F3E0], Cb: 000000D2, Type: 0x1566, MxMusicPresenter::MxMusicPresenter + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 0000001D, Debug end: 0000008D + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0002F4AA], $L42362 +(0000E8) S_LABEL32: [0001:0002F4A0], $L42361 +(0000FC) S_LABEL32: [0001:0002F498], $L42364 +(000110) S_LABEL32: [0001:0002F490], $L42366 +(000124) S_LABEL32: [0001:0002F488], $L42368 +(000138) S_LABEL32: [0001:0002F47D], $L42369 +(00014C) S_BPREL32: [FFFFFFF0], Type: 0x1565, this + +(000160) S_END + +(000164) S_GPROC32: [0001:0002F4C0], Cb: 00000006, Type: 0x1569, MxMusicPresenter::ClassName + Parent: 00000000, End: 000001B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001A8) S_REGISTER: ecx, Type: 0x1568, this + +(0001B8) S_END + +(0001BC) S_GPROC32: [0001:0002F4D0], Cb: 0000010A, Type: 0x156A, MxMusicPresenter::IsA + Parent: 00000000, End: 00000220, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001FC) S_REGISTER: ecx, Type: 0x1568, this +(00020C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000220) S_END + +(000224) S_GPROC32: [0001:0002F5E0], Cb: 0000001E, Type: T_NOTYPE(0000), MxMusicPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00027C) S_REGISTER: esi, Type: 0x1565, this +(00028C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:0002F600], Cb: 0000005D, Type: 0x1566, MxMusicPresenter::~MxMusicPresenter + Parent: 00000000, End: 0000032C, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0002F0) S_LABEL32: [0001:0002F655], $L42578 +(000304) S_LABEL32: [0001:0002F64B], $L42577 +(000318) S_BPREL32: [FFFFFFF0], Type: 0x1565, this + +(00032C) S_END + +(000330) S_GPROC32: [0001:0002F660], Cb: 00000001, Type: 0x1566, MxMusicPresenter::Init + Parent: 00000000, End: 00000380, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000370) S_REGISTER: ecx, Type: 0x1565, this + +(000380) S_END + +(000384) S_GPROC32: [0001:0002F670], Cb: 00000047, Type: 0x156B, MxMusicPresenter::Destroy + Parent: 00000000, End: 000003F8, Next: 00000000 + Debug start: 00000002, Debug end: 00000042 + +(0003C8) S_REGISTER: edi, Type: 0x1565, this +(0003D8) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0003F8) S_END + +(0003FC) S_GPROC32: [0001:0002F6C0], Cb: 00000026, Type: 0x156C, MxMusicPresenter::AddToManager + Parent: 00000000, End: 00000468, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(000444) S_REGISTER: esi, Type: 0x1565, this +(000454) S_REGISTER: edi, Type: T_LONG(0012), result + +(000468) S_END + +(00046C) S_GPROC32: [0001:0002F6F0], Cb: 00000008, Type: 0x1566, MxMusicPresenter::Destroy + Parent: 00000000, End: 000004C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0004B0) S_REGISTER: ecx, Type: 0x1565, this + +(0004C0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxmusicmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002F030], Cb: 00000064, Type: 0x156E, MxMusicManager::MxMusicManager + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002F08C], $L42974 +(0000E4) S_LABEL32: [0001:0002F082], $L42973 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x156D, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:0002F0A0], Cb: 0000001E, Type: T_NOTYPE(0000), MxMusicManager::`scalar deleting destructor' + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000164) S_REGISTER: esi, Type: 0x156D, this +(000174) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000188) S_END + +(00018C) S_GPROC32: [0001:0002F0C0], Cb: 0000005D, Type: 0x156E, MxMusicManager::~MxMusicManager + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0001D4) S_LABEL32: [0001:0002F115], $L42996 +(0001E8) S_LABEL32: [0001:0002F10B], $L42995 +(0001FC) S_BPREL32: [FFFFFFF0], Type: 0x156D, this + +(000210) S_END + +(000214) S_GPROC32: [0001:0002F120], Cb: 0000000C, Type: 0x156E, MxMusicManager::Init + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000000, Debug end: 0000000C + +(000250) S_REGISTER: ecx, Type: 0x156D, this + +(000260) S_END + +(000264) S_GPROC32: [0001:0002F130], Cb: 0000001B, Type: 0x156E, MxMusicManager::InitData + Parent: 00000000, End: 000002B4, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(0002A4) S_REGISTER: ecx, Type: 0x156D, this + +(0002B4) S_END + +(0002B8) S_GPROC32: [0001:0002F150], Cb: 0000005F, Type: 0x156F, MxMusicManager::Destroy + Parent: 00000000, End: 00000328, Next: 00000000 + Debug start: 00000002, Debug end: 0000005A + +(0002F8) S_REGISTER: edi, Type: 0x156D, this +(000308) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000328) S_END + +(00032C) S_GPROC32: [0001:0002F1B0], Cb: 00000027, Type: 0x156E, MxMusicManager::SetMIDIVolume + Parent: 00000000, End: 000003B0, Next: 00000000 + Debug start: 00000004, Debug end: 00000025 + +(000374) S_REGISTER: ecx, Type: 0x156D, this +(000384) S_REGISTER: esi, Type: T_32PVOID(0403), streamHandle +(00039C) S_REGISTER: eax, Type: T_INT4(0074), result + +(0003B0) S_END + +(0003B4) S_GPROC32: [0001:0002F1E0], Cb: 000000E2, Type: 0x1570, MxMusicManager::Create + Parent: 00000000, End: 0000049C, Next: 00000000 + Debug start: 00000020, Debug end: 000000D2 + Flags: Frame Ptr Present + +(0003F4) S_LABEL32: [0001:0002F276], $L43017 +(000408) S_LABEL32: [0001:0002F26C], $L43016 +(00041C) S_LABEL32: [0001:0002F296], done +(00042C) S_REGISTER: esi, Type: 0x156D, this +(00043C) S_BPREL32: [00000008], Type: T_UINT4(0075), p_frequencyMS +(000458) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_createThread +(000474) S_REGISTER: edi, Type: T_LONG(0012), status +(000488) S_REGISTER: bl, Type: T_UCHAR(0020), locked + +(00049C) S_END + +(0004A0) S_GPROC32: [0001:0002F2D0], Cb: 00000008, Type: 0x156E, MxMusicManager::Destroy + Parent: 00000000, End: 000004F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0004E0) S_REGISTER: ecx, Type: 0x156D, this + +(0004F0) S_END + +(0004F4) S_GPROC32: [0001:0002F2E0], Cb: 0000002B, Type: 0x1571, MxMusicManager::SetVolume + Parent: 00000000, End: 00000560, Next: 00000000 + Debug start: 00000006, Debug end: 00000026 + +(000538) S_REGISTER: edi, Type: 0x156D, this +(000548) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume + +(000560) S_END + +(000564) S_GPROC32: [0001:0002F310], Cb: 00000028, Type: 0x1571, MxMusicManager::SetMultiplier + Parent: 00000000, End: 000005D8, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(0005AC) S_REGISTER: esi, Type: 0x156D, this +(0005BC) S_BPREL32: [00000004], Type: T_INT4(0074), p_multiplier + +(0005D8) S_END + +(0005DC) S_GPROC32: [0001:0002F340], Cb: 0000001D, Type: 0x1572, MxMusicManager::CalculateVolume + Parent: 00000000, End: 00000660, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(000624) S_REGISTER: ecx, Type: 0x156D, this +(000634) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume +(00064C) S_REGISTER: ecx, Type: T_INT4(0074), result + +(000660) S_END + +(000664) S_GPROC32: [0001:0002F360], Cb: 00000005, Type: 0x1574, MxMusicManager::FUN_100c09c0 + Parent: 00000000, End: 000006E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0006A8) S_REGISTER: ecx, Type: 0x156D, this +(0006B8) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_data +(0006CC) S_BPREL32: [00000008], Type: T_INT4(0074), p_loopCount + +(0006E4) S_END + +(0006E8) S_GPROC32: [0001:0002F370], Cb: 00000067, Type: 0x156E, MxMusicManager::DeinitializeMIDI + Parent: 00000000, End: 00000740, Next: 00000000 + Debug start: 00000002, Debug end: 00000064 + +(000730) S_REGISTER: edi, Type: 0x156D, this + +(000740) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxmidipresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002EB90], Cb: 00000064, Type: 0x1577, MxMIDIPresenter::MxMIDIPresenter + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002EBEC], $L42748 +(0000E4) S_LABEL32: [0001:0002EBE2], $L42747 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x1576, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:0002EC00], Cb: 00000006, Type: 0x157A, MxMIDIPresenter::ClassName + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000154) S_REGISTER: ecx, Type: 0x1579, this + +(000164) S_END + +(000168) S_GPROC32: [0001:0002EC10], Cb: 0000013E, Type: 0x157B, MxMIDIPresenter::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(0001A4) S_REGISTER: ecx, Type: 0x1579, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:0002ED50], Cb: 0000001E, Type: T_NOTYPE(0000), MxMIDIPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000248, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000224) S_REGISTER: esi, Type: 0x1576, this +(000234) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000248) S_END + +(00024C) S_GPROC32: [0001:0002ED70], Cb: 0000005D, Type: 0x1577, MxMIDIPresenter::~MxMIDIPresenter + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000298) S_LABEL32: [0001:0002EDC5], $L42844 +(0002AC) S_LABEL32: [0001:0002EDBB], $L42843 +(0002C0) S_BPREL32: [FFFFFFF0], Type: 0x1576, this + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:0002EDD0], Cb: 00000008, Type: 0x1577, MxMIDIPresenter::Init + Parent: 00000000, End: 00000328, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000318) S_REGISTER: ecx, Type: 0x1576, this + +(000328) S_END + +(00032C) S_GPROC32: [0001:0002EDE0], Cb: 00000058, Type: 0x157C, MxMIDIPresenter::Destroy + Parent: 00000000, End: 0000039C, Next: 00000000 + Debug start: 00000002, Debug end: 00000053 + +(00036C) S_REGISTER: edi, Type: 0x1576, this +(00037C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(00039C) S_END + +(0003A0) S_GPROC32: [0001:0002EE40], Cb: 00000032, Type: 0x1577, MxMIDIPresenter::ReadyTickle + Parent: 00000000, End: 00000404, Next: 00000000 + Debug start: 00000001, Debug end: 00000030 + +(0003E4) S_REGISTER: esi, Type: 0x1576, this +(0003F4) S_REGISTER: eax, Type: 0x11CE, chunk + +(000404) S_END + +(000408) S_GPROC32: [0001:0002EE80], Cb: 00000033, Type: 0x1577, MxMIDIPresenter::StartingTickle + Parent: 00000000, End: 00000470, Next: 00000000 + Debug start: 00000002, Debug end: 00000030 + +(000450) S_REGISTER: edi, Type: 0x1576, this +(000460) S_REGISTER: esi, Type: 0x11CE, chunk + +(000470) S_END + +(000474) S_GPROC32: [0001:0002EEC0], Cb: 0000002B, Type: 0x1577, MxMIDIPresenter::StreamingTickle + Parent: 00000000, End: 000004CC, Next: 00000000 + Debug start: 00000001, Debug end: 00000029 + +(0004BC) S_REGISTER: esi, Type: 0x1576, this + +(0004CC) S_END + +(0004D0) S_GPROC32: [0001:0002EEF0], Cb: 00000017, Type: 0x1577, MxMIDIPresenter::DoneTickle + Parent: 00000000, End: 00000524, Next: 00000000 + Debug start: 00000001, Debug end: 00000015 + +(000514) S_REGISTER: esi, Type: 0x1576, this + +(000524) S_END + +(000528) S_GPROC32: [0001:0002EF10], Cb: 00000008, Type: 0x1577, MxMIDIPresenter::Destroy + Parent: 00000000, End: 00000578, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000568) S_REGISTER: ecx, Type: 0x1576, this + +(000578) S_END + +(00057C) S_GPROC32: [0001:0002EF20], Cb: 00000062, Type: 0x157D, MxMIDIPresenter::PutData + Parent: 00000000, End: 000005CC, Next: 00000000 + Debug start: 00000005, Debug end: 0000005F + +(0005BC) S_REGISTER: ebx, Type: 0x1576, this + +(0005CC) S_END + +(0005D0) S_GPROC32: [0001:0002EF90], Cb: 00000076, Type: 0x1577, MxMIDIPresenter::EndAction + Parent: 00000000, End: 00000660, Next: 00000000 + Debug start: 0000001C, Debug end: 00000056 + Flags: Frame Ptr Present + +(000614) S_LABEL32: [0001:0002EFFC], $L42873 +(000628) S_LABEL32: [0001:0002EFF4], $L42874 +(00063C) S_REGISTER: esi, Type: 0x1576, this +(00064C) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000660) S_END + +(000664) S_GPROC32: [0001:0002F010], Cb: 00000017, Type: 0x157E, MxMIDIPresenter::SetVolume + Parent: 00000000, End: 000006D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(0006A8) S_REGISTER: ecx, Type: 0x1576, this +(0006B8) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume + +(0006D0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxmediapresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002E210], Cb: 0000005D, Type: 0x1581, MxMediaPresenter::~MxMediaPresenter + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0002E265], $L45486 +(0000E8) S_LABEL32: [0001:0002E25B], $L45485 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x1580, this + +(000110) S_END + +(000114) S_GPROC32: [0001:0002E270], Cb: 00000008, Type: 0x1581, MxMediaPresenter::Destroy + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000158) S_REGISTER: ecx, Type: 0x1580, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:0002E280], Cb: 0000000F, Type: 0x1581, MxMediaPresenter::Init + Parent: 00000000, End: 000001BC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(0001AC) S_REGISTER: ecx, Type: 0x1580, this + +(0001BC) S_END + +(0001C0) S_GPROC32: [0001:0002E290], Cb: 00000151, Type: 0x1582, MxMediaPresenter::Destroy + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000026, Debug end: 00000116 + Flags: Frame Ptr Present + +(000204) S_LABEL32: [0001:0002E3D9], $L45540 +(000218) S_LABEL32: [0001:0002E3CF], $L45539 +(00022C) S_LABEL32: [0001:0002E3C7], $L45545 +(000240) S_LABEL32: [0001:0002E3BF], $L45554 +(000254) S_LABEL32: [0001:0002E3B7], $L45556 +(000268) S_BPREL32: [FFFFFFF0], Type: 0x1580, this +(00027C) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_fromDestructor +(00029C) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock +(0002B0) S_BPREL32: [FFFFFFD8], Type: 0x11CE, chunk +(0002C4) S_BPREL32: [FFFFFFE0], Type: 0x2CFF, cursor + +(0002D8) S_END + +(0002DC) S_GPROC32: [0001:0002E3F0], Cb: 00000051, Type: 0x158E, MxMediaPresenter::FUN_100b5650 + Parent: 00000000, End: 00000348, Next: 00000000 + Debug start: 00000002, Debug end: 0000004E + +(000324) S_REGISTER: esi, Type: 0x1580, this +(000334) S_REGISTER: edi, Type: 0x11CE, result + +(000348) S_END + +(00034C) S_GPROC32: [0001:0002E450], Cb: 00000043, Type: 0x158E, MxMediaPresenter::NextChunk + Parent: 00000000, End: 000003B4, Next: 00000000 + Debug start: 00000003, Debug end: 00000041 + +(000390) S_REGISTER: edi, Type: 0x1580, this +(0003A0) S_REGISTER: eax, Type: 0x11CE, result + +(0003B4) S_END + +(0003B8) S_GPROC32: [0001:0002E4A0], Cb: 000001FD, Type: 0x158F, MxMediaPresenter::StartAction + Parent: 00000000, End: 00000544, Next: 00000000 + Debug start: 00000027, Debug end: 000001DB + Flags: Frame Ptr Present + +(000400) S_LABEL32: [0001:0002E695], $L45644 +(000414) S_LABEL32: [0001:0002E68B], $L45643 +(000428) S_LABEL32: [0001:0002E655], $L45651 +(00043C) S_LABEL32: [0001:0002E5F4], $L45645 +(000450) S_LABEL32: [0001:0002E5E7], $L45648 +(000464) S_LABEL32: [0001:0002E5C7], $L45658 +(000478) S_LABEL32: [0001:0002E5BF], $L45660 +(00048C) S_LABEL32: [0001:0002E567], $L45669 +(0004A0) S_LABEL32: [0001:0002E55F], $L45671 +(0004B4) S_LABEL32: [0001:0002E557], $L45673 +(0004C8) S_LABEL32: [0001:0002E669], done +(0004D8) S_REGISTER: edi, Type: 0x1580, this +(0004E8) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(000504) S_BPREL32: [0000000C], Type: 0x109C, p_action +(00051C) S_BPREL32: [FFFFFFE8], Type: T_LONG(0012), result +(000530) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock + +(000544) S_END + +(000548) S_GPROC32: [0001:0002E6A0], Cb: 0000014A, Type: 0x1581, MxMediaPresenter::EndAction + Parent: 00000000, End: 0000063C, Next: 00000000 + Debug start: 00000021, Debug end: 00000046 + Flags: Frame Ptr Present + +(00058C) S_LABEL32: [0001:0002E7E2], $L45772 +(0005A0) S_LABEL32: [0001:0002E7D8], $L45771 +(0005B4) S_LABEL32: [0001:0002E7D0], $L45775 +(0005C8) S_LABEL32: [0001:0002E7C8], $L45780 +(0005DC) S_LABEL32: [0001:0002E7C0], $L45784 +(0005F0) S_LABEL32: [0001:0002E7B8], $L45798 +(000604) S_REGISTER: esi, Type: 0x1580, this +(000614) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock +(000628) S_REGISTER: edi, Type: 0x109C, action + +(00063C) S_END + +(000640) S_GPROC32: [0001:0002E7F0], Cb: 00000072, Type: 0x1598, MxMediaPresenter::Tickle + Parent: 00000000, End: 000006CC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000054 + Flags: Frame Ptr Present + +(000680) S_LABEL32: [0001:0002E858], $L45914 +(000694) S_LABEL32: [0001:0002E850], $L45915 +(0006A8) S_REGISTER: esi, Type: 0x1580, this +(0006B8) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(0006CC) S_END + +(0006D0) S_GPROC32: [0001:0002E870], Cb: 00000072, Type: 0x1581, MxMediaPresenter::StreamingTickle + Parent: 00000000, End: 0000072C, Next: 00000000 + Debug start: 00000001, Debug end: 00000070 + +(00071C) S_REGISTER: esi, Type: 0x1580, this + +(00072C) S_END + +(000730) S_GPROC32: [0001:0002E8F0], Cb: 000000DB, Type: 0x1581, MxMediaPresenter::RepeatingTickle + Parent: 00000000, End: 0000079C, Next: 00000000 + Debug start: 00000006, Debug end: 000000D6 + +(00077C) S_REGISTER: esi, Type: 0x1580, this +(00078C) S_REGISTER: ebx, Type: T_LONG(0012), time + +(00079C) S_END + +(0007A0) S_GPROC32: [0001:0002E9D0], Cb: 0000001D, Type: 0x1581, MxMediaPresenter::DoneTickle + Parent: 00000000, End: 000007F4, Next: 00000000 + Debug start: 00000000, Debug end: 0000001D + +(0007E4) S_REGISTER: edx, Type: 0x1580, this + +(0007F4) S_END + +(0007F8) S_GPROC32: [0001:0002E9F0], Cb: 00000117, Type: 0x1599, MxMediaPresenter::AppendChunk + Parent: 00000000, End: 000008CC, Next: 00000000 + Debug start: 00000021, Debug end: 000000E5 + Flags: Frame Ptr Present + +(000840) S_LABEL32: [0001:0002EAFA], $L45953 +(000854) S_LABEL32: [0001:0002EAF0], $L45952 +(000868) S_LABEL32: [0001:0002EAE3], $L45968 +(00087C) S_LABEL32: [0001:0002EA44], $L46002 +(000890) S_BPREL32: [FFFFFFEC], Type: 0x1580, this +(0008A4) S_BPREL32: [00000008], Type: 0x11CE, p_chunk +(0008B8) S_REGISTER: eax, Type: T_UINT4(0075), length + +(0008CC) S_END + +(0008D0) S_GPROC32: [0001:0002EB10], Cb: 00000073, Type: 0x1582, MxMediaPresenter::Enable + Parent: 00000000, End: 00000948, Next: 00000000 + Debug start: 00000002, Debug end: 0000006E + +(000910) S_REGISTER: esi, Type: 0x1580, this +(000920) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable +(000938) S_REGISTER: edx, Type: T_LONG(0012), time + +(000948) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxmediamanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002DB20], Cb: 0000007B, Type: 0x15A2, MxMediaManager::MxMediaManager + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 00000052 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002DB93], $L42956 +(0000E4) S_LABEL32: [0001:0002DB89], $L42955 +(0000F8) S_LABEL32: [0001:0002DB7E], $L42957 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x15A1, this + +(000120) S_END + +(000124) S_GPROC32: [0001:0002DBA0], Cb: 0000001E, Type: T_NOTYPE(0000), MxMediaManager::`scalar deleting destructor' + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000178) S_REGISTER: esi, Type: 0x15A1, this +(000188) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:0002DBC0], Cb: 0000006F, Type: 0x15A2, MxMediaManager::~MxMediaManager + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(0001E8) S_LABEL32: [0001:0002DC27], $L42979 +(0001FC) S_LABEL32: [0001:0002DC1D], $L42978 +(000210) S_LABEL32: [0001:0002DC12], $L42980 +(000224) S_BPREL32: [FFFFFFF0], Type: 0x15A1, this + +(000238) S_END + +(00023C) S_GPROC32: [0001:0002DC30], Cb: 00000009, Type: 0x15A3, MxMediaManager::Init + Parent: 00000000, End: 00000288, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000278) S_REGISTER: ecx, Type: 0x15A1, this + +(000288) S_END + +(00028C) S_GPROC32: [0001:0002DC40], Cb: 0000012C, Type: 0x15A3, MxMediaManager::InitPresenters + Parent: 00000000, End: 00000384, Next: 00000000 + Debug start: 00000021, Debug end: 000000EC + Flags: Frame Ptr Present + +(0002D4) S_LABEL32: [0001:0002DD64], $L42993 +(0002E8) S_LABEL32: [0001:0002DD5A], $L42992 +(0002FC) S_LABEL32: [0001:0002DD4D], $L42994 +(000310) S_LABEL32: [0001:0002DCFF], $L42998 +(000324) S_LABEL32: [0001:0002DCF7], $L43000 +(000338) S_LABEL32: [0001:0002DCEF], $L43005 +(00034C) S_LABEL32: [0001:0002DCE7], $L43007 +(000360) S_REGISTER: esi, Type: 0x15A1, this +(000370) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(000384) S_END + +(000388) S_GPROC32: [0001:0002DD70], Cb: 00000071, Type: 0x15A2, MxMediaManager::Destroy + Parent: 00000000, End: 00000414, Next: 00000000 + Debug start: 0000001C, Debug end: 00000051 + Flags: Frame Ptr Present + +(0003C8) S_LABEL32: [0001:0002DDD9], $L43127 +(0003DC) S_LABEL32: [0001:0002DDCF], $L43126 +(0003F0) S_REGISTER: esi, Type: 0x15A1, this +(000400) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000414) S_END + +(000418) S_GPROC32: [0001:0002DDF0], Cb: 0000012C, Type: 0x15A3, MxMediaManager::Tickle + Parent: 00000000, End: 00000520, Next: 00000000 + Debug start: 0000001D, Debug end: 000000ED + Flags: Frame Ptr Present + +(000458) S_LABEL32: [0001:0002DF14], $L43137 +(00046C) S_LABEL32: [0001:0002DF0A], $L43136 +(000480) S_LABEL32: [0001:0002DF02], $L43138 +(000494) S_LABEL32: [0001:0002DEFA], $L43141 +(0004A8) S_LABEL32: [0001:0002DEF2], $L43143 +(0004BC) S_LABEL32: [0001:0002DEEA], $L43145 +(0004D0) S_REGISTER: esi, Type: 0x15A1, this +(0004E0) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(0004F8) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(00050C) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(000520) S_END + +(000524) S_GPROC32: [0001:0002DF20], Cb: 000000B9, Type: 0x15AB, MxMediaManager::AddPresenter + Parent: 00000000, End: 000005E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000088 + Flags: Frame Ptr Present + +(000568) S_LABEL32: [0001:0002DFD1], $L43235 +(00057C) S_LABEL32: [0001:0002DFC7], $L43234 +(000590) S_LABEL32: [0001:0002DFBA], $L43238 +(0005A4) S_REGISTER: esi, Type: 0x15A1, this +(0005B4) S_BPREL32: [00000008], Type: 0x15A9, p_presenter +(0005CC) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(0005E0) S_END + +(0005E4) S_GPROC32: [0001:0002DFE0], Cb: 0000013B, Type: 0x15AB, MxMediaManager::RemovePresenter + Parent: 00000000, End: 000006F4, Next: 00000000 + Debug start: 00000021, Debug end: 000000F7 + Flags: Frame Ptr Present + +(00062C) S_LABEL32: [0001:0002E113], $L43277 +(000640) S_LABEL32: [0001:0002E109], $L43276 +(000654) S_LABEL32: [0001:0002E101], $L43278 +(000668) S_LABEL32: [0001:0002E0F9], $L43331 +(00067C) S_LABEL32: [0001:0002E0F1], $L43333 +(000690) S_LABEL32: [0001:0002E0E9], $L43335 +(0006A4) S_REGISTER: esi, Type: 0x15A1, this +(0006B4) S_BPREL32: [00000008], Type: 0x15A9, p_presenter +(0006CC) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(0006E0) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock + +(0006F4) S_END + +(0006F8) S_GPROC32: [0001:0002E120], Cb: 000000F0, Type: 0x15A2, MxMediaManager::StopPresenters + Parent: 00000000, End: 00000808, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AF + Flags: Frame Ptr Present + +(000740) S_LABEL32: [0001:0002E208], $L43365 +(000754) S_LABEL32: [0001:0002E1FE], $L43364 +(000768) S_LABEL32: [0001:0002E1F6], $L43366 +(00077C) S_LABEL32: [0001:0002E1EE], $L43368 +(000790) S_LABEL32: [0001:0002E1E6], $L43370 +(0007A4) S_LABEL32: [0001:0002E1DE], $L43372 +(0007B8) S_REGISTER: esi, Type: 0x15A1, this +(0007C8) S_BPREL32: [FFFFFFE0], Type: 0x1243, presenter +(0007E0) S_BPREL32: [FFFFFFE4], Type: 0x2CE4, cursor +(0007F4) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock + +(000808) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxloopingsmkpresenter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:0002D520], Cb: 00000064, Type: 0x15AE, MxLoopingSmkPresenter::MxLoopingSmkPresenter + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000E4) S_LABEL32: [0001:0002D57C], $L43763 +(0000F8) S_LABEL32: [0001:0002D572], $L43762 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x15AD, this + +(000120) S_END + +(000124) S_GPROC32: [0001:0002D590], Cb: 0000010A, Type: 0x15AF, MxSmkPresenter::IsA + Parent: 00000000, End: 00000184, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000160) S_REGISTER: ecx, Type: 0x13BB, this +(000170) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000184) S_END + +(000188) S_GPROC32: [0001:0002D6A0], Cb: 00000006, Type: 0x15B2, MxLoopingSmkPresenter::ClassName + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001D0) S_REGISTER: ecx, Type: 0x15B1, this + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:0002D6B0], Cb: 0000001E, Type: T_NOTYPE(0000), MxLoopingSmkPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000240) S_REGISTER: esi, Type: 0x15AD, this +(000250) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000264) S_END + +(000268) S_GPROC32: [0001:0002D6D0], Cb: 0000005D, Type: 0x15AE, MxLoopingSmkPresenter::~MxLoopingSmkPresenter + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0002C0) S_LABEL32: [0001:0002D725], $L43840 +(0002D4) S_LABEL32: [0001:0002D71B], $L43839 +(0002E8) S_BPREL32: [FFFFFFF0], Type: 0x15AD, this + +(0002FC) S_END + +(000300) S_GPROC32: [0001:0002D730], Cb: 00000018, Type: 0x15AE, MxLoopingSmkPresenter::Init + Parent: 00000000, End: 00000354, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(000344) S_REGISTER: ecx, Type: 0x15AD, this + +(000354) S_END + +(000358) S_GPROC32: [0001:0002D750], Cb: 0000002F, Type: 0x15B3, MxLoopingSmkPresenter::Destroy + Parent: 00000000, End: 000003D0, Next: 00000000 + Debug start: 00000002, Debug end: 0000002A + +(0003A0) S_REGISTER: edi, Type: 0x15AD, this +(0003B0) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0003D0) S_END + +(0003D4) S_GPROC32: [0001:0002D780], Cb: 00000027, Type: 0x15AE, MxLoopingSmkPresenter::VTable0x88 + Parent: 00000000, End: 00000430, Next: 00000000 + Debug start: 00000007, Debug end: 00000025 + +(000420) S_REGISTER: ecx, Type: 0x15AD, this + +(000430) S_END + +(000434) S_GPROC32: [0001:0002D7B0], Cb: 00000058, Type: 0x15AE, MxLoopingSmkPresenter::NextFrame + Parent: 00000000, End: 0000049C, Next: 00000000 + Debug start: 00000005, Debug end: 00000054 + +(00047C) S_REGISTER: esi, Type: 0x15AD, this +(00048C) S_REGISTER: edi, Type: 0x11CE, chunk + +(00049C) S_END + +(0004A0) S_GPROC32: [0001:0002D810], Cb: 00000065, Type: 0x15AE, MxLoopingSmkPresenter::VTable0x8c + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 00000004, Debug end: 00000060 + +(0004EC) S_REGISTER: esi, Type: 0x15AD, this +(0004FC) S_BPREL32: [FFFFFFFC], Type: 0x11CE, chunk + +(000510) S_END + +(000514) S_GPROC32: [0001:0002D880], Cb: 000001C6, Type: 0x15AE, MxLoopingSmkPresenter::RepeatingTickle + Parent: 00000000, End: 00000624, Next: 00000000 + Debug start: 00000025, Debug end: 00000196 + Flags: Frame Ptr Present + +(000564) S_LABEL32: [0001:0002DA3E], $L43865 +(000578) S_LABEL32: [0001:0002DA34], $L43864 +(00058C) S_LABEL32: [0001:0002DA2C], $L43882 +(0005A0) S_LABEL32: [0001:0002DA24], $L43884 +(0005B4) S_BPREL32: [FFFFFFEC], Type: 0x15AD, this +(0005C8) S_BPREL32: [FFFFFFF2], Type: T_SHORT(0011), i +(0005D8) S_BPREL32: [FFFFFFD4], Type: 0x11CE, chunk +(0005EC) S_BPREL32: [FFFFFFD8], Type: 0x11CE, chunk +(000600) S_BPREL32: [FFFFFFDC], Type: 0x2CFF, cursor +(000614) S_REGISTER: ecx, Type: T_LONG(0012), time + +(000624) S_END + +(000628) S_GPROC32: [0001:0002DA50], Cb: 00000049, Type: 0x2CFD, MxStreamChunkListCursor::~MxStreamChunkListCursor + Parent: 00000000, End: 000006C0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000684) S_LABEL32: [0001:0002DA91], $L43971 +(000698) S_LABEL32: [0001:0002DA87], $L43970 +(0006AC) S_BPREL32: [FFFFFFF0], Type: 0x2CFA, this + +(0006C0) S_END + +(0006C4) S_GPROC32: [0001:0002DAA0], Cb: 0000006B, Type: 0x36B0, MxLoopingSmkPresenter::AddToManager + Parent: 00000000, End: 0000075C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(000710) S_LABEL32: [0001:0002DB01], $L43978 +(000724) S_LABEL32: [0001:0002DAF9], $L43979 +(000738) S_REGISTER: esi, Type: 0x15AD, this +(000748) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(00075C) S_END + +(000760) S_GPROC32: [0001:0002DB10], Cb: 00000008, Type: 0x15AE, MxLoopingSmkPresenter::Destroy + Parent: 00000000, End: 000007B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0007A8) S_REGISTER: ecx, Type: 0x15AD, this + +(0007B8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxloopingmidipresenter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:0002D430], Cb: 0000005E, Type: 0x15B4, MxLoopingMIDIPresenter::StreamingTickle + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 00000006, Debug end: 00000059 + +(0000E0) S_REGISTER: ebx, Type: 0x150B, this + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:0002D490], Cb: 00000013, Type: 0x15B4, MxLoopingMIDIPresenter::DoneTickle + Parent: 00000000, End: 00000150, Next: 00000000 + Debug start: 00000000, Debug end: 00000013 + +(000140) S_REGISTER: ecx, Type: 0x150B, this + +(000150) S_END + +(000154) S_GPROC32: [0001:0002D4B0], Cb: 00000067, Type: 0x15B5, MxLoopingMIDIPresenter::PutData + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000002, Debug end: 00000065 + +(00019C) S_REGISTER: edi, Type: 0x150B, this + +(0001AC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxloopingflcpresenter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:0002D280], Cb: 00000064, Type: 0x15B8, MxLoopingFlcPresenter::MxLoopingFlcPresenter + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000E4) S_LABEL32: [0001:0002D2DC], $L43049 +(0000F8) S_LABEL32: [0001:0002D2D2], $L43048 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x15B7, this + +(000120) S_END + +(000124) S_GPROC32: [0001:0002D2F0], Cb: 00000006, Type: 0x15BB, MxLoopingFlcPresenter::ClassName + Parent: 00000000, End: 0000017C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00016C) S_REGISTER: ecx, Type: 0x15BA, this + +(00017C) S_END + +(000180) S_GPROC32: [0001:0002D300], Cb: 0000001E, Type: T_NOTYPE(0000), MxLoopingFlcPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000200, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001DC) S_REGISTER: esi, Type: 0x15B7, this +(0001EC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000200) S_END + +(000204) S_GPROC32: [0001:0002D320], Cb: 0000005D, Type: 0x15B8, MxLoopingFlcPresenter::~MxLoopingFlcPresenter + Parent: 00000000, End: 00000298, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(00025C) S_LABEL32: [0001:0002D375], $L43126 +(000270) S_LABEL32: [0001:0002D36B], $L43125 +(000284) S_BPREL32: [FFFFFFF0], Type: 0x15B7, this + +(000298) S_END + +(00029C) S_GPROC32: [0001:0002D380], Cb: 00000015, Type: 0x15B8, MxLoopingFlcPresenter::Init + Parent: 00000000, End: 000002F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(0002E0) S_REGISTER: ecx, Type: 0x15B7, this + +(0002F0) S_END + +(0002F4) S_GPROC32: [0001:0002D3A0], Cb: 00000031, Type: 0x15BC, MxLoopingFlcPresenter::Destroy + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000002, Debug end: 0000002C + +(00033C) S_REGISTER: edi, Type: 0x15B7, this +(00034C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(00036C) S_END + +(000370) S_GPROC32: [0001:0002D3E0], Cb: 0000004C, Type: 0x15B8, MxLoopingFlcPresenter::NextFrame + Parent: 00000000, End: 000003D8, Next: 00000000 + Debug start: 00000005, Debug end: 00000048 + +(0003B8) S_REGISTER: esi, Type: 0x15B7, this +(0003C8) S_REGISTER: edi, Type: 0x11CE, chunk + +(0003D8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxioinfo.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0002CA70], Cb: 00000012, Type: 0x15BF, MXIOINFO::MXIOINFO + Parent: 00000000, End: 000000CC, Next: 00000000 + Debug start: 00000003, Debug end: 00000011 + +(0000BC) S_REGISTER: edx, Type: 0x15BE, this + +(0000CC) S_END + +(0000D0) S_GPROC32: [0001:0002CA90], Cb: 00000008, Type: 0x15BF, MXIOINFO::~MXIOINFO + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00010C) S_REGISTER: ecx, Type: 0x15BE, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:0002CAA0], Cb: 000000A5, Type: 0x15C1, MXIOINFO::Open + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 0000000B, Debug end: 00000099 + +(000158) S_REGISTER: esi, Type: 0x15BE, this +(000168) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_filename +(000180) S_BPREL32: [00000008], Type: T_ULONG(0022), p_flags +(000194) S_BPREL32: [FFFFFF78], Type: 0x15C4, unused +(0001A8) S_REGISTER: di, Type: T_USHORT(0021), result +(0001BC) S_REGISTER: ebx, Type: T_LONG(0012), len +(0001CC) S_REGISTER: eax, Type: T_32PRCHAR(0470), buf + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:0002CB50], Cb: 0000004F, Type: 0x15C5, MXIOINFO::Close + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 00000002, Debug end: 0000004A + +(000218) S_REGISTER: esi, Type: 0x15BE, this +(000228) S_BPREL32: [00000004], Type: T_LONG(0012), p_unused +(000240) S_REGISTER: di, Type: T_USHORT(0021), result + +(000254) S_END + +(000258) S_GPROC32: [0001:0002CBA0], Cb: 000000C8, Type: 0x15C7, MXIOINFO::Read + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 00000011, Debug end: 000000BE + +(000290) S_REGISTER: ebx, Type: 0x15BE, this +(0002A0) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_buf +(0002B4) S_BPREL32: [00000008], Type: T_LONG(0012), p_len +(0002C8) S_BPREL32: [FFFFFFFC], Type: T_LONG(0012), bytesRead +(0002E0) S_REGISTER: eax, Type: T_LONG(0012), bytesLeft + +(0002F4) S_END + +(0002F8) S_GPROC32: [0001:0002CC70], Cb: 000001BC, Type: 0x15C9, MXIOINFO::Seek + Parent: 00000000, End: 000003AC, Next: 00000000 + Debug start: 0000000B, Debug end: 000001B6 + +(000330) S_REGISTER: edi, Type: 0x15BE, this +(000340) S_BPREL32: [00000004], Type: T_LONG(0012), p_offset +(000358) S_BPREL32: [00000008], Type: T_LONG(0012), p_origin +(000370) S_REGISTER: ebx, Type: T_LONG(0012), result +(000384) S_REGISTER: ecx, Type: T_LONG(0012), newOffset +(000398) S_REGISTER: eax, Type: T_LONG(0012), bytesRead + +(0003AC) S_END + +(0003B0) S_GPROC32: [0001:0002CE30], Cb: 00000048, Type: 0x15CB, MXIOINFO::SetBuffer + Parent: 00000000, End: 00000450, Next: 00000000 + Debug start: 00000002, Debug end: 00000043 + +(0003EC) S_REGISTER: esi, Type: 0x15BE, this +(0003FC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_buf +(000410) S_BPREL32: [00000008], Type: T_LONG(0012), p_len +(000424) S_BPREL32: [0000000C], Type: T_LONG(0012), p_unused +(00043C) S_REGISTER: di, Type: T_USHORT(0021), result + +(000450) S_END + +(000454) S_GPROC32: [0001:0002CE80], Cb: 000000E8, Type: 0x15CD, MXIOINFO::Flush + Parent: 00000000, End: 000004F4, Next: 00000000 + Debug start: 00000009, Debug end: 000000E2 + +(00048C) S_REGISTER: esi, Type: 0x15BE, this +(00049C) S_BPREL32: [00000004], Type: T_USHORT(0021), p_unused +(0004B4) S_REGISTER: di, Type: T_USHORT(0021), result +(0004C8) S_REGISTER: ebx, Type: T_LONG(0012), cchBuffer +(0004DC) S_REGISTER: eax, Type: T_LONG(0012), bytesWritten + +(0004F4) S_END + +(0004F8) S_GPROC32: [0001:0002CF70], Cb: 00000157, Type: 0x15CD, MXIOINFO::Advance + Parent: 00000000, End: 000005C0, Next: 00000000 + Debug start: 00000009, Debug end: 00000151 + +(000534) S_REGISTER: esi, Type: 0x15BE, this +(000544) S_BPREL32: [00000004], Type: T_USHORT(0021), p_option +(00055C) S_REGISTER: ebp, Type: T_ULONG(0022), rwmode +(000570) S_REGISTER: di, Type: T_USHORT(0021), result +(000584) S_REGISTER: ebx, Type: T_LONG(0012), cch +(000594) S_REGISTER: eax, Type: T_LONG(0012), bytesWritten +(0005AC) S_REGISTER: eax, Type: T_LONG(0012), bytesRead + +(0005C0) S_END + +(0005C4) S_GPROC32: [0001:0002D0D0], Cb: 000001AF, Type: 0x15D3, MXIOINFO::Descend + Parent: 00000000, End: 000006B8, Next: 00000000 + Debug start: 0000000C, Debug end: 000001A6 + +(000600) S_REGISTER: esi, Type: 0x15BE, this +(000610) S_BPREL32: [00000004], Type: 0x15CF, p_chunkInfo +(000628) S_BPREL32: [00000008], Type: 0x15D1, p_parentInfo +(000644) S_BPREL32: [0000000C], Type: T_USHORT(0021), p_descend +(00065C) S_REGISTER: bx, Type: T_USHORT(0021), result +(000670) S_REGISTER: ebp, Type: T_INT4(0074), running +(000684) S_BPREL32: [FFFFFFE4], Type: T_INT4(0074), readOk +(000698) S_BPREL32: [FFFFFFE8], Type: T_ULONG(0022), ofs +(0006A8) S_BPREL32: [FFFFFFEC], Type: 0x15D5, tmp + +(0006B8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxflcpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002C7E0], Cb: 000000DF, Type: 0x15D8, MxFlcPresenter::MxFlcPresenter + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 0000001D, Debug end: 000000A5 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002C8B7], $L46371 +(0000E4) S_LABEL32: [0001:0002C8AD], $L46370 +(0000F8) S_LABEL32: [0001:0002C8A5], $L46373 +(00010C) S_LABEL32: [0001:0002C89D], $L46375 +(000120) S_LABEL32: [0001:0002C895], $L46377 +(000134) S_LABEL32: [0001:0002C88A], $L46378 +(000148) S_BPREL32: [FFFFFFF0], Type: 0x15D7, this + +(00015C) S_END + +(000160) S_GPROC32: [0001:0002C8C0], Cb: 00000006, Type: 0x15DB, MxFlcPresenter::ClassName + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001A4) S_REGISTER: ecx, Type: 0x15DA, this + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:0002C8D0], Cb: 0000001E, Type: T_NOTYPE(0000), MxFlcPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00020C) S_REGISTER: esi, Type: 0x15D7, this +(00021C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000230) S_END + +(000234) S_GPROC32: [0001:0002C8F0], Cb: 00000066, Type: 0x15D8, MxFlcPresenter::~MxFlcPresenter + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(00027C) S_LABEL32: [0001:0002C94E], $L46573 +(000290) S_LABEL32: [0001:0002C944], $L46572 +(0002A4) S_BPREL32: [FFFFFFF0], Type: 0x15D7, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:0002C960], Cb: 00000033, Type: 0x15DC, MxFlcPresenter::LoadHeader + Parent: 00000000, End: 00000324, Next: 00000000 + Debug start: 00000002, Debug end: 0000002E + +(000300) S_REGISTER: edi, Type: 0x15D7, this +(000310) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(000324) S_END + +(000328) S_GPROC32: [0001:0002C9A0], Cb: 0000009E, Type: 0x15D8, MxFlcPresenter::CreateBitmap + Parent: 00000000, End: 000003A4, Next: 00000000 + Debug start: 0000001D, Debug end: 00000078 + Flags: Frame Ptr Present + +(00036C) S_LABEL32: [0001:0002CA31], $L46591 +(000380) S_LABEL32: [0001:0002CA27], $L46588 +(000394) S_REGISTER: edi, Type: 0x15D7, this + +(0003A4) S_END + +(0003A8) S_GPROC32: [0001:0002CA40], Cb: 00000026, Type: 0x15D8, MxFlcPresenter::RealizePalette + Parent: 00000000, End: 00000414, Next: 00000000 + Debug start: 00000004, Debug end: 00000024 + +(0003F0) S_REGISTER: ecx, Type: 0x15D7, this +(000400) S_REGISTER: esi, Type: 0x1225, palette + +(000414) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxeventpresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002C380], Cb: 000000B3, Type: 0x15DF, MxEventPresenter::MxEventPresenter + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000007A + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0002C42B], $L42580 +(0000E8) S_LABEL32: [0001:0002C421], $L42579 +(0000FC) S_LABEL32: [0001:0002C419], $L42582 +(000110) S_LABEL32: [0001:0002C411], $L42584 +(000124) S_LABEL32: [0001:0002C406], $L42585 +(000138) S_BPREL32: [FFFFFFF0], Type: 0x15DE, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0002C440], Cb: 00000006, Type: 0x15E2, MxEventPresenter::ClassName + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000194) S_REGISTER: ecx, Type: 0x15E1, this + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:0002C450], Cb: 000000D6, Type: 0x15E3, MxEventPresenter::IsA + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001E8) S_REGISTER: ecx, Type: 0x15E1, this +(0001F8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00020C) S_END + +(000210) S_GPROC32: [0001:0002C530], Cb: 0000001E, Type: T_NOTYPE(0000), MxEventPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000028C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000268) S_REGISTER: esi, Type: 0x15DE, this +(000278) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00028C) S_END + +(000290) S_GPROC32: [0001:0002C550], Cb: 0000005B, Type: 0x15DF, MxEventPresenter::~MxEventPresenter + Parent: 00000000, End: 00000318, Next: 00000000 + Debug start: 00000021, Debug end: 0000003C + Flags: Frame Ptr Present + +(0002DC) S_LABEL32: [0001:0002C5A3], $L42708 +(0002F0) S_LABEL32: [0001:0002C599], $L42707 +(000304) S_BPREL32: [FFFFFFF0], Type: 0x15DE, this + +(000318) S_END + +(00031C) S_GPROC32: [0001:0002C5B0], Cb: 00000008, Type: 0x15DF, MxEventPresenter::Init + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00035C) S_REGISTER: ecx, Type: 0x15DE, this + +(00036C) S_END + +(000370) S_GPROC32: [0001:0002C5C0], Cb: 00000026, Type: 0x15E4, MxEventPresenter::AddToManager + Parent: 00000000, End: 000003D8, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(0003B8) S_REGISTER: esi, Type: 0x15DE, this +(0003C8) S_REGISTER: edi, Type: T_LONG(0012), ret + +(0003D8) S_END + +(0003DC) S_GPROC32: [0001:0002C5F0], Cb: 00000045, Type: 0x15DF, MxEventPresenter::Destroy + Parent: 00000000, End: 00000430, Next: 00000000 + Debug start: 00000002, Debug end: 00000042 + +(000420) S_REGISTER: edi, Type: 0x15DE, this + +(000430) S_END + +(000434) S_GPROC32: [0001:0002C640], Cb: 00000033, Type: 0x15E5, MxEventPresenter::CopyData + Parent: 00000000, End: 0000049C, Next: 00000000 + Debug start: 00000002, Debug end: 0000002E + +(000478) S_REGISTER: edi, Type: 0x15DE, this +(000488) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(00049C) S_END + +(0004A0) S_GPROC32: [0001:0002C680], Cb: 0000003E, Type: 0x15DF, MxEventPresenter::ReadyTickle + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000005, Debug end: 0000003A + +(0004E8) S_REGISTER: ebx, Type: 0x15DE, this +(0004F8) S_REGISTER: esi, Type: 0x11CE, chunk + +(000508) S_END + +(00050C) S_GPROC32: [0001:0002C6C0], Cb: 00000033, Type: 0x15DF, MxEventPresenter::StartingTickle + Parent: 00000000, End: 00000574, Next: 00000000 + Debug start: 00000002, Debug end: 00000030 + +(000554) S_REGISTER: edi, Type: 0x15DE, this +(000564) S_REGISTER: esi, Type: 0x11CE, chunk + +(000574) S_END + +(000578) S_GPROC32: [0001:0002C700], Cb: 000000E0, Type: 0x15E4, MxEventPresenter::PutData + Parent: 00000000, End: 00000644, Next: 00000000 + Debug start: 00000021, Debug end: 000000C0 + Flags: Frame Ptr Present + +(0005BC) S_LABEL32: [0001:0002C7D8], $L42733 +(0005D0) S_LABEL32: [0001:0002C7CE], $L42732 +(0005E4) S_REGISTER: esi, Type: 0x15DE, this +(0005F4) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(000608) S_BPREL32: [FFFFFFEC], Type: 0x1491, variableTable +(000624) S_REGISTER: ebx, Type: T_32PRCHAR(0470), data +(000634) S_REGISTER: edx, Type: T_32PRCHAR(0470), value + +(000644) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxeventmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002C140], Cb: 00000064, Type: 0x15E7, MxEventManager::MxEventManager + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002C19C], $L42894 +(0000E4) S_LABEL32: [0001:0002C192], $L42893 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x15E6, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:0002C1B0], Cb: 0000001E, Type: T_NOTYPE(0000), MxEventManager::`scalar deleting destructor' + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000164) S_REGISTER: esi, Type: 0x15E6, this +(000174) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000188) S_END + +(00018C) S_GPROC32: [0001:0002C1D0], Cb: 0000005D, Type: 0x15E7, MxEventManager::~MxEventManager + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0001D4) S_LABEL32: [0001:0002C225], $L42916 +(0001E8) S_LABEL32: [0001:0002C21B], $L42915 +(0001FC) S_BPREL32: [FFFFFFF0], Type: 0x15E6, this + +(000210) S_END + +(000214) S_GPROC32: [0001:0002C230], Cb: 00000001, Type: 0x15E7, MxEventManager::Init + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000250) S_REGISTER: ecx, Type: 0x15E6, this + +(000260) S_END + +(000264) S_GPROC32: [0001:0002C240], Cb: 0000003E, Type: 0x15E8, MxEventManager::Destroy + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000001, Debug end: 0000003A + +(0002A4) S_REGISTER: esi, Type: 0x15E6, this +(0002B4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:0002C280], Cb: 000000E2, Type: 0x15E9, MxEventManager::Create + Parent: 00000000, End: 000003C0, Next: 00000000 + Debug start: 00000020, Debug end: 000000D2 + Flags: Frame Ptr Present + +(000318) S_LABEL32: [0001:0002C316], $L42933 +(00032C) S_LABEL32: [0001:0002C30C], $L42932 +(000340) S_LABEL32: [0001:0002C336], done +(000350) S_REGISTER: esi, Type: 0x15E6, this +(000360) S_BPREL32: [00000008], Type: T_UINT4(0075), p_frequencyMS +(00037C) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_createThread +(000398) S_REGISTER: edi, Type: T_LONG(0012), status +(0003AC) S_REGISTER: bl, Type: T_UCHAR(0020), locked + +(0003C0) S_END + +(0003C4) S_GPROC32: [0001:0002C370], Cb: 00000008, Type: 0x15E7, MxEventManager::Destroy + Parent: 00000000, End: 00000414, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000404) S_REGISTER: ecx, Type: 0x15E6, this + +(000414) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxentity.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0002BF80], Cb: 00000019, Type: 0x15EC, MxEntity::Create + Parent: 00000000, End: 000000F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(0000B8) S_REGISTER: ecx, Type: 0x15EA, this +(0000C8) S_BPREL32: [00000004], Type: T_INT4(0074), p_id +(0000DC) S_BPREL32: [00000008], Type: 0x13B3, p_atom + +(0000F0) S_END + +(0000F4) S_GPROC32: [0001:0002BFA0], Cb: 00000067, Type: 0x15ED, MxEntity::~MxEntity + Parent: 00000000, End: 00000180, Next: 00000000 + Debug start: 00000023, Debug end: 0000003D + Flags: Frame Ptr Present + +(000130) S_LABEL32: [0001:0002BFFF], $L11367 +(000144) S_LABEL32: [0001:0002BFF5], $L11366 +(000158) S_LABEL32: [0001:0002BFEA], $L11368 +(00016C) S_BPREL32: [FFFFFFF0], Type: 0x15EA, this + +(000180) S_END + +(000184) S_GPROC32: [0001:0002C010], Cb: 00000006, Type: 0x15F0, MxEntity::ClassName + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001C0) S_REGISTER: ecx, Type: 0x15EF, this + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:0002C020], Cb: 00000072, Type: 0x15F1, MxEntity::IsA + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(00020C) S_REGISTER: ecx, Type: 0x15EF, this +(00021C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000230) S_END + +(000234) S_GPROC32: [0001:0002C0A0], Cb: 0000001E, Type: T_NOTYPE(0000), MxEntity::`scalar deleting destructor' + Parent: 00000000, End: 000002A8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000284) S_REGISTER: esi, Type: 0x15EA, this +(000294) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002A8) S_END + +(0002AC) S_GPROC32: [0001:0002C0C0], Cb: 00000077, Type: 0x15ED, MxEntity::MxEntity + Parent: 00000000, End: 00000338, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004E + Flags: Frame Ptr Present + +(0002E8) S_LABEL32: [0001:0002C12F], $L11400 +(0002FC) S_LABEL32: [0001:0002C125], $L11399 +(000310) S_LABEL32: [0001:0002C11A], $L11401 +(000324) S_BPREL32: [FFFFFFF0], Type: 0x15EA, this + +(000338) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdssubscriber.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002B2F0], Cb: 0000014C, Type: 0x15F4, MxDSSubscriber::MxDSSubscriber + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000021, Debug end: 000000D2 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002B434], $L45350 +(0000E4) S_LABEL32: [0001:0002B42A], $L45349 +(0000F8) S_LABEL32: [0001:0002B41F], $L45351 +(00010C) S_LABEL32: [0001:0002B414], $L45354 +(000120) S_LABEL32: [0001:0002B409], $L45356 +(000134) S_LABEL32: [0001:0002B3FE], $L45358 +(000148) S_LABEL32: [0001:0002B3F3], $L45352 +(00015C) S_LABEL32: [0001:0002B3E8], $L45373 +(000170) S_LABEL32: [0001:0002B3DD], $L45375 +(000184) S_LABEL32: [0001:0002B3D2], $L45377 +(000198) S_BPREL32: [FFFFFFF0], Type: 0x15F3, this + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:0002B440], Cb: 0000001A, Type: 0x139B, MxStreamChunkList::Compare + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(0001F4) S_REGISTER: ecx, Type: 0x1399, this +(000204) S_BPREL32: [00000004], Type: 0x11CE, p_a +(000214) S_BPREL32: [00000008], Type: 0x11CE, p_b + +(000224) S_END + +(000228) S_GPROC32: [0001:0002B460], Cb: 0000000F, Type: 0x139C, MxStreamChunkList::Destroy + Parent: 00000000, End: 00000280, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(00026C) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(000280) S_END + +(000284) S_GPROC32: [0001:0002B470], Cb: 00000001, Type: 0x1593, MxCollection::Destroy + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002D4) S_BPREL32: [00000004], Type: 0x11CE, __formal + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:0002B480], Cb: 0000004F, Type: 0x1592, MxCollection::~MxCollection + Parent: 00000000, End: 00000394, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000358) S_LABEL32: [0001:0002B4C7], $L45424 +(00036C) S_LABEL32: [0001:0002B4BD], $L45423 +(000380) S_BPREL32: [FFFFFFF0], Type: 0x1591, this + +(000394) S_END + +(000398) S_GPROC32: [0001:0002B4D0], Cb: 00000005, Type: 0x1594, MxCollection::Compare + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0003E8) S_REGISTER: ecx, Type: 0x1591, this +(0003F8) S_BPREL32: [00000004], Type: 0x11CE, __formal +(000410) S_BPREL32: [00000008], Type: 0x11CE, __formal + +(000428) S_END + +(00042C) S_GPROC32: [0001:0002B4E0], Cb: 00000061, Type: T_NOTYPE(0000), MxStreamChunkList::`scalar deleting destructor' + Parent: 00000000, End: 000004D4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000484) S_LABEL32: [0001:0002B539], $L45434 +(000498) S_LABEL32: [0001:0002B52F], $L45432 +(0004AC) S_BPREL32: [FFFFFFF0], Type: 0x1399, this +(0004C0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0004D4) S_END + +(0004D8) S_GPROC32: [0001:0002B550], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(00053C) S_LABEL32: [0001:0002B5AF], $L45443 +(000550) S_LABEL32: [0001:0002B5A5], $L45441 +(000564) S_BPREL32: [FFFFFFF0], Type: 0x1591, this +(000578) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00058C) S_END + +(000590) S_GPROC32: [0001:0002B5C0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000640, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(0005F0) S_LABEL32: [0001:0002B65B], $L45452 +(000604) S_LABEL32: [0001:0002B651], $L45450 +(000618) S_BPREL32: [FFFFFFF0], Type: 0x1595, this +(00062C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000640) S_END + +(000644) S_GPROC32: [0001:0002B670], Cb: 00000049, Type: 0x1ED6, MxStreamChunkList::~MxStreamChunkList + Parent: 00000000, End: 000006D0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000694) S_LABEL32: [0001:0002B6B1], $L45486 +(0006A8) S_LABEL32: [0001:0002B6A7], $L45485 +(0006BC) S_BPREL32: [FFFFFFF0], Type: 0x1399, this + +(0006D0) S_END + +(0006D4) S_GPROC32: [0001:0002B6C0], Cb: 00000006, Type: 0x15F7, MxDSSubscriber::ClassName + Parent: 00000000, End: 00000728, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000718) S_REGISTER: ecx, Type: 0x15F6, this + +(000728) S_END + +(00072C) S_GPROC32: [0001:0002B6D0], Cb: 00000072, Type: 0x15F8, MxDSSubscriber::IsA + Parent: 00000000, End: 0000078C, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000768) S_REGISTER: ecx, Type: 0x15F6, this +(000778) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00078C) S_END + +(000790) S_GPROC32: [0001:0002B750], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSSubscriber::`scalar deleting destructor' + Parent: 00000000, End: 00000808, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0007E4) S_REGISTER: esi, Type: 0x15F3, this +(0007F4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000808) S_END + +(00080C) S_GPROC32: [0001:0002B770], Cb: 000000C7, Type: 0x15F4, MxDSSubscriber::~MxDSSubscriber + Parent: 00000000, End: 000008B8, Next: 00000000 + Debug start: 00000021, Debug end: 00000092 + Flags: Frame Ptr Present + +(000854) S_LABEL32: [0001:0002B82F], $L45519 +(000868) S_LABEL32: [0001:0002B825], $L45518 +(00087C) S_LABEL32: [0001:0002B81A], $L45520 +(000890) S_LABEL32: [0001:0002B80F], $L45521 +(0008A4) S_BPREL32: [FFFFFFF0], Type: 0x15F3, this + +(0008B8) S_END + +(0008BC) S_GPROC32: [0001:0002B840], Cb: 00000155, Type: 0x15FA, MxDSSubscriber::Create + Parent: 00000000, End: 000009E4, Next: 00000000 + Debug start: 00000024, Debug end: 0000003A + Flags: Frame Ptr Present + +(0008FC) S_LABEL32: [0001:0002B988], $L45536 +(000910) S_LABEL32: [0001:0002B97E], $L45535 +(000924) S_LABEL32: [0001:0002B971], $L45539 +(000938) S_LABEL32: [0001:0002B945], $L45553 +(00094C) S_LABEL32: [0001:0002B93D], $L45555 +(000960) S_LABEL32: [0001:0002B8DB], $L45543 +(000974) S_LABEL32: [0001:0002B8D3], $L45545 +(000988) S_REGISTER: esi, Type: 0x15F3, this +(000998) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(0009B4) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_objectId +(0009CC) S_BPREL32: [00000010], Type: T_SHORT(0011), p_unk0x48 + +(0009E4) S_END + +(0009E8) S_GPROC32: [0001:0002B9A0], Cb: 00000061, Type: T_NOTYPE(0000), MxStreamChunkListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000A98, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000A48) S_LABEL32: [0001:0002B9F9], $L45571 +(000A5C) S_LABEL32: [0001:0002B9EF], $L45569 +(000A70) S_BPREL32: [FFFFFFF0], Type: 0x2CFA, this +(000A84) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000A98) S_END + +(000A9C) S_GPROC32: [0001:0002BA10], Cb: 00000049, Type: 0x158D, MxListCursor::~MxListCursor + Parent: 00000000, End: 00000B40, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000B04) S_LABEL32: [0001:0002BA51], $L45580 +(000B18) S_LABEL32: [0001:0002BA47], $L45579 +(000B2C) S_BPREL32: [FFFFFFF0], Type: 0x158C, this + +(000B40) S_END + +(000B44) S_GPROC32: [0001:0002BA60], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000BF8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000BA8) S_LABEL32: [0001:0002BAB9], $L45588 +(000BBC) S_LABEL32: [0001:0002BAAF], $L45586 +(000BD0) S_BPREL32: [FFFFFFF0], Type: 0x158C, this +(000BE4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000BF8) S_END + +(000BFC) S_GPROC32: [0001:0002BAD0], Cb: 00000111, Type: 0x15F4, MxDSSubscriber::DeleteChunks + Parent: 00000000, End: 00000C64, Next: 00000000 + Debug start: 0000000B, Debug end: 00000109 + +(000C40) S_REGISTER: esi, Type: 0x15F3, this +(000C50) S_BPREL32: [FFFFFFF8], Type: 0x11CE, chunk + +(000C64) S_END + +(000C68) S_GPROC32: [0001:0002BBF0], Cb: 000000F7, Type: 0x3705, MxDSSubscriber::AddChunk + Parent: 00000000, End: 00000D20, Next: 00000000 + Debug start: 00000020, Debug end: 00000078 + Flags: Frame Ptr Present + +(000CA8) S_LABEL32: [0001:0002BCDA], $L45760 +(000CBC) S_LABEL32: [0001:0002BCD0], $L45725 +(000CD0) S_LABEL32: [0001:0002BC7D], $L45726 +(000CE4) S_REGISTER: esi, Type: 0x15F3, this +(000CF4) S_BPREL32: [00000008], Type: 0x11CE, p_chunk +(000D08) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_append + +(000D20) S_END + +(000D24) S_GPROC32: [0001:0002BCF0], Cb: 00000101, Type: 0x15FB, MxDSSubscriber::FUN_100b8250 + Parent: 00000000, End: 00000DB4, Next: 00000000 + Debug start: 00000027, Debug end: 000000D7 + Flags: Frame Ptr Present + +(000D68) S_LABEL32: [0001:0002BDE4], $L45803 +(000D7C) S_LABEL32: [0001:0002BDDA], $L45802 +(000D90) S_REGISTER: esi, Type: 0x15F3, this +(000DA0) S_BPREL32: [FFFFFFF0], Type: 0x11CE, chunk + +(000DB4) S_END + +(000DB8) S_GPROC32: [0001:0002BE00], Cb: 0000002D, Type: 0x15FB, MxDSSubscriber::FUN_100b8360 + Parent: 00000000, End: 00000E20, Next: 00000000 + Debug start: 00000006, Debug end: 00000029 + +(000DFC) S_REGISTER: ecx, Type: 0x15F3, this +(000E0C) S_BPREL32: [FFFFFFFC], Type: 0x11CE, chunk + +(000E20) S_END + +(000E24) S_GPROC32: [0001:0002BE30], Cb: 000000BE, Type: 0x15FC, MxDSSubscriber::FUN_100b8390 + Parent: 00000000, End: 00000E8C, Next: 00000000 + Debug start: 0000000A, Debug end: 000000B7 + +(000E68) S_REGISTER: edi, Type: 0x15F3, this +(000E78) S_BPREL32: [00000004], Type: 0x11CE, p_chunk + +(000E8C) S_END + +(000E90) S_GPROC32: [0001:0002BEF0], Cb: 0000008B, Type: 0x159F, MxList::~MxList + Parent: 00000000, End: 00000F28, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(000EEC) S_LABEL32: [0001:0002BF73], $L45983 +(000F00) S_LABEL32: [0001:0002BF69], $L45982 +(000F14) S_BPREL32: [FFFFFFF0], Type: 0x1595, this + +(000F28) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsstreamingaction.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0002B000], Cb: 00000080, Type: 0x1600, MxDSStreamingAction::MxDSStreamingAction + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 0000001C, Debug end: 00000067 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0002B078], $L12549 +(0000F0) S_LABEL32: [0001:0002B06E], $L12548 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x15FE, this +(000118) S_BPREL32: [00000008], Type: 0x108E, p_dsAction +(000130) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_offset + +(000148) S_END + +(00014C) S_GPROC32: [0001:0002B080], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSStreamingAction::`scalar deleting destructor' + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001A8) S_REGISTER: esi, Type: 0x15FE, this +(0001B8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:0002B0A0], Cb: 0000001C, Type: 0x1601, MxDSStreamingAction::HasId + Parent: 00000000, End: 0000023C, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(000214) S_REGISTER: ecx, Type: 0x15FE, this +(000224) S_BPREL32: [00000004], Type: T_UINT4(0075), p_objectId + +(00023C) S_END + +(000240) S_GPROC32: [0001:0002B0C0], Cb: 00000071, Type: 0x1604, MxDSStreamingAction::MxDSStreamingAction + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000051 + Flags: Frame Ptr Present + +(000290) S_LABEL32: [0001:0002B129], $L12604 +(0002A4) S_LABEL32: [0001:0002B11F], $L12603 +(0002B8) S_BPREL32: [FFFFFFF0], Type: 0x15FE, this +(0002CC) S_BPREL32: [00000008], Type: 0x1602, p_dsStreamingAction + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:0002B140], Cb: 0000008C, Type: 0x1605, MxDSStreamingAction::~MxDSStreamingAction + Parent: 00000000, End: 00000380, Next: 00000000 + Debug start: 00000021, Debug end: 0000006D + Flags: Frame Ptr Present + +(000344) S_LABEL32: [0001:0002B1C4], $L12618 +(000358) S_LABEL32: [0001:0002B1BA], $L12617 +(00036C) S_BPREL32: [FFFFFFF0], Type: 0x15FE, this + +(000380) S_END + +(000384) S_GPROC32: [0001:0002B1D0], Cb: 00000036, Type: 0x1606, MxDSStreamingAction::Init + Parent: 00000000, End: 000003D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000035 + +(0003C8) S_REGISTER: ecx, Type: 0x15FE, this + +(0003D8) S_END + +(0003DC) S_GPROC32: [0001:0002B210], Cb: 0000007D, Type: 0x1608, MxDSStreamingAction::CopyFrom + Parent: 00000000, End: 00000454, Next: 00000000 + Debug start: 00000002, Debug end: 00000079 + +(000424) S_REGISTER: esi, Type: 0x15FE, this +(000434) S_BPREL32: [00000004], Type: 0x1602, p_dsStreamingAction + +(000454) S_END + +(000458) S_GPROC32: [0001:0002B290], Cb: 00000021, Type: 0x1609, MxDSStreamingAction::SetInternalAction + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001D + +(0004A8) S_REGISTER: esi, Type: 0x15FE, this +(0004B8) S_BPREL32: [00000004], Type: 0x109C, p_dsAction + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:0002B2C0], Cb: 00000024, Type: 0x1605, MxDSStreamingAction::FUN_100cd2d0 + Parent: 00000000, End: 00000544, Next: 00000000 + Debug start: 00000002, Debug end: 00000021 + +(000520) S_REGISTER: ecx, Type: 0x15FE, this +(000530) S_REGISTER: eax, Type: T_LONG(0012), duration + +(000544) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsstill.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0002AD30], Cb: 00000063, Type: 0x160C, MxDSStill::MxDSStill + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000042 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:0002AD8B], $L12484 +(0000D4) S_LABEL32: [0001:0002AD81], $L12483 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x160B, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:0002ADA0], Cb: 00000006, Type: 0x160F, MxDSStill::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x160E, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0002ADB0], Cb: 0000010A, Type: 0x1610, MxDSStill::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000188) S_REGISTER: ecx, Type: 0x160E, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:0002AEC0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSStill::`scalar deleting destructor' + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000200) S_REGISTER: esi, Type: 0x160B, this +(000210) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000224) S_END + +(000228) S_GPROC32: [0001:0002AEE0], Cb: 0000004F, Type: 0x160C, MxDSStill::~MxDSStill + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:0002AF27], $L12569 +(00027C) S_LABEL32: [0001:0002AF1D], $L12568 +(000290) S_BPREL32: [FFFFFFF0], Type: 0x160B, this + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:0002AF30], Cb: 00000003, Type: 0x1613, MxDSStill::CopyFrom + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002E4) S_REGISTER: ecx, Type: 0x160B, this +(0002F4) S_BPREL32: [00000004], Type: 0x1611, p_dsStill + +(00030C) S_END + +(000310) S_GPROC32: [0001:0002AF40], Cb: 0000002A, Type: 0x1614, MxDSStill::operator= + Parent: 00000000, End: 00000374, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(00034C) S_REGISTER: edi, Type: 0x160B, this +(00035C) S_BPREL32: [00000004], Type: 0x1611, p_dsStill + +(000374) S_END + +(000378) S_GPROC32: [0001:0002AF70], Cb: 00000088, Type: 0x1615, MxDSStill::Clone + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0003B0) S_LABEL32: [0001:0002AFEB], $L12582 +(0003C4) S_LABEL32: [0001:0002AFE1], $L12581 +(0003D8) S_REGISTER: ebx, Type: 0x160B, this + +(0003E8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdssource.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0002ACF0], Cb: 00000014, Type: 0x3C6F, MxDSSource::ReadToBuffer + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(0000C4) S_REGISTER: ecx, Type: 0x1617, this +(0000D4) S_BPREL32: [00000004], Type: 0x1619, p_buffer + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:0002AD10], Cb: 00000004, Type: 0x161C, MxDSSource::GetLengthInDWords + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000138) S_REGISTER: ecx, Type: 0x1617, this + +(000148) S_END + +(00014C) S_GPROC32: [0001:0002AD20], Cb: 00000004, Type: 0x161D, MxDSSource::GetBuffer + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(00018C) S_REGISTER: ecx, Type: 0x1617, this + +(00019C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdssound.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0002A9C0], Cb: 0000006D, Type: 0x1620, MxDSSound::MxDSSound + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004C + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:0002AA25], $L46245 +(0000D4) S_LABEL32: [0001:0002AA1B], $L46244 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x161F, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:0002AA30], Cb: 00000006, Type: 0x1623, MxDSSound::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x1622, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0002AA40], Cb: 0000010A, Type: 0x1624, MxDSSound::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000188) S_REGISTER: ecx, Type: 0x1622, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:0002AB50], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSSound::`scalar deleting destructor' + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000200) S_REGISTER: esi, Type: 0x161F, this +(000210) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000224) S_END + +(000228) S_GPROC32: [0001:0002AB70], Cb: 0000004F, Type: 0x1620, MxDSSound::~MxDSSound + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:0002ABB7], $L46330 +(00027C) S_LABEL32: [0001:0002ABAD], $L46329 +(000290) S_BPREL32: [FFFFFFF0], Type: 0x161F, this + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:0002ABC0], Cb: 0000001B, Type: 0x1627, MxDSSound::CopyFrom + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(0002E4) S_REGISTER: ecx, Type: 0x161F, this +(0002F4) S_BPREL32: [00000004], Type: 0x1625, p_dsSound + +(00030C) S_END + +(000310) S_GPROC32: [0001:0002ABE0], Cb: 0000002A, Type: 0x1628, MxDSSound::operator= + Parent: 00000000, End: 00000374, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(00034C) S_REGISTER: edi, Type: 0x161F, this +(00035C) S_BPREL32: [00000004], Type: 0x1625, p_dsSound + +(000374) S_END + +(000378) S_GPROC32: [0001:0002AC10], Cb: 00000088, Type: 0x1629, MxDSSound::Clone + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0003B0) S_LABEL32: [0001:0002AC8B], $L46346 +(0003C4) S_LABEL32: [0001:0002AC81], $L46345 +(0003D8) S_REGISTER: ebx, Type: 0x161F, this + +(0003E8) S_END + +(0003EC) S_GPROC32: [0001:0002ACA0], Cb: 00000025, Type: 0x34FF, MxDSSound::Deserialize + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000008, Debug end: 00000020 + +(00042C) S_REGISTER: esi, Type: 0x161F, this +(00043C) S_BPREL32: [00000004], Type: 0x34FA, p_source +(000454) S_BPREL32: [00000008], Type: T_SHORT(0011), p_unk0x24 + +(00046C) S_END + +(000470) S_GPROC32: [0001:0002ACD0], Cb: 00000017, Type: 0x162B, MxDSSound::GetSizeOnDisk + Parent: 00000000, End: 000004C0, Next: 00000000 + Debug start: 00000001, Debug end: 00000016 + +(0004B0) S_REGISTER: esi, Type: 0x161F, this + +(0004C0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsserialaction.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0002A510], Cb: 000000E1, Type: 0x162E, MxDSSerialAction::MxDSSerialAction + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 0000001E, Debug end: 000000B4 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0002A5E9], $L12963 +(0000E8) S_LABEL32: [0001:0002A5DF], $L12962 +(0000FC) S_LABEL32: [0001:0002A5D2], $L12964 +(000110) S_LABEL32: [0001:0002A59D], $L12969 +(000124) S_LABEL32: [0001:0002A595], $L12971 +(000138) S_BPREL32: [FFFFFFEC], Type: 0x162D, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0002A600], Cb: 00000006, Type: 0x1631, MxDSSerialAction::ClassName + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000194) S_REGISTER: ecx, Type: 0x1630, this + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:0002A610], Cb: 0000010A, Type: 0x1632, MxDSSerialAction::IsA + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001E8) S_REGISTER: ecx, Type: 0x1630, this +(0001F8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00020C) S_END + +(000210) S_GPROC32: [0001:0002A720], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSSerialAction::`scalar deleting destructor' + Parent: 00000000, End: 0000028C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000268) S_REGISTER: esi, Type: 0x162D, this +(000278) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00028C) S_END + +(000290) S_GPROC32: [0001:0002A740], Cb: 0000000A, Type: 0x1633, MxDSSerialAction::SetDuration + Parent: 00000000, End: 00000300, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0002D8) S_REGISTER: ecx, Type: 0x162D, this +(0002E8) S_BPREL32: [00000004], Type: T_LONG(0012), p_duration + +(000300) S_END + +(000304) S_GPROC32: [0001:0002A750], Cb: 00000073, Type: 0x162E, MxDSSerialAction::~MxDSSerialAction + Parent: 00000000, End: 0000038C, Next: 00000000 + Debug start: 00000021, Debug end: 00000054 + Flags: Frame Ptr Present + +(000350) S_LABEL32: [0001:0002A7BB], $L13094 +(000364) S_LABEL32: [0001:0002A7B1], $L13093 +(000378) S_BPREL32: [FFFFFFF0], Type: 0x162D, this + +(00038C) S_END + +(000390) S_GPROC32: [0001:0002A7D0], Cb: 00000003, Type: 0x1636, MxDSSerialAction::CopyFrom + Parent: 00000000, End: 00000404, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003D4) S_REGISTER: ecx, Type: 0x162D, this +(0003E4) S_BPREL32: [00000004], Type: 0x1634, p_dsSerialAction + +(000404) S_END + +(000408) S_GPROC32: [0001:0002A7E0], Cb: 0000002A, Type: 0x1637, MxDSSerialAction::operator= + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(00044C) S_REGISTER: edi, Type: 0x162D, this +(00045C) S_BPREL32: [00000004], Type: 0x1634, p_dsSerialAction + +(00047C) S_END + +(000480) S_GPROC32: [0001:0002A810], Cb: 00000088, Type: 0x1638, MxDSSerialAction::Clone + Parent: 00000000, End: 000004F8, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0004C0) S_LABEL32: [0001:0002A88B], $L13109 +(0004D4) S_LABEL32: [0001:0002A881], $L13108 +(0004E8) S_REGISTER: esi, Type: 0x162D, this + +(0004F8) S_END + +(0004FC) S_GPROC32: [0001:0002A8A0], Cb: 00000115, Type: 0x1639, MxDSSerialAction::GetDuration + Parent: 00000000, End: 000005E4, Next: 00000000 + Debug start: 00000021, Debug end: 000000E2 + Flags: Frame Ptr Present + +(000544) S_LABEL32: [0001:0002A9AD], $L13119 +(000558) S_LABEL32: [0001:0002A9A3], $L13118 +(00056C) S_LABEL32: [0001:0002A99B], $L13123 +(000580) S_LABEL32: [0001:0002A993], $L13125 +(000594) S_REGISTER: esi, Type: 0x162D, this +(0005A4) S_BPREL32: [FFFFFFF0], Type: 0x109C, action +(0005B8) S_BPREL32: [FFFFFFE0], Type: 0x2D08, cursor +(0005CC) S_REGISTER: eax, Type: T_LONG(0012), sustainTime + +(0005E4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsselectaction.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00029310], Cb: 00000107, Type: 0x1646, MxDSSelectAction::MxDSSelectAction + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000020, Debug end: 000000D3 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:0002940F], $L42200 +(0000E8) S_LABEL32: [0001:00029405], $L42199 +(0000FC) S_LABEL32: [0001:000293F7], $L42201 +(000110) S_LABEL32: [0001:000293EA], $L42202 +(000124) S_LABEL32: [0001:000293BC], $L42207 +(000138) S_LABEL32: [0001:000293B4], $L42209 +(00014C) S_LABEL32: [0001:000293AC], $L42211 +(000160) S_BPREL32: [FFFFFFEC], Type: 0x1645, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00029420], Cb: 00000043, Type: 0x164B, MxCollection::Destroy + Parent: 00000000, End: 00000200, Next: 00000000 + Debug start: 0000001F, Debug end: 00000024 + Flags: Frame Ptr Present + +(0001C0) S_LABEL32: [0001:00029459], $L42242 +(0001D4) S_LABEL32: [0001:00029451], $L42243 +(0001E8) S_BPREL32: [00000008], Type: 0x12DB, __formal + +(000200) S_END + +(000204) S_GPROC32: [0001:00029470], Cb: 0000004F, Type: 0x1649, MxCollection::~MxCollection + Parent: 00000000, End: 00000298, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00025C) S_LABEL32: [0001:000294B7], $L42251 +(000270) S_LABEL32: [0001:000294AD], $L42250 +(000284) S_BPREL32: [FFFFFFF0], Type: 0x1648, this + +(000298) S_END + +(00029C) S_GPROC32: [0001:000294C0], Cb: 0000005D, Type: 0x164D, MxCollection::Compare + Parent: 00000000, End: 00000360, Next: 00000000 + Debug start: 0000001A, Debug end: 00000036 + Flags: Frame Ptr Present + +(0002E4) S_LABEL32: [0001:00029515], $L42259 +(0002F8) S_LABEL32: [0001:0002950B], $L42258 +(00030C) S_LABEL32: [0001:00029503], $L42260 +(000320) S_REGISTER: ecx, Type: 0x1648, this +(000330) S_BPREL32: [00000008], Type: 0x12DB, __formal +(000348) S_BPREL32: [00000018], Type: 0x12DB, __formal + +(000360) S_END + +(000364) S_GPROC32: [0001:00029520], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000410, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0003C0) S_LABEL32: [0001:0002957F], $L42268 +(0003D4) S_LABEL32: [0001:00029575], $L42266 +(0003E8) S_BPREL32: [FFFFFFF0], Type: 0x1648, this +(0003FC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000410) S_END + +(000414) S_GPROC32: [0001:00029590], Cb: 000000E5, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 000004E4, Next: 00000000 + Debug start: 00000021, Debug end: 000000B6 + Flags: Frame Ptr Present + +(00046C) S_LABEL32: [0001:0002966D], $L42277 +(000480) S_LABEL32: [0001:00029663], $L42275 +(000494) S_LABEL32: [0001:0002965B], $L42281 +(0004A8) S_LABEL32: [0001:00029653], $L42286 +(0004BC) S_BPREL32: [FFFFFFF0], Type: 0x164F, this +(0004D0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0004E4) S_END + +(0004E8) S_GPROC32: [0001:00029680], Cb: 0000005E, Type: 0x1670, MxListEntry::GetValue + Parent: 00000000, End: 00000584, Next: 00000000 + Debug start: 00000023, Debug end: 00000037 + Flags: Frame Ptr Present + +(000530) S_LABEL32: [0001:000296D4], $L42329 +(000544) S_LABEL32: [0001:000296C5], $L42332 +(000558) S_REGISTER: ecx, Type: 0x166E, this +(000568) S_BPREL32: [00000008], Type: T_NOTYPE(0000), __$ReturnUdt + +(000584) S_END + +(000588) S_GPROC32: [0001:000296E0], Cb: 00000006, Type: 0x1652, MxDSSelectAction::ClassName + Parent: 00000000, End: 000005DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0005CC) S_REGISTER: ecx, Type: 0x1651, this + +(0005DC) S_END + +(0005E0) S_GPROC32: [0001:000296F0], Cb: 0000013E, Type: 0x1653, MxDSSelectAction::IsA + Parent: 00000000, End: 00000644, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(000620) S_REGISTER: ecx, Type: 0x1651, this +(000630) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000644) S_END + +(000648) S_GPROC32: [0001:00029830], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSSelectAction::`scalar deleting destructor' + Parent: 00000000, End: 000006C4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0006A0) S_REGISTER: esi, Type: 0x1645, this +(0006B0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0006C4) S_END + +(0006C8) S_GPROC32: [0001:00029850], Cb: 00000061, Type: T_NOTYPE(0000), MxStringList::`scalar deleting destructor' + Parent: 00000000, End: 0000076C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00071C) S_LABEL32: [0001:000298A9], $L42425 +(000730) S_LABEL32: [0001:0002989F], $L42423 +(000744) S_BPREL32: [FFFFFFF0], Type: 0x1655, this +(000758) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00076C) S_END + +(000770) S_GPROC32: [0001:000298C0], Cb: 0000007D, Type: 0x1646, MxDSSelectAction::~MxDSSelectAction + Parent: 00000000, End: 0000080C, Next: 00000000 + Debug start: 00000021, Debug end: 00000050 + Flags: Frame Ptr Present + +(0007BC) S_LABEL32: [0001:00029935], $L42436 +(0007D0) S_LABEL32: [0001:0002992B], $L42435 +(0007E4) S_LABEL32: [0001:0002991D], $L42437 +(0007F8) S_BPREL32: [FFFFFFF0], Type: 0x1645, this + +(00080C) S_END + +(000810) S_GPROC32: [0001:00029940], Cb: 000001E9, Type: 0x1658, MxDSSelectAction::CopyFrom + Parent: 00000000, End: 00000964, Next: 00000000 + Debug start: 00000027, Debug end: 0000019F + Flags: Frame Ptr Present + +(000854) S_LABEL32: [0001:00029B21], $L42474 +(000868) S_LABEL32: [0001:00029B17], $L42446 +(00087C) S_LABEL32: [0001:00029B0F], $L42479 +(000890) S_LABEL32: [0001:00029B07], $L42447 +(0008A4) S_LABEL32: [0001:00029AFF], $L42451 +(0008B8) S_LABEL32: [0001:00029AF7], $L42453 +(0008CC) S_LABEL32: [0001:00029AEF], $L42448 +(0008E0) S_LABEL32: [0001:00029AC2], $L42449 +(0008F4) S_LABEL32: [0001:00029ABA], $L42462 +(000908) S_BPREL32: [FFFFFFDC], Type: 0x1645, this +(00091C) S_BPREL32: [00000008], Type: 0x1656, p_dsSelectAction +(00093C) S_BPREL32: [FFFFFFE0], Type: 0x2D0F, cursor +(000950) S_BPREL32: [FFFFFFB0], Type: 0x12DB, string + +(000964) S_END + +(000968) S_GPROC32: [0001:00029B30], Cb: 00000082, Type: 0x1661, MxList::Append + Parent: 00000000, End: 00000A08, Next: 00000000 + Debug start: 00000023, Debug end: 00000058 + Flags: Frame Ptr Present + +(0009A8) S_LABEL32: [0001:00029BAA], $L42512 +(0009BC) S_LABEL32: [0001:00029BA0], $L42511 +(0009D0) S_LABEL32: [0001:00029B98], $L42513 +(0009E4) S_REGISTER: esi, Type: 0x164F, this +(0009F4) S_BPREL32: [00000008], Type: 0x12DB, p_obj + +(000A08) S_END + +(000A0C) S_GPROC32: [0001:00029BC0], Cb: 00000061, Type: T_NOTYPE(0000), MxStringListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000AB4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000A64) S_LABEL32: [0001:00029C19], $L42521 +(000A78) S_LABEL32: [0001:00029C0F], $L42519 +(000A8C) S_BPREL32: [FFFFFFF0], Type: 0x2D0A, this +(000AA0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000AB4) S_END + +(000AB8) S_GPROC32: [0001:00029C30], Cb: 00000049, Type: 0x1663, MxListCursor::~MxListCursor + Parent: 00000000, End: 00000B4C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000B10) S_LABEL32: [0001:00029C71], $L42530 +(000B24) S_LABEL32: [0001:00029C67], $L42529 +(000B38) S_BPREL32: [FFFFFFF0], Type: 0x1662, this + +(000B4C) S_END + +(000B50) S_GPROC32: [0001:00029C80], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000BFC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000BAC) S_LABEL32: [0001:00029CD9], $L42538 +(000BC0) S_LABEL32: [0001:00029CCF], $L42536 +(000BD4) S_BPREL32: [FFFFFFF0], Type: 0x1662, this +(000BE8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000BFC) S_END + +(000C00) S_GPROC32: [0001:00029CF0], Cb: 00000049, Type: 0x2D0D, MxStringListCursor::~MxStringListCursor + Parent: 00000000, End: 00000C8C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000C50) S_LABEL32: [0001:00029D31], $L42547 +(000C64) S_LABEL32: [0001:00029D27], $L42546 +(000C78) S_BPREL32: [FFFFFFF0], Type: 0x2D0A, this + +(000C8C) S_END + +(000C90) S_GPROC32: [0001:00029D40], Cb: 00000021, Type: 0x1664, MxDSSelectAction::operator= + Parent: 00000000, End: 00000D04, Next: 00000000 + Debug start: 00000002, Debug end: 0000001C + +(000CD4) S_REGISTER: edi, Type: 0x1645, this +(000CE4) S_BPREL32: [00000004], Type: 0x1656, p_dsSelectAction + +(000D04) S_END + +(000D08) S_GPROC32: [0001:00029D70], Cb: 00000088, Type: 0x1665, MxDSSelectAction::Clone + Parent: 00000000, End: 00000D80, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(000D48) S_LABEL32: [0001:00029DEB], $L42558 +(000D5C) S_LABEL32: [0001:00029DE1], $L42557 +(000D70) S_REGISTER: esi, Type: 0x1645, this + +(000D80) S_END + +(000D84) S_GPROC32: [0001:00029E00], Cb: 00000145, Type: 0x1666, MxDSSelectAction::GetSizeOnDisk + Parent: 00000000, End: 00000E9C, Next: 00000000 + Debug start: 0000001F, Debug end: 0000010F + Flags: Frame Ptr Present + +(000DCC) S_LABEL32: [0001:00029F3D], $L42568 +(000DE0) S_LABEL32: [0001:00029F33], $L42567 +(000DF4) S_LABEL32: [0001:00029F2B], $L42573 +(000E08) S_LABEL32: [0001:00029F23], $L42575 +(000E1C) S_LABEL32: [0001:00029F1B], $L42569 +(000E30) S_LABEL32: [0001:00029EE0], $L42584 +(000E44) S_BPREL32: [FFFFFFDC], Type: 0x1645, this +(000E58) S_BPREL32: [FFFFFFF0], Type: T_UINT4(0075), totalSizeOnDisk +(000E74) S_BPREL32: [FFFFFFE0], Type: 0x2D0F, cursor +(000E88) S_BPREL32: [FFFFFFCC], Type: 0x12DB, string + +(000E9C) S_END + +(000EA0) S_GPROC32: [0001:00029F50], Cb: 00000361, Type: 0x3500, MxDSSelectAction::Deserialize + Parent: 00000000, End: 00001058, Next: 00000000 + Debug start: 00000024, Debug end: 00000318 + Flags: Frame Ptr Present + +(000EE8) S_LABEL32: [0001:0002A2A9], $L42604 +(000EFC) S_LABEL32: [0001:0002A29F], $L42603 +(000F10) S_LABEL32: [0001:0002A297], $L42654 +(000F24) S_LABEL32: [0001:0002A28F], $L42659 +(000F38) S_LABEL32: [0001:0002A287], $L42605 +(000F4C) S_LABEL32: [0001:0002A27A], $L42613 +(000F60) S_BPREL32: [FFFFFFEC], Type: 0x1645, this +(000F74) S_BPREL32: [00000008], Type: 0x34FA, p_source +(000F8C) S_BPREL32: [0000000C], Type: T_SHORT(0011), p_unk0x24 +(000FA4) S_BPREL32: [FFFFFFDC], Type: T_UINT4(0075), count +(000FB8) S_BPREL32: [FFFFFFCC], Type: T_UINT4(0075), extraFlag +(000FD0) S_BPREL32: [FFFFFFB8], Type: 0x12DB, string +(000FE4) S_BPREL32: [FFFFFFE0], Type: 0x1668, buffer +(000FF8) S_REGISTER: si, Type: T_SHORT(0011), value +(001008) S_BPREL32: [FFFFFFD0], Type: T_INT4(0074), index +(00101C) S_BPREL32: [FFFFFFF0], Type: T_UINT4(0075), i +(00102C) S_BPREL32: [FFFFFFE6], Type: 0x109C, action +(001040) S_BPREL32: [FFFFFFD4], Type: T_UINT4(0075), extraFlag + +(001058) S_END + +(00105C) S_GPROC32: [0001:0002A2C0], Cb: 000000CD, Type: 0x1669, MxList::~MxList + Parent: 00000000, End: 0000110C, Next: 00000000 + Debug start: 00000021, Debug end: 0000009E + Flags: Frame Ptr Present + +(0010A8) S_LABEL32: [0001:0002A385], $L42701 +(0010BC) S_LABEL32: [0001:0002A37B], $L42700 +(0010D0) S_LABEL32: [0001:0002A373], $L42705 +(0010E4) S_LABEL32: [0001:0002A36B], $L42710 +(0010F8) S_BPREL32: [FFFFFFF0], Type: 0x164F, this + +(00110C) S_END + +(001110) S_GPROC32: [0001:0002A390], Cb: 000000E6, Type: 0x166D, MxList::InsertEntry + Parent: 00000000, End: 000011F8, Next: 00000000 + Debug start: 00000027, Debug end: 000000B7 + Flags: Frame Ptr Present + +(001158) S_LABEL32: [0001:0002A46E], $L42743 +(00116C) S_LABEL32: [0001:0002A464], $L42742 +(001180) S_LABEL32: [0001:0002A457], $L42744 +(001194) S_LABEL32: [0001:0002A3FB], $L42745 +(0011A8) S_REGISTER: ebx, Type: 0x164F, this +(0011B8) S_BPREL32: [00000008], Type: 0x12DB, p_newobj +(0011D0) S_BPREL32: [00000018], Type: 0x166B, p_prev +(0011E4) S_BPREL32: [0000001C], Type: 0x166B, p_next + +(0011F8) S_END + +(0011FC) S_GPROC32: [0001:0002A480], Cb: 00000082, Type: 0x166F, MxListEntry::MxListEntry + Parent: 00000000, End: 000012DC, Next: 00000000 + Debug start: 0000001B, Debug end: 0000005B + Flags: Frame Ptr Present + +(001250) S_LABEL32: [0001:0002A4FA], $L42759 +(001264) S_LABEL32: [0001:0002A4F0], $L42758 +(001278) S_LABEL32: [0001:0002A4E8], $L42760 +(00128C) S_BPREL32: [FFFFFFF0], Type: 0x166E, this +(0012A0) S_BPREL32: [00000008], Type: 0x12DB, p_obj +(0012B4) S_BPREL32: [00000018], Type: 0x166B, p_prev +(0012C8) S_BPREL32: [0000001C], Type: 0x166B, p_next + +(0012DC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsparallelaction.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00028EF0], Cb: 00000063, Type: 0x1673, MxDSParallelAction::MxDSParallelAction + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 00000042 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:00028F4B], $L12957 +(0000F0) S_LABEL32: [0001:00028F41], $L12956 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x1672, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:00028F60], Cb: 00000006, Type: 0x1676, MxDSParallelAction::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x1675, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00028F70], Cb: 0000010A, Type: 0x1677, MxDSParallelAction::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001B8) S_REGISTER: ecx, Type: 0x1675, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00029080], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSParallelAction::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x1672, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:000290A0], Cb: 0000004F, Type: 0x1673, MxDSParallelAction::~MxDSParallelAction + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002B0) S_LABEL32: [0001:000290E7], $L13035 +(0002C4) S_LABEL32: [0001:000290DD], $L13034 +(0002D8) S_BPREL32: [FFFFFFF0], Type: 0x1672, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:000290F0], Cb: 00000003, Type: 0x167A, MxDSParallelAction::CopyFrom + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000334) S_REGISTER: ecx, Type: 0x1672, this +(000344) S_BPREL32: [00000004], Type: 0x1678, p_dsParallelAction + +(000364) S_END + +(000368) S_GPROC32: [0001:00029100], Cb: 0000002A, Type: 0x167B, MxDSParallelAction::operator= + Parent: 00000000, End: 000003E0, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(0003B0) S_REGISTER: edi, Type: 0x1672, this +(0003C0) S_BPREL32: [00000004], Type: 0x1678, p_dsParallelAction + +(0003E0) S_END + +(0003E4) S_GPROC32: [0001:00029130], Cb: 00000088, Type: 0x167C, MxDSParallelAction::Clone + Parent: 00000000, End: 00000460, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(000428) S_LABEL32: [0001:000291AB], $L13048 +(00043C) S_LABEL32: [0001:000291A1], $L13047 +(000450) S_REGISTER: esi, Type: 0x1672, this + +(000460) S_END + +(000464) S_GPROC32: [0001:000291C0], Cb: 0000014D, Type: 0x167D, MxDSParallelAction::GetDuration + Parent: 00000000, End: 00000560, Next: 00000000 + Debug start: 00000021, Debug end: 0000011A + Flags: Frame Ptr Present + +(0004AC) S_LABEL32: [0001:00029305], $L13058 +(0004C0) S_LABEL32: [0001:000292FB], $L13057 +(0004D4) S_LABEL32: [0001:000292F3], $L13063 +(0004E8) S_LABEL32: [0001:000292EB], $L13065 +(0004FC) S_REGISTER: esi, Type: 0x1672, this +(00050C) S_BPREL32: [FFFFFFF0], Type: 0x109C, action +(000520) S_BPREL32: [FFFFFFE0], Type: 0x2D08, cursor +(000534) S_REGISTER: edi, Type: T_LONG(0012), duration +(000548) S_REGISTER: eax, Type: T_LONG(0012), sustainTime + +(000560) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsobjectaction.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00028C20], Cb: 00000063, Type: 0x1682, MxDSObjectAction::MxDSObjectAction + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 00000042 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00028C7B], $L12484 +(0000E8) S_LABEL32: [0001:00028C71], $L12483 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x1681, this + +(000110) S_END + +(000114) S_GPROC32: [0001:00028C90], Cb: 00000006, Type: 0x1685, MxDSObjectAction::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x1684, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00028CA0], Cb: 0000010A, Type: 0x1686, MxDSObjectAction::IsA + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001AC) S_REGISTER: ecx, Type: 0x1684, this +(0001BC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:00028DB0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSObjectAction::`scalar deleting destructor' + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00022C) S_REGISTER: esi, Type: 0x1681, this +(00023C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000250) S_END + +(000254) S_GPROC32: [0001:00028DD0], Cb: 0000004F, Type: 0x1682, MxDSObjectAction::~MxDSObjectAction + Parent: 00000000, End: 000002DC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002A0) S_LABEL32: [0001:00028E17], $L12569 +(0002B4) S_LABEL32: [0001:00028E0D], $L12568 +(0002C8) S_BPREL32: [FFFFFFF0], Type: 0x1681, this + +(0002DC) S_END + +(0002E0) S_GPROC32: [0001:00028E20], Cb: 00000003, Type: 0x1689, MxDSObjectAction::CopyFrom + Parent: 00000000, End: 00000354, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000324) S_REGISTER: ecx, Type: 0x1681, this +(000334) S_BPREL32: [00000004], Type: 0x1687, p_dsObjectAction + +(000354) S_END + +(000358) S_GPROC32: [0001:00028E30], Cb: 0000002A, Type: 0x168A, MxDSObjectAction::operator= + Parent: 00000000, End: 000003CC, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(00039C) S_REGISTER: edi, Type: 0x1681, this +(0003AC) S_BPREL32: [00000004], Type: 0x1687, p_dsObjectAction + +(0003CC) S_END + +(0003D0) S_GPROC32: [0001:00028E60], Cb: 00000088, Type: 0x168B, MxDSObjectAction::Clone + Parent: 00000000, End: 00000448, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(000410) S_LABEL32: [0001:00028EDB], $L12582 +(000424) S_LABEL32: [0001:00028ED1], $L12581 +(000438) S_REGISTER: ebx, Type: 0x1681, this + +(000448) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsobject.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000284A0], Cb: 00000085, Type: 0x168D, MxDSObject::MxDSObject + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 0000001C, Debug end: 00000059 + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0002851D], $L47271 +(0000D8) S_LABEL32: [0001:00028513], $L47270 +(0000EC) S_LABEL32: [0001:00028508], $L47272 +(000100) S_BPREL32: [FFFFFFF0], Type: 0x168C, this + +(000114) S_END + +(000118) S_GPROC32: [0001:00028530], Cb: 00000006, Type: 0x1690, MxDSObject::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x168F, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00028540], Cb: 00000072, Type: 0x1691, MxDSObject::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001A4) S_REGISTER: ecx, Type: 0x168F, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:000285C0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSObject::`scalar deleting destructor' + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00021C) S_REGISTER: esi, Type: 0x168C, this +(00022C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000240) S_END + +(000244) S_GPROC32: [0001:000285E0], Cb: 00000085, Type: 0x168D, MxDSObject::~MxDSObject + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000021, Debug end: 0000005B + Flags: Frame Ptr Present + +(000284) S_LABEL32: [0001:0002865D], $L47315 +(000298) S_LABEL32: [0001:00028653], $L47314 +(0002AC) S_LABEL32: [0001:00028648], $L47316 +(0002C0) S_BPREL32: [FFFFFFF0], Type: 0x168C, this + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:00028670], Cb: 00000047, Type: 0x1692, MxDSObject::CopyFrom + Parent: 00000000, End: 0000033C, Next: 00000000 + Debug start: 00000002, Debug end: 00000043 + +(000314) S_REGISTER: esi, Type: 0x168C, this +(000324) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(00033C) S_END + +(000340) S_GPROC32: [0001:000286C0], Cb: 0000001F, Type: 0x1693, MxDSObject::operator= + Parent: 00000000, End: 000003A8, Next: 00000000 + Debug start: 00000005, Debug end: 0000001B + +(000380) S_REGISTER: esi, Type: 0x168C, this +(000390) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(0003A8) S_END + +(0003AC) S_GPROC32: [0001:000286E0], Cb: 00000070, Type: 0x1694, MxDSObject::SetObjectName + Parent: 00000000, End: 0000041C, Next: 00000000 + Debug start: 00000006, Debug end: 0000006A + +(0003F0) S_REGISTER: ebx, Type: 0x168C, this +(000400) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_objectName + +(00041C) S_END + +(000420) S_GPROC32: [0001:00028750], Cb: 00000070, Type: 0x1694, MxDSObject::SetSourceName + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 00000006, Debug end: 0000006A + +(000464) S_REGISTER: ebx, Type: 0x168C, this +(000474) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_sourceName + +(000490) S_END + +(000494) S_GPROC32: [0001:000287C0], Cb: 00000006, Type: 0x1695, MxDSObject::VTable0x14 + Parent: 00000000, End: 000004E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0004D4) S_REGISTER: ecx, Type: 0x168C, this + +(0004E4) S_END + +(0004E8) S_GPROC32: [0001:000287D0], Cb: 0000004E, Type: 0x1695, MxDSObject::GetSizeOnDisk + Parent: 00000000, End: 00000554, Next: 00000000 + Debug start: 00000004, Debug end: 0000004C + +(00052C) S_REGISTER: edx, Type: 0x168C, this +(00053C) S_REGISTER: esi, Type: T_UINT4(0075), sizeOnDisk + +(000554) S_END + +(000558) S_GPROC32: [0001:00028820], Cb: 00000060, Type: 0x3501, MxDSObject::Deserialize + Parent: 00000000, End: 000005D8, Next: 00000000 + Debug start: 00000005, Debug end: 0000005B + +(000598) S_REGISTER: esi, Type: 0x168C, this +(0005A8) S_BPREL32: [00000004], Type: 0x34FA, p_source +(0005C0) S_BPREL32: [00000008], Type: T_SHORT(0011), p_unk0x24 + +(0005D8) S_END + +(0005DC) S_GPROC32: [0001:00028880], Cb: 000003A0, Type: 0x3502, DeserializeDSObjectDispatch + Parent: 00000000, End: 00000770, Next: 00000000 + Debug start: 00000021, Debug end: 0000003C + Flags: Frame Ptr Present + +(000620) S_LABEL32: [0001:00028BE2], $L47400 +(000634) S_LABEL32: [0001:00028BD8], $L47366 +(000648) S_LABEL32: [0001:00028B82], $L47397 +(00065C) S_LABEL32: [0001:00028B4A], $L47394 +(000670) S_LABEL32: [0001:00028B12], $L47391 +(000684) S_LABEL32: [0001:00028AD3], $L47388 +(000698) S_LABEL32: [0001:00028A94], $L47385 +(0006AC) S_LABEL32: [0001:00028A55], $L47382 +(0006C0) S_LABEL32: [0001:00028A11], $L47379 +(0006D4) S_LABEL32: [0001:000289CD], $L47376 +(0006E8) S_LABEL32: [0001:00028989], $L47373 +(0006FC) S_LABEL32: [0001:00028945], $L47370 +(000710) S_LABEL32: [0001:00028901], $L47367 +(000724) S_BPREL32: [00000008], Type: 0x34FA, p_source +(00073C) S_BPREL32: [0000000C], Type: T_SHORT(0011), p_flags +(000750) S_REGISTER: ebx, Type: 0x1697, obj +(000760) S_REGISTER: ax, Type: T_USHORT(0021), type + +(000770) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsmultiaction.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00027660], Cb: 000000F4, Type: 0x169B, MxDSMultiAction::MxDSMultiAction + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 00000020, Debug end: 000000CE + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0002774C], $L12916 +(0000E4) S_LABEL32: [0001:00027742], $L12915 +(0000F8) S_LABEL32: [0001:00027735], $L12917 +(00010C) S_LABEL32: [0001:00027700], $L12924 +(000120) S_LABEL32: [0001:000276F8], $L12926 +(000134) S_LABEL32: [0001:000276F0], $L12928 +(000148) S_BPREL32: [FFFFFFEC], Type: 0x169A, this + +(00015C) S_END + +(000160) S_GPROC32: [0001:00027760], Cb: 0000001A, Type: 0x1704, MxDSActionList::Compare + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(0001A0) S_REGISTER: ecx, Type: 0x16A3, this +(0001B0) S_BPREL32: [00000004], Type: 0x109C, p_a +(0001C0) S_BPREL32: [00000008], Type: 0x109C, p_b + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:00027780], Cb: 0000000F, Type: 0x1705, MxDSActionList::Destroy + Parent: 00000000, End: 0000022C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(000214) S_BPREL32: [00000004], Type: 0x109C, p_action + +(00022C) S_END + +(000230) S_GPROC32: [0001:00027790], Cb: 00000001, Type: 0x169F, MxCollection::Destroy + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00027C) S_BPREL32: [00000004], Type: 0x109C, __formal + +(000294) S_END + +(000298) S_GPROC32: [0001:000277A0], Cb: 0000004F, Type: 0x169E, MxCollection::~MxCollection + Parent: 00000000, End: 00000334, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002F8) S_LABEL32: [0001:000277E7], $L12975 +(00030C) S_LABEL32: [0001:000277DD], $L12974 +(000320) S_BPREL32: [FFFFFFF0], Type: 0x169D, this + +(000334) S_END + +(000338) S_GPROC32: [0001:000277F0], Cb: 00000005, Type: 0x16A1, MxCollection::Compare + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000384) S_REGISTER: ecx, Type: 0x169D, this +(000394) S_BPREL32: [00000004], Type: 0x109C, __formal +(0003AC) S_BPREL32: [00000008], Type: 0x109C, __formal + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:00027800], Cb: 00000061, Type: T_NOTYPE(0000), MxDSActionList::`scalar deleting destructor' + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00041C) S_LABEL32: [0001:00027859], $L12985 +(000430) S_LABEL32: [0001:0002784F], $L12983 +(000444) S_BPREL32: [FFFFFFF0], Type: 0x16A3, this +(000458) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00046C) S_END + +(000470) S_GPROC32: [0001:00027870], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000520, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0004D0) S_LABEL32: [0001:000278CF], $L12994 +(0004E4) S_LABEL32: [0001:000278C5], $L12992 +(0004F8) S_BPREL32: [FFFFFFF0], Type: 0x169D, this +(00050C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000520) S_END + +(000524) S_GPROC32: [0001:000278E0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 000005D0, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(000580) S_LABEL32: [0001:0002797B], $L13003 +(000594) S_LABEL32: [0001:00027971], $L13001 +(0005A8) S_BPREL32: [FFFFFFF0], Type: 0x16A4, this +(0005BC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0005D0) S_END + +(0005D4) S_GPROC32: [0001:00027990], Cb: 00000006, Type: 0x16A7, MxDSMultiAction::ClassName + Parent: 00000000, End: 00000628, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000618) S_REGISTER: ecx, Type: 0x16A6, this + +(000628) S_END + +(00062C) S_GPROC32: [0001:000279A0], Cb: 000000D6, Type: 0x16A8, MxDSMultiAction::IsA + Parent: 00000000, End: 0000068C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(000668) S_REGISTER: ecx, Type: 0x16A6, this +(000678) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00068C) S_END + +(000690) S_GPROC32: [0001:00027A80], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSMultiAction::`scalar deleting destructor' + Parent: 00000000, End: 0000070C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0006E8) S_REGISTER: esi, Type: 0x169A, this +(0006F8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00070C) S_END + +(000710) S_GPROC32: [0001:00027AA0], Cb: 00000066, Type: 0x169B, MxDSMultiAction::~MxDSMultiAction + Parent: 00000000, End: 00000798, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(00075C) S_LABEL32: [0001:00027AFE], $L13088 +(000770) S_LABEL32: [0001:00027AF4], $L13087 +(000784) S_BPREL32: [FFFFFFF0], Type: 0x169A, this + +(000798) S_END + +(00079C) S_GPROC32: [0001:00027B10], Cb: 00000185, Type: 0x16AB, MxDSMultiAction::CopyFrom + Parent: 00000000, End: 0000089C, Next: 00000000 + Debug start: 00000027, Debug end: 00000151 + Flags: Frame Ptr Present + +(0007E0) S_LABEL32: [0001:00027C8D], $L13097 +(0007F4) S_LABEL32: [0001:00027C83], $L13096 +(000808) S_LABEL32: [0001:00027C7B], $L13134 +(00081C) S_LABEL32: [0001:00027C73], $L13136 +(000830) S_LABEL32: [0001:00027C48], $L13100 +(000844) S_BPREL32: [FFFFFFE0], Type: 0x169A, this +(000858) S_BPREL32: [00000008], Type: 0x16A9, p_dsMultiAction +(000874) S_BPREL32: [FFFFFFDC], Type: 0x109C, action +(000888) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(00089C) S_END + +(0008A0) S_GPROC32: [0001:00027CA0], Cb: 0000002A, Type: 0x16AE, MxDSMultiAction::operator= + Parent: 00000000, End: 00000910, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(0008E4) S_REGISTER: edi, Type: 0x169A, this +(0008F4) S_BPREL32: [00000004], Type: 0x16A9, p_dsMultiAction + +(000910) S_END + +(000914) S_GPROC32: [0001:00027CD0], Cb: 000000D6, Type: 0x16AF, MxDSMultiAction::SetUnknown90 + Parent: 00000000, End: 000009FC, Next: 00000000 + Debug start: 00000021, Debug end: 000000A2 + Flags: Frame Ptr Present + +(00095C) S_LABEL32: [0001:00027D9E], $L13212 +(000970) S_LABEL32: [0001:00027D94], $L13211 +(000984) S_LABEL32: [0001:00027D8C], $L13214 +(000998) S_LABEL32: [0001:00027D84], $L13216 +(0009AC) S_REGISTER: ecx, Type: 0x169A, this +(0009BC) S_BPREL32: [00000008], Type: T_LONG(0012), p_unk0x90 +(0009D4) S_BPREL32: [FFFFFFE0], Type: 0x109C, action +(0009E8) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(0009FC) S_END + +(000A00) S_GPROC32: [0001:00027DB0], Cb: 000000D8, Type: 0x16B0, MxDSMultiAction::MergeFrom + Parent: 00000000, End: 00000AE8, Next: 00000000 + Debug start: 00000021, Debug end: 000000A4 + Flags: Frame Ptr Present + +(000A44) S_LABEL32: [0001:00027E80], $L13240 +(000A58) S_LABEL32: [0001:00027E76], $L13239 +(000A6C) S_LABEL32: [0001:00027E6E], $L13242 +(000A80) S_LABEL32: [0001:00027E66], $L13244 +(000A94) S_REGISTER: edi, Type: 0x169A, this +(000AA4) S_BPREL32: [00000008], Type: 0x108E, p_dsMultiAction +(000AC0) S_BPREL32: [FFFFFFE0], Type: 0x109C, action +(000AD4) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(000AE8) S_END + +(000AEC) S_GPROC32: [0001:00027E90], Cb: 000000F2, Type: 0x16B1, MxDSMultiAction::HasId + Parent: 00000000, End: 00000BCC, Next: 00000000 + Debug start: 00000021, Debug end: 00000028 + Flags: Frame Ptr Present + +(000B2C) S_LABEL32: [0001:00027F7A], $L13270 +(000B40) S_LABEL32: [0001:00027F70], $L13269 +(000B54) S_LABEL32: [0001:00027F68], $L13273 +(000B68) S_LABEL32: [0001:00027F60], $L13275 +(000B7C) S_REGISTER: ecx, Type: 0x169A, this +(000B8C) S_BPREL32: [00000008], Type: T_UINT4(0075), p_objectId +(000BA4) S_BPREL32: [FFFFFFE0], Type: 0x109C, action +(000BB8) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(000BCC) S_END + +(000BD0) S_GPROC32: [0001:00027F90], Cb: 00000088, Type: 0x16B2, MxDSMultiAction::Clone + Parent: 00000000, End: 00000C48, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(000C10) S_LABEL32: [0001:0002800B], $L13302 +(000C24) S_LABEL32: [0001:00028001], $L13301 +(000C38) S_REGISTER: ebx, Type: 0x169A, this + +(000C48) S_END + +(000C4C) S_GPROC32: [0001:00028020], Cb: 000000D9, Type: 0x16B3, MxDSMultiAction::VTable0x14 + Parent: 00000000, End: 00000D2C, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AA + Flags: Frame Ptr Present + +(000C90) S_LABEL32: [0001:000280F1], $L13312 +(000CA4) S_LABEL32: [0001:000280E7], $L13311 +(000CB8) S_LABEL32: [0001:000280DF], $L13314 +(000CCC) S_LABEL32: [0001:000280D7], $L13316 +(000CE0) S_REGISTER: esi, Type: 0x169A, this +(000CF0) S_BPREL32: [FFFFFFDC], Type: 0x109C, action +(000D04) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor +(000D18) S_BPREL32: [FFFFFFE0], Type: T_UINT4(0075), result + +(000D2C) S_END + +(000D30) S_GPROC32: [0001:00028100], Cb: 000000F0, Type: 0x16B3, MxDSMultiAction::GetSizeOnDisk + Parent: 00000000, End: 00000E1C, Next: 00000000 + Debug start: 00000020, Debug end: 000000C0 + Flags: Frame Ptr Present + +(000D78) S_LABEL32: [0001:000281E8], $L13341 +(000D8C) S_LABEL32: [0001:000281DE], $L13340 +(000DA0) S_LABEL32: [0001:000281D6], $L13343 +(000DB4) S_LABEL32: [0001:000281CE], $L13345 +(000DC8) S_REGISTER: esi, Type: 0x169A, this +(000DD8) S_BPREL32: [FFFFFFE0], Type: T_UINT4(0075), totalSizeOnDisk +(000DF4) S_BPREL32: [FFFFFFDC], Type: 0x109C, action +(000E08) S_BPREL32: [FFFFFFE4], Type: 0x2D08, cursor + +(000E1C) S_END + +(000E20) S_GPROC32: [0001:000281F0], Cb: 00000104, Type: 0x3503, MxDSMultiAction::Deserialize + Parent: 00000000, End: 00000F10, Next: 00000000 + Debug start: 00000027, Debug end: 000000DC + Flags: Frame Ptr Present + +(000E64) S_LABEL32: [0001:000282E7], $L13371 +(000E78) S_LABEL32: [0001:000282DD], $L13370 +(000E8C) S_BPREL32: [FFFFFFE0], Type: 0x169A, this +(000EA0) S_BPREL32: [00000008], Type: 0x34FA, p_source +(000EB8) S_BPREL32: [0000000C], Type: T_SHORT(0011), p_unk0x24 +(000ED0) S_BPREL32: [FFFFFFEC], Type: T_UINT4(0075), count +(000EE4) S_BPREL32: [FFFFFFE8], Type: T_UINT4(0075), extraFlag +(000EFC) S_BPREL32: [FFFFFFE4], Type: 0x109C, action + +(000F10) S_END + +(000F14) S_GPROC32: [0001:00028300], Cb: 0000010D, Type: 0x16B6, MxDSMultiAction::SetAtomId + Parent: 00000000, End: 00001024, Next: 00000000 + Debug start: 00000026, Debug end: 000000CB + Flags: Frame Ptr Present + +(000F58) S_LABEL32: [0001:00028405], $L13412 +(000F6C) S_LABEL32: [0001:000283FB], $L13411 +(000F80) S_LABEL32: [0001:000283F3], $L13414 +(000F94) S_LABEL32: [0001:000283EB], $L13413 +(000FA8) S_LABEL32: [0001:000283E3], $L13418 +(000FBC) S_LABEL32: [0001:000283DB], $L13420 +(000FD0) S_BPREL32: [FFFFFFDC], Type: 0x169A, this +(000FE4) S_BPREL32: [00000008], Type: 0x4E96, p_atomId +(000FFC) S_BPREL32: [FFFFFFF0], Type: 0x109C, action +(001010) S_BPREL32: [FFFFFFE0], Type: 0x2D08, cursor + +(001024) S_END + +(001028) S_GPROC32: [0001:00028410], Cb: 0000008B, Type: 0x16B7, MxList::~MxList + Parent: 00000000, End: 000010B8, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(00107C) S_LABEL32: [0001:00028493], $L13445 +(001090) S_LABEL32: [0001:00028489], $L13444 +(0010A4) S_BPREL32: [FFFFFFF0], Type: 0x16A4, this + +(0010B8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsmediaaction.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00027250], Cb: 00000096, Type: 0x16BA, MxDSMediaAction::MxDSMediaAction + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000078 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000272DE], $L46262 +(0000E4) S_LABEL32: [0001:000272D4], $L46261 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x16B9, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:000272F0], Cb: 00000006, Type: 0x16BD, MxDSMediaAction::ClassName + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000154) S_REGISTER: ecx, Type: 0x16BC, this + +(000164) S_END + +(000168) S_GPROC32: [0001:00027300], Cb: 000000D6, Type: 0x16BE, MxDSMediaAction::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001A4) S_REGISTER: ecx, Type: 0x16BC, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:000273E0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSMediaAction::`scalar deleting destructor' + Parent: 00000000, End: 00000248, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000224) S_REGISTER: esi, Type: 0x16B9, this +(000234) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000248) S_END + +(00024C) S_GPROC32: [0001:00027400], Cb: 00000065, Type: 0x16BA, MxDSMediaAction::~MxDSMediaAction + Parent: 00000000, End: 000002D4, Next: 00000000 + Debug start: 00000021, Debug end: 00000046 + Flags: Frame Ptr Present + +(000298) S_LABEL32: [0001:0002745D], $L46331 +(0002AC) S_LABEL32: [0001:00027453], $L46330 +(0002C0) S_BPREL32: [FFFFFFF0], Type: 0x16B9, this + +(0002D4) S_END + +(0002D8) S_GPROC32: [0001:00027470], Cb: 0000005F, Type: 0x16C1, MxDSMediaAction::CopyFrom + Parent: 00000000, End: 00000348, Next: 00000000 + Debug start: 00000002, Debug end: 0000005B + +(00031C) S_REGISTER: esi, Type: 0x16B9, this +(00032C) S_BPREL32: [00000004], Type: 0x16BF, p_dsMediaAction + +(000348) S_END + +(00034C) S_GPROC32: [0001:000274D0], Cb: 0000002A, Type: 0x16C2, MxDSMediaAction::operator= + Parent: 00000000, End: 000003BC, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(000390) S_REGISTER: edi, Type: 0x16B9, this +(0003A0) S_BPREL32: [00000004], Type: 0x16BF, p_dsMediaAction + +(0003BC) S_END + +(0003C0) S_GPROC32: [0001:00027500], Cb: 00000079, Type: 0x16C3, MxDSMediaAction::CopyMediaSrcPath + Parent: 00000000, End: 00000438, Next: 00000000 + Debug start: 00000009, Debug end: 00000073 + +(00040C) S_REGISTER: ebx, Type: 0x16B9, this +(00041C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_mediaSrcPath + +(000438) S_END + +(00043C) S_GPROC32: [0001:00027580], Cb: 00000042, Type: 0x16C4, MxDSMediaAction::GetSizeOnDisk + Parent: 00000000, End: 000004B0, Next: 00000000 + Debug start: 00000006, Debug end: 0000003E + +(000484) S_REGISTER: ebx, Type: 0x16B9, this +(000494) S_REGISTER: ebp, Type: T_UINT4(0075), totalSizeOnDisk + +(0004B0) S_END + +(0004B4) S_GPROC32: [0001:000275D0], Cb: 0000008F, Type: 0x3504, MxDSMediaAction::Deserialize + Parent: 00000000, End: 00000538, Next: 00000000 + Debug start: 0000000D, Debug end: 0000008B + +(0004F8) S_REGISTER: esi, Type: 0x16B9, this +(000508) S_BPREL32: [00000004], Type: 0x34FA, p_source +(000520) S_BPREL32: [00000008], Type: T_SHORT(0011), p_unk0x24 + +(000538) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsfile.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00026C40], Cb: 00000083, Type: 0x16C8, MxDSFile::~MxDSFile + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 00000021, Debug end: 0000004E + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:00026CBB], $L30427 +(0000D0) S_LABEL32: [0001:00026CB1], $L30426 +(0000E4) S_LABEL32: [0001:00026CA6], $L30428 +(0000F8) S_LABEL32: [0001:00026C9B], $L30429 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x16C7, this + +(000120) S_END + +(000124) S_GPROC32: [0001:00026CD0], Cb: 00000049, Type: 0x16C9, MxDSSource::~MxDSSource + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000164) S_LABEL32: [0001:00026D11], $L30440 +(000178) S_LABEL32: [0001:00026D07], $L30439 +(00018C) S_BPREL32: [FFFFFFF0], Type: 0x1617, this + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00026D20], Cb: 00000006, Type: 0x16CC, MxDSFile::ClassName + Parent: 00000000, End: 000001F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001E0) S_REGISTER: ecx, Type: 0x16CB, this + +(0001F0) S_END + +(0001F4) S_GPROC32: [0001:00026D30], Cb: 000000A2, Type: 0x16CD, MxDSFile::IsA + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00022C) S_REGISTER: ecx, Type: 0x16CB, this +(00023C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000250) S_END + +(000254) S_GPROC32: [0001:00026DE0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSFile::`scalar deleting destructor' + Parent: 00000000, End: 000002C8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0002A4) S_REGISTER: esi, Type: 0x16C7, this +(0002B4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002C8) S_END + +(0002CC) S_GPROC32: [0001:00026E00], Cb: 000000D3, Type: 0x16CE, MxDSFile::MxDSFile + Parent: 00000000, End: 000003B8, Next: 00000000 + Debug start: 00000021, Debug end: 0000009B + Flags: Frame Ptr Present + +(000308) S_LABEL32: [0001:00026ECB], $L30482 +(00031C) S_LABEL32: [0001:00026EC1], $L30481 +(000330) S_LABEL32: [0001:00026EB9], $L30487 +(000344) S_LABEL32: [0001:00026EAE], $L30483 +(000358) S_LABEL32: [0001:00026EA3], $L30484 +(00036C) S_BPREL32: [FFFFFFF0], Type: 0x16C7, this +(000380) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_filename +(000398) S_BPREL32: [0000000C], Type: T_ULONG(0022), p_skipReadingChunks + +(0003B8) S_END + +(0003BC) S_GPROC32: [0001:00026EE0], Cb: 00000006, Type: 0x16D1, MxDSSource::ClassName + Parent: 00000000, End: 0000040C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0003FC) S_REGISTER: ecx, Type: 0x16D0, this + +(00040C) S_END + +(000410) S_GPROC32: [0001:00026EF0], Cb: 00000072, Type: 0x16D2, MxDSSource::IsA + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000448) S_REGISTER: ecx, Type: 0x16D0, this +(000458) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00046C) S_END + +(000470) S_GPROC32: [0001:00026F70], Cb: 00000061, Type: T_NOTYPE(0000), MxDSSource::`scalar deleting destructor' + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0004C0) S_LABEL32: [0001:00026FC9], $L30516 +(0004D4) S_LABEL32: [0001:00026FBF], $L30514 +(0004E8) S_BPREL32: [FFFFFFF0], Type: 0x1617, this +(0004FC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000510) S_END + +(000514) S_GPROC32: [0001:00026FE0], Cb: 00000087, Type: 0x16D3, MxDSFile::Open + Parent: 00000000, End: 0000059C, Next: 00000000 + Debug start: 0000000B, Debug end: 00000081 + +(00054C) S_REGISTER: ebp, Type: 0x16C7, this +(00055C) S_BPREL32: [00000004], Type: T_ULONG(0022), p_uStyle +(000574) S_REGISTER: esi, Type: 0x16D4, io +(000584) S_REGISTER: ebx, Type: T_LONG(0012), longResult + +(00059C) S_END + +(0005A0) S_GPROC32: [0001:00027070], Cb: 00000111, Type: 0x16D5, MxDSFile::ReadChunks + Parent: 00000000, End: 00000650, Next: 00000000 + Debug start: 00000012, Debug end: 0000010B + +(0005DC) S_REGISTER: edi, Type: 0x16C7, this +(0005EC) S_BPREL32: [FFFFFF88], Type: 0x15D5, topChunk +(000604) S_BPREL32: [FFFFFFB0], Type: 0x16D6, tempBuffer +(00061C) S_BPREL32: [FFFFFF9C], Type: 0x15D5, childChunk +(000634) S_REGISTER: ebx, Type: T_32PULONG(0422), pLengthInDWords + +(000650) S_END + +(000654) S_GPROC32: [0001:00027190], Cb: 0000003D, Type: 0x16D5, MxDSFile::Close + Parent: 00000000, End: 0000069C, Next: 00000000 + Debug start: 00000002, Debug end: 0000003B + +(00068C) S_REGISTER: esi, Type: 0x16C7, this + +(00069C) S_END + +(0006A0) S_GPROC32: [0001:000271D0], Cb: 0000002E, Type: 0x16D8, MxDSFile::Read + Parent: 00000000, End: 00000714, Next: 00000000 + Debug start: 0000000A, Debug end: 00000029 + +(0006D8) S_REGISTER: edi, Type: 0x16C7, this +(0006E8) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_buf +(0006FC) S_BPREL32: [00000008], Type: T_ULONG(0022), p_nbytes + +(000714) S_END + +(000718) S_GPROC32: [0001:00027200], Cb: 00000022, Type: 0x16DA, MxDSFile::Seek + Parent: 00000000, End: 00000790, Next: 00000000 + Debug start: 00000005, Debug end: 0000001F + +(000750) S_REGISTER: esi, Type: 0x16C7, this +(000760) S_BPREL32: [00000004], Type: T_LONG(0012), p_lOffset +(000778) S_BPREL32: [00000008], Type: T_INT4(0074), p_iOrigin + +(000790) S_END + +(000794) S_GPROC32: [0001:00027230], Cb: 00000004, Type: 0x16DB, MxDSFile::GetBufferSize + Parent: 00000000, End: 000007E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0007D4) S_REGISTER: ecx, Type: 0x16C7, this + +(0007E4) S_END + +(0007E8) S_GPROC32: [0001:00027240], Cb: 00000005, Type: 0x16DB, MxDSFile::GetStreamBuffersNum + Parent: 00000000, End: 00000840, Next: 00000000 + Debug start: 00000000, Debug end: 00000004 + +(000830) S_REGISTER: ecx, Type: 0x16C7, this + +(000840) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsevent.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00026970], Cb: 00000063, Type: 0x16DE, MxDSEvent::MxDSEvent + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000042 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:000269CB], $L12484 +(0000D4) S_LABEL32: [0001:000269C1], $L12483 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x16DD, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:000269E0], Cb: 00000006, Type: 0x16E1, MxDSEvent::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x16E0, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:000269F0], Cb: 0000010A, Type: 0x16E2, MxDSEvent::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000188) S_REGISTER: ecx, Type: 0x16E0, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:00026B00], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSEvent::`scalar deleting destructor' + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000200) S_REGISTER: esi, Type: 0x16DD, this +(000210) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000224) S_END + +(000228) S_GPROC32: [0001:00026B20], Cb: 0000004F, Type: 0x16DE, MxDSEvent::~MxDSEvent + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:00026B67], $L12569 +(00027C) S_LABEL32: [0001:00026B5D], $L12568 +(000290) S_BPREL32: [FFFFFFF0], Type: 0x16DD, this + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:00026B70], Cb: 00000003, Type: 0x16E5, MxDSEvent::CopyFrom + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002E4) S_REGISTER: ecx, Type: 0x16DD, this +(0002F4) S_BPREL32: [00000004], Type: 0x16E3, p_dsEvent + +(00030C) S_END + +(000310) S_GPROC32: [0001:00026B80], Cb: 0000002A, Type: 0x16E6, MxDSEvent::operator= + Parent: 00000000, End: 00000374, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(00034C) S_REGISTER: edi, Type: 0x16DD, this +(00035C) S_BPREL32: [00000004], Type: 0x16E3, p_dsEvent + +(000374) S_END + +(000378) S_GPROC32: [0001:00026BB0], Cb: 00000088, Type: 0x16E7, MxDSEvent::Clone + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0003B0) S_LABEL32: [0001:00026C2B], $L12582 +(0003C4) S_LABEL32: [0001:00026C21], $L12581 +(0003D8) S_REGISTER: ebx, Type: 0x16DD, this + +(0003E8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdschunk.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000267D0], Cb: 0000006C, Type: 0x16EA, MxDSChunk::MxDSChunk + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004B + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00026834], $L1087 +(0000D4) S_LABEL32: [0001:0002682A], $L1086 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x16E9, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:00026840], Cb: 00000006, Type: 0x16ED, MxDSChunk::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x16EC, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:00026850], Cb: 00000072, Type: 0x16EE, MxDSChunk::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000188) S_REGISTER: ecx, Type: 0x16EC, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:000268D0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSChunk::`scalar deleting destructor' + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000200) S_REGISTER: esi, Type: 0x16E9, this +(000210) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000224) S_END + +(000228) S_GPROC32: [0001:000268F0], Cb: 00000068, Type: 0x16EA, MxDSChunk::~MxDSChunk + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000021, Debug end: 00000049 + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:00026950], $L1120 +(00027C) S_LABEL32: [0001:00026946], $L1119 +(000290) S_BPREL32: [FFFFFFF0], Type: 0x16E9, this + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:00026960], Cb: 00000006, Type: 0x3CBB, MxDSChunk::ReturnE + Parent: 00000000, End: 000002E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002E4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsbuffer.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00025B80], Cb: 00000081, Type: 0x16F0, MxDSBuffer::MxDSBuffer + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000006A + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00025BF9], $L48228 +(0000D8) S_LABEL32: [0001:00025BEF], $L48227 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x16EF, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00025C10], Cb: 00000006, Type: 0x16F3, MxDSBuffer::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x16F2, this + +(000154) S_END + +(000158) S_GPROC32: [0001:00025C20], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSBuffer::`scalar deleting destructor' + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001A8) S_REGISTER: esi, Type: 0x16EF, this +(0001B8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:00025C40], Cb: 00000123, Type: 0x16F0, MxDSBuffer::~MxDSBuffer + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000032, Debug end: 00000102 + Flags: Frame Ptr Present + +(000210) S_LABEL32: [0001:00025D5B], $L48251 +(000224) S_LABEL32: [0001:00025D51], $L48250 +(000238) S_BPREL32: [FFFFFFF0], Type: 0x16EF, this +(00024C) S_REGISTER: esi, Type: 0x148B, streamer +(000260) S_REGISTER: edx, Type: T_UINT4(0075), bit +(000270) S_REGISTER: eax, Type: T_UINT4(0075), index +(000280) S_REGISTER: eax, Type: T_UINT4(0075), a +(00028C) S_REGISTER: edx, Type: T_UINT4(0075), bit +(00029C) S_REGISTER: eax, Type: T_UINT4(0075), index +(0002AC) S_REGISTER: eax, Type: T_UINT4(0075), a + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:00025D70], Cb: 00000137, Type: 0x16F5, MxDSBuffer::AllocateBuffer + Parent: 00000000, End: 00000380, Next: 00000000 + Debug start: 00000015, Debug end: 0000012D + +(000300) S_REGISTER: edi, Type: 0x16EF, this +(000310) S_BPREL32: [00000004], Type: T_UINT4(0075), p_bufferSize +(00032C) S_BPREL32: [00000008], Type: 0x131C, p_mode +(000340) S_BPREL32: [FFFFFFFC], Type: T_LONG(0012), result +(000354) S_REGISTER: eax, Type: 0x148B, streamer +(000368) S_REGISTER: ebx, Type: T_UINT4(0075), i +(000374) S_REGISTER: ebx, Type: T_UINT4(0075), i + +(000380) S_END + +(000384) S_GPROC32: [0001:00025EB0], Cb: 00000023, Type: 0x16F6, MxDSBuffer::SetBufferPointer + Parent: 00000000, End: 00000404, Next: 00000000 + Debug start: 00000000, Debug end: 00000020 + +(0003C8) S_REGISTER: ecx, Type: 0x16EF, this +(0003D8) S_BPREL32: [00000004], Type: T_32PUINT4(0475), p_buffer +(0003F0) S_BPREL32: [00000008], Type: T_UINT4(0075), p_size + +(000404) S_END + +(000408) S_GPROC32: [0001:00025EE0], Cb: 00000108, Type: 0x36D5, MxDSBuffer::FUN_100c67b0 + Parent: 00000000, End: 000004E8, Next: 00000000 + Debug start: 00000018, Debug end: 000000FF + +(000448) S_BPREL32: [FFFFFFFC], Type: 0x16EF, this +(00045C) S_BPREL32: [00000004], Type: 0x12DF, p_controller +(000478) S_BPREL32: [00000008], Type: 0x109C, p_action +(000490) S_BPREL32: [0000000C], Type: 0x36D3, p_streamingAction +(0004B0) S_REGISTER: eax, Type: T_32PUCHAR(0420), data +(0004C0) S_REGISTER: ebx, Type: T_LONG(0012), result +(0004D4) S_REGISTER: ebp, Type: 0x1619, buffer + +(0004E8) S_END + +(0004EC) S_GPROC32: [0001:00025FF0], Cb: 000000BC, Type: 0x3C71, MxDSBuffer::CreateObject + Parent: 00000000, End: 000005B8, Next: 00000000 + Debug start: 0000000A, Debug end: 000000B6 + +(00052C) S_REGISTER: ebx, Type: 0x16EF, this +(00053C) S_BPREL32: [00000004], Type: 0x12DF, p_controller +(000558) S_BPREL32: [00000008], Type: T_32PUINT4(0475), p_data +(00056C) S_BPREL32: [0000000C], Type: 0x109C, p_action +(000584) S_BPREL32: [00000010], Type: 0x36D3, p_streamingAction +(0005A4) S_REGISTER: edi, Type: 0x10AE, header + +(0005B8) S_END + +(0005BC) S_GPROC32: [0001:000260B0], Cb: 000000E1, Type: 0x34CD, MxDSBuffer::StartPresenterFromAction + Parent: 00000000, End: 00000668, Next: 00000000 + Debug start: 0000000B, Debug end: 000000DB + +(000608) S_REGISTER: edi, Type: 0x16EF, this +(000618) S_BPREL32: [00000004], Type: 0x12DF, p_controller +(000634) S_BPREL32: [00000008], Type: 0x109C, p_action1 +(00064C) S_BPREL32: [0000000C], Type: 0x109C, p_objectheader + +(000668) S_END + +(00066C) S_GPROC32: [0001:000261A0], Cb: 000002A8, Type: 0x3C73, MxDSBuffer::ParseChunk + Parent: 00000000, End: 000007D0, Next: 00000000 + Debug start: 00000025, Debug end: 00000050 + Flags: Frame Ptr Present + +(0006AC) S_LABEL32: [0001:0002643B], $L48374 +(0006C0) S_LABEL32: [0001:00026431], $L48371 +(0006D4) S_LABEL32: [0001:00026402], $L48377 +(0006E8) S_LABEL32: [0001:000263FA], done +(0006F8) S_REGISTER: edi, Type: 0x16EF, this +(000708) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(000724) S_BPREL32: [0000000C], Type: T_32PUINT4(0475), p_data +(000738) S_BPREL32: [00000010], Type: 0x109C, p_action +(000750) S_BPREL32: [00000014], Type: 0x36D3, p_streamingAction +(000770) S_BPREL32: [00000018], Type: 0x11CE, p_header +(000788) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result +(00079C) S_REGISTER: ebx, Type: T_UINT4(0075), length +(0007B0) S_REGISTER: eax, Type: 0x12FF, data +(0007C0) S_REGISTER: eax, Type: T_UINT4(0075), val + +(0007D0) S_END + +(0007D4) S_GPROC32: [0001:00026450], Cb: 000000E2, Type: 0x34E3, MxDSBuffer::ReadChunk + Parent: 00000000, End: 000008C0, Next: 00000000 + Debug start: 00000023, Debug end: 0000003B + Flags: Frame Ptr Present + +(000814) S_LABEL32: [0001:00026525], $L48442 +(000828) S_LABEL32: [0001:0002651B], $L48441 +(00083C) S_LABEL32: [0001:000264E1], $L48448 +(000850) S_BPREL32: [00000008], Type: 0x1619, p_buffer +(000868) S_BPREL32: [0000000C], Type: T_32PUINT4(0475), p_chunkData +(000880) S_BPREL32: [00000010], Type: T_USHORT(0021), p_flags +(000894) S_REGISTER: eax, Type: 0x10AE, result +(0008A8) S_BPREL32: [FFFFFFEC], Type: T_32PUCHAR(0420), dataStart + +(0008C0) S_END + +(0008C4) S_GPROC32: [0001:00026540], Cb: 00000006, Type: 0x159C, MxStreamChunk::ClassName + Parent: 00000000, End: 00000914, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000904) S_REGISTER: ecx, Type: 0x159B, this + +(000914) S_END + +(000918) S_GPROC32: [0001:00026550], Cb: 000000A2, Type: 0x159D, MxStreamChunk::IsA + Parent: 00000000, End: 00000978, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(000954) S_REGISTER: ecx, Type: 0x159B, this +(000964) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000978) S_END + +(00097C) S_GPROC32: [0001:00026600], Cb: 0000001E, Type: T_NOTYPE(0000), MxStreamChunk::`scalar deleting destructor' + Parent: 00000000, End: 000009F4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0009D0) S_REGISTER: esi, Type: 0x159E, this +(0009E0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0009F4) S_END + +(0009F8) S_GPROC32: [0001:00026620], Cb: 000000CB, Type: 0x22DC, MxDSBuffer::SkipToData + Parent: 00000000, End: 00000A7C, Next: 00000000 + Debug start: 00000007, Debug end: 000000C9 + +(000A38) S_LABEL32: [0001:000266B2], done +(000A48) S_REGISTER: ecx, Type: 0x16EF, this +(000A58) S_REGISTER: eax, Type: T_32PUCHAR(0420), result +(000A6C) S_REGISTER: edi, Type: T_32PUINT4(0475), ptr + +(000A7C) S_END + +(000A80) S_GPROC32: [0001:000266F0], Cb: 00000014, Type: 0x34D4, MxDSBuffer::ReleaseRef + Parent: 00000000, End: 00000AE8, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000AC0) S_REGISTER: ecx, Type: 0x16EF, this +(000AD0) S_BPREL32: [00000004], Type: 0x34D2, __formal + +(000AE8) S_END + +(000AEC) S_GPROC32: [0001:00026710], Cb: 0000000E, Type: 0x34D5, MxDSBuffer::AddRef + Parent: 00000000, End: 00000B4C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000B28) S_REGISTER: ecx, Type: 0x16EF, this +(000B38) S_BPREL32: [00000004], Type: 0x34D2, p_chunk + +(000B4C) S_END + +(000B50) S_GPROC32: [0001:00026720], Cb: 0000008D, Type: 0x3C92, MxDSBuffer::CalcBytesRemaining + Parent: 00000000, End: 00000BF4, Next: 00000000 + Debug start: 0000000B, Debug end: 00000087 + +(000B98) S_REGISTER: ebx, Type: 0x16EF, this +(000BA8) S_BPREL32: [00000004], Type: T_32PUCHAR(0420), p_data +(000BBC) S_REGISTER: edi, Type: T_LONG(0012), result +(000BD0) S_REGISTER: ebp, Type: T_UINT4(0075), bytesRead +(000BE4) S_REGISTER: esi, Type: T_32PUCHAR(0420), ptr + +(000BF4) S_END + +(000BF8) S_GPROC32: [0001:000267B0], Cb: 00000015, Type: 0x16F7, MxDSBuffer::FUN_100c6f80 + Parent: 00000000, End: 00000C64, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(000C38) S_REGISTER: ecx, Type: 0x16EF, this +(000C48) S_BPREL32: [00000004], Type: T_UINT4(0075), p_writeOffset + +(000C64) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsanim.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:000258B0], Cb: 00000063, Type: 0x16FA, MxDSAnim::MxDSAnim + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 0000001C, Debug end: 00000042 + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:0002590B], $L12484 +(0000D0) S_LABEL32: [0001:00025901], $L12483 +(0000E4) S_BPREL32: [FFFFFFF0], Type: 0x16F9, this + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:00025920], Cb: 00000006, Type: 0x16FD, MxDSAnim::ClassName + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000138) S_REGISTER: ecx, Type: 0x16FC, this + +(000148) S_END + +(00014C) S_GPROC32: [0001:00025930], Cb: 0000010A, Type: 0x16FE, MxDSAnim::IsA + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000184) S_REGISTER: ecx, Type: 0x16FC, this +(000194) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00025A40], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSAnim::`scalar deleting destructor' + Parent: 00000000, End: 00000220, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001FC) S_REGISTER: esi, Type: 0x16F9, this +(00020C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000220) S_END + +(000224) S_GPROC32: [0001:00025A60], Cb: 0000004F, Type: 0x16FA, MxDSAnim::~MxDSAnim + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000260) S_LABEL32: [0001:00025AA7], $L12569 +(000274) S_LABEL32: [0001:00025A9D], $L12568 +(000288) S_BPREL32: [FFFFFFF0], Type: 0x16F9, this + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:00025AB0], Cb: 00000003, Type: 0x1701, MxDSAnim::CopyFrom + Parent: 00000000, End: 00000304, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002DC) S_REGISTER: ecx, Type: 0x16F9, this +(0002EC) S_BPREL32: [00000004], Type: 0x16FF, p_dsAnim + +(000304) S_END + +(000308) S_GPROC32: [0001:00025AC0], Cb: 0000002A, Type: 0x1702, MxDSAnim::operator= + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(000344) S_REGISTER: edi, Type: 0x16F9, this +(000354) S_BPREL32: [00000004], Type: 0x16FF, p_dsAnim + +(00036C) S_END + +(000370) S_GPROC32: [0001:00025AF0], Cb: 00000088, Type: 0x1703, MxDSAnim::Clone + Parent: 00000000, End: 000003E0, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0003A8) S_LABEL32: [0001:00025B6B], $L12582 +(0003BC) S_LABEL32: [0001:00025B61], $L12581 +(0003D0) S_REGISTER: ebx, Type: 0x16F9, this + +(0003E0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdsaction.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00025010], Cb: 00000123, Type: 0x108D, MxDSAction::MxDSAction + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000021, Debug end: 00000100 + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0002512B], $L46421 +(0000D8) S_LABEL32: [0001:00025121], $L46420 +(0000EC) S_BPREL32: [FFFFFFEC], Type: 0x108C, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00025140], Cb: 00000058, Type: 0x1706, MxDSObject::SetAtomId + Parent: 00000000, End: 00000194, Next: 00000000 + Debug start: 00000025, Debug end: 00000037 + Flags: Frame Ptr Present + +(000144) S_LABEL32: [0001:0002518E], $L46475 +(000158) S_LABEL32: [0001:00025186], $L46476 +(00016C) S_REGISTER: ecx, Type: 0x168C, this +(00017C) S_BPREL32: [00000008], Type: 0x4E96, p_atomId + +(000194) S_END + +(000198) S_GPROC32: [0001:000251A0], Cb: 00000006, Type: 0x1094, MxDSAction::ClassName + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001D8) S_REGISTER: ecx, Type: 0x1093, this + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:000251B0], Cb: 000000A2, Type: 0x1095, MxDSAction::IsA + Parent: 00000000, End: 00000248, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(000224) S_REGISTER: ecx, Type: 0x1093, this +(000234) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000248) S_END + +(00024C) S_GPROC32: [0001:00025260], Cb: 0000001E, Type: T_NOTYPE(0000), MxDSAction::`scalar deleting destructor' + Parent: 00000000, End: 000002C0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00029C) S_REGISTER: esi, Type: 0x108C, this +(0002AC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002C0) S_END + +(0002C4) S_GPROC32: [0001:00025280], Cb: 00000004, Type: 0x109A, MxDSAction::GetDuration + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000304) S_REGISTER: ecx, Type: 0x108C, this + +(000314) S_END + +(000318) S_GPROC32: [0001:00025290], Cb: 0000000A, Type: 0x109B, MxDSAction::SetDuration + Parent: 00000000, End: 00000380, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000358) S_REGISTER: ecx, Type: 0x108C, this +(000368) S_BPREL32: [00000004], Type: T_LONG(0012), p_duration + +(000380) S_END + +(000384) S_GPROC32: [0001:000252A0], Cb: 00000013, Type: 0x109F, MxDSAction::HasId + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(0003C0) S_REGISTER: ecx, Type: 0x108C, this +(0003D0) S_BPREL32: [00000004], Type: T_UINT4(0075), p_objectId + +(0003E8) S_END + +(0003EC) S_GPROC32: [0001:000252C0], Cb: 0000000D, Type: 0x109B, MxDSAction::SetUnknown90 + Parent: 00000000, End: 00000454, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(00042C) S_REGISTER: ecx, Type: 0x108C, this +(00043C) S_BPREL32: [00000004], Type: T_LONG(0012), p_unk0x90 + +(000454) S_END + +(000458) S_GPROC32: [0001:000252D0], Cb: 00000007, Type: 0x109A, MxDSAction::GetUnknown90 + Parent: 00000000, End: 000004A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000498) S_REGISTER: ecx, Type: 0x108C, this + +(0004A8) S_END + +(0004AC) S_GPROC32: [0001:000252E0], Cb: 00000062, Type: 0x108D, MxDSAction::~MxDSAction + Parent: 00000000, End: 00000528, Next: 00000000 + Debug start: 00000021, Debug end: 00000043 + Flags: Frame Ptr Present + +(0004EC) S_LABEL32: [0001:0002533A], $L46532 +(000500) S_LABEL32: [0001:00025330], $L46531 +(000514) S_BPREL32: [FFFFFFF0], Type: 0x108C, this + +(000528) S_END + +(00052C) S_GPROC32: [0001:00025350], Cb: 000000DC, Type: 0x1090, MxDSAction::CopyFrom + Parent: 00000000, End: 00000590, Next: 00000000 + Debug start: 00000005, Debug end: 000000D7 + +(000568) S_REGISTER: esi, Type: 0x108C, this +(000578) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(000590) S_END + +(000594) S_GPROC32: [0001:00025430], Cb: 0000002B, Type: 0x1096, MxDSAction::GetSizeOnDisk + Parent: 00000000, End: 00000604, Next: 00000000 + Debug start: 00000005, Debug end: 00000027 + +(0005D8) S_REGISTER: ebx, Type: 0x108C, this +(0005E8) S_REGISTER: esi, Type: T_UINT4(0075), totalSizeOnDisk + +(000604) S_END + +(000608) S_GPROC32: [0001:00025460], Cb: 0000002A, Type: 0x1091, MxDSAction::operator= + Parent: 00000000, End: 00000670, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(000648) S_REGISTER: edi, Type: 0x108C, this +(000658) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(000670) S_END + +(000674) S_GPROC32: [0001:00025490], Cb: 00000088, Type: 0x109D, MxDSAction::Clone + Parent: 00000000, End: 000006E8, Next: 00000000 + Debug start: 00000020, Debug end: 00000063 + Flags: Frame Ptr Present + +(0006B0) S_LABEL32: [0001:0002550B], $L46577 +(0006C4) S_LABEL32: [0001:00025501], $L46576 +(0006D8) S_REGISTER: esi, Type: 0x108C, this + +(0006E8) S_END + +(0006EC) S_GPROC32: [0001:00025520], Cb: 0000002E, Type: 0x109A, MxDSAction::GetElapsedTime + Parent: 00000000, End: 00000740, Next: 00000000 + Debug start: 00000001, Debug end: 0000002D + +(000730) S_REGISTER: esi, Type: 0x108C, this + +(000740) S_END + +(000744) S_GPROC32: [0001:00025550], Cb: 0000015D, Type: 0x1090, MxDSAction::MergeFrom + Parent: 00000000, End: 000007DC, Next: 00000000 + Debug start: 00000008, Debug end: 00000154 + +(000784) S_REGISTER: esi, Type: 0x108C, this +(000794) S_BPREL32: [00000004], Type: 0x108E, p_dsAction +(0007AC) S_BPREL32: [FFFFFFFA], Type: T_USHORT(0021), extraLength +(0007C4) S_BPREL32: [FFFFFFFC], Type: T_32PRCHAR(0470), extraData + +(0007DC) S_END + +(0007E0) S_GPROC32: [0001:000256B0], Cb: 0000010E, Type: 0x10A1, MxDSAction::AppendData + Parent: 00000000, End: 00000888, Next: 00000000 + Debug start: 00000010, Debug end: 00000104 + +(000820) S_REGISTER: ebx, Type: 0x108C, this +(000830) S_BPREL32: [00000004], Type: T_USHORT(0021), p_extraLength +(00084C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_extraData +(000864) S_BPREL32: [FFFFFFFC], Type: T_32PRCHAR(0470), concat +(000878) S_REGISTER: edi, Type: T_32PRCHAR(0470), copy + +(000888) S_END + +(00088C) S_GPROC32: [0001:000257C0], Cb: 000000EC, Type: 0x34FC, MxDSAction::Deserialize + Parent: 00000000, End: 0000090C, Next: 00000000 + Debug start: 00000007, Debug end: 000000E6 + +(0008CC) S_REGISTER: edi, Type: 0x108C, this +(0008DC) S_BPREL32: [00000004], Type: 0x34FA, p_source +(0008F4) S_BPREL32: [00000008], Type: T_SHORT(0011), p_unk0x24 + +(00090C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdisplaysurface.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000240B0], Cb: 0000007B, Type: 0x1708, MxDisplaySurface::MxDisplaySurface + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 0000001C, Debug end: 00000052 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00024123], $L46302 +(0000E8) S_LABEL32: [0001:00024119], $L46301 +(0000FC) S_LABEL32: [0001:0002410E], $L46303 +(000110) S_BPREL32: [FFFFFFF0], Type: 0x1707, this + +(000124) S_END + +(000128) S_GPROC32: [0001:00024130], Cb: 0000001E, Type: T_NOTYPE(0000), MxDisplaySurface::`scalar deleting destructor' + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000180) S_REGISTER: esi, Type: 0x1707, this +(000190) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:00024150], Cb: 0000006F, Type: 0x1708, MxDisplaySurface::~MxDisplaySurface + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(0001F4) S_LABEL32: [0001:000241B7], $L46325 +(000208) S_LABEL32: [0001:000241AD], $L46324 +(00021C) S_LABEL32: [0001:000241A2], $L46326 +(000230) S_BPREL32: [FFFFFFF0], Type: 0x1707, this + +(000244) S_END + +(000248) S_GPROC32: [0001:000241C0], Cb: 00000021, Type: 0x1708, MxDisplaySurface::Init + Parent: 00000000, End: 00000298, Next: 00000000 + Debug start: 00000003, Debug end: 0000001F + +(000288) S_REGISTER: ecx, Type: 0x1707, this + +(000298) S_END + +(00029C) S_GPROC32: [0001:000241F0], Cb: 00000101, Type: 0x1708, MxDisplaySurface::FUN_100ba640 + Parent: 00000000, End: 00000368, Next: 00000000 + Debug start: 00000009, Debug end: 000000F9 + +(0002E4) S_REGISTER: esi, Type: 0x1707, this +(0002F4) S_BPREL32: [FFFFFF90], Type: T_INT4(0074), i +(000304) S_REGISTER: eax, Type: T_LONG(0012), hr +(000314) S_BPREL32: [FFFFFF8C], Type: T_INT4(0074), backBuffers +(00032C) S_BPREL32: [FFFFFF94], Type: 0x10D3, desc +(000340) S_REGISTER: edx, Type: T_INT4(0074), height +(000354) S_REGISTER: ebx, Type: T_32PUCHAR(0420), surface + +(000368) S_END + +(00036C) S_GPROC32: [0001:00024300], Cb: 0000001B, Type: 0x3F47, MxDisplaySurface::CountTotalBitsSetTo1 + Parent: 00000000, End: 000003F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(0003BC) S_REGISTER: ecx, Type: 0x1707, this +(0003CC) S_BPREL32: [00000004], Type: T_UINT4(0075), p_param +(0003E0) S_REGISTER: al, Type: T_UCHAR(0020), count + +(0003F0) S_END + +(0003F4) S_GPROC32: [0001:00024320], Cb: 00000018, Type: 0x3F47, MxDisplaySurface::CountContiguousBitsSetTo1 + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000448) S_REGISTER: ecx, Type: 0x1707, this +(000458) S_BPREL32: [00000004], Type: T_UINT4(0075), p_param +(00046C) S_REGISTER: al, Type: T_UCHAR(0020), count + +(00047C) S_END + +(000480) S_GPROC32: [0001:00024340], Cb: 0000005B, Type: 0x170A, MxDisplaySurface::Init + Parent: 00000000, End: 00000550, Next: 00000000 + Debug start: 0000000B, Debug end: 00000056 + +(0004C0) S_REGISTER: esi, Type: 0x1707, this +(0004D0) S_BPREL32: [00000004], Type: 0x1229, p_videoParam +(0004EC) S_BPREL32: [00000008], Type: 0x11E7, p_ddSurface1 +(000508) S_BPREL32: [0000000C], Type: 0x11E7, p_ddSurface2 +(000524) S_BPREL32: [00000010], Type: 0x1247, p_ddClipper +(00053C) S_REGISTER: ebx, Type: T_LONG(0012), result + +(000550) S_END + +(000554) S_GPROC32: [0001:000243A0], Cb: 00000294, Type: 0x170B, MxDisplaySurface::Create + Parent: 00000000, End: 00000674, Next: 00000000 + Debug start: 00000011, Debug end: 0000028A + +(000594) S_LABEL32: [0001:00024626], done +(0005A4) S_REGISTER: ebx, Type: 0x1707, this +(0005B4) S_BPREL32: [00000004], Type: 0x1229, p_videoParam +(0005D0) S_REGISTER: esi, Type: 0x1245, lpDirectDraw +(0005E8) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(0005FC) S_BPREL32: [FFFFFF90], Type: T_LONG(0012), result +(000610) S_BPREL32: [FFFFFF8C], Type: T_32PVOID(0403), hWnd +(000624) S_REGISTER: eax, Type: T_UINT4(0075), backBuffers +(00063C) S_BPREL32: [FFFFFF88], Type: T_INT4(0074), height +(000650) S_REGISTER: ecx, Type: T_INT4(0074), bitdepth +(000664) S_REGISTER: ebp, Type: T_INT4(0074), width + +(000674) S_END + +(000678) S_GPROC32: [0001:00024640], Cb: 0000004C, Type: 0x1708, MxDisplaySurface::Destroy + Parent: 00000000, End: 000006CC, Next: 00000000 + Debug start: 00000001, Debug end: 0000004A + +(0006BC) S_REGISTER: esi, Type: 0x1707, this + +(0006CC) S_END + +(0006D0) S_GPROC32: [0001:00024690], Cb: 000001FA, Type: 0x170C, MxDisplaySurface::SetPalette + Parent: 00000000, End: 00000830, Next: 00000000 + Debug start: 0000000C, Debug end: 000001ED + +(000714) S_REGISTER: esi, Type: 0x1707, this +(000724) S_BPREL32: [00000004], Type: 0x1225, p_palette +(00073C) S_REGISTER: ebp, Type: T_32PVOID(0403), hdc +(00074C) S_BPREL32: [FFFFFBFC], Type: 0x3F4C, lpal +(000760) S_REGISTER: edi, Type: T_32PVOID(0403), hpal +(000770) S_BPREL32: [FFFFFBE4], Type: T_UCHAR(0020), totalBitsRed +(00078C) S_BPREL32: [FFFFFBEC], Type: T_UCHAR(0020), totalBitsGreen +(0007A8) S_REGISTER: al, Type: T_UCHAR(0020), totalBitsBlue +(0007C0) S_BPREL32: [FFFFFBE8], Type: T_UCHAR(0020), contiguousBitsBlue +(0007E0) S_BPREL32: [FFFFFBF0], Type: T_UCHAR(0020), contiguousBitsGreen +(000800) S_BPREL32: [FFFFFBFC], Type: 0x1251, palette +(000814) S_REGISTER: bl, Type: T_UCHAR(0020), contiguousBitsRed + +(000830) S_END + +(000834) S_GPROC32: [0001:00024890], Cb: 000004FE, Type: 0x3F3B, MxDisplaySurface::VTable0x28 + Parent: 00000000, End: 00000B90, Next: 00000000 + Debug start: 00000015, Debug end: 000004F1 + +(000878) S_BPREL32: [FFFFFF80], Type: 0x1707, this +(00088C) S_BPREL32: [00000004], Type: 0x1718, p_bitmap +(0008A4) S_BPREL32: [00000008], Type: T_INT4(0074), p_left +(0008B8) S_BPREL32: [0000000C], Type: T_INT4(0074), p_top +(0008CC) S_BPREL32: [00000010], Type: T_INT4(0074), p_right +(0008E0) S_BPREL32: [00000014], Type: T_INT4(0074), p_bottom +(0008F8) S_BPREL32: [00000018], Type: T_INT4(0074), p_width +(00090C) S_BPREL32: [0000001C], Type: T_INT4(0074), p_height +(000924) S_REGISTER: eax, Type: T_LONG(0012), hr +(000934) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000948) S_REGISTER: ebx, Type: T_32PUCHAR(0420), data +(000958) S_REGISTER: edx, Type: T_INT4(0074), rowsBeforeTop +(000970) S_REGISTER: edx, Type: T_INT4(0074), rowsBeforeTop +(000988) S_REGISTER: ebp, Type: T_LONG(0012), v22 +(000998) S_BPREL32: [FFFFFF84], Type: T_LONG(0012), length +(0009AC) S_REGISTER: ebp, Type: T_LONG(0012), stride +(0009C0) S_REGISTER: edx, Type: T_32PUCHAR(0420), surface +(0009D4) S_REGISTER: ecx, Type: T_INT4(0074), i +(0009E0) S_REGISTER: esi, Type: T_32PUCHAR(0420), surfaceBefore +(0009F8) S_BPREL32: [FFFFFF88], Type: T_INT4(0074), height +(000A0C) S_REGISTER: edx, Type: T_32PUSHORT(0421), p16BitPal +(000A20) S_BPREL32: [FFFFFF84], Type: T_LONG(0012), v62 +(000A30) S_REGISTER: ebp, Type: T_INT4(0074), length +(000A44) S_BPREL32: [FFFFFF90], Type: T_LONG(0012), stride +(000A58) S_REGISTER: eax, Type: T_32PUCHAR(0420), surface +(000A6C) S_BPREL32: [FFFFFF8C], Type: T_INT4(0074), width +(000A80) S_REGISTER: edi, Type: T_INT4(0074), i +(000A8C) S_REGISTER: esi, Type: T_32PUCHAR(0420), surfaceBefore +(000AA4) S_REGISTER: cx, Type: T_USHORT(0021), element +(000AB8) S_REGISTER: edi, Type: T_INT4(0074), i +(000AC4) S_REGISTER: esi, Type: T_32PUCHAR(0420), surfaceBefore +(000ADC) S_REGISTER: cx, Type: T_USHORT(0021), element +(000AF0) S_BPREL32: [FFFFFF84], Type: T_LONG(0012), length +(000B04) S_REGISTER: ebp, Type: T_LONG(0012), stride +(000B18) S_REGISTER: edx, Type: T_32PUCHAR(0420), surface +(000B2C) S_REGISTER: ecx, Type: T_INT4(0074), i +(000B38) S_BPREL32: [FFFFFF84], Type: T_LONG(0012), length +(000B4C) S_REGISTER: edi, Type: T_LONG(0012), stride +(000B60) S_REGISTER: esi, Type: T_32PUCHAR(0420), surface +(000B74) S_REGISTER: edi, Type: T_LONG(0012), v50 +(000B84) S_REGISTER: ebp, Type: T_INT4(0074), j + +(000B90) S_END + +(000B94) S_GPROC32: [0001:00024D90], Cb: 00000005, Type: 0x3F09, MxDisplaySurface::VTable0x30 + Parent: 00000000, End: 00000C98, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000BD8) S_REGISTER: ecx, Type: 0x1707, this +(000BE8) S_BPREL32: [00000004], Type: 0x1718, p_bitmap +(000C00) S_BPREL32: [00000008], Type: T_INT4(0074), p_left +(000C14) S_BPREL32: [0000000C], Type: T_INT4(0074), p_top +(000C28) S_BPREL32: [00000010], Type: T_INT4(0074), p_right +(000C3C) S_BPREL32: [00000014], Type: T_INT4(0074), p_bottom +(000C54) S_BPREL32: [00000018], Type: T_INT4(0074), p_width +(000C68) S_BPREL32: [0000001C], Type: T_INT4(0074), p_height +(000C80) S_BPREL32: [00000020], Type: T_UCHAR(0020), __formal + +(000C98) S_END + +(000C9C) S_GPROC32: [0001:00024DA0], Cb: 00000005, Type: 0x1712, MxDisplaySurface::VTable0x34 + Parent: 00000000, End: 00000D80, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000CE0) S_REGISTER: ecx, Type: 0x1707, this +(000CF0) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000D08) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal +(000D20) S_BPREL32: [0000000C], Type: T_UINT4(0075), __formal +(000D38) S_BPREL32: [00000010], Type: T_UINT4(0075), __formal +(000D50) S_BPREL32: [00000014], Type: T_UINT4(0075), __formal +(000D68) S_BPREL32: [00000018], Type: T_UINT4(0075), __formal + +(000D80) S_END + +(000D84) S_GPROC32: [0001:00024DB0], Cb: 000001C4, Type: 0x3CED, MxDisplaySurface::Display + Parent: 00000000, End: 00000ED8, Next: 00000000 + Debug start: 0000000C, Debug end: 000001B7 + +(000DC8) S_REGISTER: esi, Type: 0x1707, this +(000DD8) S_BPREL32: [00000004], Type: T_INT4(0074), p_left +(000DEC) S_BPREL32: [00000008], Type: T_INT4(0074), p_top +(000E00) S_BPREL32: [0000000C], Type: T_INT4(0074), p_left2 +(000E14) S_BPREL32: [00000010], Type: T_INT4(0074), p_top2 +(000E28) S_BPREL32: [00000014], Type: T_INT4(0074), p_width +(000E3C) S_BPREL32: [00000018], Type: T_INT4(0074), p_height +(000E54) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000E68) S_REGISTER: edx, Type: T_UINT4(0075), i +(000E74) S_REGISTER: ebx, Type: T_32PUCHAR(0420), surface +(000E88) S_BPREL32: [FFFFFF6C], Type: 0x3CDD, point +(000E9C) S_BPREL32: [FFFFFF84], Type: 0x1279, rect2 +(000EB0) S_BPREL32: [FFFFFF74], Type: 0x1279, rect1 +(000EC4) S_BPREL32: [FFFFFF94], Type: 0x1E39, data + +(000ED8) S_END + +(000EDC) S_GPROC32: [0001:00024F80], Cb: 0000002B, Type: 0x1716, MxDisplaySurface::GetDC + Parent: 00000000, End: 00000F40, Next: 00000000 + Debug start: 00000004, Debug end: 00000027 + +(000F1C) S_REGISTER: ecx, Type: 0x1707, this +(000F2C) S_BPREL32: [00000004], Type: 0x1714, p_hdc + +(000F40) S_END + +(000F44) S_GPROC32: [0001:00024FB0], Cb: 00000019, Type: 0x1717, MxDisplaySurface::ReleaseDC + Parent: 00000000, End: 00000FAC, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000F88) S_REGISTER: ecx, Type: 0x1707, this +(000F98) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_hdc + +(000FAC) S_END + +(000FB0) S_GPROC32: [0001:00024FD0], Cb: 00000005, Type: 0x171A, MxDisplaySurface::VTable0x44 + Parent: 00000000, End: 00001064, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000FF4) S_REGISTER: ecx, Type: 0x1707, this +(001004) S_BPREL32: [00000004], Type: 0x1718, __formal +(00101C) S_BPREL32: [00000008], Type: T_32PUINT4(0475), __formal +(001034) S_BPREL32: [0000000C], Type: T_UINT4(0075), __formal +(00104C) S_BPREL32: [00000010], Type: T_UINT4(0075), __formal + +(001064) S_END + +(001068) S_GPROC32: [0001:00024FE0], Cb: 00000003, Type: 0x4E53, MxDisplaySurface::FUN_100bc070 + Parent: 00000000, End: 000010B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0010B0) S_END + +(0010B4) S_GPROC32: [0001:00024FF0], Cb: 00000003, Type: 0x171C, MxDisplaySurface::VTable0x24 + Parent: 00000000, End: 000011C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0010F8) S_REGISTER: ecx, Type: 0x1707, this +(001108) S_BPREL32: [00000004], Type: 0x1291, __formal +(001120) S_BPREL32: [00000008], Type: 0x1718, __formal +(001138) S_BPREL32: [0000000C], Type: T_UINT4(0075), __formal +(001150) S_BPREL32: [00000010], Type: T_UINT4(0075), __formal +(001168) S_BPREL32: [00000014], Type: T_UINT4(0075), __formal +(001180) S_BPREL32: [00000018], Type: T_UINT4(0075), __formal +(001198) S_BPREL32: [0000001C], Type: T_UINT4(0075), __formal +(0011B0) S_BPREL32: [00000020], Type: T_UINT4(0075), __formal + +(0011C8) S_END + +(0011CC) S_GPROC32: [0001:00025000], Cb: 00000005, Type: 0x171E, MxDisplaySurface::VTable0x2c + Parent: 00000000, End: 000012F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001210) S_REGISTER: ecx, Type: 0x1707, this +(001220) S_BPREL32: [00000004], Type: 0x1291, __formal +(001238) S_BPREL32: [00000008], Type: 0x1718, __formal +(001250) S_BPREL32: [0000000C], Type: T_UINT4(0075), __formal +(001268) S_BPREL32: [00000010], Type: T_UINT4(0075), __formal +(001280) S_BPREL32: [00000014], Type: T_UINT4(0075), __formal +(001298) S_BPREL32: [00000018], Type: T_UINT4(0075), __formal +(0012B0) S_BPREL32: [0000001C], Type: T_UINT4(0075), __formal +(0012C8) S_BPREL32: [00000020], Type: T_UINT4(0075), __formal +(0012E0) S_BPREL32: [00000024], Type: T_UCHAR(0020), __formal + +(0012F8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdiskstreamprovider.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000232E0], Cb: 0000001A, Type: 0x1721, MxDiskStreamProviderThread::Run + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000001, Debug end: 00000019 + +(0000D4) S_REGISTER: esi, Type: 0x1720, this + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:00023300], Cb: 00000016, Type: 0x1725, MxDiskStreamProviderThread::StartWithTarget + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000013 + +(00013C) S_REGISTER: ecx, Type: 0x1720, this +(00014C) S_BPREL32: [00000004], Type: 0x1723, p_target + +(000164) S_END + +(000168) S_GPROC32: [0001:00023320], Cb: 0000012A, Type: 0x1727, MxDiskStreamProvider::MxDiskStreamProvider + Parent: 00000000, End: 000002AC, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AB + Flags: Frame Ptr Present + +(0001BC) S_LABEL32: [0001:00023442], $L46906 +(0001D0) S_LABEL32: [0001:00023438], $L46905 +(0001E4) S_LABEL32: [0001:00023430], $L47004 +(0001F8) S_LABEL32: [0001:00023425], $L46907 +(00020C) S_LABEL32: [0001:0002341A], $L47000 +(000220) S_LABEL32: [0001:0002340F], $L46908 +(000234) S_LABEL32: [0001:00023404], $L46909 +(000248) S_LABEL32: [0001:000233F9], $L46910 +(00025C) S_LABEL32: [0001:000233EE], $L46912 +(000270) S_LABEL32: [0001:000233E3], $L46914 +(000284) S_LABEL32: [0001:000233D8], $L46917 +(000298) S_BPREL32: [FFFFFFEC], Type: 0x1726, this + +(0002AC) S_END + +(0002B0) S_GPROC32: [0001:00023450], Cb: 00000006, Type: 0x172A, MxStreamProvider::ClassName + Parent: 00000000, End: 00000304, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002F4) S_REGISTER: ecx, Type: 0x1729, this + +(000304) S_END + +(000308) S_GPROC32: [0001:00023460], Cb: 00000072, Type: 0x172B, MxStreamProvider::IsA + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000348) S_REGISTER: ecx, Type: 0x1729, this +(000358) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00036C) S_END + +(000370) S_GPROC32: [0001:000234E0], Cb: 00000061, Type: T_NOTYPE(0000), MxStreamProvider::`scalar deleting destructor' + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0003C8) S_LABEL32: [0001:00023539], $L47143 +(0003DC) S_LABEL32: [0001:0002352F], $L47141 +(0003F0) S_BPREL32: [FFFFFFF0], Type: 0x12DD, this +(000404) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000418) S_END + +(00041C) S_GPROC32: [0001:00023550], Cb: 00000049, Type: 0x172C, MxStreamProvider::~MxStreamProvider + Parent: 00000000, End: 000004A4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000468) S_LABEL32: [0001:00023591], $L47152 +(00047C) S_LABEL32: [0001:00023587], $L47151 +(000490) S_BPREL32: [FFFFFFF0], Type: 0x12DD, this + +(0004A4) S_END + +(0004A8) S_GPROC32: [0001:000235A0], Cb: 00000011, Type: 0x13C6, MxSemaphore::~MxSemaphore + Parent: 00000000, End: 000004FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(0004EC) S_REGISTER: ecx, Type: 0x13C5, this + +(0004FC) S_END + +(000500) S_GPROC32: [0001:000235C0], Cb: 00000061, Type: T_NOTYPE(0000), MxDiskStreamProviderThread::`scalar deleting destructor' + Parent: 00000000, End: 000005B0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000560) S_LABEL32: [0001:00023619], $L47162 +(000574) S_LABEL32: [0001:0002360F], $L47160 +(000588) S_BPREL32: [FFFFFFF0], Type: 0x1720, this +(00059C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0005B0) S_END + +(0005B4) S_GPROC32: [0001:00023630], Cb: 00000049, Type: 0x172D, MxDiskStreamProviderThread::~MxDiskStreamProviderThread + Parent: 00000000, End: 00000650, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000614) S_LABEL32: [0001:00023671], $L47171 +(000628) S_LABEL32: [0001:00023667], $L47170 +(00063C) S_BPREL32: [FFFFFFF0], Type: 0x1720, this + +(000650) S_END + +(000654) S_GPROC32: [0001:00023680], Cb: 00000006, Type: 0x1730, MxDiskStreamProvider::ClassName + Parent: 00000000, End: 000006AC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00069C) S_REGISTER: ecx, Type: 0x172F, this + +(0006AC) S_END + +(0006B0) S_GPROC32: [0001:00023690], Cb: 000000A2, Type: 0x1731, MxDiskStreamProvider::IsA + Parent: 00000000, End: 00000718, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0006F4) S_REGISTER: ecx, Type: 0x172F, this +(000704) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000718) S_END + +(00071C) S_GPROC32: [0001:00023740], Cb: 0000001E, Type: T_NOTYPE(0000), MxDiskStreamProvider::`scalar deleting destructor' + Parent: 00000000, End: 0000079C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000778) S_REGISTER: esi, Type: 0x1726, this +(000788) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00079C) S_END + +(0007A0) S_GPROC32: [0001:00023760], Cb: 00000184, Type: 0x1727, MxDiskStreamProvider::~MxDiskStreamProvider + Parent: 00000000, End: 000008BC, Next: 00000000 + Debug start: 00000024, Debug end: 00000131 + Flags: Frame Ptr Present + +(0007F4) S_LABEL32: [0001:000238DC], $L47239 +(000808) S_LABEL32: [0001:000238D2], $L47238 +(00081C) S_LABEL32: [0001:000238C7], $L47240 +(000830) S_LABEL32: [0001:000238BC], $L47241 +(000844) S_LABEL32: [0001:000238B1], $L47242 +(000858) S_LABEL32: [0001:000238A6], $L47243 +(00086C) S_LABEL32: [0001:0002389E], $L47244 +(000880) S_BPREL32: [FFFFFFF0], Type: 0x1726, this +(000894) S_BPREL32: [FFFFFFEC], Type: 0x1607, action +(0008A8) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock + +(0008BC) S_END + +(0008C0) S_GPROC32: [0001:000238F0], Cb: 00000211, Type: 0x1732, MxDiskStreamProvider::SetResourceToGet + Parent: 00000000, End: 00000A28, Next: 00000000 + Debug start: 0000001F, Debug end: 000001CC + Flags: Frame Ptr Present + +(000910) S_LABEL32: [0001:00023AF9], $L47396 +(000924) S_LABEL32: [0001:00023AEF], $L47395 +(000938) S_LABEL32: [0001:00023AE7], $L47399 +(00094C) S_LABEL32: [0001:00023ADF], $L47398 +(000960) S_LABEL32: [0001:00023AD7], $L47397 +(000974) S_LABEL32: [0001:00023ACA], $L47400 +(000988) S_LABEL32: [0001:00023A6F], $L47405 +(00099C) S_LABEL32: [0001:00023A67], $L47404 +(0009B0) S_LABEL32: [0001:00023A5F], $L47403 +(0009C4) S_LABEL32: [0001:00023AAA], done +(0009D4) S_BPREL32: [FFFFFFF0], Type: 0x1726, this +(0009E8) S_BPREL32: [00000008], Type: 0x12DF, p_resource +(000A00) S_BPREL32: [FFFFFFCC], Type: 0x12DB, path +(000A14) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(000A28) S_END + +(000A2C) S_GPROC32: [0001:00023B10], Cb: 00000171, Type: 0x3734, MxDiskStreamProvider::VTable0x20 + Parent: 00000000, End: 00000B18, Next: 00000000 + Debug start: 0000001E, Debug end: 000000CE + Flags: Frame Ptr Present + +(000A74) S_LABEL32: [0001:00023C79], $L47423 +(000A88) S_LABEL32: [0001:00023C6F], $L47421 +(000A9C) S_LABEL32: [0001:00023BED], $L47422 +(000AB0) S_BPREL32: [FFFFFFEC], Type: 0x1726, this +(000AC4) S_BPREL32: [00000008], Type: 0x109C, p_action +(000ADC) S_BPREL32: [FFFFFFF0], Type: 0x1607, action +(000AF0) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock +(000B04) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(000B18) S_END + +(000B1C) S_GPROC32: [0001:00023C90], Cb: 0000002E, Type: 0x1734, MxDiskStreamProvider::WaitForWorkToComplete + Parent: 00000000, End: 00000B80, Next: 00000000 + Debug start: 00000002, Debug end: 0000002C + +(000B70) S_REGISTER: esi, Type: 0x1726, this + +(000B80) S_END + +(000B84) S_GPROC32: [0001:00023CC0], Cb: 00000169, Type: 0x36D6, MxDiskStreamProvider::FUN_100d1780 + Parent: 00000000, End: 00000C4C, Next: 00000000 + Debug start: 00000025, Debug end: 0000002C + Flags: Frame Ptr Present + +(000BD0) S_LABEL32: [0001:00023E21], $L47582 +(000BE4) S_LABEL32: [0001:00023E17], $L47576 +(000BF8) S_LABEL32: [0001:00023DCA], $L47577 +(000C0C) S_BPREL32: [FFFFFFF0], Type: 0x1726, this +(000C20) S_BPREL32: [00000008], Type: 0x1607, p_action +(000C38) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(000C4C) S_END + +(000C50) S_GPROC32: [0001:00023E30], Cb: 000001F3, Type: 0x1727, MxDiskStreamProvider::PerformWork + Parent: 00000000, End: 00000D5C, Next: 00000000 + Debug start: 0000002B, Debug end: 00000089 + Flags: Frame Ptr Present + +(000C9C) S_LABEL32: [0001:0002401B], $L47699 +(000CB0) S_LABEL32: [0001:00024011], $L47698 +(000CC4) S_LABEL32: [0001:00024009], $L47700 +(000CD8) S_BPREL32: [FFFFFFF0], Type: 0x1726, this +(000CEC) S_BPREL32: [FFFFFFE4], Type: 0x3C8E, controller +(000D04) S_REGISTER: esi, Type: 0x1619, buffer +(000D18) S_BPREL32: [FFFFFFEC], Type: 0x1607, streamingAction +(000D34) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock +(000D48) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock + +(000D5C) S_END + +(000D60) S_GPROC32: [0001:00024030], Cb: 00000022, Type: 0x3C74, MxDiskStreamProvider::FUN_100d1af0 + Parent: 00000000, End: 00000DC4, Next: 00000000 + Debug start: 00000000, Debug end: 00000021 + +(000DAC) S_BPREL32: [00000004], Type: 0x1607, p_action + +(000DC4) S_END + +(000DC8) S_GPROC32: [0001:00024060], Cb: 00000008, Type: 0x36D6, MxDiskStreamProvider::FUN_100d1b20 + Parent: 00000000, End: 00000E3C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000E14) S_REGISTER: ecx, Type: 0x1726, this +(000E24) S_BPREL32: [00000004], Type: 0x1607, p_action + +(000E3C) S_END + +(000E40) S_GPROC32: [0001:00024070], Cb: 00000008, Type: 0x1735, MxDiskStreamProvider::GetFileSize + Parent: 00000000, End: 00000E9C, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000E8C) S_REGISTER: ecx, Type: 0x1726, this + +(000E9C) S_END + +(000EA0) S_GPROC32: [0001:00024080], Cb: 00000008, Type: 0x36E6, MxDiskStreamProvider::GetStreamBuffersNum + Parent: 00000000, End: 00000F04, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000EF4) S_REGISTER: ecx, Type: 0x1726, this + +(000F04) S_END + +(000F08) S_GPROC32: [0001:00024090], Cb: 00000008, Type: 0x1735, MxDiskStreamProvider::GetLengthInDWords + Parent: 00000000, End: 00000F68, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000F58) S_REGISTER: ecx, Type: 0x1726, this + +(000F68) S_END + +(000F6C) S_GPROC32: [0001:000240A0], Cb: 00000008, Type: 0x1736, MxDiskStreamProvider::GetBufferForDWords + Parent: 00000000, End: 00000FCC, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000FBC) S_REGISTER: ecx, Type: 0x1726, this + +(000FCC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdiskstreamcontroller.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00021A90], Cb: 00000210, Type: 0x1739, MxDiskStreamController::MxDiskStreamController + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 00000021, Debug end: 000000F6 + Flags: Frame Ptr Present + +(0000E8) S_LABEL32: [0001:00021C98], $L48472 +(0000FC) S_LABEL32: [0001:00021C8E], $L48471 +(000110) S_LABEL32: [0001:00021C83], $L48473 +(000124) S_LABEL32: [0001:00021C78], $L48480 +(000138) S_LABEL32: [0001:00021C6D], $L48482 +(00014C) S_LABEL32: [0001:00021C62], $L48485 +(000160) S_LABEL32: [0001:00021C57], $L48474 +(000174) S_LABEL32: [0001:00021C4C], $L48573 +(000188) S_LABEL32: [0001:00021C3E], $L48475 +(00019C) S_LABEL32: [0001:00021C30], $L48503 +(0001B0) S_LABEL32: [0001:00021C22], $L48505 +(0001C4) S_LABEL32: [0001:00021C14], $L48508 +(0001D8) S_LABEL32: [0001:00021C06], $L48476 +(0001EC) S_LABEL32: [0001:00021BF8], $L48526 +(000200) S_LABEL32: [0001:00021BEA], $L48528 +(000214) S_LABEL32: [0001:00021BDC], $L48531 +(000228) S_LABEL32: [0001:00021BCE], $L48477 +(00023C) S_LABEL32: [0001:00021BC0], $L48478 +(000250) S_LABEL32: [0001:00021BB2], $L48549 +(000264) S_LABEL32: [0001:00021BA4], $L48551 +(000278) S_LABEL32: [0001:00021B96], $L48554 +(00028C) S_BPREL32: [FFFFFFEC], Type: 0x1738, this + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:00021CA0], Cb: 00000064, Type: 0x173C, list >::~list > + Parent: 00000000, End: 00000338, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(000328) S_REGISTER: esi, Type: 0x173B, this + +(000338) S_END + +(00033C) S_GPROC32: [0001:00021D10], Cb: 00000026, Type: 0x173E, list >::_Buynode + Parent: 00000000, End: 000003E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(00039C) S_REGISTER: ecx, Type: 0x173B, this +(0003AC) S_BPREL32: [00000004], Type: 0x12EB, _Narg +(0003C0) S_BPREL32: [00000008], Type: 0x12EB, _Parg +(0003D4) S_REGISTER: eax, Type: 0x12EB, _S + +(0003E4) S_END + +(0003E8) S_GPROC32: [0001:00021D40], Cb: 00000006, Type: 0x1741, MxDiskStreamController::ClassName + Parent: 00000000, End: 00000444, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000434) S_REGISTER: ecx, Type: 0x1740, this + +(000444) S_END + +(000448) S_GPROC32: [0001:00021D50], Cb: 000000A2, Type: 0x1742, MxDiskStreamController::IsA + Parent: 00000000, End: 000004B0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00048C) S_REGISTER: ecx, Type: 0x1740, this +(00049C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0004B0) S_END + +(0004B4) S_GPROC32: [0001:00021E00], Cb: 00000064, Type: 0x1745, list >::~list > + Parent: 00000000, End: 00000548, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(000538) S_REGISTER: esi, Type: 0x1744, this + +(000548) S_END + +(00054C) S_GPROC32: [0001:00021E70], Cb: 00000026, Type: 0x1749, list >::_Buynode + Parent: 00000000, End: 000005F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(0005AC) S_REGISTER: ecx, Type: 0x1744, this +(0005BC) S_BPREL32: [00000004], Type: 0x1747, _Narg +(0005D0) S_BPREL32: [00000008], Type: 0x1747, _Parg +(0005E4) S_REGISTER: eax, Type: 0x1747, _S + +(0005F4) S_END + +(0005F8) S_GPROC32: [0001:00021EA0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDiskStreamController::`scalar deleting destructor' + Parent: 00000000, End: 00000678, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000654) S_REGISTER: esi, Type: 0x1738, this +(000664) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000678) S_END + +(00067C) S_GPROC32: [0001:00021EC0], Cb: 00000049, Type: 0x174A, MxStreamListMxDSAction::~MxStreamListMxDSAction + Parent: 00000000, End: 00000710, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0006D4) S_LABEL32: [0001:00021F01], $L48861 +(0006E8) S_LABEL32: [0001:00021EF7], $L48860 +(0006FC) S_BPREL32: [FFFFFFF0], Type: 0x12E4, this + +(000710) S_END + +(000714) S_GPROC32: [0001:00021F10], Cb: 00000049, Type: 0x174D, List::~List + Parent: 00000000, End: 000007A0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000764) S_LABEL32: [0001:00021F51], $L48869 +(000778) S_LABEL32: [0001:00021F47], $L48868 +(00078C) S_BPREL32: [FFFFFFF0], Type: 0x174C, this + +(0007A0) S_END + +(0007A4) S_GPROC32: [0001:00021F60], Cb: 00000049, Type: 0x1750, MxStreamList::~MxStreamList + Parent: 00000000, End: 00000840, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000804) S_LABEL32: [0001:00021FA1], $L48877 +(000818) S_LABEL32: [0001:00021F97], $L48876 +(00082C) S_BPREL32: [FFFFFFF0], Type: 0x174F, this + +(000840) S_END + +(000844) S_GPROC32: [0001:00021FB0], Cb: 00000049, Type: 0x1753, List::~List + Parent: 00000000, End: 000008D0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000894) S_LABEL32: [0001:00021FF1], $L48885 +(0008A8) S_LABEL32: [0001:00021FE7], $L48884 +(0008BC) S_BPREL32: [FFFFFFF0], Type: 0x1752, this + +(0008D0) S_END + +(0008D4) S_GPROC32: [0001:00022000], Cb: 0000025B, Type: 0x1739, MxDiskStreamController::~MxDiskStreamController + Parent: 00000000, End: 00000A44, Next: 00000000 + Debug start: 00000036, Debug end: 000001E4 + Flags: Frame Ptr Present + +(00092C) S_LABEL32: [0001:00022253], $L48898 +(000940) S_LABEL32: [0001:00022249], $L48897 +(000954) S_LABEL32: [0001:0002223E], $L48899 +(000968) S_LABEL32: [0001:00022233], $L48900 +(00097C) S_LABEL32: [0001:00022225], $L48901 +(000990) S_LABEL32: [0001:00022217], $L48902 +(0009A4) S_LABEL32: [0001:00022209], $L48903 +(0009B8) S_LABEL32: [0001:000221FB], $L48904 +(0009CC) S_LABEL32: [0001:000221F3], $L48905 +(0009E0) S_LABEL32: [0001:000220AC], $L48906 +(0009F4) S_BPREL32: [FFFFFFF0], Type: 0x1738, this +(000A08) S_BPREL32: [FFFFFFE0], Type: 0x109C, action +(000A1C) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock +(000A30) S_REGISTER: esi, Type: 0x1619, buffer + +(000A44) S_END + +(000A48) S_GPROC32: [0001:00022260], Cb: 00000045, Type: 0x2368, list >::erase + Parent: 00000000, End: 00000AE0, Next: 00000000 + Debug start: 0000000B, Debug end: 0000003E + +(000AA4) S_REGISTER: esi, Type: 0x173B, this +(000AB4) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(000AD0) S_BPREL32: [00000008], Type: 0x12FD, _P + +(000AE0) S_END + +(000AE4) S_GPROC32: [0001:000222B0], Cb: 000000EF, Type: 0x1754, MxDiskStreamController::Open + Parent: 00000000, End: 00000BB4, Next: 00000000 + Debug start: 0000001D, Debug end: 0000008B + Flags: Frame Ptr Present + +(000B28) S_LABEL32: [0001:00022397], $L49204 +(000B3C) S_LABEL32: [0001:0002238D], $L49203 +(000B50) S_LABEL32: [0001:00022380], $L49205 +(000B64) S_REGISTER: esi, Type: 0x1738, this +(000B74) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_filename +(000B8C) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(000BA0) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), result + +(000BB4) S_END + +(000BB8) S_GPROC32: [0001:000223A0], Cb: 00000005, Type: 0x1755, MxDiskStreamController::VTable0x18 + Parent: 00000000, End: 00000C44, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000C04) S_REGISTER: ecx, Type: 0x1738, this +(000C14) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000C2C) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(000C44) S_END + +(000C48) S_GPROC32: [0001:000223B0], Cb: 000000CC, Type: 0x36D8, MxDiskStreamController::FUN_100c7890 + Parent: 00000000, End: 00000CF8, Next: 00000000 + Debug start: 00000021, Debug end: 0000004B + Flags: Frame Ptr Present + +(000C94) S_LABEL32: [0001:00022474], $L49221 +(000CA8) S_LABEL32: [0001:0002246A], $L49220 +(000CBC) S_REGISTER: esi, Type: 0x1738, this +(000CCC) S_BPREL32: [00000008], Type: 0x1607, p_action +(000CE4) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(000CF8) S_END + +(000CFC) S_GPROC32: [0001:00022480], Cb: 00000008, Type: 0x1756, MxDiskStreamController::VTable0x34 + Parent: 00000000, End: 00000D70, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000D48) S_REGISTER: ecx, Type: 0x1738, this +(000D58) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(000D70) S_END + +(000D74) S_GPROC32: [0001:00022490], Cb: 00000001, Type: 0x1739, MxDiskStreamController::FUN_100c7970 + Parent: 00000000, End: 00000DD0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000DC0) S_REGISTER: ecx, Type: 0x1738, this + +(000DD0) S_END + +(000DD4) S_GPROC32: [0001:000224A0], Cb: 00000131, Type: 0x1739, MxDiskStreamController::FUN_100c7980 + Parent: 00000000, End: 00000E98, Next: 00000000 + Debug start: 00000028, Debug end: 000000B6 + Flags: Frame Ptr Present + +(000E20) S_LABEL32: [0001:000225C9], $L49341 +(000E34) S_LABEL32: [0001:000225BF], $L49340 +(000E48) S_LABEL32: [0001:000225B2], $L49342 +(000E5C) S_BPREL32: [FFFFFFF0], Type: 0x1738, this +(000E70) S_BPREL32: [FFFFFFEC], Type: 0x1607, action +(000E84) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(000E98) S_END + +(000E9C) S_GPROC32: [0001:000225E0], Cb: 00000145, Type: 0x36D7, MxDiskStreamController::VTable0x28 + Parent: 00000000, End: 00000F9C, Next: 00000000 + Debug start: 00000021, Debug end: 00000118 + Flags: Frame Ptr Present + +(000EE8) S_LABEL32: [0001:0002271D], $L49361 +(000EFC) S_LABEL32: [0001:00022713], $L49360 +(000F10) S_LABEL32: [0001:00022706], $L49362 +(000F24) S_REGISTER: esi, Type: 0x1738, this +(000F34) S_REGISTER: ebx, Type: T_UINT4(0075), filesize +(000F48) S_BPREL32: [FFFFFFEC], Type: 0x109C, oldAction +(000F60) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock +(000F74) S_BPREL32: [FFFFFFF0], Type: 0x1607, result +(000F88) S_REGISTER: ecx, Type: T_UINT4(0075), offset + +(000F9C) S_END + +(000FA0) S_GPROC32: [0001:00022730], Cb: 000000AE, Type: 0x1758, MxDiskStreamController::VTable0x30 + Parent: 00000000, End: 00001074, Next: 00000000 + Debug start: 0000001E, Debug end: 0000008C + Flags: Frame Ptr Present + +(000FEC) S_LABEL32: [0001:000227D6], $L49612 +(001000) S_LABEL32: [0001:000227CC], $L49611 +(001014) S_REGISTER: edi, Type: 0x1738, this +(001024) S_BPREL32: [00000008], Type: 0x109C, p_action +(00103C) S_REGISTER: eax, Type: 0x1607, item +(00104C) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock +(001060) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(001074) S_END + +(001078) S_GPROC32: [0001:000227E0], Cb: 0000002F, Type: 0x3363, MxDiskStreamController::FUN_100c7cb0 + Parent: 00000000, End: 000010EC, Next: 00000000 + Debug start: 00000001, Debug end: 0000002B + +(0010C4) S_REGISTER: ecx, Type: 0x1738, this +(0010D4) S_BPREL32: [00000004], Type: 0x1607, p_action + +(0010EC) S_END + +(0010F0) S_GPROC32: [0001:00022810], Cb: 0000002E, Type: 0x34D6, MxDiskStreamController::FUN_100c7ce0 + Parent: 00000000, End: 00001164, Next: 00000000 + Debug start: 00000000, Debug end: 0000002B + +(00113C) S_REGISTER: ecx, Type: 0x1738, this +(00114C) S_BPREL32: [00000004], Type: 0x1619, p_buffer + +(001164) S_END + +(001168) S_GPROC32: [0001:00022840], Cb: 000000A0, Type: 0x1757, MxDiskStreamController::FUN_100c7d10 + Parent: 00000000, End: 00001214, Next: 00000000 + Debug start: 0000001D, Debug end: 00000050 + Flags: Frame Ptr Present + +(0011B4) S_LABEL32: [0001:000228D8], $L49642 +(0011C8) S_LABEL32: [0001:000228CE], $L49641 +(0011DC) S_REGISTER: esi, Type: 0x1738, this +(0011EC) S_REGISTER: edi, Type: 0x1607, action +(001200) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(001214) S_END + +(001218) S_GPROC32: [0001:000228E0], Cb: 0000015F, Type: 0x36D7, MxDiskStreamController::FUN_100c7db0 + Parent: 00000000, End: 00001300, Next: 00000000 + Debug start: 00000021, Debug end: 000000A9 + Flags: Frame Ptr Present + +(001264) S_LABEL32: [0001:00022A37], $L49658 +(001278) S_LABEL32: [0001:00022A2D], $L49657 +(00128C) S_REGISTER: esi, Type: 0x1738, this +(00129C) S_BPREL32: [FFFFFFEC], Type: 0x131A, it +(0012AC) S_BPREL32: [FFFFFFE0], Type: 0x11DF, lock +(0012C0) S_BPREL32: [FFFFFFF0], Type: 0x12FD, it2 +(0012D0) S_BPREL32: [FFFFFFE8], Type: 0x12FF, data +(0012E4) S_BPREL32: [FFFFFFE4], Type: 0x1607, streamingAction + +(001300) S_END + +(001304) S_GPROC32: [0001:00022A40], Cb: 00000026, Type: 0x136F, list >::_Buynode + Parent: 00000000, End: 000013C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(001378) S_REGISTER: ecx, Type: 0x136C, this +(001388) S_BPREL32: [00000004], Type: 0x1308, _Narg +(00139C) S_BPREL32: [00000008], Type: 0x1308, _Parg +(0013B0) S_REGISTER: eax, Type: 0x1308, _S + +(0013C0) S_END + +(0013C4) S_GPROC32: [0001:00022A70], Cb: 000000A9, Type: 0x3363, MxDiskStreamController::FUN_100c7f40 + Parent: 00000000, End: 0000147C, Next: 00000000 + Debug start: 00000021, Debug end: 00000085 + Flags: Frame Ptr Present + +(001410) S_LABEL32: [0001:00022B11], $L49866 +(001424) S_LABEL32: [0001:00022B07], $L49865 +(001438) S_REGISTER: esi, Type: 0x1738, this +(001448) S_BPREL32: [00000008], Type: 0x1607, p_streamingaction +(001468) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(00147C) S_END + +(001480) S_GPROC32: [0001:00022B20], Cb: 0000012A, Type: 0x1758, MxDiskStreamController::VTable0x20 + Parent: 00000000, End: 00001554, Next: 00000000 + Debug start: 00000021, Debug end: 000000CE + Flags: Frame Ptr Present + +(0014CC) S_LABEL32: [0001:00022C42], $L49981 +(0014E0) S_LABEL32: [0001:00022C38], $L49980 +(0014F4) S_LABEL32: [0001:00022C01], $L49982 +(001508) S_REGISTER: esi, Type: 0x1738, this +(001518) S_BPREL32: [00000008], Type: 0x109C, p_action +(001530) S_REGISTER: ebx, Type: 0x1607, entry +(001540) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(001554) S_END + +(001558) S_GPROC32: [0001:00022C50], Cb: 000001FF, Type: 0x1758, MxDiskStreamController::VTable0x24 + Parent: 00000000, End: 00001698, Next: 00000000 + Debug start: 0000002A, Debug end: 000001A5 + Flags: Frame Ptr Present + +(0015A4) S_LABEL32: [0001:00022E47], $L50009 +(0015B8) S_LABEL32: [0001:00022E3D], $L50008 +(0015CC) S_LABEL32: [0001:00022E32], $L50011 +(0015E0) S_LABEL32: [0001:00022E2A], $L50010 +(0015F4) S_LABEL32: [0001:00022E22], $L50018 +(001608) S_LABEL32: [0001:00022E1A], $L50022 +(00161C) S_LABEL32: [0001:00022E12], $L50036 +(001630) S_LABEL32: [0001:00022E05], $L50023 +(001644) S_BPREL32: [FFFFFFF0], Type: 0x1738, this +(001658) S_BPREL32: [00000008], Type: 0x109C, p_action +(001670) S_BPREL32: [FFFFFF40], Type: 0x3CF2, action +(001684) S_BPREL32: [FFFFFFD8], Type: 0x11DF, lock + +(001698) S_END + +(00169C) S_GPROC32: [0001:00022E50], Cb: 0000013E, Type: 0x36D8, MxDiskStreamController::FUN_100c8360 + Parent: 00000000, End: 00001774, Next: 00000000 + Debug start: 00000021, Debug end: 0000011C + Flags: Frame Ptr Present + +(0016E8) S_LABEL32: [0001:00022F86], $L50154 +(0016FC) S_LABEL32: [0001:00022F7C], $L50153 +(001710) S_REGISTER: esi, Type: 0x1738, this +(001720) S_BPREL32: [00000008], Type: 0x1607, p_action +(001738) S_REGISTER: ebx, Type: 0x1619, buffer +(00174C) S_BPREL32: [FFFFFFF0], Type: 0x1607, action2 +(001760) S_BPREL32: [FFFFFFE4], Type: 0x11DF, lock + +(001774) S_END + +(001778) S_GPROC32: [0001:00022F90], Cb: 0000009F, Type: 0x34D6, MxDiskStreamController::InsertToList74 + Parent: 00000000, End: 0000182C, Next: 00000000 + Debug start: 00000021, Debug end: 0000007B + Flags: Frame Ptr Present + +(0017C8) S_LABEL32: [0001:00023027], $L50275 +(0017DC) S_LABEL32: [0001:0002301D], $L50274 +(0017F0) S_REGISTER: esi, Type: 0x1738, this +(001800) S_BPREL32: [00000008], Type: 0x1619, p_buffer +(001818) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(00182C) S_END + +(001830) S_GPROC32: [0001:00023030], Cb: 000000F5, Type: 0x1739, MxDiskStreamController::FUN_100c8540 + Parent: 00000000, End: 000018FC, Next: 00000000 + Debug start: 00000021, Debug end: 000000D3 + Flags: Frame Ptr Present + +(00187C) S_LABEL32: [0001:0002311D], $L50389 +(001890) S_LABEL32: [0001:00023113], $L50388 +(0018A4) S_REGISTER: esi, Type: 0x1738, this +(0018B4) S_BPREL32: [FFFFFFF0], Type: 0x2AB5, it +(0018C4) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock +(0018D8) S_REGISTER: ebx, Type: 0x1619, buf +(0018E8) S_REGISTER: ebx, Type: 0x1607, action + +(0018FC) S_END + +(001900) S_GPROC32: [0001:00023130], Cb: 00000030, Type: 0x1757, MxDiskStreamController::Tickle + Parent: 00000000, End: 00001958, Next: 00000000 + Debug start: 00000001, Debug end: 0000002F + +(001948) S_REGISTER: esi, Type: 0x1738, this + +(001958) S_END + +(00195C) S_GPROC32: [0001:00023160], Cb: 000000AE, Type: 0x3363, MxDiskStreamController::FUN_100c8670 + Parent: 00000000, End: 00001A14, Next: 00000000 + Debug start: 00000024, Debug end: 0000008A + Flags: Frame Ptr Present + +(0019A8) S_LABEL32: [0001:00023206], $L50513 +(0019BC) S_LABEL32: [0001:000231FC], $L50512 +(0019D0) S_REGISTER: esi, Type: 0x1738, this +(0019E0) S_BPREL32: [00000008], Type: 0x1607, p_streamingAction +(001A00) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(001A14) S_END + +(001A18) S_GPROC32: [0001:00023210], Cb: 000000A5, Type: 0x1739, MxDiskStreamController::FUN_100c8720 + Parent: 00000000, End: 00001AC4, Next: 00000000 + Debug start: 0000001D, Debug end: 00000084 + Flags: Frame Ptr Present + +(001A64) S_LABEL32: [0001:000232AD], $L50623 +(001A78) S_LABEL32: [0001:000232A3], $L50622 +(001A8C) S_REGISTER: esi, Type: 0x1738, this +(001A9C) S_REGISTER: edi, Type: 0x1607, action +(001AB0) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(001AC4) S_END + +(001AC8) S_GPROC32: [0001:000232C0], Cb: 00000011, Type: 0x3C75, _Construct + Parent: 00000000, End: 00001B1C, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(001AFC) S_BPREL32: [00000004], Type: 0x23D3, _P +(001B0C) S_BPREL32: [00000008], Type: 0x23D5, _V + +(001B1C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdirectdraw.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0001FF20], Cb: 00000078, Type: 0x175B, MxDirectDraw::MxDirectDraw + Parent: 00000000, End: 000000D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000077 + +(0000C8) S_REGISTER: ecx, Type: 0x175A, this + +(0000D8) S_END + +(0000DC) S_GPROC32: [0001:0001FFA0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDirectDraw::`scalar deleting destructor' + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000130) S_REGISTER: esi, Type: 0x175A, this +(000140) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000154) S_END + +(000158) S_GPROC32: [0001:0001FFC0], Cb: 00000036, Type: 0x175B, MxDirectDraw::~MxDirectDraw + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000002, Debug end: 00000033 + +(00019C) S_REGISTER: esi, Type: 0x175A, this + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:00020000], Cb: 00000065, Type: 0x175C, MxDirectDraw::GetPrimaryBitDepth + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 0000000E, Debug end: 00000060 + +(0001F8) S_BPREL32: [FFFFFF90], Type: 0x1245, pDDraw +(00020C) S_REGISTER: esi, Type: T_ULONG(0022), dwRGBBitCount +(000224) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd + +(000238) S_END + +(00023C) S_GPROC32: [0001:00020070], Cb: 000000AE, Type: 0x1760, MxDirectDraw::Create + Parent: 00000000, End: 00000384, Next: 00000000 + Debug start: 0000000C, Debug end: 000000AB + +(000278) S_REGISTER: esi, Type: 0x175A, this +(000288) S_BPREL32: [00000004], Type: T_32PVOID(0403), hWnd +(00029C) S_BPREL32: [00000008], Type: T_INT4(0074), fullscreen_1 +(0002B8) S_BPREL32: [0000000C], Type: T_INT4(0074), surface_fullscreen +(0002D8) S_BPREL32: [00000010], Type: T_INT4(0074), onlySystemMemory +(0002F8) S_BPREL32: [00000014], Type: T_INT4(0074), width +(00030C) S_BPREL32: [00000018], Type: T_INT4(0074), height +(000320) S_BPREL32: [0000001C], Type: T_INT4(0074), bpp +(000330) S_BPREL32: [00000020], Type: 0x175E, pPaletteEntries +(00034C) S_BPREL32: [00000024], Type: T_INT4(0074), paletteEntryCount +(00036C) S_REGISTER: edi, Type: T_INT4(0074), fullscreen + +(000384) S_END + +(000388) S_GPROC32: [0001:00020120], Cb: 00000030, Type: 0x1765, MxDirectDraw::RecreateDirectDraw + Parent: 00000000, End: 000003F4, Next: 00000000 + Debug start: 00000001, Debug end: 0000002D + +(0003D0) S_REGISTER: ecx, Type: 0x175A, this +(0003E0) S_BPREL32: [00000004], Type: 0x1763, ppGUID + +(0003F4) S_END + +(0003F8) S_GPROC32: [0001:00020150], Cb: 0000003D, Type: 0x1766, MxDirectDraw::CacheOriginalPaletteEntries + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000009, Debug end: 0000003B + +(00044C) S_REGISTER: edi, Type: 0x175A, this +(00045C) S_REGISTER: esi, Type: T_32PVOID(0403), dc + +(00046C) S_END + +(000470) S_GPROC32: [0001:00020190], Cb: 000000F9, Type: 0x1768, MxDirectDraw::SetPaletteEntries + Parent: 00000000, End: 0000054C, Next: 00000000 + Debug start: 0000000A, Debug end: 000000F4 + +(0004B8) S_REGISTER: edi, Type: 0x175A, this +(0004C8) S_BPREL32: [00000004], Type: 0x175E, pPaletteEntries +(0004E4) S_BPREL32: [00000008], Type: T_INT4(0074), paletteEntryCount +(000504) S_BPREL32: [0000000C], Type: T_INT4(0074), fullscreen +(00051C) S_REGISTER: esi, Type: T_32PVOID(0403), hdc +(00052C) S_REGISTER: esi, Type: T_INT4(0074), i +(000538) S_REGISTER: eax, Type: T_LONG(0012), result + +(00054C) S_END + +(000550) S_GPROC32: [0001:00020290], Cb: 00000055, Type: 0x175B, MxDirectDraw::Destroy + Parent: 00000000, End: 000005A0, Next: 00000000 + Debug start: 00000002, Debug end: 00000052 + +(000590) S_REGISTER: esi, Type: 0x175A, this + +(0005A0) S_END + +(0005A4) S_GPROC32: [0001:000202F0], Cb: 000000C0, Type: 0x175B, MxDirectDraw::DestroyButNotDirectDraw + Parent: 00000000, End: 00000604, Next: 00000000 + Debug start: 00000001, Debug end: 000000BE + +(0005F4) S_REGISTER: esi, Type: 0x175A, this + +(000604) S_END + +(000608) S_GPROC32: [0001:000203B0], Cb: 00000038, Type: 0x175B, MxDirectDraw::FUN_1009d920 + Parent: 00000000, End: 0000065C, Next: 00000000 + Debug start: 00000001, Debug end: 00000036 + +(00064C) S_REGISTER: esi, Type: 0x175A, this + +(00065C) S_END + +(000660) S_GPROC32: [0001:000203F0], Cb: 0000006E, Type: 0x1769, MxDirectDraw::DDInit + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000002, Debug end: 00000069 + +(00069C) S_REGISTER: edi, Type: 0x175A, this +(0006AC) S_BPREL32: [00000004], Type: T_INT4(0074), fullscreen +(0006C4) S_REGISTER: eax, Type: T_LONG(0012), result + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:00020460], Cb: 0000004A, Type: 0x176B, MxDirectDraw::IsSupportedMode + Parent: 00000000, End: 00000778, Next: 00000000 + Debug start: 00000009, Debug end: 00000045 + +(000724) S_REGISTER: ecx, Type: 0x175A, this +(000734) S_BPREL32: [00000004], Type: T_INT4(0074), width +(000748) S_BPREL32: [00000008], Type: T_INT4(0074), height +(00075C) S_BPREL32: [0000000C], Type: T_INT4(0074), bpp +(00076C) S_REGISTER: edi, Type: T_INT4(0074), i + +(000778) S_END + +(00077C) S_GPROC32: [0001:000204B0], Cb: 00000051, Type: 0x176D, EnableResizing + Parent: 00000000, End: 000007DC, Next: 00000000 + Debug start: 00000007, Debug end: 0000004E + +(0007B4) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_hwnd +(0007C8) S_BPREL32: [00000008], Type: T_INT4(0074), p_flag + +(0007DC) S_END + +(0007E0) S_GPROC32: [0001:00020510], Cb: 00000300, Type: 0x176B, MxDirectDraw::DDSetMode + Parent: 00000000, End: 000008C8, Next: 00000000 + Debug start: 00000009, Debug end: 000002F7 + +(000820) S_REGISTER: esi, Type: 0x175A, this +(000830) S_BPREL32: [00000004], Type: T_INT4(0074), width +(000844) S_BPREL32: [00000008], Type: T_INT4(0074), height +(000858) S_BPREL32: [0000000C], Type: T_INT4(0074), bpp +(000868) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(00087C) S_REGISTER: eax, Type: T_LONG(0012), result +(000890) S_BPREL32: [FFFFFF84], Type: 0x1245, lpDD +(0008A4) S_REGISTER: eax, Type: T_ULONG(0022), dwStyle +(0008B8) S_BPREL32: [FFFFFF84], Type: 0x1279, rc + +(0008C8) S_END + +(0008CC) S_GPROC32: [0001:00020810], Cb: 0000001B, Type: 0x1772, MxDirectDraw::CreateDDSurface + Parent: 00000000, End: 00000954, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(000914) S_REGISTER: ecx, Type: 0x175A, this +(000924) S_BPREL32: [00000004], Type: 0x1291, a2 +(000934) S_BPREL32: [00000008], Type: 0x176E, a3 +(000944) S_BPREL32: [0000000C], Type: 0x1770, a4 + +(000954) S_END + +(000958) S_GPROC32: [0001:00020830], Cb: 00000043, Type: 0x1774, MxDirectDraw::GetDDSurfaceDesc + Parent: 00000000, End: 000009F8, Next: 00000000 + Debug start: 00000008, Debug end: 00000040 + +(0009A0) S_REGISTER: esi, Type: 0x175A, this +(0009B0) S_BPREL32: [00000004], Type: 0x1291, lpDDSurfDesc +(0009CC) S_BPREL32: [00000008], Type: 0x11E7, lpDDSurf +(0009E4) S_REGISTER: edi, Type: T_LONG(0012), result + +(0009F8) S_END + +(0009FC) S_GPROC32: [0001:00020880], Cb: 00000221, Type: 0x1766, MxDirectDraw::DDCreateSurfaces + Parent: 00000000, End: 00000A90, Next: 00000000 + Debug start: 00000008, Debug end: 0000021B + +(000A44) S_REGISTER: esi, Type: 0x175A, this +(000A54) S_BPREL32: [FFFFFF90], Type: 0x1776, ddscaps +(000A68) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000A7C) S_REGISTER: eax, Type: T_LONG(0012), result + +(000A90) S_END + +(000A94) S_GPROC32: [0001:00020AB0], Cb: 000000E5, Type: 0x175B, MxDirectDraw::FUN_1009e020 + Parent: 00000000, End: 00000B50, Next: 00000000 + Debug start: 00000017, Debug end: 000000DD + +(000AD8) S_REGISTER: esi, Type: 0x175A, this +(000AE8) S_REGISTER: ebx, Type: T_INT4(0074), j +(000AF4) S_BPREL32: [FFFFFF8C], Type: T_INT4(0074), i +(000B04) S_BPREL32: [FFFFFF90], Type: T_INT4(0074), count +(000B18) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000B2C) S_REGISTER: edx, Type: T_32PUCHAR(0420), line +(000B3C) S_REGISTER: eax, Type: T_LONG(0012), result + +(000B50) S_END + +(000B54) S_GPROC32: [0001:00020BA0], Cb: 000000F1, Type: 0x177A, MxDirectDraw::TextToTextSurface + Parent: 00000000, End: 00000C44, Next: 00000000 + Debug start: 0000000D, Debug end: 000000E8 + +(000B9C) S_REGISTER: ebx, Type: 0x175A, this +(000BAC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), text +(000BC0) S_BPREL32: [00000008], Type: 0x11E7, pSurface +(000BD8) S_BPREL32: [0000000C], Type: 0x1778, textSizeOnSurface +(000BF8) S_BPREL32: [FFFFFFEC], Type: T_32PVOID(0403), hdc +(000C08) S_BPREL32: [FFFFFFF0], Type: 0x1279, rc +(000C18) S_REGISTER: edi, Type: T_UINT4(0075), textLength +(000C30) S_REGISTER: eax, Type: T_LONG(0012), result + +(000C44) S_END + +(000C48) S_GPROC32: [0001:00020CA0], Cb: 00000018, Type: 0x177B, MxDirectDraw::TextToTextSurface1 + Parent: 00000000, End: 00000CB4, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000C90) S_REGISTER: ecx, Type: 0x175A, this +(000CA0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), text + +(000CB4) S_END + +(000CB8) S_GPROC32: [0001:00020CC0], Cb: 00000018, Type: 0x177B, MxDirectDraw::TextToTextSurface2 + Parent: 00000000, End: 00000D24, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000D00) S_REGISTER: ecx, Type: 0x175A, this +(000D10) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), text + +(000D24) S_END + +(000D28) S_GPROC32: [0001:00020CE0], Cb: 00000276, Type: 0x1766, MxDirectDraw::CreateTextSurfaces + Parent: 00000000, End: 00000DFC, Next: 00000000 + Debug start: 00000011, Debug end: 0000026E + +(000D70) S_REGISTER: ebx, Type: 0x175A, this +(000D80) S_BPREL32: [FFFFFF4C], Type: 0x177C, dummyinfo +(000D98) S_BPREL32: [FFFFFFD0], Type: 0x177D, dummyfps +(000DB0) S_BPREL32: [FFFFFF44], Type: 0x177F, ddck +(000DC4) S_REGISTER: esi, Type: T_32PVOID(0403), dc +(000DD4) S_BPREL32: [FFFFFF64], Type: 0x10D3, ddsd +(000DE8) S_REGISTER: eax, Type: T_LONG(0012), result + +(000DFC) S_END + +(000E00) S_GPROC32: [0001:00020F60], Cb: 00000104, Type: 0x1766, MxDirectDraw::RestoreSurfaces + Parent: 00000000, End: 00000E6C, Next: 00000000 + Debug start: 00000001, Debug end: 00000103 + +(000E48) S_REGISTER: esi, Type: 0x175A, this +(000E58) S_REGISTER: eax, Type: T_LONG(0012), result + +(000E6C) S_END + +(000E70) S_GPROC32: [0001:00021070], Cb: 000000BE, Type: 0x1781, MxDirectDraw::CreateZBuffer + Parent: 00000000, End: 00000F30, Next: 00000000 + Debug start: 00000007, Debug end: 000000B7 + +(000EB4) S_REGISTER: esi, Type: 0x175A, this +(000EC4) S_BPREL32: [00000004], Type: T_ULONG(0022), memorytype +(000EDC) S_BPREL32: [00000008], Type: T_ULONG(0022), depth +(000EF0) S_BPREL32: [FFFFFF90], Type: 0x11E7, lpZBuffer +(000F08) S_BPREL32: [FFFFFF94], Type: 0x10D3, ddsd +(000F1C) S_REGISTER: eax, Type: T_LONG(0012), result + +(000F30) S_END + +(000F34) S_GPROC32: [0001:00021130], Cb: 000000AD, Type: 0x1769, MxDirectDraw::Pause + Parent: 00000000, End: 00000F98, Next: 00000000 + Debug start: 00000006, Debug end: 000000AA + +(000F70) S_REGISTER: esi, Type: 0x175A, this +(000F80) S_BPREL32: [00000004], Type: T_INT4(0074), p_increment + +(000F98) S_END + +(000F9C) S_GPROC32: [0001:000211E0], Cb: 0000004B, Type: 0x1766, MxDirectDraw::RestorePaletteEntries + Parent: 00000000, End: 0000100C, Next: 00000000 + Debug start: 00000001, Debug end: 0000004A + +(000FE8) S_REGISTER: esi, Type: 0x175A, this +(000FF8) S_REGISTER: eax, Type: T_LONG(0012), result + +(00100C) S_END + +(001010) S_GPROC32: [0001:00021230], Cb: 00000045, Type: 0x1766, MxDirectDraw::RestoreOriginalPaletteEntries + Parent: 00000000, End: 00001088, Next: 00000000 + Debug start: 00000001, Debug end: 00000044 + +(001064) S_REGISTER: esi, Type: 0x175A, this +(001074) S_REGISTER: eax, Type: T_LONG(0012), result + +(001088) S_END + +(00108C) S_GPROC32: [0001:00021280], Cb: 00000036, Type: 0x1766, MxDirectDraw::FlipToGDISurface + Parent: 00000000, End: 000010F4, Next: 00000000 + Debug start: 00000002, Debug end: 00000034 + +(0010D4) S_REGISTER: edi, Type: 0x175A, this +(0010E4) S_REGISTER: esi, Type: T_LONG(0012), ret + +(0010F4) S_END + +(0010F8) S_GPROC32: [0001:000212C0], Cb: 00000049, Type: 0x1783, MxDirectDraw::Error + Parent: 00000000, End: 00001170, Next: 00000000 + Debug start: 00000008, Debug end: 00000045 + +(001134) S_REGISTER: esi, Type: 0x175A, this +(001144) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_message +(00115C) S_BPREL32: [00000008], Type: T_INT4(0074), p_error + +(001170) S_END + +(001174) S_GPROC32: [0001:00021310], Cb: 00000730, Type: 0x1784, MxDirectDraw::ErrorToString + Parent: 00000000, End: 000011EC, Next: 00000000 + Debug start: 00000000, Debug end: 0000069C + +(0011B8) S_LDATA32: [0001:000219C4], Type: T_NOTYPE(0000), +(0011C8) S_REGISTER: ecx, Type: 0x175A, this +(0011D8) S_BPREL32: [00000004], Type: T_LONG(0012), p_error + +(0011EC) S_END + +(0011F0) S_GPROC32: [0001:00021A40], Cb: 00000012, Type: 0x1787, MxDirectDraw::DeviceModesInfo::DeviceModesInfo + Parent: 00000000, End: 00001258, Next: 00000000 + Debug start: 00000003, Debug end: 00000011 + +(001248) S_REGISTER: edx, Type: 0x1786, this + +(001258) S_END + +(00125C) S_GPROC32: [0001:00021A60], Cb: 00000024, Type: 0x1787, MxDirectDraw::DeviceModesInfo::~DeviceModesInfo + Parent: 00000000, End: 000012C4, Next: 00000000 + Debug start: 00000001, Debug end: 00000022 + +(0012B4) S_REGISTER: esi, Type: 0x1786, this + +(0012C4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxdirect3d.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0001E3D0], Cb: 00000073, Type: 0x178D, MxDirect3D::MxDirect3D + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005C + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0001E43B], $L44859 +(0000D8) S_LABEL32: [0001:0001E431], $L44858 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x178C, this + +(000100) S_END + +(000104) S_GPROC32: [0001:0001E450], Cb: 0000001E, Type: T_NOTYPE(0000), MxDirect3D::`scalar deleting destructor' + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000154) S_REGISTER: esi, Type: 0x178C, this +(000164) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000178) S_END + +(00017C) S_GPROC32: [0001:0001E470], Cb: 0000005B, Type: 0x178D, MxDirect3D::~MxDirect3D + Parent: 00000000, End: 000001F8, Next: 00000000 + Debug start: 00000021, Debug end: 0000003C + Flags: Frame Ptr Present + +(0001BC) S_LABEL32: [0001:0001E4C3], $L44872 +(0001D0) S_LABEL32: [0001:0001E4B9], $L44871 +(0001E4) S_BPREL32: [FFFFFFF0], Type: 0x178C, this + +(0001F8) S_END + +(0001FC) S_GPROC32: [0001:0001E4D0], Cb: 00000069, Type: 0x178E, MxDirect3D::Create + Parent: 00000000, End: 00000340, Next: 00000000 + Debug start: 00000008, Debug end: 00000064 + +(000238) S_REGISTER: esi, Type: 0x178C, this +(000248) S_BPREL32: [00000004], Type: T_32PVOID(0403), hWnd +(00025C) S_BPREL32: [00000008], Type: T_INT4(0074), fullscreen_1 +(000278) S_BPREL32: [0000000C], Type: T_INT4(0074), surface_fullscreen +(000298) S_BPREL32: [00000010], Type: T_INT4(0074), onlySystemMemory +(0002B8) S_BPREL32: [00000014], Type: T_INT4(0074), width +(0002CC) S_BPREL32: [00000018], Type: T_INT4(0074), height +(0002E0) S_BPREL32: [0000001C], Type: T_INT4(0074), bpp +(0002F0) S_BPREL32: [00000020], Type: 0x175E, pPaletteEntries +(00030C) S_BPREL32: [00000024], Type: T_INT4(0074), paletteEntryCount +(00032C) S_REGISTER: edi, Type: T_INT4(0074), success + +(000340) S_END + +(000344) S_GPROC32: [0001:0001E540], Cb: 00000079, Type: 0x178D, MxDirect3D::Destroy + Parent: 00000000, End: 00000390, Next: 00000000 + Debug start: 00000002, Debug end: 00000076 + +(000380) S_REGISTER: esi, Type: 0x178C, this + +(000390) S_END + +(000394) S_GPROC32: [0001:0001E5C0], Cb: 00000040, Type: 0x178D, MxDirect3D::DestroyButNotDirectDraw + Parent: 00000000, End: 000003F0, Next: 00000000 + Debug start: 00000001, Debug end: 0000003E + +(0003E0) S_REGISTER: esi, Type: 0x178C, this + +(0003F0) S_END + +(0003F4) S_GPROC32: [0001:0001E600], Cb: 00000033, Type: 0x178F, MxDirect3D::CreateIDirect3D + Parent: 00000000, End: 00000458, Next: 00000000 + Debug start: 00000001, Debug end: 00000032 + +(000438) S_REGISTER: esi, Type: 0x178C, this +(000448) S_REGISTER: eax, Type: T_LONG(0012), ret + +(000458) S_END + +(00045C) S_GPROC32: [0001:0001E640], Cb: 00000286, Type: 0x178F, MxDirect3D::D3DSetMode + Parent: 00000000, End: 0000055C, Next: 00000000 + Debug start: 00000012, Debug end: 0000027C + +(00049C) S_REGISTER: esi, Type: 0x178C, this +(0004AC) S_BPREL32: [FFFFFF84], Type: 0x4CDB, mode +(0004C0) S_BPREL32: [FFFFFF7C], Type: 0x11E7, frontBuffer +(0004D8) S_BPREL32: [FFFFFF78], Type: 0x11E7, backBuffer +(0004F0) S_BPREL32: [FFFFFF94], Type: 0x10D3, desc +(000504) S_REGISTER: eax, Type: T_LONG(0012), result +(000518) S_BPREL32: [FFFFFF90], Type: T_INT4(0074), i +(000528) S_REGISTER: edx, Type: T_32PUCHAR(0420), surface +(00053C) S_REGISTER: ebx, Type: T_INT4(0074), i +(000548) S_REGISTER: edx, Type: T_32PUCHAR(0420), surface + +(00055C) S_END + +(000560) S_GPROC32: [0001:0001E8D0], Cb: 0000004E, Type: 0x4D05, MxDirect3D::GetZBufferBitDepth + Parent: 00000000, End: 000005EC, Next: 00000000 + Debug start: 00000000, Debug end: 0000004B + +(0005A8) S_REGISTER: ecx, Type: 0x178C, this +(0005B8) S_BPREL32: [00000004], Type: 0x4CEE, p_assignedDevice +(0005D8) S_REGISTER: eax, Type: T_ULONG(0022), bitDepth + +(0005EC) S_END + +(0005F0) S_GPROC32: [0001:0001E920], Cb: 000002B8, Type: 0x4BD5, MxDirect3D::SetDevice + Parent: 00000000, End: 00000748, Next: 00000000 + Debug start: 00000021, Debug end: 0000027A + Flags: Frame Ptr Present + +(000630) S_LABEL32: [0001:0001EBCB], $L44917 +(000644) S_LABEL32: [0001:0001EBC1], $L44914 +(000658) S_LABEL32: [0001:0001EBB4], $L44920 +(00066C) S_BPREL32: [FFFFFFE8], Type: 0x178C, this +(000680) S_BPREL32: [00000008], Type: 0x4398, p_deviceEnumerate +(0006A0) S_BPREL32: [0000000C], Type: 0x4BD3, p_driver +(0006B8) S_BPREL32: [00000010], Type: 0x4971, p_device +(0006D0) S_BPREL32: [FFFFFFE0], Type: 0x4BF9, it +(0006E0) S_BPREL32: [FFFFFFDC], Type: T_INT4(0074), i +(0006F0) S_BPREL32: [FFFFFFF0], Type: 0x4BD9, driver +(000704) S_BPREL32: [FFFFFFE4], Type: 0x492D, it2 +(000714) S_BPREL32: [FFFFFFEC], Type: 0x4949, it2 +(000724) S_REGISTER: esi, Type: 0x28B6, desc +(000734) S_REGISTER: esi, Type: 0x4920, device + +(000748) S_END + +(00074C) S_GPROC32: [0001:0001EBE0], Cb: 00000012, Type: 0x4CED, MxAssignedDevice::MxAssignedDevice + Parent: 00000000, End: 000007A8, Next: 00000000 + Debug start: 00000003, Debug end: 00000011 + +(000798) S_REGISTER: edx, Type: 0x4CEC, this + +(0007A8) S_END + +(0007AC) S_GPROC32: [0001:0001EC00], Cb: 0000002B, Type: 0x4CED, MxAssignedDevice::~MxAssignedDevice + Parent: 00000000, End: 00000808, Next: 00000000 + Debug start: 00000002, Debug end: 00000028 + +(0007F8) S_REGISTER: esi, Type: 0x4CEC, this + +(000808) S_END + +(00080C) S_GPROC32: [0001:0001EC30], Cb: 000000FE, Type: 0x4BD7, MxDriver::MxDriver + Parent: 00000000, End: 0000090C, Next: 00000000 + Debug start: 0000002B, Debug end: 000000AB + Flags: Frame Ptr Present + +(000848) S_LABEL32: [0001:0001ED20], $L45030 +(00085C) S_LABEL32: [0001:0001ED16], $L45029 +(000870) S_LABEL32: [0001:0001ED08], $L45034 +(000884) S_LABEL32: [0001:0001ECFA], $L45031 +(000898) S_LABEL32: [0001:0001ECEC], $L45085 +(0008AC) S_BPREL32: [FFFFFFEC], Type: 0x4BD6, this +(0008C0) S_BPREL32: [00000008], Type: 0x1762, p_guid +(0008D4) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_driverDesc +(0008F0) S_BPREL32: [00000010], Type: T_32PRCHAR(0470), p_driverName + +(00090C) S_END + +(000910) S_GPROC32: [0001:0001ED30], Cb: 00000070, Type: 0x4903, list >::~list > + Parent: 00000000, End: 00000994, Next: 00000000 + Debug start: 00000005, Debug end: 0000006A + +(000984) S_REGISTER: esi, Type: 0x4902, this + +(000994) S_END + +(000998) S_GPROC32: [0001:0001EDA0], Cb: 00000064, Type: 0x4906, list >::~list > + Parent: 00000000, End: 00000A30, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(000A20) S_REGISTER: esi, Type: 0x4905, this + +(000A30) S_END + +(000A34) S_GPROC32: [0001:0001EE10], Cb: 00000049, Type: 0x4909, List::~List + Parent: 00000000, End: 00000AB8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000A7C) S_LABEL32: [0001:0001EE51], $L45365 +(000A90) S_LABEL32: [0001:0001EE47], $L45364 +(000AA4) S_BPREL32: [FFFFFFF0], Type: 0x4908, this + +(000AB8) S_END + +(000ABC) S_GPROC32: [0001:0001EE60], Cb: 00000049, Type: 0x490C, List::~List + Parent: 00000000, End: 00000B4C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000B10) S_LABEL32: [0001:0001EEA1], $L45373 +(000B24) S_LABEL32: [0001:0001EE97], $L45372 +(000B38) S_BPREL32: [FFFFFFF0], Type: 0x490B, this + +(000B4C) S_END + +(000B50) S_GPROC32: [0001:0001EEB0], Cb: 000000A2, Type: 0x4BD8, MxDriver::~MxDriver + Parent: 00000000, End: 00000BDC, Next: 00000000 + Debug start: 0000001B, Debug end: 0000006F + Flags: Frame Ptr Present + +(000B8C) S_LABEL32: [0001:0001EF44], $L45384 +(000BA0) S_LABEL32: [0001:0001EF3A], $L45383 +(000BB4) S_LABEL32: [0001:0001EF2C], $L45385 +(000BC8) S_BPREL32: [FFFFFFF0], Type: 0x4BD6, this + +(000BDC) S_END + +(000BE0) S_GPROC32: [0001:0001EF60], Cb: 000000EB, Type: 0x4BD7, MxDriver::Init + Parent: 00000000, End: 00000C74, Next: 00000000 + Debug start: 00000006, Debug end: 000000E5 + +(000C18) S_REGISTER: ebx, Type: 0x4BD6, this +(000C28) S_BPREL32: [00000004], Type: 0x1762, p_guid +(000C3C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_driverDesc +(000C58) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_driverName + +(000C74) S_END + +(000C78) S_GPROC32: [0001:0001F050], Cb: 00000036, Type: 0x490F, MxDevice::MxDevice + Parent: 00000000, End: 00000D40, Next: 00000000 + Debug start: 00000006, Debug end: 00000032 + +(000CB4) S_REGISTER: esi, Type: 0x490E, this +(000CC4) S_BPREL32: [00000004], Type: 0x1762, p_guid +(000CD8) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_deviceDesc +(000CF4) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_deviceName +(000D10) S_BPREL32: [00000010], Type: 0x28B6, p_HWDesc +(000D28) S_BPREL32: [00000014], Type: 0x28B6, p_HELDesc + +(000D40) S_END + +(000D44) S_GPROC32: [0001:0001F090], Cb: 00000034, Type: 0x4910, MxDevice::~MxDevice + Parent: 00000000, End: 00000D90, Next: 00000000 + Debug start: 00000001, Debug end: 00000032 + +(000D80) S_REGISTER: esi, Type: 0x490E, this + +(000D90) S_END + +(000D94) S_GPROC32: [0001:0001F0D0], Cb: 00000112, Type: 0x490F, MxDevice::Init + Parent: 00000000, End: 00000E58, Next: 00000000 + Debug start: 00000006, Debug end: 0000010C + +(000DCC) S_REGISTER: ebx, Type: 0x490E, this +(000DDC) S_BPREL32: [00000004], Type: 0x1762, p_guid +(000DF0) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_deviceDesc +(000E0C) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_deviceName +(000E28) S_BPREL32: [00000010], Type: 0x28B6, p_HWDesc +(000E40) S_BPREL32: [00000014], Type: 0x28B6, p_HELDesc + +(000E58) S_END + +(000E5C) S_GPROC32: [0001:0001F1F0], Cb: 0000008D, Type: 0x25DB, MxDeviceEnumerate::MxDeviceEnumerate + Parent: 00000000, End: 00000EF8, Next: 00000000 + Debug start: 0000001F, Debug end: 00000061 + Flags: Frame Ptr Present + +(000EA8) S_LABEL32: [0001:0001F272], $L45408 +(000EBC) S_LABEL32: [0001:0001F268], $L45407 +(000ED0) S_LABEL32: [0001:0001F25D], $L45411 +(000EE4) S_BPREL32: [FFFFFFEC], Type: 0x1794, this + +(000EF8) S_END + +(000EFC) S_GPROC32: [0001:0001F280], Cb: 00000218, Type: 0x44B0, MxDeviceEnumerate::EnumDirectDrawCallback + Parent: 00000000, End: 0000103C, Next: 00000000 + Debug start: 00000026, Debug end: 000001F3 + Flags: Frame Ptr Present + +(000F50) S_LABEL32: [0001:0001F48D], $L45592 +(000F64) S_LABEL32: [0001:0001F483], $L45591 +(000F78) S_REGISTER: esi, Type: 0x1794, this +(000F88) S_BPREL32: [00000008], Type: 0x1762, p_guid +(000F9C) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_driverDesc +(000FB8) S_BPREL32: [00000010], Type: T_32PRCHAR(0470), p_driverName +(000FD4) S_REGISTER: edi, Type: 0x4BD9, newDevice +(000FE8) S_BPREL32: [FFFFFFF0], Type: 0x1245, lpDD +(000FFC) S_BPREL32: [FFFFFE58], Type: 0x4BE3, driver +(001010) S_BPREL32: [FFFFFFE8], Type: 0x4792, lpDirect3d2 +(001028) S_REGISTER: eax, Type: T_LONG(0012), result + +(00103C) S_END + +(001040) S_GPROC32: [0001:0001F4A0], Cb: 0000016F, Type: 0x4BDD, MxDriver::MxDriver + Parent: 00000000, End: 00001108, Next: 00000000 + Debug start: 00000026, Debug end: 0000011B + Flags: Frame Ptr Present + +(00107C) S_LABEL32: [0001:0001F601], $L45812 +(001090) S_LABEL32: [0001:0001F5F7], $L45811 +(0010A4) S_LABEL32: [0001:0001F5E9], $L45815 +(0010B8) S_LABEL32: [0001:0001F5DB], $L45813 +(0010CC) S_LABEL32: [0001:0001F5CD], $L45962 +(0010E0) S_BPREL32: [FFFFFFE8], Type: 0x4BD6, this +(0010F4) S_BPREL32: [00000008], Type: 0x4BDB, __that + +(001108) S_END + +(00110C) S_GPROC32: [0001:0001F610], Cb: 00000054, Type: 0x4917, list >::insert + Parent: 00000000, End: 000011AC, Next: 00000000 + Debug start: 00000005, Debug end: 00000051 + +(001160) S_REGISTER: ebx, Type: 0x4902, this +(001170) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(00118C) S_BPREL32: [00000008], Type: 0x492D, _P +(00119C) S_BPREL32: [0000000C], Type: 0x4915, _X + +(0011AC) S_END + +(0011B0) S_GPROC32: [0001:0001F670], Cb: 0000005A, Type: 0x4933, list >::insert + Parent: 00000000, End: 0000125C, Next: 00000000 + Debug start: 00000005, Debug end: 00000057 + +(001210) S_REGISTER: esi, Type: 0x4905, this +(001220) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(00123C) S_BPREL32: [00000008], Type: 0x4949, _P +(00124C) S_BPREL32: [0000000C], Type: 0x4931, _X + +(00125C) S_END + +(001260) S_GPROC32: [0001:0001F6D0], Cb: 0000002F, Type: 0x438C, MxDeviceEnumerate::BuildErrorString + Parent: 00000000, End: 000012D4, Next: 00000000 + Debug start: 0000000E, Debug end: 00000028 + +(0012AC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_format +(0012C4) S_BPREL32: [FFFFFE00], Type: 0x11E1, buf + +(0012D4) S_END + +(0012D8) S_GPROC32: [0001:0001F700], Cb: 00000011, Type: 0x480A, MxDeviceEnumerate::DisplayModesEnumerateCallback + Parent: 00000000, End: 0000135C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(001330) S_BPREL32: [00000004], Type: 0x1291, p_ddsd +(001344) S_BPREL32: [00000008], Type: T_32PVOID(0403), p_context + +(00135C) S_END + +(001360) S_GPROC32: [0001:0001F720], Cb: 00000025, Type: 0x480B, MxDeviceEnumerate::DevicesEnumerateCallback + Parent: 00000000, End: 00001448, Next: 00000000 + Debug start: 00000000, Debug end: 00000022 + +(0013B4) S_BPREL32: [00000004], Type: 0x1762, p_guid +(0013C8) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_deviceDesc +(0013E4) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_deviceName +(001400) S_BPREL32: [00000010], Type: 0x28B6, p_HWDesc +(001418) S_BPREL32: [00000014], Type: 0x28B6, p_HELDesc +(001430) S_BPREL32: [00000018], Type: T_32PVOID(0403), p_context + +(001448) S_END + +(00144C) S_GPROC32: [0001:0001F750], Cb: 0000008A, Type: 0x4807, MxDeviceEnumerate::EnumDisplayModesCallback + Parent: 00000000, End: 000014DC, Next: 00000000 + Debug start: 00000013, Debug end: 00000082 + +(0014A0) S_REGISTER: ecx, Type: 0x1794, this +(0014B0) S_BPREL32: [00000004], Type: 0x1291, p_ddsd +(0014C4) S_BPREL32: [FFFFFFF4], Type: 0x494E, displayMode + +(0014DC) S_END + +(0014E0) S_GPROC32: [0001:0001F7E0], Cb: 000000E9, Type: 0x48FE, MxDeviceEnumerate::EnumDevicesCallback + Parent: 00000000, End: 000015F8, Next: 00000000 + Debug start: 00000026, Debug end: 000000C4 + Flags: Frame Ptr Present + +(001530) S_LABEL32: [0001:0001F8BE], $L46336 +(001544) S_LABEL32: [0001:0001F8B4], $L46335 +(001558) S_REGISTER: esi, Type: 0x1794, this +(001568) S_BPREL32: [00000008], Type: 0x1762, p_guid +(00157C) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_deviceDesc +(001598) S_BPREL32: [00000010], Type: T_32PRCHAR(0470), p_deviceName +(0015B4) S_BPREL32: [00000014], Type: 0x28B6, p_HWDesc +(0015CC) S_BPREL32: [00000018], Type: 0x28B6, p_HELDesc +(0015E4) S_BPREL32: [FFFFFE4C], Type: 0x4954, device + +(0015F8) S_END + +(0015FC) S_GPROC32: [0001:0001F8D0], Cb: 00000044, Type: 0x1798, MxDeviceEnumerate::DoEnumerate + Parent: 00000000, End: 00001664, Next: 00000000 + Debug start: 00000001, Debug end: 00000043 + +(001644) S_REGISTER: esi, Type: 0x1794, this +(001654) S_REGISTER: eax, Type: T_LONG(0012), ret + +(001664) S_END + +(001668) S_GPROC32: [0001:0001F920], Cb: 0000001B, Type: 0x480C, MxDeviceEnumerate::DirectDrawEnumerateCallback + Parent: 00000000, End: 00001724, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(0016C0) S_BPREL32: [00000004], Type: 0x1762, p_guid +(0016D4) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_driverDesc +(0016F0) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_driverName +(00170C) S_BPREL32: [00000010], Type: T_32PVOID(0403), p_context + +(001724) S_END + +(001728) S_GPROC32: [0001:0001F940], Cb: 00000008, Type: 0x179B, MxDeviceEnumerate::EnumerateErrorToString + Parent: 00000000, End: 000017A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00177C) S_REGISTER: ecx, Type: 0x1794, this +(00178C) S_BPREL32: [00000004], Type: T_LONG(0012), p_error + +(0017A0) S_END + +(0017A4) S_GPROC32: [0001:0001F950], Cb: 000000B3, Type: 0x439B, MxDeviceEnumerate::ParseDeviceName + Parent: 00000000, End: 00001860, Next: 00000000 + Debug start: 00000004, Debug end: 000000AC + +(0017F0) S_REGISTER: esi, Type: 0x1794, this +(001800) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_deviceId +(001818) S_BPREL32: [FFFFFFDC], Type: T_INT4(0074), num +(001828) S_BPREL32: [FFFFFFF0], Type: 0x178A, guid +(00183C) S_BPREL32: [FFFFFFE0], Type: 0x4AE5, hex +(00184C) S_REGISTER: eax, Type: T_INT4(0074), result + +(001860) S_END + +(001864) S_GPROC32: [0001:0001FA10], Cb: 0000010B, Type: 0x4AFA, MxDeviceEnumerate::ProcessDeviceBytes + Parent: 00000000, End: 000019A4, Next: 00000000 + Debug start: 0000000B, Debug end: 00000102 + +(0018B4) S_REGISTER: ecx, Type: 0x1794, this +(0018C4) S_BPREL32: [00000004], Type: T_INT4(0074), p_deviceNum +(0018DC) S_BPREL32: [00000008], Type: 0x4AF8, p_guid +(0018F0) S_BPREL32: [FFFFFFDC], Type: 0x4BF9, it +(001900) S_REGISTER: eax, Type: T_INT4(0074), j +(00190C) S_REGISTER: esi, Type: T_INT4(0074), i +(001918) S_UDT: 0x4AFE, MxDeviceEnumerate::ProcessDeviceBytes::GUID4 +(001950) S_BPREL32: [FFFFFFF0], Type: 0x4AFE, deviceGuid +(001968) S_BPREL32: [FFFFFFD8], Type: 0x492D, it2 +(001978) S_BPREL32: [FFFFFFE0], Type: 0x4AFE, compareGuid +(001990) S_REGISTER: edi, Type: 0x4BD9, driver + +(0019A4) S_END + +(0019A8) S_GPROC32: [0001:0001FB20], Cb: 00000096, Type: 0x4BFC, MxDeviceEnumerate::GetDevice + Parent: 00000000, End: 00001A70, Next: 00000000 + Debug start: 0000000A, Debug end: 0000008E + +(0019EC) S_REGISTER: ecx, Type: 0x1794, this +(0019FC) S_BPREL32: [00000004], Type: T_INT4(0074), p_deviceNum +(001A14) S_BPREL32: [00000008], Type: 0x4BFA, p_driver +(001A2C) S_BPREL32: [0000000C], Type: 0x4B09, p_device +(001A44) S_BPREL32: [FFFFFFF8], Type: 0x4BF9, it +(001A54) S_REGISTER: edx, Type: T_INT4(0074), i +(001A60) S_BPREL32: [FFFFFFFC], Type: 0x492D, it2 + +(001A70) S_END + +(001A74) S_GPROC32: [0001:0001FBC0], Cb: 000000BF, Type: 0x1795, MxDeviceEnumerate::FUN_1009d0d0 + Parent: 00000000, End: 00001B20, Next: 00000000 + Debug start: 00000009, Debug end: 000000B8 + +(001ABC) S_REGISTER: esi, Type: 0x1794, this +(001ACC) S_BPREL32: [FFFFFFFC], Type: 0x4BF9, it +(001ADC) S_REGISTER: eax, Type: T_UINT4(0075), und +(001AEC) S_REGISTER: ebp, Type: T_INT4(0074), k +(001AF8) S_REGISTER: ebx, Type: T_INT4(0074), j +(001B04) S_REGISTER: edi, Type: T_INT4(0074), i +(001B10) S_BPREL32: [FFFFFFF8], Type: 0x492D, it2 + +(001B20) S_END + +(001B24) S_GPROC32: [0001:0001FC80], Cb: 00000006, Type: 0x4BCD, MxDeviceEnumerate::FUN_1009d1a0 + Parent: 00000000, End: 00001B6C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001B6C) S_END + +(001B70) S_GPROC32: [0001:0001FC90], Cb: 00000006, Type: 0x4BCD, MxDeviceEnumerate::FUN_1009d1e0 + Parent: 00000000, End: 00001BB8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(001BB8) S_END + +(001BBC) S_GPROC32: [0001:0001FCA0], Cb: 00000154, Type: 0x1798, MxDeviceEnumerate::FUN_1009d210 + Parent: 00000000, End: 00001C5C, Next: 00000000 + Debug start: 00000008, Debug end: 00000150 + +(001C04) S_REGISTER: esi, Type: 0x1794, this +(001C14) S_BPREL32: [FFFFFFEC], Type: 0x4BF9, it +(001C24) S_REGISTER: edi, Type: 0x4BD9, driver +(001C38) S_BPREL32: [FFFFFFF0], Type: 0x492D, it2 +(001C48) S_REGISTER: eax, Type: 0x4920, device + +(001C5C) S_END + +(001C60) S_GPROC32: [0001:0001FE00], Cb: 0000005D, Type: 0x4BFE, MxDeviceEnumerate::FUN_1009d370 + Parent: 00000000, End: 00001CE0, Next: 00000000 + Debug start: 0000000E, Debug end: 00000057 + +(001CA8) S_REGISTER: ecx, Type: 0x1794, this +(001CB8) S_BPREL32: [00000004], Type: 0x4BD9, p_driver +(001CD0) S_BPREL32: [FFFFFFFC], Type: 0x4949, it + +(001CE0) S_END + +(001CE4) S_GPROC32: [0001:0001FE60], Cb: 0000007B, Type: 0x4BC7, MxDeviceEnumerate::FUN_1009d3d0 + Parent: 00000000, End: 00001D64, Next: 00000000 + Debug start: 00000003, Debug end: 00000078 + +(001D2C) S_REGISTER: ecx, Type: 0x1794, this +(001D3C) S_BPREL32: [00000004], Type: 0x4920, p_device +(001D54) S_BPREL32: [FFFFFFFC], Type: 0x492D, it + +(001D64) S_END + +(001D68) S_GPROC32: [0001:0001FEE0], Cb: 0000001E, Type: T_NOTYPE(0000), MxDriver::`scalar deleting destructor' + Parent: 00000000, End: 00001DDC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(001DB8) S_REGISTER: esi, Type: 0x4BD6, this +(001DC8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(001DDC) S_END + +(001DE0) S_GPROC32: [0001:0001FF00], Cb: 0000001E, Type: T_NOTYPE(0000), MxDevice::`scalar deleting destructor' + Parent: 00000000, End: 00001E54, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(001E30) S_REGISTER: esi, Type: 0x490E, this +(001E40) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(001E54) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxcriticalsection.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0001E2E0], Cb: 00000031, Type: 0x179D, MxCriticalSection::MxCriticalSection + Parent: 00000000, End: 000000E8, Next: 00000000 + Debug start: 00000008, Debug end: 0000002F + +(0000D8) S_REGISTER: esi, Type: 0x179C, this + +(0000E8) S_END + +(0000EC) S_GPROC32: [0001:0001E320], Cb: 00000017, Type: 0x179D, MxCriticalSection::~MxCriticalSection + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(00013C) S_REGISTER: ecx, Type: 0x179C, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:0001E340], Cb: 00000058, Type: 0x179D, MxCriticalSection::Enter + Parent: 00000000, End: 000001B0, Next: 00000000 + Debug start: 00000004, Debug end: 00000056 + +(000190) S_REGISTER: ecx, Type: 0x179C, this +(0001A0) S_REGISTER: esi, Type: 0x179F, file + +(0001B0) S_END + +(0001B4) S_GPROC32: [0001:0001E3A0], Cb: 00000017, Type: 0x179D, MxCriticalSection::Leave + Parent: 00000000, End: 00000204, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(0001F4) S_REGISTER: ecx, Type: 0x179C, this + +(000204) S_END + +(000208) S_GPROC32: [0001:0001E3C0], Cb: 0000000B, Type: 0x17A0, MxCriticalSection::SetDoMutex + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000250) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxcore.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0001E270], Cb: 00000003, Type: 0x17A2, MxCore::Tickle + Parent: 00000000, End: 000000C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000B8) S_REGISTER: ecx, Type: 0x17A1, this + +(0000C8) S_END + +(0000CC) S_GPROC32: [0001:0001E280], Cb: 00000017, Type: 0x17A3, MxCore::MxCore + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000104) S_REGISTER: ecx, Type: 0x17A1, this + +(000114) S_END + +(000118) S_GPROC32: [0001:0001E2A0], Cb: 0000001E, Type: T_NOTYPE(0000), MxCore::`scalar deleting destructor' + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000164) S_REGISTER: esi, Type: 0x17A1, this +(000174) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000188) S_END + +(00018C) S_GPROC32: [0001:0001E2C0], Cb: 00000007, Type: 0x17A3, MxCore::~MxCore + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(0001C4) S_REGISTER: ecx, Type: 0x17A1, this + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:0001E2D0], Cb: 00000005, Type: 0x17A4, MxCore::Notify + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000210) S_REGISTER: ecx, Type: 0x17A1, this +(000220) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000234) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxcontrolpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0001DF80], Cb: 00000072, Type: 0x17A7, MxControlPresenter::MxControlPresenter + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 00000054 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0001DFEA], $L44003 +(0000F0) S_LABEL32: [0001:0001DFE0], $L44002 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x17A6, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:0001E000], Cb: 00000006, Type: 0x17AA, MxControlPresenter::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x17A9, this + +(000174) S_END + +(000178) S_GPROC32: [0001:0001E010], Cb: 000000D6, Type: 0x17AB, MxControlPresenter::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001B8) S_REGISTER: ecx, Type: 0x17A9, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:0001E0F0], Cb: 0000001E, Type: T_NOTYPE(0000), MxControlPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x17A6, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:0001E110], Cb: 00000001, Type: 0x17A7, MxControlPresenter::RepeatingTickle + Parent: 00000000, End: 000002BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002AC) S_REGISTER: ecx, Type: 0x17A6, this + +(0002BC) S_END + +(0002C0) S_GPROC32: [0001:0001E120], Cb: 00000006, Type: 0x3403, MxControlPresenter::VTable0x64 + Parent: 00000000, End: 00000330, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000308) S_REGISTER: ecx, Type: 0x17A6, this +(000318) S_BPREL32: [00000004], Type: T_UINT4(0075), p_undefined + +(000330) S_END + +(000334) S_GPROC32: [0001:0001E130], Cb: 0000000A, Type: 0x3404, MxControlPresenter::VTable0x68 + Parent: 00000000, End: 000003A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00037C) S_REGISTER: ecx, Type: 0x17A6, this +(00038C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_undefined + +(0003A4) S_END + +(0003A8) S_GPROC32: [0001:0001E140], Cb: 00000066, Type: 0x17A7, MxControlPresenter::~MxControlPresenter + Parent: 00000000, End: 00000434, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(0003F8) S_LABEL32: [0001:0001E19E], $L44070 +(00040C) S_LABEL32: [0001:0001E194], $L44069 +(000420) S_BPREL32: [FFFFFFF0], Type: 0x17A6, this + +(000434) S_END + +(000438) S_GPROC32: [0001:0001E1B0], Cb: 00000009, Type: 0x3407, MxControlPresenter::AddToManager + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000480) S_REGISTER: ecx, Type: 0x17A6, this + +(000490) S_END + +(000494) S_GPROC32: [0001:0001E1C0], Cb: 00000005, Type: 0x340A, MxControlPresenter::StartAction + Parent: 00000000, End: 0000051C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0004DC) S_REGISTER: ecx, Type: 0x17A6, this +(0004EC) S_BPREL32: [00000004], Type: 0x12DF, __formal +(000504) S_BPREL32: [00000008], Type: 0x109C, __formal + +(00051C) S_END + +(000520) S_GPROC32: [0001:0001E1D0], Cb: 00000010, Type: 0x17A7, MxControlPresenter::EndAction + Parent: 00000000, End: 00000578, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(000568) S_REGISTER: ecx, Type: 0x17A6, this + +(000578) S_END + +(00057C) S_GPROC32: [0001:0001E1E0], Cb: 00000005, Type: 0x3413, MxControlPresenter::FUN_10044270 + Parent: 00000000, End: 0000061C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0005C4) S_REGISTER: ecx, Type: 0x17A6, this +(0005D4) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(0005EC) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal +(000604) S_BPREL32: [0000000C], Type: T_32PUINT4(0475), __formal + +(00061C) S_END + +(000620) S_GPROC32: [0001:0001E1F0], Cb: 00000005, Type: 0x3417, MxControlPresenter::FUN_10044480 + Parent: 00000000, End: 000006A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000668) S_REGISTER: ecx, Type: 0x17A6, this +(000678) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000690) S_BPREL32: [00000008], Type: T_32PUINT4(0475), __formal + +(0006A8) S_END + +(0006AC) S_GPROC32: [0001:0001E200], Cb: 00000003, Type: 0x3418, MxControlPresenter::FUN_10044540 + Parent: 00000000, End: 0000071C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0006F4) S_REGISTER: ecx, Type: 0x17A6, this +(000704) S_BPREL32: [00000004], Type: T_USHORT(0021), __formal + +(00071C) S_END + +(000720) S_GPROC32: [0001:0001E210], Cb: 0000002B, Type: 0x17A7, MxControlPresenter::ReadyTickle + Parent: 00000000, End: 00000778, Next: 00000000 + Debug start: 00000001, Debug end: 00000029 + +(000768) S_REGISTER: esi, Type: 0x17A6, this + +(000778) S_END + +(00077C) S_GPROC32: [0001:0001E240], Cb: 00000001, Type: 0x17A7, MxControlPresenter::ParseExtra + Parent: 00000000, End: 000007D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0007C4) S_REGISTER: ecx, Type: 0x17A6, this + +(0007D4) S_END + +(0007D8) S_GPROC32: [0001:0001E250], Cb: 00000003, Type: 0x3404, MxControlPresenter::Enable + Parent: 00000000, End: 00000844, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00081C) S_REGISTER: ecx, Type: 0x17A6, this +(00082C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable + +(000844) S_END + +(000848) S_GPROC32: [0001:0001E260], Cb: 00000005, Type: 0x340F, MxControlPresenter::HasTickleStatePassed + Parent: 00000000, End: 000008C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000898) S_REGISTER: ecx, Type: 0x17A6, this +(0008A8) S_BPREL32: [00000004], Type: 0x1441, p_tickleState + +(0008C4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxcompositepresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0001D2A0], Cb: 00000019, Type: 0x17AE, MxCompositePresenter::VTable0x64 + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(0000D4) S_REGISTER: ecx, Type: 0x17AD, this +(0000E4) S_BPREL32: [00000004], Type: T_UINT4(0075), p_undefined + +(0000FC) S_END + +(000100) S_GPROC32: [0001:0001D2C0], Cb: 000000E1, Type: 0x17AF, MxCompositePresenter::MxCompositePresenter + Parent: 00000000, End: 000001F4, Next: 00000000 + Debug start: 0000001C, Debug end: 0000008F + Flags: Frame Ptr Present + +(000154) S_LABEL32: [0001:0001D399], $L45434 +(000168) S_LABEL32: [0001:0001D38F], $L45433 +(00017C) S_LABEL32: [0001:0001D387], $L45506 +(000190) S_LABEL32: [0001:0001D37C], $L45507 +(0001A4) S_LABEL32: [0001:0001D371], $L45435 +(0001B8) S_LABEL32: [0001:0001D366], $L45437 +(0001CC) S_LABEL32: [0001:0001D35B], $L45440 +(0001E0) S_BPREL32: [FFFFFFEC], Type: 0x17AD, this + +(0001F4) S_END + +(0001F8) S_GPROC32: [0001:0001D3B0], Cb: 00000064, Type: 0x2D75, list >::~list > + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(000280) S_REGISTER: esi, Type: 0x2D74, this + +(000290) S_END + +(000294) S_GPROC32: [0001:0001D420], Cb: 00000006, Type: 0x17B2, MxCompositePresenter::ClassName + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002DC) S_REGISTER: ecx, Type: 0x17B1, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:0001D430], Cb: 000000A2, Type: 0x17B3, MxCompositePresenter::IsA + Parent: 00000000, End: 00000358, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(000334) S_REGISTER: ecx, Type: 0x17B1, this +(000344) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000358) S_END + +(00035C) S_GPROC32: [0001:0001D4E0], Cb: 0000001E, Type: T_NOTYPE(0000), MxCompositePresenter::`scalar deleting destructor' + Parent: 00000000, End: 000003DC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0003B8) S_REGISTER: esi, Type: 0x17AD, this +(0003C8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0003DC) S_END + +(0003E0) S_GPROC32: [0001:0001D500], Cb: 00000049, Type: 0x2D78, MxCompositePresenterList::~MxCompositePresenterList + Parent: 00000000, End: 00000478, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00043C) S_LABEL32: [0001:0001D541], $L45684 +(000450) S_LABEL32: [0001:0001D537], $L45683 +(000464) S_BPREL32: [FFFFFFF0], Type: 0x2D77, this + +(000478) S_END + +(00047C) S_GPROC32: [0001:0001D550], Cb: 00000049, Type: 0x2D7B, List::~List + Parent: 00000000, End: 0000050C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0004D0) S_LABEL32: [0001:0001D591], $L45692 +(0004E4) S_LABEL32: [0001:0001D587], $L45691 +(0004F8) S_BPREL32: [FFFFFFF0], Type: 0x2D7A, this + +(00050C) S_END + +(000510) S_GPROC32: [0001:0001D5A0], Cb: 00000077, Type: 0x17AF, MxCompositePresenter::~MxCompositePresenter + Parent: 00000000, End: 000005B4, Next: 00000000 + Debug start: 00000021, Debug end: 0000004D + Flags: Frame Ptr Present + +(000564) S_LABEL32: [0001:0001D60F], $L45700 +(000578) S_LABEL32: [0001:0001D605], $L45699 +(00058C) S_LABEL32: [0001:0001D5FA], $L45701 +(0005A0) S_BPREL32: [FFFFFFF0], Type: 0x17AD, this + +(0005B4) S_END + +(0005B8) S_GPROC32: [0001:0001D620], Cb: 000001C9, Type: 0x2D7C, MxCompositePresenter::StartAction + Parent: 00000000, End: 00000750, Next: 00000000 + Debug start: 00000021, Debug end: 0000018F + Flags: Frame Ptr Present + +(000604) S_LABEL32: [0001:0001D7E1], $L45711 +(000618) S_LABEL32: [0001:0001D7D7], $L45710 +(00062C) S_LABEL32: [0001:0001D7CF], $L45712 +(000640) S_LABEL32: [0001:0001D7C7], $L45790 +(000654) S_LABEL32: [0001:0001D7BF], $L45792 +(000668) S_REGISTER: esi, Type: 0x17AD, this +(000678) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(000694) S_BPREL32: [0000000C], Type: 0x109C, p_action +(0006AC) S_BPREL32: [FFFFFFE8], Type: 0x109C, action +(0006C0) S_REGISTER: edi, Type: 0x26B3, actions +(0006D4) S_BPREL32: [FFFFFFD8], Type: 0x2D08, cursor +(0006E8) S_BPREL32: [FFFFFFCC], Type: 0x11DF, lock +(0006FC) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result +(000710) S_BPREL32: [FFFFFFD0], Type: 0x1481, factory +(000724) S_BPREL32: [FFFFFFEF], Type: T_UCHAR(0020), success +(000738) S_BPREL32: [FFFFFFF0], Type: 0x1243, presenter + +(000750) S_END + +(000754) S_GPROC32: [0001:0001D7F0], Cb: 00000171, Type: 0x17AF, MxCompositePresenter::EndAction + Parent: 00000000, End: 00000860, Next: 00000000 + Debug start: 00000021, Debug end: 00000046 + Flags: Frame Ptr Present + +(00079C) S_LABEL32: [0001:0001D959], $L45880 +(0007B0) S_LABEL32: [0001:0001D94F], $L45879 +(0007C4) S_LABEL32: [0001:0001D947], $L45881 +(0007D8) S_LABEL32: [0001:0001D93F], $L45982 +(0007EC) S_LABEL32: [0001:0001D937], $L45986 +(000800) S_LABEL32: [0001:0001D92F], $L46000 +(000814) S_REGISTER: esi, Type: 0x17AD, this +(000824) S_REGISTER: edi, Type: 0x109C, action +(000838) S_BPREL32: [FFFFFFDC], Type: 0x11DF, lock +(00084C) S_REGISTER: ebx, Type: 0x1243, presenter + +(000860) S_END + +(000864) S_GPROC32: [0001:0001D970], Cb: 00000049, Type: 0x1597, MxEndActionNotificationParam::~MxEndActionNotificationParam + Parent: 00000000, End: 00000904, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0008C8) S_LABEL32: [0001:0001D9B1], $L46128 +(0008DC) S_LABEL32: [0001:0001D9A7], $L46127 +(0008F0) S_BPREL32: [FFFFFFF0], Type: 0x1596, this + +(000904) S_END + +(000908) S_GPROC32: [0001:0001D9C0], Cb: 00000086, Type: 0x2D7D, MxCompositePresenter::Notify + Parent: 00000000, End: 000009AC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000066 + Flags: Frame Ptr Present + +(00094C) S_LABEL32: [0001:0001DA3E], $L46136 +(000960) S_LABEL32: [0001:0001DA34], $L46135 +(000974) S_REGISTER: esi, Type: 0x17AD, this +(000984) S_BPREL32: [00000008], Type: 0x10B7, p_param +(000998) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(0009AC) S_END + +(0009B0) S_GPROC32: [0001:0001DA50], Cb: 000001BD, Type: 0x31F9, MxCompositePresenter::VTable0x58 + Parent: 00000000, End: 00000AD4, Next: 00000000 + Debug start: 0000002C, Debug end: 000001AC + Flags: Frame Ptr Present + +(0009F8) S_LABEL32: [0001:0001DBC5], $L46154 +(000A0C) S_LABEL32: [0001:0001DBBB], $L46153 +(000A20) S_LABEL32: [0001:0001DBB3], $L46213 +(000A34) S_LABEL32: [0001:0001DBAB], $L46215 +(000A48) S_BPREL32: [FFFFFFEC], Type: 0x17AD, this +(000A5C) S_BPREL32: [00000008], Type: 0x10BB, p_param +(000A70) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it +(000A80) S_BPREL32: [FFFFFFD4], Type: 0x1243, presenter +(000A98) S_BPREL32: [FFFFFFD8], Type: 0x109C, action +(000AAC) S_BPREL32: [FFFFFFDC], Type: 0x2D08, cursor +(000AC0) S_REGISTER: ecx, Type: 0x1243, presenter + +(000AD4) S_END + +(000AD8) S_GPROC32: [0001:0001DC10], Cb: 0000018E, Type: 0x31FD, MxCompositePresenter::VTable0x5c + Parent: 00000000, End: 00000BE0, Next: 00000000 + Debug start: 00000020, Debug end: 00000057 + Flags: Frame Ptr Present + +(000B20) S_LABEL32: [0001:0001DD96], $L46289 +(000B34) S_LABEL32: [0001:0001DD8C], $L46288 +(000B48) S_LABEL32: [0001:0001DD84], $L46337 +(000B5C) S_LABEL32: [0001:0001DD7C], $L46339 +(000B70) S_REGISTER: esi, Type: 0x17AD, this +(000B80) S_BPREL32: [00000008], Type: 0x1CD3, p_param +(000B94) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it +(000BA4) S_REGISTER: edi, Type: 0x1243, presenter +(000BB8) S_BPREL32: [FFFFFFDC], Type: 0x2D08, cursor +(000BCC) S_REGISTER: ecx, Type: 0x1243, presenter + +(000BE0) S_END + +(000BE4) S_GPROC32: [0001:0001DDA0], Cb: 0000007F, Type: 0x2D7E, MxCompositePresenter::VTable0x60 + Parent: 00000000, End: 00000C78, Next: 00000000 + Debug start: 00000009, Debug end: 00000078 + +(000C2C) S_REGISTER: ecx, Type: 0x17AD, this +(000C3C) S_BPREL32: [00000004], Type: 0x1243, p_presenter +(000C54) S_BPREL32: [FFFFFFFC], Type: 0x2D94, it +(000C64) S_REGISTER: ecx, Type: 0x1243, presenter + +(000C78) S_END + +(000C7C) S_GPROC32: [0001:0001DE20], Cb: 00000062, Type: 0x2D95, MxCompositePresenter::SetTickleState + Parent: 00000000, End: 00000D18, Next: 00000000 + Debug start: 0000000A, Debug end: 0000005A + +(000CC8) S_REGISTER: esi, Type: 0x17AD, this +(000CD8) S_BPREL32: [00000004], Type: 0x1441, p_tickleState +(000CF4) S_BPREL32: [FFFFFFFC], Type: 0x2D94, it +(000D04) S_REGISTER: ecx, Type: 0x1243, presenter + +(000D18) S_END + +(000D1C) S_GPROC32: [0001:0001DE90], Cb: 00000042, Type: 0x2D96, MxCompositePresenter::Enable + Parent: 00000000, End: 00000DAC, Next: 00000000 + Debug start: 00000005, Debug end: 0000003A + +(000D60) S_REGISTER: esi, Type: 0x17AD, this +(000D70) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable +(000D88) S_BPREL32: [FFFFFFFC], Type: 0x2D94, it +(000D98) S_REGISTER: ecx, Type: 0x1243, presenter + +(000DAC) S_END + +(000DB0) S_GPROC32: [0001:0001DEE0], Cb: 0000004C, Type: 0x2D97, MxCompositePresenter::HasTickleStatePassed + Parent: 00000000, End: 00000E54, Next: 00000000 + Debug start: 00000005, Debug end: 00000045 + +(000E04) S_REGISTER: esi, Type: 0x17AD, this +(000E14) S_BPREL32: [00000004], Type: 0x1441, p_tickleState +(000E30) S_BPREL32: [FFFFFFFC], Type: 0x2D94, it +(000E40) S_REGISTER: ecx, Type: 0x1243, presenter + +(000E54) S_END + +(000E58) S_GPROC32: [0001:0001DF30], Cb: 00000043, Type: 0x2696, MxList::DeleteEntry + Parent: 00000000, End: 00000EC8, Next: 00000000 + Debug start: 00000008, Debug end: 0000003E + +(000EA4) S_REGISTER: esi, Type: 0x16A4, this +(000EB4) S_BPREL32: [00000004], Type: 0x2694, p_match + +(000EC8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxcompositemediapresenter.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:0001CB60], Cb: 0000006F, Type: 0x17B7, MxCompositeMediaPresenter::MxCompositeMediaPresenter + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000051 + Flags: Frame Ptr Present + +(0000F0) S_LABEL32: [0001:0001CBC7], $L53874 +(000104) S_LABEL32: [0001:0001CBBD], $L53873 +(000118) S_BPREL32: [FFFFFFF0], Type: 0x17B6, this + +(00012C) S_END + +(000130) S_GPROC32: [0001:0001CBD0], Cb: 00000006, Type: 0x17BA, MxCompositeMediaPresenter::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x17B9, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:0001CBE0], Cb: 000000D6, Type: 0x17BB, MxCompositeMediaPresenter::IsA + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001D8) S_REGISTER: ecx, Type: 0x17B9, this +(0001E8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001FC) S_END + +(000200) S_GPROC32: [0001:0001CCC0], Cb: 0000001E, Type: T_NOTYPE(0000), MxCompositeMediaPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000260) S_REGISTER: esi, Type: 0x17B6, this +(000270) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000284) S_END + +(000288) S_GPROC32: [0001:0001CCE0], Cb: 00000066, Type: 0x17B7, MxCompositeMediaPresenter::~MxCompositeMediaPresenter + Parent: 00000000, End: 00000324, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(0002E8) S_LABEL32: [0001:0001CD3E], $L53934 +(0002FC) S_LABEL32: [0001:0001CD34], $L53933 +(000310) S_BPREL32: [FFFFFFF0], Type: 0x17B6, this + +(000324) S_END + +(000328) S_GPROC32: [0001:0001CD50], Cb: 00000245, Type: 0x3243, MxCompositeMediaPresenter::StartAction + Parent: 00000000, End: 000004C4, Next: 00000000 + Debug start: 00000021, Debug end: 0000020B + Flags: Frame Ptr Present + +(000378) S_LABEL32: [0001:0001CF8D], $L53944 +(00038C) S_LABEL32: [0001:0001CF83], $L53943 +(0003A0) S_LABEL32: [0001:0001CF7B], $L53945 +(0003B4) S_LABEL32: [0001:0001CF73], $L54018 +(0003C8) S_LABEL32: [0001:0001CF6B], $L54020 +(0003DC) S_REGISTER: esi, Type: 0x17B6, this +(0003EC) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(000408) S_BPREL32: [0000000C], Type: 0x109C, p_action +(000420) S_BPREL32: [FFFFFFE8], Type: 0x109C, action +(000434) S_BPREL32: [FFFFFFD8], Type: 0x2D08, cursor +(000448) S_BPREL32: [FFFFFFD0], Type: 0x11DF, lock +(00045C) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result +(000470) S_REGISTER: edi, Type: T_32PRCHAR(0470), presenterName +(000488) S_BPREL32: [FFFFFFEF], Type: T_UCHAR(0020), success +(00049C) S_BPREL32: [FFFFFFF0], Type: 0x1243, presenter +(0004B4) S_REGISTER: edx, Type: T_LONG(0012), time + +(0004C4) S_END + +(0004C8) S_GPROC32: [0001:0001CFA0], Cb: 00000187, Type: 0x17B7, MxCompositeMediaPresenter::StartingTickle + Parent: 00000000, End: 000005A8, Next: 00000000 + Debug start: 00000021, Debug end: 00000165 + Flags: Frame Ptr Present + +(00051C) S_LABEL32: [0001:0001D11F], $L54122 +(000530) S_LABEL32: [0001:0001D115], $L54121 +(000544) S_REGISTER: esi, Type: 0x17B6, this +(000554) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(000568) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it +(000578) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it +(000588) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it +(000598) S_REGISTER: edx, Type: T_LONG(0012), time + +(0005A8) S_END + +(0005AC) S_GPROC32: [0001:0001D130], Cb: 000000C8, Type: 0x3244, MxCompositeMediaPresenter::Tickle + Parent: 00000000, End: 00000654, Next: 00000000 + Debug start: 0000001C, Debug end: 0000006C + Flags: Frame Ptr Present + +(0005F8) S_LABEL32: [0001:0001D1D8], $L54258 +(00060C) S_LABEL32: [0001:0001D1CE], $L54257 +(000620) S_REGISTER: esi, Type: 0x17B6, this +(000630) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(000644) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it + +(000654) S_END + +(000658) S_GPROC32: [0001:0001D200], Cb: 00000091, Type: 0x3244, MxCompositeMediaPresenter::PutData + Parent: 00000000, End: 00000700, Next: 00000000 + Debug start: 0000001C, Debug end: 00000073 + Flags: Frame Ptr Present + +(0006A4) S_LABEL32: [0001:0001D289], $L54294 +(0006B8) S_LABEL32: [0001:0001D27F], $L54293 +(0006CC) S_REGISTER: esi, Type: 0x17B6, this +(0006DC) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock +(0006F0) S_BPREL32: [FFFFFFF0], Type: 0x2D94, it + +(000700) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxbitmap.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0001C2D0], Cb: 00000008, Type: 0x17BD, MxBitmap::VTable0x28 + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0000BC) S_REGISTER: ecx, Type: 0x17BC, this +(0000CC) S_BPREL32: [00000004], Type: T_INT4(0074), __formal + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:0001C2E0], Cb: 0000006D, Type: 0x17BE, MxBitmap::MxBitmap + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 0000001C, Debug end: 00000056 + Flags: Frame Ptr Present + +(000124) S_LABEL32: [0001:0001C345], $L31120 +(000138) S_LABEL32: [0001:0001C33B], $L31119 +(00014C) S_BPREL32: [FFFFFFF0], Type: 0x17BC, this + +(000160) S_END + +(000164) S_GPROC32: [0001:0001C350], Cb: 0000001E, Type: T_NOTYPE(0000), MxBitmap::`scalar deleting destructor' + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001B4) S_REGISTER: esi, Type: 0x17BC, this +(0001C4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:0001C370], Cb: 00000089, Type: 0x17BE, MxBitmap::~MxBitmap + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 00000021, Debug end: 0000006A + Flags: Frame Ptr Present + +(000218) S_LABEL32: [0001:0001C3F1], $L31146 +(00022C) S_LABEL32: [0001:0001C3E7], $L31145 +(000240) S_BPREL32: [FFFFFFF0], Type: 0x17BC, this + +(000254) S_END + +(000258) S_GPROC32: [0001:0001C400], Cb: 000000F7, Type: 0x17C0, MxBitmap::SetSize + Parent: 00000000, End: 00000324, Next: 00000000 + Debug start: 0000000B, Debug end: 000000F1 + +(000294) S_REGISTER: esi, Type: 0x17BC, this +(0002A4) S_BPREL32: [00000004], Type: T_INT4(0074), p_width +(0002B8) S_BPREL32: [00000008], Type: T_INT4(0074), p_height +(0002D0) S_BPREL32: [0000000C], Type: 0x1225, p_palette +(0002E8) S_BPREL32: [00000010], Type: T_UCHAR(0020), p_isHighColor +(000304) S_REGISTER: ebx, Type: T_LONG(0012), ret +(000314) S_REGISTER: ebp, Type: T_LONG(0012), size + +(000324) S_END + +(000328) S_GPROC32: [0001:0001C500], Cb: 00000093, Type: 0x17C4, MxBitmap::ImportBitmapInfo + Parent: 00000000, End: 000003B4, Next: 00000000 + Debug start: 0000000B, Debug end: 0000008D + +(00036C) S_REGISTER: ebx, Type: 0x17BC, this +(00037C) S_BPREL32: [00000004], Type: 0x17C2, p_info +(000390) S_REGISTER: ebp, Type: T_LONG(0012), size +(0003A0) S_REGISTER: edi, Type: T_LONG(0012), result + +(0003B4) S_END + +(0003B8) S_GPROC32: [0001:0001C5A0], Cb: 000000CD, Type: 0x17C6, MxBitmap::ImportBitmap + Parent: 00000000, End: 00000434, Next: 00000000 + Debug start: 0000000B, Debug end: 000000C7 + +(0003F8) S_REGISTER: ebx, Type: 0x17BC, this +(000408) S_BPREL32: [00000004], Type: 0x1718, p_bitmap +(000420) S_REGISTER: esi, Type: T_LONG(0012), result + +(000434) S_END + +(000438) S_GPROC32: [0001:0001C670], Cb: 0000004E, Type: 0x17C7, MxBitmap::Read + Parent: 00000000, End: 000004C0, Next: 00000000 + Debug start: 00000008, Debug end: 00000049 + +(000470) S_REGISTER: edi, Type: 0x17BC, this +(000480) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_filename +(000498) S_REGISTER: ebx, Type: T_32PVOID(0403), handle +(0004AC) S_REGISTER: esi, Type: T_LONG(0012), result + +(0004C0) S_END + +(0004C4) S_GPROC32: [0001:0001C6C0], Cb: 0000010F, Type: 0x17C8, MxBitmap::LoadFile + Parent: 00000000, End: 00000588, Next: 00000000 + Debug start: 0000000E, Debug end: 00000106 + +(000500) S_REGISTER: esi, Type: 0x17BC, this +(000510) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_handle +(000528) S_BPREL32: [FFFFFFF0], Type: 0x17CA, hdr +(000538) S_BPREL32: [FFFFFFEC], Type: T_ULONG(0022), bytesRead +(000550) S_REGISTER: edi, Type: T_LONG(0012), result +(000564) S_REGISTER: ebp, Type: T_LONG(0012), size +(000574) S_REGISTER: eax, Type: T_LONG(0012), height + +(000588) S_END + +(00058C) S_GPROC32: [0001:0001C7D0], Cb: 00000003, Type: 0x17CC, MxBitmap::VTable0x2c + Parent: 00000000, End: 00000680, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0005C8) S_REGISTER: ecx, Type: 0x17BC, this +(0005D8) S_BPREL32: [00000004], Type: T_INT4(0074), __formal +(0005F0) S_BPREL32: [00000008], Type: T_INT4(0074), __formal +(000608) S_BPREL32: [0000000C], Type: T_INT4(0074), __formal +(000620) S_BPREL32: [00000010], Type: T_INT4(0074), __formal +(000638) S_BPREL32: [00000014], Type: T_INT4(0074), __formal +(000650) S_BPREL32: [00000018], Type: T_INT4(0074), __formal +(000668) S_BPREL32: [0000001C], Type: T_INT4(0074), __formal + +(000680) S_END + +(000684) S_GPROC32: [0001:0001C7E0], Cb: 00000003, Type: 0x17CC, MxBitmap::VTable0x30 + Parent: 00000000, End: 00000778, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0006C0) S_REGISTER: ecx, Type: 0x17BC, this +(0006D0) S_BPREL32: [00000004], Type: T_INT4(0074), __formal +(0006E8) S_BPREL32: [00000008], Type: T_INT4(0074), __formal +(000700) S_BPREL32: [0000000C], Type: T_INT4(0074), __formal +(000718) S_BPREL32: [00000010], Type: T_INT4(0074), __formal +(000730) S_BPREL32: [00000014], Type: T_INT4(0074), __formal +(000748) S_BPREL32: [00000018], Type: T_INT4(0074), __formal +(000760) S_BPREL32: [0000001C], Type: T_INT4(0074), __formal + +(000778) S_END + +(00077C) S_GPROC32: [0001:0001C7F0], Cb: 000000B6, Type: 0x17CD, MxBitmap::CreatePalette + Parent: 00000000, End: 0000082C, Next: 00000000 + Debug start: 00000022, Debug end: 000000A5 + Flags: Frame Ptr Present + +(0007BC) S_LABEL32: [0001:0001C868], $L31216 +(0007D0) S_LABEL32: [0001:0001C85E], $L31215 +(0007E4) S_LABEL32: [0001:0001C883], done +(0007F4) S_REGISTER: edi, Type: 0x17BC, this +(000804) S_REGISTER: bl, Type: T_UCHAR(0020), success +(000818) S_REGISTER: eax, Type: 0x1225, palette + +(00082C) S_END + +(000830) S_GPROC32: [0001:0001C8B0], Cb: 00000046, Type: 0x17CE, MxBitmap::ImportPalette + Parent: 00000000, End: 00000898, Next: 00000000 + Debug start: 00000003, Debug end: 00000042 + +(000870) S_REGISTER: esi, Type: 0x17BC, this +(000880) S_BPREL32: [00000004], Type: 0x1225, p_palette + +(000898) S_END + +(00089C) S_GPROC32: [0001:0001C900], Cb: 00000103, Type: 0x17CF, MxBitmap::SetBitDepth + Parent: 00000000, End: 0000097C, Next: 00000000 + Debug start: 00000028, Debug end: 00000046 + Flags: Frame Ptr Present + +(0008DC) S_LABEL32: [0001:0001C9F6], $L31241 +(0008F0) S_LABEL32: [0001:0001C9EC], $L31238 +(000904) S_LABEL32: [0001:0001C931], done +(000914) S_REGISTER: esi, Type: 0x17BC, this +(000924) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_isHighColor +(000940) S_REGISTER: edi, Type: 0x1225, pal +(000950) S_REGISTER: ebx, Type: T_LONG(0012), ret +(000960) S_REGISTER: cx, Type: T_USHORT(0021), i +(00096C) S_REGISTER: eax, Type: T_32PUSHORT(0421), buf + +(00097C) S_END + +(000980) S_GPROC32: [0001:0001CA10], Cb: 00000061, Type: 0x17D1, MxBitmap::StretchBits + Parent: 00000000, End: 00000A68, Next: 00000000 + Debug start: 00000004, Debug end: 0000005D + +(0009C0) S_REGISTER: ecx, Type: 0x17BC, this +(0009D0) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_hdc +(0009E4) S_BPREL32: [00000008], Type: T_INT4(0074), p_xSrc +(0009F8) S_BPREL32: [0000000C], Type: T_INT4(0074), p_ySrc +(000A0C) S_BPREL32: [00000010], Type: T_INT4(0074), p_xDest +(000A20) S_BPREL32: [00000014], Type: T_INT4(0074), p_yDest +(000A34) S_BPREL32: [00000018], Type: T_INT4(0074), p_destWidth +(000A4C) S_BPREL32: [0000001C], Type: T_INT4(0074), p_destHeight + +(000A68) S_END + +(000A6C) S_GPROC32: [0001:0001CA80], Cb: 000000DF, Type: 0x17D4, MxBitmap::ImportColorsToPalette + Parent: 00000000, End: 00000B54, Next: 00000000 + Debug start: 0000002B, Debug end: 00000043 + Flags: Frame Ptr Present + +(000AB4) S_LABEL32: [0001:0001CB54], $L31260 +(000AC8) S_LABEL32: [0001:0001CB4A], $L31259 +(000ADC) S_REGISTER: ecx, Type: 0x17BC, this +(000AEC) S_BPREL32: [00000008], Type: 0x17D2, p_rgbquad +(000B04) S_BPREL32: [0000000C], Type: 0x1225, p_palette +(000B1C) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), ret +(000B2C) S_BPREL32: [FFFFFBF0], Type: 0x1251, entries +(000B40) S_BPREL32: [FFFFF7DC], Type: 0x17DB, palette + +(000B54) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxbackgroundaudiomanager.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:0001B750], Cb: 000000DE, Type: 0x17DE, MxBackgroundAudioManager::MxBackgroundAudioManager + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 0000001D, Debug end: 00000095 + Flags: Frame Ptr Present + +(0000EC) S_LABEL32: [0001:0001B826], $L51987 +(000100) S_LABEL32: [0001:0001B81C], $L51986 +(000114) S_LABEL32: [0001:0001B811], $L51988 +(000128) S_LABEL32: [0001:0001B803], $L51989 +(00013C) S_LABEL32: [0001:0001B7F5], $L51990 +(000150) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this + +(000164) S_END + +(000168) S_GPROC32: [0001:0001B830], Cb: 00000006, Type: 0x17E1, MxBackgroundAudioManager::ClassName + Parent: 00000000, End: 000001C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001B4) S_REGISTER: ecx, Type: 0x17E0, this + +(0001C4) S_END + +(0001C8) S_GPROC32: [0001:0001B840], Cb: 00000072, Type: 0x17E2, MxBackgroundAudioManager::IsA + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000210) S_REGISTER: ecx, Type: 0x17E0, this +(000220) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000234) S_END + +(000238) S_GPROC32: [0001:0001B8C0], Cb: 0000001E, Type: T_NOTYPE(0000), MxBackgroundAudioManager::`scalar deleting destructor' + Parent: 00000000, End: 000002BC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000298) S_REGISTER: esi, Type: 0x17DD, this +(0002A8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002BC) S_END + +(0002C0) S_GPROC32: [0001:0001B8E0], Cb: 000000C0, Type: 0x17DE, MxBackgroundAudioManager::~MxBackgroundAudioManager + Parent: 00000000, End: 00000394, Next: 00000000 + Debug start: 00000021, Debug end: 0000007A + Flags: Frame Ptr Present + +(00031C) S_LABEL32: [0001:0001B998], $L52023 +(000330) S_LABEL32: [0001:0001B98E], $L52022 +(000344) S_LABEL32: [0001:0001B983], $L52024 +(000358) S_LABEL32: [0001:0001B975], $L52025 +(00036C) S_LABEL32: [0001:0001B967], $L52026 +(000380) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this + +(000394) S_END + +(000398) S_GPROC32: [0001:0001B9A0], Cb: 00000031, Type: 0x17E4, MxBackgroundAudioManager::Create + Parent: 00000000, End: 00000438, Next: 00000000 + Debug start: 00000008, Debug end: 0000002C + +(0003E0) S_REGISTER: esi, Type: 0x17DD, this +(0003F0) S_BPREL32: [00000004], Type: 0x1361, p_script +(000408) S_BPREL32: [00000008], Type: T_UINT4(0075), p_frequencyMS +(000424) S_REGISTER: edi, Type: T_LONG(0012), result + +(000438) S_END + +(00043C) S_GPROC32: [0001:0001B9E0], Cb: 00000043, Type: 0x17E6, MxBackgroundAudioManager::OpenMusic + Parent: 00000000, End: 000004C4, Next: 00000000 + Debug start: 00000009, Debug end: 0000003D + +(000488) S_REGISTER: ecx, Type: 0x17DD, this +(000498) S_BPREL32: [00000004], Type: 0x1361, p_script +(0004B0) S_REGISTER: edi, Type: T_LONG(0012), result + +(0004C4) S_END + +(0004C8) S_GPROC32: [0001:0001BA30], Cb: 000000CF, Type: 0x17DE, MxBackgroundAudioManager::DestroyMusic + Parent: 00000000, End: 00000578, Next: 00000000 + Debug start: 0000001E, Debug end: 000000A5 + Flags: Frame Ptr Present + +(000518) S_LABEL32: [0001:0001BAF4], $L52039 +(00052C) S_LABEL32: [0001:0001BAEA], $L52038 +(000540) S_LABEL32: [0001:0001BAE2], $L52043 +(000554) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this +(000568) S_BPREL32: [FFFFFF58], Type: 0x3CF2, ds + +(000578) S_END + +(00057C) S_GPROC32: [0001:0001BB00], Cb: 00000030, Type: 0x17E7, MxBackgroundAudioManager::Tickle + Parent: 00000000, End: 000005D4, Next: 00000000 + Debug start: 00000000, Debug end: 0000002F + +(0005C4) S_REGISTER: ecx, Type: 0x17DD, this + +(0005D4) S_END + +(0005D8) S_GPROC32: [0001:0001BB30], Cb: 000000CE, Type: 0x17DE, MxBackgroundAudioManager::FUN_1007ee70 + Parent: 00000000, End: 00000664, Next: 00000000 + Debug start: 00000028, Debug end: 000000AD + Flags: Frame Ptr Present + +(000628) S_LABEL32: [0001:0001BBF6], $L52055 +(00063C) S_LABEL32: [0001:0001BBEC], $L52054 +(000650) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this + +(000664) S_END + +(000668) S_GPROC32: [0001:0001BC00], Cb: 00000188, Type: 0x17DE, MxBackgroundAudioManager::FUN_1007ef40 + Parent: 00000000, End: 0000071C, Next: 00000000 + Debug start: 00000026, Debug end: 00000179 + Flags: Frame Ptr Present + +(0006B8) S_LABEL32: [0001:0001BD0C], $L52067 +(0006CC) S_LABEL32: [0001:0001BD02], $L52066 +(0006E0) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this +(0006F4) S_REGISTER: esi, Type: T_UINT4(0075), compare +(000708) S_REGISTER: eax, Type: T_UINT4(0075), volume + +(00071C) S_END + +(000720) S_GPROC32: [0001:0001BD90], Cb: 00000085, Type: 0x17DE, MxBackgroundAudioManager::FadeInOrFadeOut + Parent: 00000000, End: 000007AC, Next: 00000000 + Debug start: 00000001, Debug end: 00000083 + +(000774) S_REGISTER: esi, Type: 0x17DD, this +(000784) S_REGISTER: ecx, Type: T_UINT4(0075), compare +(000798) S_REGISTER: eax, Type: T_UINT4(0075), volume + +(0007AC) S_END + +(0007B0) S_GPROC32: [0001:0001BE20], Cb: 00000032, Type: 0x17E8, MxBackgroundAudioManager::Notify + Parent: 00000000, End: 0000081C, Next: 00000000 + Debug start: 00000000, Debug end: 0000002F + +(0007F8) S_REGISTER: ecx, Type: 0x17DD, this +(000808) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(00081C) S_END + +(000820) S_GPROC32: [0001:0001BE60], Cb: 0000004E, Type: 0x17E9, MxBackgroundAudioManager::StartAction + Parent: 00000000, End: 00000894, Next: 00000000 + Debug start: 00000005, Debug end: 0000004A + +(000870) S_REGISTER: esi, Type: 0x17DD, this +(000880) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000894) S_END + +(000898) S_GPROC32: [0001:0001BEB0], Cb: 000000E8, Type: 0x17E9, MxBackgroundAudioManager::StopAction + Parent: 00000000, End: 00000948, Next: 00000000 + Debug start: 0000001E, Debug end: 00000072 + Flags: Frame Ptr Present + +(0008E4) S_LABEL32: [0001:0001BF90], $L52101 +(0008F8) S_LABEL32: [0001:0001BF86], $L52099 +(00090C) S_LABEL32: [0001:0001BF31], $L52100 +(000920) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this +(000934) S_BPREL32: [00000008], Type: 0x10B7, p_param + +(000948) S_END + +(00094C) S_GPROC32: [0001:0001BFA0], Cb: 00000177, Type: 0x17EB, MxBackgroundAudioManager::PlayMusic + Parent: 00000000, End: 00000A58, Next: 00000000 + Debug start: 00000026, Debug end: 00000166 + Flags: Frame Ptr Present + +(000998) S_LABEL32: [0001:0001C0F6], $L52115 +(0009AC) S_LABEL32: [0001:0001C0EC], $L52114 +(0009C0) S_LABEL32: [0001:0001C0E4], $L52144 +(0009D4) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this +(0009E8) S_BPREL32: [00000008], Type: 0x108E, p_action +(000A00) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_unk0x140 +(000A18) S_BPREL32: [00000010], Type: T_UINT4(0075), p_unk0x13c +(000A30) S_BPREL32: [FFFFFF58], Type: 0x3CF2, action +(000A44) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result + +(000A58) S_END + +(000A5C) S_GPROC32: [0001:0001C120], Cb: 000000F8, Type: 0x17DE, MxBackgroundAudioManager::Stop + Parent: 00000000, End: 00000AF4, Next: 00000000 + Debug start: 0000001B, Debug end: 000000D4 + Flags: Frame Ptr Present + +(000AA4) S_LABEL32: [0001:0001C210], $L52155 +(000AB8) S_LABEL32: [0001:0001C206], $L52154 +(000ACC) S_LABEL32: [0001:0001C1FE], $L52156 +(000AE0) S_BPREL32: [FFFFFFF0], Type: 0x17DD, this + +(000AF4) S_END + +(000AF8) S_GPROC32: [0001:0001C220], Cb: 00000033, Type: 0x17DE, MxBackgroundAudioManager::LowerVolume + Parent: 00000000, End: 00000B58, Next: 00000000 + Debug start: 00000000, Debug end: 00000032 + +(000B48) S_REGISTER: ecx, Type: 0x17DD, this + +(000B58) S_END + +(000B5C) S_GPROC32: [0001:0001C260], Cb: 00000035, Type: 0x17DE, MxBackgroundAudioManager::RaiseVolume + Parent: 00000000, End: 00000BBC, Next: 00000000 + Debug start: 00000000, Debug end: 00000034 + +(000BAC) S_REGISTER: ecx, Type: 0x17DD, this + +(000BBC) S_END + +(000BC0) S_GPROC32: [0001:0001C2A0], Cb: 00000018, Type: 0x17EC, MxBackgroundAudioManager::Enable + Parent: 00000000, End: 00000C30, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000C08) S_REGISTER: ecx, Type: 0x17DD, this +(000C18) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable + +(000C30) S_END + +(000C34) S_GPROC32: [0001:0001C2C0], Cb: 0000000F, Type: 0x17DE, MxBackgroundAudioManager::Init + Parent: 00000000, End: 00000C8C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(000C7C) S_REGISTER: ecx, Type: 0x17DD, this + +(000C8C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxautolocker.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0001B720], Cb: 00000018, Type: 0x11DC, MxAutoLocker::MxAutoLocker + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 00000001, Debug end: 00000014 + +(0000C8) S_REGISTER: esi, Type: 0x11D8, this +(0000D8) S_BPREL32: [00000004], Type: 0x11DA, p_criticalSection + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:0001B740], Cb: 0000000C, Type: 0x11DD, MxAutoLocker::~MxAutoLocker + Parent: 00000000, End: 00000150, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000140) S_REGISTER: ecx, Type: 0x11D8, this + +(000150) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxaudiopresenter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0001B700], Cb: 00000004, Type: 0x17EF, MxAudioPresenter::GetVolume + Parent: 00000000, End: 000000DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000CC) S_REGISTER: ecx, Type: 0x17EE, this + +(0000DC) S_END + +(0000E0) S_GPROC32: [0001:0001B710], Cb: 0000000A, Type: 0x17F0, MxAudioPresenter::SetVolume + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000124) S_REGISTER: ecx, Type: 0x17EE, this +(000134) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume + +(00014C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxaudiomanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0001B520], Cb: 00000004, Type: 0x17F3, MxAudioManager::GetVolume + Parent: 00000000, End: 000000DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0000CC) S_REGISTER: ecx, Type: 0x17F2, this + +(0000DC) S_END + +(0000E0) S_GPROC32: [0001:0001B530], Cb: 00000064, Type: 0x17F4, MxAudioManager::MxAudioManager + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(000128) S_LABEL32: [0001:0001B58C], $L41728 +(00013C) S_LABEL32: [0001:0001B582], $L41727 +(000150) S_BPREL32: [FFFFFFF0], Type: 0x17F2, this + +(000164) S_END + +(000168) S_GPROC32: [0001:0001B5A0], Cb: 0000001E, Type: T_NOTYPE(0000), MxAudioManager::`scalar deleting destructor' + Parent: 00000000, End: 000001E0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001BC) S_REGISTER: esi, Type: 0x17F2, this +(0001CC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001E0) S_END + +(0001E4) S_GPROC32: [0001:0001B5C0], Cb: 0000005D, Type: 0x17F4, MxAudioManager::~MxAudioManager + Parent: 00000000, End: 00000268, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(00022C) S_LABEL32: [0001:0001B615], $L41750 +(000240) S_LABEL32: [0001:0001B60B], $L41749 +(000254) S_BPREL32: [FFFFFFF0], Type: 0x17F2, this + +(000268) S_END + +(00026C) S_GPROC32: [0001:0001B620], Cb: 00000008, Type: 0x17F4, MxAudioManager::Init + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0002A8) S_REGISTER: ecx, Type: 0x17F2, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:0001B630], Cb: 00000035, Type: 0x17F5, MxAudioManager::Destroy + Parent: 00000000, End: 0000032C, Next: 00000000 + Debug start: 00000002, Debug end: 00000030 + +(0002FC) S_REGISTER: edi, Type: 0x17F2, this +(00030C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(00032C) S_END + +(000330) S_GPROC32: [0001:0001B670], Cb: 00000044, Type: 0x17F6, MxAudioManager::InitPresenters + Parent: 00000000, End: 000003B0, Next: 00000000 + Debug start: 00000005, Debug end: 00000040 + +(000378) S_REGISTER: esi, Type: 0x17F2, this +(000388) S_REGISTER: bl, Type: T_UCHAR(0020), success +(00039C) S_REGISTER: edi, Type: T_LONG(0012), result + +(0003B0) S_END + +(0003B4) S_GPROC32: [0001:0001B6C0], Cb: 00000008, Type: 0x17F4, MxAudioManager::Destroy + Parent: 00000000, End: 00000404, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0003F4) S_REGISTER: ecx, Type: 0x17F2, this + +(000404) S_END + +(000408) S_GPROC32: [0001:0001B6D0], Cb: 00000021, Type: 0x17F7, MxAudioManager::SetVolume + Parent: 00000000, End: 00000474, Next: 00000000 + Debug start: 00000002, Debug end: 0000001C + +(00044C) S_REGISTER: esi, Type: 0x17F2, this +(00045C) S_BPREL32: [00000004], Type: T_INT4(0074), p_volume + +(000474) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxatomidcounter.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:0001B500], Cb: 00000005, Type: 0x17F8, MxAtomIdCounter::Inc + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000004 + +(0000C4) S_REGISTER: ecx, Type: 0x14D8, this + +(0000D4) S_END + +(0000D8) S_GPROC32: [0001:0001B510], Cb: 00000010, Type: 0x17F8, MxAtomIdCounter::Dec + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(000114) S_REGISTER: ecx, Type: 0x14D8, this + +(000124) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxatomid.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:0001ACA0], Cb: 00000038, Type: 0x14F8, MxAtomId::MxAtomId + Parent: 00000000, End: 00000108, Next: 00000000 + Debug start: 00000001, Debug end: 00000034 + +(0000BC) S_REGISTER: esi, Type: 0x14F5, this +(0000CC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_str +(0000E0) S_BPREL32: [00000008], Type: 0x104C, p_mode +(0000F4) S_REGISTER: eax, Type: 0x14B5, counter + +(000108) S_END + +(00010C) S_GPROC32: [0001:0001ACE0], Cb: 00000005, Type: 0x14F6, MxAtomId::~MxAtomId + Parent: 00000000, End: 00000158, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000148) S_REGISTER: ecx, Type: 0x14F5, this + +(000158) S_END + +(00015C) S_GPROC32: [0001:0001ACF0], Cb: 0000013B, Type: 0x14F6, MxAtomId::Destroy + Parent: 00000000, End: 000001F4, Next: 00000000 + Debug start: 00000020, Debug end: 00000111 + Flags: Frame Ptr Present + +(000198) S_LABEL32: [0001:0001AE23], $L39974 +(0001AC) S_LABEL32: [0001:0001AE19], $L39973 +(0001C0) S_LABEL32: [0001:0001AE11], $L40148 +(0001D4) S_REGISTER: esi, Type: 0x14F5, this +(0001E4) S_BPREL32: [FFFFFFF0], Type: 0x14E5, it + +(0001F4) S_END + +(0001F8) S_GPROC32: [0001:0001AE30], Cb: 00000045, Type: 0x17FD, MxAtomIdCounterCompare::operator() + Parent: 00000000, End: 0000027C, Next: 00000000 + Debug start: 00000000, Debug end: 00000042 + +(000244) S_REGISTER: ecx, Type: 0x17FB, this +(000254) S_BPREL32: [00000004], Type: 0x14D9, p_val0 +(000268) S_BPREL32: [00000008], Type: 0x14D9, p_val1 + +(00027C) S_END + +(000280) S_GPROC32: [0001:0001AE80], Cb: 00000049, Type: 0x17F8, MxAtomIdCounter::~MxAtomIdCounter + Parent: 00000000, End: 00000308, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0002CC) S_LABEL32: [0001:0001AEC1], $L40180 +(0002E0) S_LABEL32: [0001:0001AEB7], $L40179 +(0002F4) S_BPREL32: [FFFFFFF0], Type: 0x14D8, this + +(000308) S_END + +(00030C) S_GPROC32: [0001:0001AED0], Cb: 00000047, Type: 0x14FB, MxAtomId::operator= + Parent: 00000000, End: 00000370, Next: 00000000 + Debug start: 00000002, Debug end: 00000042 + +(000348) S_REGISTER: edi, Type: 0x14F5, this +(000358) S_BPREL32: [00000004], Type: 0x13B3, p_atomId + +(000370) S_END + +(000374) S_GPROC32: [0001:0001AF20], Cb: 00000262, Type: 0x14FF, MxAtomId::GetCounter + Parent: 00000000, End: 00000484, Next: 00000000 + Debug start: 0000001E, Debug end: 00000233 + Flags: Frame Ptr Present + +(0003B0) S_LABEL32: [0001:0001B17A], $L40196 +(0003C4) S_LABEL32: [0001:0001B170], $L40195 +(0003D8) S_LABEL32: [0001:0001B163], $L40197 +(0003EC) S_LABEL32: [0001:0001B04D], $L40322 +(000400) S_LABEL32: [0001:0001AF82], $L40329 +(000414) S_REGISTER: ecx, Type: 0x14F5, this +(000424) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_str +(000438) S_BPREL32: [0000000C], Type: 0x104C, p_mode +(00044C) S_BPREL32: [FFFFFFF0], Type: 0x14E5, it +(00045C) S_BPREL32: [FFFFFFEC], Type: 0x14B5, counter +(000470) S_BPREL32: [FFFFFFE4], Type: 0x4E96, unused + +(000484) S_END + +(000488) S_GPROC32: [0001:0001B190], Cb: 0000004B, Type: 0x14AD, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator::_Dec + Parent: 00000000, End: 00000594, Next: 00000000 + Debug start: 00000001, Debug end: 0000004A + +(000574) S_REGISTER: ecx, Type: 0x14AC, this +(000584) S_REGISTER: edx, Type: 0x147A, _P + +(000594) S_END + +(000598) S_GPROC32: [0001:0001B1E0], Cb: 000002AA, Type: 0x17FF, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Insert + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000009, Debug end: 000002A3 + +(00067C) S_REGISTER: esi, Type: 0x14A9, this +(00068C) S_BPREL32: [00000004], Type: T_NOTYPE(0000), __$ReturnUdt +(0006A8) S_BPREL32: [00000008], Type: 0x147A, _X +(0006B8) S_BPREL32: [0000000C], Type: 0x147A, _Y +(0006C8) S_BPREL32: [00000010], Type: 0x14D9, _V + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:0001B490], Cb: 00000060, Type: 0x1803, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Lbound + Parent: 00000000, End: 00000800, Next: 00000000 + Debug start: 00000006, Debug end: 0000005A + +(0007C0) S_REGISTER: ecx, Type: 0x1801, this +(0007D0) S_BPREL32: [00000004], Type: 0x14D9, _Kv +(0007E0) S_REGISTER: eax, Type: 0x147A, _Y +(0007F0) S_REGISTER: edx, Type: 0x147A, _X + +(000800) S_END + +(000804) S_GPROC32: [0001:0001B4F0], Cb: 00000010, Type: 0x14F6, MxAtomId::Clear + Parent: 00000000, End: 0000084C, Next: 00000000 + Debug start: 00000001, Debug end: 0000000E + +(00083C) S_REGISTER: esi, Type: 0x14F5, this + +(00084C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\mxactionnotificationparam.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:0001A600], Cb: 0000011E, Type: 0x1806, MxActionNotificationParam::Clone + Parent: 00000000, End: 00000150, Next: 00000000 + Debug start: 0000001E, Debug end: 000000F6 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0001A711], $L12592 +(0000F0) S_LABEL32: [0001:0001A707], $L12591 +(000104) S_LABEL32: [0001:0001A6E5], $L12598 +(000118) S_LABEL32: [0001:0001A6DD], $L12612 +(00012C) S_LABEL32: [0001:0001A6C5], $L12599 +(000140) S_REGISTER: edi, Type: 0x1805, this + +(000150) S_END + +(000154) S_GPROC32: [0001:0001A720], Cb: 00000081, Type: T_NOTYPE(0000), MxActionNotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 00000204, Next: 00000000 + Debug start: 00000021, Debug end: 00000062 + Flags: Frame Ptr Present + +(0001B4) S_LABEL32: [0001:0001A799], $L12671 +(0001C8) S_LABEL32: [0001:0001A78F], $L12669 +(0001DC) S_BPREL32: [FFFFFFF0], Type: 0x1805, this +(0001F0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000204) S_END + +(000208) S_GPROC32: [0001:0001A7B0], Cb: 0000012C, Type: 0x1807, MxEndActionNotificationParam::Clone + Parent: 00000000, End: 000002DC, Next: 00000000 + Debug start: 0000001E, Debug end: 00000104 + Flags: Frame Ptr Present + +(000254) S_LABEL32: [0001:0001A8CF], $L12688 +(000268) S_LABEL32: [0001:0001A8C5], $L12687 +(00027C) S_LABEL32: [0001:0001A8A3], $L12692 +(000290) S_LABEL32: [0001:0001A89B], $L12696 +(0002A4) S_LABEL32: [0001:0001A893], $L12710 +(0002B8) S_LABEL32: [0001:0001A870], $L12697 +(0002CC) S_REGISTER: edi, Type: 0x1596, this + +(0002DC) S_END + +(0002E0) S_GPROC32: [0001:0001A8E0], Cb: 00000069, Type: 0x1808, MxActionNotificationParam::~MxActionNotificationParam + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000021, Debug end: 0000004A + Flags: Frame Ptr Present + +(000340) S_LABEL32: [0001:0001A941], $L12762 +(000354) S_LABEL32: [0001:0001A937], $L12761 +(000368) S_BPREL32: [FFFFFFF0], Type: 0x1805, this + +(00037C) S_END + +(000380) S_GPROC32: [0001:0001A950], Cb: 00000061, Type: T_NOTYPE(0000), MxEndActionNotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 00000434, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0003E4) S_LABEL32: [0001:0001A9A9], $L12772 +(0003F8) S_LABEL32: [0001:0001A99F], $L12770 +(00040C) S_BPREL32: [FFFFFFF0], Type: 0x1596, this +(000420) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000434) S_END + +(000438) S_GPROC32: [0001:0001A9C0], Cb: 0000012C, Type: 0x3483, MxStartActionNotificationParam::Clone + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 0000001E, Debug end: 00000104 + Flags: Frame Ptr Present + +(000488) S_LABEL32: [0001:0001AADF], $L12783 +(00049C) S_LABEL32: [0001:0001AAD5], $L12782 +(0004B0) S_LABEL32: [0001:0001AAB3], $L12787 +(0004C4) S_LABEL32: [0001:0001AAAB], $L12791 +(0004D8) S_LABEL32: [0001:0001AAA3], $L12805 +(0004EC) S_LABEL32: [0001:0001AA80], $L12792 +(000500) S_REGISTER: edi, Type: 0x347E, this + +(000510) S_END + +(000514) S_GPROC32: [0001:0001AAF0], Cb: 00000061, Type: T_NOTYPE(0000), MxStartActionNotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 000005C8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000578) S_LABEL32: [0001:0001AB49], $L12855 +(00058C) S_LABEL32: [0001:0001AB3F], $L12853 +(0005A0) S_BPREL32: [FFFFFFF0], Type: 0x347E, this +(0005B4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0005C8) S_END + +(0005CC) S_GPROC32: [0001:0001AB60], Cb: 000000C8, Type: 0x3484, MxType4NotificationParam::Clone + Parent: 00000000, End: 00000688, Next: 00000000 + Debug start: 0000001E, Debug end: 000000A0 + Flags: Frame Ptr Present + +(000614) S_LABEL32: [0001:0001AC1B], $L12866 +(000628) S_LABEL32: [0001:0001AC11], $L12865 +(00063C) S_LABEL32: [0001:0001ABEF], $L12870 +(000650) S_LABEL32: [0001:0001ABE7], $L12874 +(000664) S_LABEL32: [0001:0001ABDF], $L12888 +(000678) S_REGISTER: edi, Type: 0x3481, this + +(000688) S_END + +(00068C) S_GPROC32: [0001:0001AC30], Cb: 00000061, Type: T_NOTYPE(0000), MxType4NotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 0000073C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0006EC) S_LABEL32: [0001:0001AC89], $L12936 +(000700) S_LABEL32: [0001:0001AC7F], $L12934 +(000714) S_BPREL32: [FFFFFFF0], Type: 0x3481, this +(000728) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00073C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\motorcycle.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:0001A370], Cb: 00000082, Type: 0x180B, Motorcycle::Motorcycle + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 00000061 + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0001A3EA], $L47465 +(0000D8) S_LABEL32: [0001:0001A3E0], $L47464 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x180A, this + +(000100) S_END + +(000104) S_GPROC32: [0001:0001A400], Cb: 00000006, Type: 0x180E, Motorcycle::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x180D, this + +(000154) S_END + +(000158) S_GPROC32: [0001:0001A410], Cb: 00000172, Type: 0x180F, Motorcycle::IsA + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000190) S_REGISTER: ecx, Type: 0x180D, this +(0001A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:0001A590], Cb: 00000061, Type: T_NOTYPE(0000), Motorcycle::`scalar deleting destructor' + Parent: 00000000, End: 00000258, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000208) S_LABEL32: [0001:0001A5E9], $L47734 +(00021C) S_LABEL32: [0001:0001A5DF], $L47732 +(000230) S_BPREL32: [FFFFFFF0], Type: 0x180A, this +(000244) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000258) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoworldpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00019CC0], Cb: 0000000A, Type: 0x1811, LegoWorldPresenter::configureLegoWorldPresenter + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0000E4) S_BPREL32: [00000004], Type: T_INT4(0074), p_legoWorldPresenterQuality + +(00010C) S_END + +(000110) S_GPROC32: [0001:00019CD0], Cb: 00000064, Type: 0x1813, LegoWorldPresenter::LegoWorldPresenter + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000043 + Flags: Frame Ptr Present + +(000160) S_LABEL32: [0001:00019D2C], $L54888 +(000174) S_LABEL32: [0001:00019D22], $L54887 +(000188) S_BPREL32: [FFFFFFF0], Type: 0x1812, this + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:00019D40], Cb: 00000006, Type: 0x1816, LegoWorldPresenter::ClassName + Parent: 00000000, End: 000001F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001E8) S_REGISTER: ecx, Type: 0x1815, this + +(0001F8) S_END + +(0001FC) S_GPROC32: [0001:00019D50], Cb: 0000010A, Type: 0x1817, LegoWorldPresenter::IsA + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(00023C) S_REGISTER: ecx, Type: 0x1815, this +(00024C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000260) S_END + +(000264) S_GPROC32: [0001:00019E60], Cb: 0000001E, Type: T_NOTYPE(0000), LegoWorldPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000002E0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0002BC) S_REGISTER: esi, Type: 0x1812, this +(0002CC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002E0) S_END + +(0002E4) S_GPROC32: [0001:00019E80], Cb: 0000004F, Type: 0x1813, LegoWorldPresenter::~LegoWorldPresenter + Parent: 00000000, End: 00000370, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000334) S_LABEL32: [0001:00019EC7], $L54965 +(000348) S_LABEL32: [0001:00019EBD], $L54964 +(00035C) S_BPREL32: [FFFFFFF0], Type: 0x1812, this + +(000370) S_END + +(000374) S_GPROC32: [0001:00019ED0], Cb: 000001DD, Type: 0x3D00, LegoWorldPresenter::StartAction + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000021, Debug end: 000001A3 + Flags: Frame Ptr Present + +(0003BC) S_LABEL32: [0001:0001A0A5], $L54975 +(0003D0) S_LABEL32: [0001:0001A09B], $L54974 +(0003E4) S_LABEL32: [0001:0001A093], $L54976 +(0003F8) S_LABEL32: [0001:0001A08B], $L55054 +(00040C) S_LABEL32: [0001:0001A083], $L55056 +(000420) S_REGISTER: esi, Type: 0x1812, this +(000430) S_BPREL32: [00000008], Type: 0x12DF, p_controller +(00044C) S_BPREL32: [0000000C], Type: 0x109C, p_action +(000464) S_BPREL32: [FFFFFFE8], Type: 0x109C, action +(000478) S_REGISTER: edi, Type: 0x26B3, actions +(00048C) S_BPREL32: [FFFFFFD8], Type: 0x2D08, cursor +(0004A0) S_BPREL32: [FFFFFFCC], Type: 0x11DF, lock +(0004B4) S_BPREL32: [FFFFFFEC], Type: T_LONG(0012), result +(0004C8) S_BPREL32: [FFFFFFD0], Type: 0x1481, factory +(0004DC) S_BPREL32: [FFFFFFEF], Type: T_UCHAR(0020), success +(0004F0) S_BPREL32: [FFFFFFF0], Type: 0x1243, presenter + +(000508) S_END + +(00050C) S_GPROC32: [0001:0001A0B0], Cb: 00000026, Type: 0x2DFC, list >::_Buynode + Parent: 00000000, End: 000005B4, Next: 00000000 + Debug start: 00000000, Debug end: 00000023 + +(00056C) S_REGISTER: ecx, Type: 0x2D74, this +(00057C) S_BPREL32: [00000004], Type: 0x2D83, _Narg +(000590) S_BPREL32: [00000008], Type: 0x2D83, _Parg +(0005A4) S_REGISTER: eax, Type: 0x2D83, _S + +(0005B4) S_END + +(0005B8) S_GPROC32: [0001:0001A0E0], Cb: 00000061, Type: T_NOTYPE(0000), MxDSActionListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00000664, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000614) S_LABEL32: [0001:0001A139], $L55110 +(000628) S_LABEL32: [0001:0001A12F], $L55108 +(00063C) S_BPREL32: [FFFFFFF0], Type: 0x2D03, this +(000650) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000664) S_END + +(000668) S_GPROC32: [0001:0001A150], Cb: 00000049, Type: 0x16AD, MxListCursor::~MxListCursor + Parent: 00000000, End: 00000704, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0006C8) S_LABEL32: [0001:0001A191], $L55119 +(0006DC) S_LABEL32: [0001:0001A187], $L55118 +(0006F0) S_BPREL32: [FFFFFFF0], Type: 0x16AC, this + +(000704) S_END + +(000708) S_GPROC32: [0001:0001A1A0], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 000007B8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000768) S_LABEL32: [0001:0001A1F9], $L55127 +(00077C) S_LABEL32: [0001:0001A1EF], $L55125 +(000790) S_BPREL32: [FFFFFFF0], Type: 0x16AC, this +(0007A4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0007B8) S_END + +(0007BC) S_GPROC32: [0001:0001A210], Cb: 00000049, Type: 0x2D06, MxDSActionListCursor::~MxDSActionListCursor + Parent: 00000000, End: 0000084C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000810) S_LABEL32: [0001:0001A251], $L55136 +(000824) S_LABEL32: [0001:0001A247], $L55135 +(000838) S_BPREL32: [FFFFFFF0], Type: 0x2D03, this + +(00084C) S_END + +(000850) S_GPROC32: [0001:0001A260], Cb: 00000062, Type: 0x1813, LegoWorldPresenter::ReadyTickle + Parent: 00000000, End: 000008A8, Next: 00000000 + Debug start: 00000001, Debug end: 00000060 + +(000898) S_REGISTER: esi, Type: 0x1812, this + +(0008A8) S_END + +(0008AC) S_GPROC32: [0001:0001A2D0], Cb: 00000077, Type: 0x1813, LegoWorldPresenter::StartingTickle + Parent: 00000000, End: 0000092C, Next: 00000000 + Debug start: 00000005, Debug end: 00000072 + +(0008F8) S_REGISTER: esi, Type: 0x1812, this +(000908) S_REGISTER: ecx, Type: 0x1243, presenter +(00091C) S_BPREL32: [FFFFFFFC], Type: 0x2D94, it + +(00092C) S_END + +(000930) S_GPROC32: [0001:0001A350], Cb: 00000003, Type: 0x3D01, LegoWorldPresenter::VTable0x60 + Parent: 00000000, End: 000009A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000978) S_REGISTER: ecx, Type: 0x1812, this +(000988) S_BPREL32: [00000004], Type: 0x1243, p_presenter + +(0009A0) S_END + +(0009A4) S_GPROC32: [0001:0001A360], Cb: 00000001, Type: 0x1813, LegoWorldPresenter::ParseExtra + Parent: 00000000, End: 000009FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0009EC) S_REGISTER: ecx, Type: 0x1812, this + +(0009FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoworld.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00018FC0], Cb: 00000288, Type: 0x1819, LegoWorld::LegoWorld + Parent: 00000000, End: 00000228, Next: 00000000 + Debug start: 00000021, Debug end: 000001A8 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00019240], $L52213 +(0000D4) S_LABEL32: [0001:00019236], $L52212 +(0000E8) S_LABEL32: [0001:0001922E], $L52311 +(0000FC) S_LABEL32: [0001:00019223], $L52214 +(000110) S_LABEL32: [0001:00019218], $L52218 +(000124) S_LABEL32: [0001:0001920D], $L52220 +(000138) S_LABEL32: [0001:00019202], $L52225 +(00014C) S_LABEL32: [0001:000191F7], $L52227 +(000160) S_LABEL32: [0001:000191E9], $L52215 +(000174) S_LABEL32: [0001:000191DB], $L52253 +(000188) S_LABEL32: [0001:000191CD], $L52255 +(00019C) S_LABEL32: [0001:000191BF], $L52260 +(0001B0) S_LABEL32: [0001:000191B1], $L52262 +(0001C4) S_LABEL32: [0001:000191A3], $L52216 +(0001D8) S_LABEL32: [0001:00019195], $L52288 +(0001EC) S_LABEL32: [0001:00019187], $L52290 +(000200) S_LABEL32: [0001:00019179], $L52295 +(000214) S_BPREL32: [FFFFFFF0], Type: 0x1818, this + +(000228) S_END + +(00022C) S_GPROC32: [0001:00019250], Cb: 0000001A, Type: 0x18D4, LegoPathControllerList::Compare + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(000274) S_REGISTER: ecx, Type: 0x1829, this +(000284) S_BPREL32: [00000004], Type: 0x1823, p_a +(000294) S_BPREL32: [00000008], Type: 0x1823, p_b + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:00019270], Cb: 00000001, Type: 0x1825, MxCollection::Destroy + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002FC) S_BPREL32: [00000004], Type: 0x1823, __formal + +(000314) S_END + +(000318) S_GPROC32: [0001:00019280], Cb: 0000004F, Type: 0x1821, MxCollection::~MxCollection + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000388) S_LABEL32: [0001:000192C7], $L52404 +(00039C) S_LABEL32: [0001:000192BD], $L52403 +(0003B0) S_BPREL32: [FFFFFFF0], Type: 0x1820, this + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:000192D0], Cb: 00000005, Type: 0x1827, MxCollection::Compare + Parent: 00000000, End: 0000045C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00041C) S_REGISTER: ecx, Type: 0x1820, this +(00042C) S_BPREL32: [00000004], Type: 0x1823, __formal +(000444) S_BPREL32: [00000008], Type: 0x1823, __formal + +(00045C) S_END + +(000460) S_GPROC32: [0001:000192E0], Cb: 0000000F, Type: 0x35DC, MxPtrList::Destroy + Parent: 00000000, End: 000004C4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(0004B0) S_BPREL32: [00000004], Type: 0x1823, p_obj + +(0004C4) S_END + +(0004C8) S_GPROC32: [0001:000192F0], Cb: 00000061, Type: T_NOTYPE(0000), LegoPathControllerList::`scalar deleting destructor' + Parent: 00000000, End: 00000574, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000524) S_LABEL32: [0001:00019349], $L52420 +(000538) S_LABEL32: [0001:0001933F], $L52418 +(00054C) S_BPREL32: [FFFFFFF0], Type: 0x1829, this +(000560) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000574) S_END + +(000578) S_GPROC32: [0001:00019360], Cb: 00000049, Type: 0x182C, MxPtrList::~MxPtrList + Parent: 00000000, End: 0000061C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0005E0) S_LABEL32: [0001:000193A1], $L52429 +(0005F4) S_LABEL32: [0001:00019397], $L52428 +(000608) S_BPREL32: [FFFFFFF0], Type: 0x182B, this + +(00061C) S_END + +(000620) S_GPROC32: [0001:000193B0], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000688) S_LABEL32: [0001:0001940F], $L52437 +(00069C) S_LABEL32: [0001:00019405], $L52435 +(0006B0) S_BPREL32: [FFFFFFF0], Type: 0x1820, this +(0006C4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:00019420], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000790, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(000740) S_LABEL32: [0001:000194BB], $L52446 +(000754) S_LABEL32: [0001:000194B1], $L52444 +(000768) S_BPREL32: [FFFFFFF0], Type: 0x182E, this +(00077C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000790) S_END + +(000794) S_GPROC32: [0001:000194D0], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 00000848, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0007F8) S_LABEL32: [0001:00019529], $L52480 +(00080C) S_LABEL32: [0001:0001951F], $L52478 +(000820) S_BPREL32: [FFFFFFF0], Type: 0x182B, this +(000834) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000848) S_END + +(00084C) S_GPROC32: [0001:00019540], Cb: 00000049, Type: 0x182F, LegoPathControllerList::~LegoPathControllerList + Parent: 00000000, End: 000008E0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0008A4) S_LABEL32: [0001:00019581], $L52489 +(0008B8) S_LABEL32: [0001:00019577], $L52488 +(0008CC) S_BPREL32: [FFFFFFF0], Type: 0x1829, this + +(0008E0) S_END + +(0008E4) S_GPROC32: [0001:00019590], Cb: 0000001A, Type: 0x143C, MxPresenterList::Compare + Parent: 00000000, End: 00000954, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(000924) S_REGISTER: ecx, Type: 0x143A, this +(000934) S_BPREL32: [00000004], Type: 0x1243, p_a +(000944) S_BPREL32: [00000008], Type: 0x1243, p_b + +(000954) S_END + +(000958) S_GPROC32: [0001:000195B0], Cb: 00000065, Type: 0x1832, MxCollection::MxCollection + Parent: 00000000, End: 000009F4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000047 + Flags: Frame Ptr Present + +(0009B8) S_LABEL32: [0001:0001960D], $L52503 +(0009CC) S_LABEL32: [0001:00019603], $L52502 +(0009E0) S_BPREL32: [FFFFFFF0], Type: 0x1831, this + +(0009F4) S_END + +(0009F8) S_GPROC32: [0001:00019620], Cb: 00000001, Type: 0x1834, MxCollection::Destroy + Parent: 00000000, End: 00000A5C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000A44) S_BPREL32: [00000004], Type: 0x1243, __formal + +(000A5C) S_END + +(000A60) S_GPROC32: [0001:00019630], Cb: 0000004F, Type: 0x1832, MxCollection::~MxCollection + Parent: 00000000, End: 00000B00, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000AC4) S_LABEL32: [0001:00019677], $L52514 +(000AD8) S_LABEL32: [0001:0001966D], $L52513 +(000AEC) S_BPREL32: [FFFFFFF0], Type: 0x1831, this + +(000B00) S_END + +(000B04) S_GPROC32: [0001:00019680], Cb: 00000005, Type: 0x1835, MxCollection::Compare + Parent: 00000000, End: 00000B90, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000B50) S_REGISTER: ecx, Type: 0x1831, this +(000B60) S_BPREL32: [00000004], Type: 0x1243, __formal +(000B78) S_BPREL32: [00000008], Type: 0x1243, __formal + +(000B90) S_END + +(000B94) S_GPROC32: [0001:00019690], Cb: 00000061, Type: T_NOTYPE(0000), MxPresenterList::`scalar deleting destructor' + Parent: 00000000, End: 00000C3C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000BEC) S_LABEL32: [0001:000196E9], $L52524 +(000C00) S_LABEL32: [0001:000196DF], $L52522 +(000C14) S_BPREL32: [FFFFFFF0], Type: 0x143A, this +(000C28) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000C3C) S_END + +(000C40) S_GPROC32: [0001:00019700], Cb: 00000049, Type: 0x1839, MxPtrList::~MxPtrList + Parent: 00000000, End: 00000CD4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000C98) S_LABEL32: [0001:00019741], $L52533 +(000CAC) S_LABEL32: [0001:00019737], $L52532 +(000CC0) S_BPREL32: [FFFFFFF0], Type: 0x1838, this + +(000CD4) S_END + +(000CD8) S_GPROC32: [0001:00019750], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000D8C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000D3C) S_LABEL32: [0001:000197AF], $L52541 +(000D50) S_LABEL32: [0001:000197A5], $L52539 +(000D64) S_BPREL32: [FFFFFFF0], Type: 0x1831, this +(000D78) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000D8C) S_END + +(000D90) S_GPROC32: [0001:000197C0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000E3C, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(000DEC) S_LABEL32: [0001:0001985B], $L52550 +(000E00) S_LABEL32: [0001:00019851], $L52548 +(000E14) S_BPREL32: [FFFFFFF0], Type: 0x1836, this +(000E28) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000E3C) S_END + +(000E40) S_GPROC32: [0001:00019870], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 00000EEC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000E9C) S_LABEL32: [0001:000198C9], $L52584 +(000EB0) S_LABEL32: [0001:000198BF], $L52582 +(000EC4) S_BPREL32: [FFFFFFF0], Type: 0x1838, this +(000ED8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000EEC) S_END + +(000EF0) S_GPROC32: [0001:000198E0], Cb: 00000049, Type: 0x183E, MxPresenterList::~MxPresenterList + Parent: 00000000, End: 00000F78, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000F3C) S_LABEL32: [0001:00019921], $L52593 +(000F50) S_LABEL32: [0001:00019917], $L52592 +(000F64) S_BPREL32: [FFFFFFF0], Type: 0x143A, this + +(000F78) S_END + +(000F7C) S_GPROC32: [0001:00019930], Cb: 0000001E, Type: T_NOTYPE(0000), LegoWorld::`scalar deleting destructor' + Parent: 00000000, End: 00000FF0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000FCC) S_REGISTER: esi, Type: 0x1818, this +(000FDC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000FF0) S_END + +(000FF4) S_GPROC32: [0001:00019950], Cb: 00000003, Type: 0x183F, LegoWorld::VTable0x5c + Parent: 00000000, End: 00001044, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001034) S_REGISTER: ecx, Type: 0x1818, this + +(001044) S_END + +(001048) S_GPROC32: [0001:00019960], Cb: 00000003, Type: 0x183F, LegoWorld::VTable0x64 + Parent: 00000000, End: 00001098, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001088) S_REGISTER: ecx, Type: 0x1818, this + +(001098) S_END + +(00109C) S_GPROC32: [0001:00019970], Cb: 0000009C, Type: 0x1819, LegoWorld::~LegoWorld + Parent: 00000000, End: 00001154, Next: 00000000 + Debug start: 00000026, Debug end: 00000056 + Flags: Frame Ptr Present + +(0010DC) S_LABEL32: [0001:00019A04], $L52656 +(0010F0) S_LABEL32: [0001:000199FA], $L52655 +(001104) S_LABEL32: [0001:000199EF], $L52657 +(001118) S_LABEL32: [0001:000199E1], $L52658 +(00112C) S_LABEL32: [0001:000199D3], $L52659 +(001140) S_BPREL32: [FFFFFFF0], Type: 0x1818, this + +(001154) S_END + +(001158) S_GPROC32: [0001:00019A10], Cb: 00000005, Type: 0x1840, LegoWorld::SetAsCurrentWorld + Parent: 00000000, End: 000011C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00119C) S_REGISTER: ecx, Type: 0x1818, this +(0011AC) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(0011C4) S_END + +(0011C8) S_GPROC32: [0001:00019A20], Cb: 0000004B, Type: 0x1841, LegoWorld::Notify + Parent: 00000000, End: 00001238, Next: 00000000 + Debug start: 00000002, Debug end: 00000046 + +(001204) S_REGISTER: esi, Type: 0x1818, this +(001214) S_BPREL32: [00000004], Type: 0x10B7, p_param +(001228) S_REGISTER: edi, Type: T_LONG(0012), ret + +(001238) S_END + +(00123C) S_GPROC32: [0001:00019A70], Cb: 00000001, Type: 0x1819, LegoWorld::VTable0x54 + Parent: 00000000, End: 0000128C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00127C) S_REGISTER: ecx, Type: 0x1818, this + +(00128C) S_END + +(001290) S_GPROC32: [0001:00019A80], Cb: 00000003, Type: 0x3387, LegoWorld::FUN_1001fc80 + Parent: 00000000, End: 000012F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0012D0) S_REGISTER: ecx, Type: 0x1818, this +(0012E0) S_BPREL32: [00000004], Type: 0x3385, p_actor + +(0012F4) S_END + +(0012F8) S_GPROC32: [0001:00019A90], Cb: 00000005, Type: 0x3485, LegoWorld::GetCurrPathInfo + Parent: 00000000, End: 00001374, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00133C) S_REGISTER: ecx, Type: 0x1818, this +(00134C) S_BPREL32: [00000004], Type: 0x1933, p_path +(001360) S_BPREL32: [00000008], Type: 0x1934, p_value + +(001374) S_END + +(001378) S_GPROC32: [0001:00019AA0], Cb: 00000003, Type: 0x1842, LegoWorld::VTable0x58 + Parent: 00000000, End: 000013E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0013B8) S_REGISTER: ecx, Type: 0x1818, this +(0013C8) S_BPREL32: [00000004], Type: 0x10AE, p_object + +(0013E0) S_END + +(0013E4) S_GPROC32: [0001:00019AB0], Cb: 00000003, Type: 0x1842, LegoWorld::EndAction + Parent: 00000000, End: 00001448, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001420) S_REGISTER: ecx, Type: 0x1818, this +(001430) S_BPREL32: [00000004], Type: 0x10AE, p_object + +(001448) S_END + +(00144C) S_GPROC32: [0001:00019AC0], Cb: 00000003, Type: 0x1844, LegoWorld::VTable0x68 + Parent: 00000000, End: 000014B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00148C) S_REGISTER: ecx, Type: 0x1818, this +(00149C) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_add + +(0014B0) S_END + +(0014B4) S_GPROC32: [0001:00019AD0], Cb: 00000056, Type: 0x3388, LegoWorld::Tickle + Parent: 00000000, End: 00001500, Next: 00000000 + Debug start: 00000001, Debug end: 00000055 + +(0014F0) S_REGISTER: esi, Type: 0x1818, this + +(001500) S_END + +(001504) S_GPROC32: [0001:00019B30], Cb: 00000003, Type: 0x183F, LegoWorld::FUN_100220e0 + Parent: 00000000, End: 00001554, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001544) S_REGISTER: ecx, Type: 0x1818, this + +(001554) S_END + +(001558) S_GPROC32: [0001:00019B40], Cb: 00000012, Type: 0x1819, LegoWorld::Stop + Parent: 00000000, End: 000015A0, Next: 00000000 + Debug start: 00000001, Debug end: 00000010 + +(001590) S_REGISTER: esi, Type: 0x1818, this + +(0015A0) S_END + +(0015A4) S_GPROC32: [0001:00019B60], Cb: 00000005, Type: 0x338A, LegoWorld::FUN_100727e0 + Parent: 00000000, End: 00001648, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0015E4) S_REGISTER: ecx, Type: 0x1818, this +(0015F4) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(00160C) S_BPREL32: [00000008], Type: 0x1C1A, p_loc +(001620) S_BPREL32: [0000000C], Type: 0x1C1A, p_dir +(001634) S_BPREL32: [00000010], Type: 0x1C1A, p_up + +(001648) S_END + +(00164C) S_GPROC32: [0001:00019B70], Cb: 00000005, Type: 0x338A, LegoWorld::FUN_10072980 + Parent: 00000000, End: 000016F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00168C) S_REGISTER: ecx, Type: 0x1818, this +(00169C) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(0016B4) S_BPREL32: [00000008], Type: 0x1C1A, p_loc +(0016C8) S_BPREL32: [0000000C], Type: 0x1C1A, p_dir +(0016DC) S_BPREL32: [00000010], Type: 0x1C1A, p_up + +(0016F0) S_END + +(0016F4) S_GPROC32: [0001:00019B80], Cb: 00000001, Type: 0x1819, LegoWorld::FUN_10073400 + Parent: 00000000, End: 00001744, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001734) S_REGISTER: ecx, Type: 0x1818, this + +(001744) S_END + +(001748) S_GPROC32: [0001:00019B90], Cb: 00000001, Type: 0x1819, LegoWorld::FUN_10073430 + Parent: 00000000, End: 00001798, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001788) S_REGISTER: ecx, Type: 0x1818, this + +(001798) S_END + +(00179C) S_GPROC32: [0001:00019BA0], Cb: 0000008B, Type: 0x1845, MxList::~MxList + Parent: 00000000, End: 0000183C, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(001800) S_LABEL32: [0001:00019C23], $L52699 +(001814) S_LABEL32: [0001:00019C19], $L52698 +(001828) S_BPREL32: [FFFFFFF0], Type: 0x182E, this + +(00183C) S_END + +(001840) S_GPROC32: [0001:00019C30], Cb: 0000008B, Type: 0x1846, MxList::~MxList + Parent: 00000000, End: 000018D4, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(001898) S_LABEL32: [0001:00019CB3], $L52722 +(0018AC) S_LABEL32: [0001:00019CA9], $L52721 +(0018C0) S_BPREL32: [FFFFFFF0], Type: 0x1836, this + +(0018D4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legovideomanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00017900], Cb: 000000EB, Type: 0x1848, LegoVideoManager::LegoVideoManager + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 00000021, Debug end: 000000C9 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:000179E3], $L57468 +(0000E8) S_LABEL32: [0001:000179D9], $L57467 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x1847, this + +(000110) S_END + +(000114) S_GPROC32: [0001:000179F0], Cb: 00000007, Type: 0x43C5, LegoVideoManager::VTable0x3c + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000158) S_REGISTER: ecx, Type: 0x1847, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00017A00], Cb: 0000001E, Type: T_NOTYPE(0000), LegoVideoManager::`scalar deleting destructor' + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001C4) S_REGISTER: esi, Type: 0x1847, this +(0001D4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:00017A20], Cb: 0000006E, Type: 0x1848, LegoVideoManager::~LegoVideoManager + Parent: 00000000, End: 00000274, Next: 00000000 + Debug start: 00000021, Debug end: 0000004F + Flags: Frame Ptr Present + +(000238) S_LABEL32: [0001:00017A86], $L57494 +(00024C) S_LABEL32: [0001:00017A7C], $L57493 +(000260) S_BPREL32: [FFFFFFF0], Type: 0x1847, this + +(000274) S_END + +(000278) S_GPROC32: [0001:00017A90], Cb: 00000085, Type: 0x3CE0, LegoVideoManager::CreateDirect3D + Parent: 00000000, End: 000002F8, Next: 00000000 + Debug start: 0000001D, Debug end: 0000006C + Flags: Frame Ptr Present + +(0002C0) S_LABEL32: [0001:00017B08], $L57505 +(0002D4) S_LABEL32: [0001:00017AFE], $L57504 +(0002E8) S_REGISTER: esi, Type: 0x1847, this + +(0002F8) S_END + +(0002FC) S_GPROC32: [0001:00017B20], Cb: 000005CB, Type: 0x3CDF, LegoVideoManager::Create + Parent: 00000000, End: 000005DC, Next: 00000000 + Debug start: 00000035, Debug end: 0000056D + Flags: Frame Ptr Present + +(00033C) S_LABEL32: [0001:000180E3], $L57528 +(000350) S_LABEL32: [0001:000180D9], $L57527 +(000364) S_LABEL32: [0001:000180D1], $L57613 +(000378) S_LABEL32: [0001:000180C4], $L57532 +(00038C) S_LABEL32: [0001:000180B7], $L57535 +(0003A0) S_LABEL32: [0001:000180AA], $L57538 +(0003B4) S_LABEL32: [0001:0001809D], $L57541 +(0003C8) S_LABEL32: [0001:00017FCF], $L57658 +(0003DC) S_LABEL32: [0001:00017FC7], $L57661 +(0003F0) S_LABEL32: [0001:00017FBF], $L57663 +(000404) S_LABEL32: [0001:00017CFE], $L57529 +(000418) S_LABEL32: [0001:00018061], done +(000428) S_REGISTER: esi, Type: 0x1847, this +(000438) S_BPREL32: [00000008], Type: 0x1229, p_videoParam +(000454) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_frequencyMS +(000470) S_BPREL32: [00000010], Type: T_UCHAR(0020), p_createThread +(00048C) S_REGISTER: edi, Type: 0x2081, pLODList +(0004A0) S_REGISTER: edi, Type: T_INT4(0074), deviceNum +(0004B4) S_BPREL32: [FFFFFFC8], Type: 0x4392, deviceEnumerate +(0004D0) S_BPREL32: [FFFFFF98], Type: 0x339D, dirVec +(0004E4) S_BPREL32: [FFFFFF84], Type: 0x339D, upVec +(0004F8) S_BPREL32: [FFFFFF14], Type: 0x1135, outMatrix +(000510) S_BPREL32: [FFFFFFAC], Type: 0x339D, posVec +(000524) S_BPREL32: [FFFFFFC0], Type: T_INT4(0074), bits +(000538) S_BPREL32: [FFFFFB14], Type: 0x1251, paletteEntries +(000554) S_BPREL32: [FFFFFF5C], Type: 0x4E38, createStruct +(000570) S_BPREL32: [FFFFFFE8], Type: 0x4BD3, driver +(000584) S_BPREL32: [FFFFFFF3], Type: T_UCHAR(0020), paletteCreated +(0005A0) S_BPREL32: [FFFFFFDC], Type: 0x4971, device +(0005B4) S_BPREL32: [FFFFFFE4], Type: T_LONG(0012), result +(0005C8) S_BPREL32: [FFFFFFC4], Type: T_32PVOID(0403), hwnd + +(0005DC) S_END + +(0005E0) S_GPROC32: [0001:000180F0], Cb: 00000052, Type: 0x25DB, MxDeviceEnumerate::~MxDeviceEnumerate + Parent: 00000000, End: 0000066C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000630) S_LABEL32: [0001:00018137], $L57693 +(000644) S_LABEL32: [0001:0001812D], $L57692 +(000658) S_BPREL32: [FFFFFFF0], Type: 0x1794, this + +(00066C) S_END + +(000670) S_GPROC32: [0001:00018150], Cb: 00000049, Type: 0x4C01, List::~List + Parent: 00000000, End: 000006F4, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0006B8) S_LABEL32: [0001:00018191], $L57701 +(0006CC) S_LABEL32: [0001:00018187], $L57700 +(0006E0) S_BPREL32: [FFFFFFF0], Type: 0x4C00, this + +(0006F4) S_END + +(0006F8) S_GPROC32: [0001:000181A0], Cb: 00000070, Type: 0x4C04, list >::~list > + Parent: 00000000, End: 0000077C, Next: 00000000 + Debug start: 00000005, Debug end: 0000006A + +(00076C) S_REGISTER: esi, Type: 0x4C03, this + +(00077C) S_END + +(000780) S_GPROC32: [0001:00018210], Cb: 00000005, Type: 0x442A, MxUnknown100d9d00::Compare + Parent: 00000000, End: 000007F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0007C4) S_REGISTER: ecx, Type: 0x43C6, this +(0007D4) S_BPREL32: [00000004], Type: 0x4428, p_a +(0007E4) S_BPREL32: [00000008], Type: 0x4428, p_b + +(0007F4) S_END + +(0007F8) S_GPROC32: [0001:00018220], Cb: 0000001B, Type: 0x442C, MxUnknown100d9d00::Destroy + Parent: 00000000, End: 00000854, Next: 00000000 + Debug start: 00000001, Debug end: 00000019 + +(00083C) S_BPREL32: [00000004], Type: 0x4428, p_element + +(000854) S_END + +(000858) S_GPROC32: [0001:00018240], Cb: 00000001, Type: 0x442E, MxCollection::Destroy + Parent: 00000000, End: 000008C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0008AC) S_BPREL32: [00000004], Type: 0x4428, __formal + +(0008C4) S_END + +(0008C8) S_GPROC32: [0001:00018250], Cb: 0000004F, Type: 0x4430, MxCollection::~MxCollection + Parent: 00000000, End: 00000974, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000938) S_LABEL32: [0001:00018297], $L57838 +(00094C) S_LABEL32: [0001:0001828D], $L57837 +(000960) S_BPREL32: [FFFFFFF0], Type: 0x442F, this + +(000974) S_END + +(000978) S_GPROC32: [0001:000182A0], Cb: 00000005, Type: 0x4431, MxCollection::Compare + Parent: 00000000, End: 00000A0C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0009CC) S_REGISTER: ecx, Type: 0x442F, this +(0009DC) S_BPREL32: [00000004], Type: 0x4428, __formal +(0009F4) S_BPREL32: [00000008], Type: 0x4428, __formal + +(000A0C) S_END + +(000A10) S_GPROC32: [0001:000182B0], Cb: 00000061, Type: T_NOTYPE(0000), MxUnknown100d9d00::`scalar deleting destructor' + Parent: 00000000, End: 00000AB8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000A68) S_LABEL32: [0001:00018309], $L57848 +(000A7C) S_LABEL32: [0001:000182FF], $L57846 +(000A90) S_BPREL32: [FFFFFFF0], Type: 0x43C6, this +(000AA4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000AB8) S_END + +(000ABC) S_GPROC32: [0001:00018320], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000B74, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000B24) S_LABEL32: [0001:0001837F], $L57857 +(000B38) S_LABEL32: [0001:00018375], $L57855 +(000B4C) S_BPREL32: [FFFFFFF0], Type: 0x442F, this +(000B60) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000B74) S_END + +(000B78) S_GPROC32: [0001:00018390], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000C2C, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(000BDC) S_LABEL32: [0001:0001842B], $L57866 +(000BF0) S_LABEL32: [0001:00018421], $L57864 +(000C04) S_BPREL32: [FFFFFFF0], Type: 0x4433, this +(000C18) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000C2C) S_END + +(000C30) S_GPROC32: [0001:00018440], Cb: 00000049, Type: T_NOTYPE(0000), MxDeviceEnumerate100d9cc8::~MxDeviceEnumerate100d9cc8 + Parent: 00000000, End: 00000CCC, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000C90) S_LABEL32: [0001:00018481], $L57902 +(000CA4) S_LABEL32: [0001:00018477], $L57901 +(000CB8) S_BPREL32: [FFFFFFF0], Type: 0x4394, this + +(000CCC) S_END + +(000CD0) S_GPROC32: [0001:00018490], Cb: 00000047, Type: 0x1848, LegoVideoManager::Destroy + Parent: 00000000, End: 00000D24, Next: 00000000 + Debug start: 00000001, Debug end: 00000045 + +(000D14) S_REGISTER: esi, Type: 0x1847, this + +(000D24) S_END + +(000D28) S_GPROC32: [0001:000184E0], Cb: 00000041, Type: 0x1849, LegoVideoManager::MoveCursor + Parent: 00000000, End: 00000DAC, Next: 00000000 + Debug start: 00000000, Debug end: 0000003E + +(000D6C) S_REGISTER: ecx, Type: 0x1847, this +(000D7C) S_BPREL32: [00000004], Type: T_INT4(0074), p_cursorX +(000D94) S_BPREL32: [00000008], Type: T_INT4(0074), p_cursorY + +(000DAC) S_END + +(000DB0) S_GPROC32: [0001:00018530], Cb: 00000441, Type: 0x3CE0, LegoVideoManager::Tickle + Parent: 00000000, End: 00000EFC, Next: 00000000 + Debug start: 00000028, Debug end: 00000392 + Flags: Frame Ptr Present + +(000DF0) S_LABEL32: [0001:00018969], $L57926 +(000E04) S_LABEL32: [0001:0001895F], $L57925 +(000E18) S_LABEL32: [0001:00018957], $L57961 +(000E2C) S_LABEL32: [0001:0001894F], $L57963 +(000E40) S_LABEL32: [0001:00018947], $L57927 +(000E54) S_LABEL32: [0001:0001893F], $L57972 +(000E68) S_LABEL32: [0001:00018937], $L57974 +(000E7C) S_BPREL32: [FFFFFFF0], Type: 0x1847, this +(000E90) S_BPREL32: [FFFFFFEC], Type: 0x1243, presenter +(000EA8) S_BPREL32: [FFFFFFD8], Type: 0x2CE4, cursor +(000EBC) S_BPREL32: [FFFFFFB8], Type: 0x3F36, rect +(000ED0) S_BPREL32: [FFFFFFEC], Type: 0x1243, presenter +(000EE8) S_BPREL32: [FFFFFFC8], Type: 0x2CE4, cursor + +(000EFC) S_END + +(000F00) S_GPROC32: [0001:00018980], Cb: 00000066, Type: 0x270D, MxListCursor::MxListCursor + Parent: 00000000, End: 00000FB0, Next: 00000000 + Debug start: 0000001C, Debug end: 00000043 + Flags: Frame Ptr Present + +(000F60) S_LABEL32: [0001:000189DE], $L58046 +(000F74) S_LABEL32: [0001:000189D4], $L58045 +(000F88) S_BPREL32: [FFFFFFF0], Type: 0x15A5, this +(000F9C) S_BPREL32: [00000008], Type: 0x123C, p_list + +(000FB0) S_END + +(000FB4) S_GPROC32: [0001:000189F0], Cb: 00000061, Type: T_NOTYPE(0000), MxPresenterListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00001060, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001010) S_LABEL32: [0001:00018A49], $L58054 +(001024) S_LABEL32: [0001:00018A3F], $L58052 +(001038) S_BPREL32: [FFFFFFF0], Type: 0x2CDF, this +(00104C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001060) S_END + +(001064) S_GPROC32: [0001:00018A60], Cb: 00000049, Type: 0x2D01, MxPtrListCursor::~MxPtrListCursor + Parent: 00000000, End: 00001104, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0010C8) S_LABEL32: [0001:00018AA1], $L58063 +(0010DC) S_LABEL32: [0001:00018A97], $L58062 +(0010F0) S_BPREL32: [FFFFFFF0], Type: 0x2D00, this + +(001104) S_END + +(001108) S_GPROC32: [0001:00018AB0], Cb: 00000061, Type: T_NOTYPE(0000), MxListCursor::`scalar deleting destructor' + Parent: 00000000, End: 000011BC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00116C) S_LABEL32: [0001:00018B09], $L58071 +(001180) S_LABEL32: [0001:00018AFF], $L58069 +(001194) S_BPREL32: [FFFFFFF0], Type: 0x15A5, this +(0011A8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0011BC) S_END + +(0011C0) S_GPROC32: [0001:00018B20], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrListCursor::`scalar deleting destructor' + Parent: 00000000, End: 00001274, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(001224) S_LABEL32: [0001:00018B79], $L58080 +(001238) S_LABEL32: [0001:00018B6F], $L58078 +(00124C) S_BPREL32: [FFFFFFF0], Type: 0x2D00, this +(001260) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(001274) S_END + +(001278) S_GPROC32: [0001:00018B90], Cb: 00000049, Type: 0x15A7, MxListCursor::~MxListCursor + Parent: 00000000, End: 00001318, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0012DC) S_LABEL32: [0001:00018BD1], $L58089 +(0012F0) S_LABEL32: [0001:00018BC7], $L58088 +(001304) S_BPREL32: [FFFFFFF0], Type: 0x15A5, this + +(001318) S_END + +(00131C) S_GPROC32: [0001:00018BE0], Cb: 00000049, Type: 0x2CE2, MxPresenterListCursor::~MxPresenterListCursor + Parent: 00000000, End: 000013B0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001374) S_LABEL32: [0001:00018C21], $L58097 +(001388) S_LABEL32: [0001:00018C17], $L58096 +(00139C) S_BPREL32: [FFFFFFF0], Type: 0x2CDF, this + +(0013B0) S_END + +(0013B4) S_GPROC32: [0001:00018C30], Cb: 00000001, Type: 0x1848, LegoVideoManager::DrawFPS + Parent: 00000000, End: 00001408, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0013F8) S_REGISTER: ecx, Type: 0x1847, this + +(001408) S_END + +(00140C) S_GPROC32: [0001:00018C40], Cb: 00000003, Type: 0x3CE1, LegoVideoManager::VTable0x38 + Parent: 00000000, End: 00001490, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001450) S_REGISTER: ecx, Type: 0x1847, this +(001460) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(001478) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(001490) S_END + +(001494) S_GPROC32: [0001:00018C50], Cb: 0000003A, Type: 0x3CE2, LegoVideoManager::RealizePalette + Parent: 00000000, End: 00001504, Next: 00000000 + Debug start: 00000002, Debug end: 00000036 + +(0014DC) S_REGISTER: esi, Type: 0x1847, this +(0014EC) S_BPREL32: [00000004], Type: 0x1225, p_pallete + +(001504) S_END + +(001508) S_GPROC32: [0001:00018C90], Cb: 0000000F, Type: 0x184A, LegoVideoManager::EnableFullScreenMovie + Parent: 00000000, End: 00001580, Next: 00000000 + Debug start: 00000000, Debug end: 0000000C + +(001558) S_REGISTER: ecx, Type: 0x1847, this +(001568) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable + +(001580) S_END + +(001584) S_GPROC32: [0001:00018CA0], Cb: 00000128, Type: 0x184C, LegoVideoManager::EnableFullScreenMovie + Parent: 00000000, End: 00001624, Next: 00000000 + Debug start: 00000008, Debug end: 0000011F + +(0015D4) S_REGISTER: esi, Type: 0x1847, this +(0015E4) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_enable +(0015FC) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_scale +(001610) S_BPREL32: [FFFFFFF0], Type: 0x3F36, rect + +(001624) S_END + +(001628) S_GPROC32: [0001:00018DD0], Cb: 0000007F, Type: 0x184E, LegoVideoManager::SetSkyColor + Parent: 00000000, End: 000016D8, Next: 00000000 + Debug start: 0000000E, Debug end: 00000078 + +(001670) S_REGISTER: esi, Type: 0x1847, this +(001680) S_BPREL32: [00000004], Type: T_REAL32(0040), p_red +(001694) S_BPREL32: [00000008], Type: T_REAL32(0040), p_green +(0016A8) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_blue +(0016BC) S_BPREL32: [FFFFFFFC], Type: 0x1850, colorStrucure + +(0016D8) S_END + +(0016DC) S_GPROC32: [0001:00018E50], Cb: 00000010, Type: 0x184A, LegoVideoManager::OverrideSkyColor + Parent: 00000000, End: 00001758, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(001728) S_REGISTER: ecx, Type: 0x1847, this +(001738) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_shouldOverride + +(001758) S_END + +(00175C) S_GPROC32: [0001:00018E60], Cb: 00000046, Type: 0x3CE3, LegoVideoManager::VTable0x34 + Parent: 00000000, End: 000017FC, Next: 00000000 + Debug start: 00000005, Debug end: 00000042 + +(0017A0) S_REGISTER: ecx, Type: 0x1847, this +(0017B0) S_BPREL32: [00000004], Type: T_UINT4(0075), p_x +(0017C0) S_BPREL32: [00000008], Type: T_UINT4(0075), p_y +(0017D0) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_width +(0017E4) S_BPREL32: [00000010], Type: T_UINT4(0075), p_height + +(0017FC) S_END + +(001800) S_GPROC32: [0001:00018EB0], Cb: 00000003, Type: 0x1851, LegoVideoManager::EnableRMDevice + Parent: 00000000, End: 00001858, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001848) S_REGISTER: ecx, Type: 0x1847, this + +(001858) S_END + +(00185C) S_GPROC32: [0001:00018EC0], Cb: 00000003, Type: 0x1851, LegoVideoManager::DisableRMDevice + Parent: 00000000, End: 000018B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0018A8) S_REGISTER: ecx, Type: 0x1847, this + +(0018B8) S_END + +(0018BC) S_GPROC32: [0001:00018ED0], Cb: 00000060, Type: 0x3CE0, LegoVideoManager::ConfigureD3DRM + Parent: 00000000, End: 00001940, Next: 00000000 + Debug start: 00000006, Debug end: 0000005D + +(001904) S_REGISTER: ecx, Type: 0x1847, this +(001914) S_REGISTER: ebx, Type: 0x4CEE, assignedDevice +(001930) S_REGISTER: edi, Type: 0x4D37, d3drm + +(001940) S_END + +(001944) S_GPROC32: [0001:00018F30], Cb: 0000008B, Type: 0x4434, MxList::~MxList + Parent: 00000000, End: 000019E4, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(0019A8) S_LABEL32: [0001:00018FB3], $L58192 +(0019BC) S_LABEL32: [0001:00018FA9], $L58191 +(0019D0) S_BPREL32: [FFFFFFF0], Type: 0x4433, this + +(0019E4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legovehiclebuildstate.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:000176C0], Cb: 00000013, Type: 0x1854, LegoVehicleBuildState::UnkStruct::UnkStruct + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000012 + +(0000E4) S_REGISTER: ecx, Type: 0x1853, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:000176E0], Cb: 000000BF, Type: 0x1857, LegoVehicleBuildState::LegoVehicleBuildState + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000021, Debug end: 00000092 + Flags: Frame Ptr Present + +(00014C) S_LABEL32: [0001:00017797], $L2256 +(000160) S_LABEL32: [0001:0001778D], $L2255 +(000174) S_LABEL32: [0001:00017785], $L2264 +(000188) S_LABEL32: [0001:0001777A], $L2257 +(00019C) S_BPREL32: [FFFFFFF0], Type: 0x1856, this +(0001B0) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_classType + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:000177A0], Cb: 00000004, Type: 0x185A, LegoVehicleBuildState::ClassName + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000214) S_REGISTER: ecx, Type: 0x1859, this + +(000224) S_END + +(000228) S_GPROC32: [0001:000177B0], Cb: 000000A0, Type: 0x185B, LegoVehicleBuildState::IsA + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000009, Debug end: 0000009C + +(00026C) S_REGISTER: ecx, Type: 0x1859, this +(00027C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000290) S_END + +(000294) S_GPROC32: [0001:00017850], Cb: 00000079, Type: T_NOTYPE(0000), LegoVehicleBuildState::`scalar deleting destructor' + Parent: 00000000, End: 00000354, Next: 00000000 + Debug start: 0000001D, Debug end: 0000004F + Flags: Frame Ptr Present + +(0002F0) S_LABEL32: [0001:000178C1], $L2331 +(000304) S_LABEL32: [0001:000178B7], $L2329 +(000318) S_LABEL32: [0001:000178AC], $L2332 +(00032C) S_BPREL32: [FFFFFFF0], Type: 0x1856, this +(000340) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000354) S_END + +(000358) S_GPROC32: [0001:000178D0], Cb: 00000027, Type: 0x185F, `vector constructor iterator' + Parent: 00000000, End: 000003E0, Next: 00000000 + Debug start: 00000009, Debug end: 00000020 + +(0003A0) S_BPREL32: [00000004], Type: T_32PVOID(0403), __t +(0003B0) S_BPREL32: [00000008], Type: T_UINT4(0075), __s +(0003C0) S_BPREL32: [0000000C], Type: T_INT4(0074), __n +(0003D0) S_BPREL32: [00000010], Type: 0x185D, __f + +(0003E0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legounksavedatawriter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:000175E0], Cb: 000000D8, Type: 0x1867, LegoUnkSaveDataWriter::WriteSaveData3 + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 0000000E, Debug end: 000000D2 + +(0000E0) S_REGISTER: ecx, Type: 0x1863, this +(0000F0) S_BPREL32: [00000004], Type: 0x1865, p_stream +(000108) S_REGISTER: ebx, Type: 0x1868, entry +(000118) S_REGISTER: edi, Type: T_LONG(0012), result + +(00012C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoutil.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00016FA0], Cb: 00000123, Type: 0x1869, MatchActionString + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000002, Debug end: 00000120 + +(0000BC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_str +(0000D0) S_REGISTER: edi, Type: 0x1050, result + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:000170D0], Cb: 00000234, Type: 0x338C, InvokeAction + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 0000001E, Debug end: 000001E2 + Flags: Frame Ptr Present + +(00011C) S_LABEL32: [0001:000172D1], $L53217 +(000130) S_LABEL32: [0001:000172C7], $L53216 +(000144) S_LABEL32: [0001:000172BF], $L53232 +(000158) S_BPREL32: [00000008], Type: 0x1050, p_actionId +(000170) S_BPREL32: [0000000C], Type: 0x1361, p_pAtom +(000184) S_BPREL32: [00000010], Type: T_INT4(0074), p_targetEntityId +(0001A4) S_BPREL32: [00000014], Type: 0x1913, p_sender +(0001BC) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:00017310], Cb: 00000084, Type: 0x3EE2, CheckIfEntityExists + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000021, Debug end: 00000060 + Flags: Frame Ptr Present + +(000210) S_LABEL32: [0001:0001738C], $L53248 +(000224) S_LABEL32: [0001:00017382], $L53247 +(000238) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_enable +(000250) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_filename +(000268) S_BPREL32: [00000010], Type: T_INT4(0074), p_entityId +(000280) S_BPREL32: [FFFFFFF0], Type: 0x128A, world + +(000294) S_END + +(000298) S_GPROC32: [0001:000173A0], Cb: 00000001, Type: 0x3EE4, NotifyEntity + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002CC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_filename +(0002E4) S_BPREL32: [00000008], Type: T_INT4(0074), p_entityId +(0002FC) S_BPREL32: [0000000C], Type: 0x1913, p_sender + +(000314) S_END + +(000318) S_GPROC32: [0001:000173B0], Cb: 000001D4, Type: 0x186B, ConvertHSVToRGB + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000007, Debug end: 000001B1 + +(000350) S_BPREL32: [00000004], Type: T_REAL32(0040), p_h +(000360) S_BPREL32: [00000008], Type: T_REAL32(0040), p_s +(000370) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_v +(000380) S_BPREL32: [00000010], Type: T_32PREAL32(0440), p_rOut +(000394) S_BPREL32: [00000014], Type: T_32PREAL32(0440), p_bOut +(0003A8) S_BPREL32: [00000018], Type: T_32PREAL32(0440), p_gOut +(0003BC) S_REGISTER: eax, Type: T_LONG(0012), hueIndex +(0003D0) S_BPREL32: [FFFFFFF0], Type: T_REAL64(0041), sDbl +(0003E4) S_BPREL32: [FFFFFFE0], Type: T_REAL64(0041), calc +(0003F8) S_BPREL32: [FFFFFFF8], Type: T_REAL64(0041), v13 +(000408) S_BPREL32: [FFFFFFF0], Type: T_REAL64(0041), v12 +(000418) S_BPREL32: [FFFFFFE8], Type: T_REAL64(0041), p + +(000428) S_END + +(00042C) S_GPROC32: [0001:00017590], Cb: 00000003, Type: 0x3EE5, FUN_1003ee00 + Parent: 00000000, End: 0000048C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000460) S_BPREL32: [00000004], Type: 0x1361, p_atomId +(000478) S_BPREL32: [00000008], Type: T_INT4(0074), p_id + +(00048C) S_END + +(000490) S_GPROC32: [0001:000175A0], Cb: 00000001, Type: 0x181C, FUN_1003ef00 + Parent: 00000000, End: 000004DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0004C4) S_BPREL32: [00000004], Type: T_UCHAR(0020), __formal + +(0004DC) S_END + +(0004E0) S_GPROC32: [0001:000175B0], Cb: 0000001C, Type: 0x181B, SetAppCursor + Parent: 00000000, End: 0000052C, Next: 00000000 + Debug start: 00000000, Debug end: 0000001B + +(000514) S_BPREL32: [00000004], Type: T_UINT4(0075), p_wparam + +(00052C) S_END + +(000530) S_GPROC32: [0001:000175D0], Cb: 00000003, Type: 0x338D, FUN_1003ef60 + Parent: 00000000, End: 00000564, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000564) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legotexturepresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00016ED0], Cb: 00000066, Type: 0x1870, LegoTexturePresenter::~LegoTexturePresenter + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:00016F2E], $L52764 +(0000F4) S_LABEL32: [0001:00016F24], $L52763 +(000108) S_BPREL32: [FFFFFFF0], Type: 0x186F, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:00016F40], Cb: 00000014, Type: 0x1875, LegoTexturePresenter::AddToManager + Parent: 00000000, End: 0000017C, Next: 00000000 + Debug start: 00000001, Debug end: 00000013 + +(00016C) S_REGISTER: esi, Type: 0x186F, this + +(00017C) S_END + +(000180) S_GPROC32: [0001:00016F60], Cb: 00000006, Type: 0x1875, LegoTexturePresenter::PutData + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001C8) S_REGISTER: ecx, Type: 0x186F, this + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:00016F70], Cb: 00000029, Type: 0x1870, LegoTexturePresenter::DoneTickle + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000001, Debug end: 00000027 + +(000224) S_REGISTER: esi, Type: 0x186F, this + +(000234) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legostream.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00016790], Cb: 000000A2, Type: 0x187B, LegoStream::WriteVariable + Parent: 00000000, End: 00000150, Next: 00000000 + Debug start: 00000017, Debug end: 00000098 + +(0000C8) S_BPREL32: [00000004], Type: 0x1865, p_stream +(0000E0) S_BPREL32: [00000008], Type: 0x1491, p_from +(0000F4) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_variableName +(000110) S_REGISTER: ebx, Type: T_32PRCHAR(0470), variableValue +(000128) S_BPREL32: [FFFFFFFC], Type: T_LONG(0012), result +(00013C) S_BPREL32: [FFFFFFFB], Type: T_UCHAR(0020), length + +(000150) S_END + +(000154) S_GPROC32: [0001:00016840], Cb: 000000E5, Type: 0x187D, LegoStream::ReadVariable + Parent: 00000000, End: 00000218, Next: 00000000 + Debug start: 0000000E, Debug end: 000000DA + +(000194) S_BPREL32: [00000004], Type: 0x1865, p_stream +(0001AC) S_BPREL32: [00000008], Type: 0x1491, p_to +(0001C0) S_BPREL32: [FFFFFDFF], Type: T_UCHAR(0020), length +(0001D4) S_REGISTER: ebx, Type: T_INT4(0074), result +(0001E8) S_BPREL32: [FFFFFE00], Type: 0x138C, nameBuffer +(000200) S_BPREL32: [FFFFFF00], Type: 0x138C, valueBuffer + +(000218) S_END + +(00021C) S_GPROC32: [0001:00016930], Cb: 0000000C, Type: 0x187F, LegoStream::IsWriteMode + Parent: 00000000, End: 0000026C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(00025C) S_REGISTER: ecx, Type: 0x187E, this + +(00026C) S_END + +(000270) S_GPROC32: [0001:00016940], Cb: 0000000C, Type: 0x187F, LegoStream::IsReadMode + Parent: 00000000, End: 000002C0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0002B0) S_REGISTER: ecx, Type: 0x187E, this + +(0002C0) S_END + +(0002C4) S_GPROC32: [0001:00016950], Cb: 0000006A, Type: 0x1882, LegoMemoryStream::LegoMemoryStream + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 0000001C, Debug end: 00000047 + Flags: Frame Ptr Present + +(000310) S_LABEL32: [0001:000169B2], $L13976 +(000324) S_LABEL32: [0001:000169A8], $L13975 +(000338) S_BPREL32: [FFFFFFF0], Type: 0x1881, this +(00034C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_buffer + +(000364) S_END + +(000368) S_GPROC32: [0001:000169C0], Cb: 0000002A, Type: 0x1884, LegoMemoryStream::Read + Parent: 00000000, End: 000003E4, Next: 00000000 + Debug start: 00000008, Debug end: 00000027 + +(0003A8) S_REGISTER: edx, Type: 0x1881, this +(0003B8) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_buffer +(0003D0) S_BPREL32: [00000008], Type: T_UINT4(0075), p_size + +(0003E4) S_END + +(0003E8) S_GPROC32: [0001:000169F0], Cb: 0000002A, Type: 0x1884, LegoMemoryStream::Write + Parent: 00000000, End: 00000464, Next: 00000000 + Debug start: 00000008, Debug end: 00000027 + +(000428) S_REGISTER: edx, Type: 0x1881, this +(000438) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_buffer +(000450) S_BPREL32: [00000008], Type: T_UINT4(0075), p_size + +(000464) S_END + +(000468) S_GPROC32: [0001:00016A20], Cb: 00000062, Type: 0x1887, LegoFileStream::LegoFileStream + Parent: 00000000, End: 000004EC, Next: 00000000 + Debug start: 00000021, Debug end: 00000041 + Flags: Frame Ptr Present + +(0004B0) S_LABEL32: [0001:00016A7A], $L14006 +(0004C4) S_LABEL32: [0001:00016A70], $L14005 +(0004D8) S_BPREL32: [FFFFFFF0], Type: 0x1886, this + +(0004EC) S_END + +(0004F0) S_GPROC32: [0001:00016A90], Cb: 0000001E, Type: T_NOTYPE(0000), LegoFileStream::`scalar deleting destructor' + Parent: 00000000, End: 00000568, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000544) S_REGISTER: esi, Type: 0x1886, this +(000554) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000568) S_END + +(00056C) S_GPROC32: [0001:00016AB0], Cb: 00000066, Type: 0x1887, LegoFileStream::~LegoFileStream + Parent: 00000000, End: 000005F0, Next: 00000000 + Debug start: 00000021, Debug end: 00000047 + Flags: Frame Ptr Present + +(0005B4) S_LABEL32: [0001:00016B0E], $L14017 +(0005C8) S_LABEL32: [0001:00016B04], $L14016 +(0005DC) S_BPREL32: [FFFFFFF0], Type: 0x1886, this + +(0005F0) S_END + +(0005F4) S_GPROC32: [0001:00016B20], Cb: 00000037, Type: 0x1888, LegoFileStream::Read + Parent: 00000000, End: 0000066C, Next: 00000000 + Debug start: 00000004, Debug end: 00000034 + +(000630) S_REGISTER: ecx, Type: 0x1886, this +(000640) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_buffer +(000658) S_BPREL32: [00000008], Type: T_UINT4(0075), p_size + +(00066C) S_END + +(000670) S_GPROC32: [0001:00016B60], Cb: 00000037, Type: 0x1888, LegoFileStream::Write + Parent: 00000000, End: 000006EC, Next: 00000000 + Debug start: 00000004, Debug end: 00000034 + +(0006B0) S_REGISTER: ecx, Type: 0x1886, this +(0006C0) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_buffer +(0006D8) S_BPREL32: [00000008], Type: T_UINT4(0075), p_size + +(0006EC) S_END + +(0006F0) S_GPROC32: [0001:00016BA0], Cb: 00000030, Type: 0x188A, LegoFileStream::Tell + Parent: 00000000, End: 00000764, Next: 00000000 + Debug start: 00000000, Debug end: 0000002D + +(00072C) S_REGISTER: ecx, Type: 0x1886, this +(00073C) S_BPREL32: [00000004], Type: T_32PUINT4(0475), p_offset +(000754) S_REGISTER: eax, Type: T_INT4(0074), got + +(000764) S_END + +(000768) S_GPROC32: [0001:00016BD0], Cb: 0000002D, Type: 0x188B, LegoFileStream::Seek + Parent: 00000000, End: 000007CC, Next: 00000000 + Debug start: 00000000, Debug end: 0000002A + +(0007A4) S_REGISTER: ecx, Type: 0x1886, this +(0007B4) S_BPREL32: [00000004], Type: T_UINT4(0075), p_offset + +(0007CC) S_END + +(0007D0) S_GPROC32: [0001:00016C00], Cb: 00000100, Type: 0x188F, LegoFileStream::Open + Parent: 00000000, End: 00000860, Next: 00000000 + Debug start: 0000000C, Debug end: 000000F8 + +(00080C) S_REGISTER: ebx, Type: 0x1886, this +(00081C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_filename +(000834) S_BPREL32: [00000008], Type: 0x188D, p_mode +(000848) S_BPREL32: [FFFFFFFC], Type: 0x1890, modeString + +(000860) S_END + +(000864) S_GPROC32: [0001:00016D00], Cb: 0000000E, Type: 0x1891, LegoMemoryStream::Tell + Parent: 00000000, End: 000008CC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0008A4) S_REGISTER: ecx, Type: 0x1881, this +(0008B4) S_BPREL32: [00000004], Type: T_32PUINT4(0475), p_offset + +(0008CC) S_END + +(0008D0) S_GPROC32: [0001:00016D10], Cb: 0000000C, Type: 0x1892, LegoMemoryStream::Seek + Parent: 00000000, End: 00000938, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000910) S_REGISTER: ecx, Type: 0x1881, this +(000920) S_BPREL32: [00000004], Type: T_UINT4(0075), p_offset + +(000938) S_END + +(00093C) S_LPROC32: [0001:00016D20], Cb: 000000A8, Type: 0x1878, $E46 + Parent: 00000000, End: 00000968, Next: 00000000 + Debug start: 00000000, Debug end: 000000A8 + +(000968) S_END + +(00096C) S_LPROC32: [0001:00016DD0], Cb: 0000000E, Type: 0x1878, $E24 + Parent: 00000000, End: 00000998, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000998) S_END + +(00099C) S_LPROC32: [0001:00016DE0], Cb: 0000000E, Type: 0x1878, $E27 + Parent: 00000000, End: 000009C8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0009C8) S_END + +(0009CC) S_LPROC32: [0001:00016DF0], Cb: 0000000E, Type: 0x1878, $E30 + Parent: 00000000, End: 000009F8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0009F8) S_END + +(0009FC) S_LPROC32: [0001:00016E00], Cb: 0000000E, Type: 0x1878, $E33 + Parent: 00000000, End: 00000A28, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000A28) S_END + +(000A2C) S_LPROC32: [0001:00016E10], Cb: 0000000E, Type: 0x1878, $E36 + Parent: 00000000, End: 00000A58, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000A58) S_END + +(000A5C) S_LPROC32: [0001:00016E20], Cb: 0000000E, Type: 0x1878, $E39 + Parent: 00000000, End: 00000A88, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000A88) S_END + +(000A8C) S_LPROC32: [0001:00016E30], Cb: 0000000E, Type: 0x1878, $E42 + Parent: 00000000, End: 00000AB8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000AB8) S_END + +(000ABC) S_LPROC32: [0001:00016E40], Cb: 0000000E, Type: 0x1878, $E45 + Parent: 00000000, End: 00000AE8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(000AE8) S_END + +(000AEC) S_GPROC32: [0001:00016E50], Cb: 00000001, Type: 0x1878, num_put > >::id + Parent: 00000000, End: 00000B54, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000B54) S_END + +(000B58) S_GPROC32: [0001:00016E60], Cb: 00000001, Type: 0x1878, numpunct::id + Parent: 00000000, End: 00000B94, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000B94) S_END + +(000B98) S_GPROC32: [0001:00016E70], Cb: 00000001, Type: 0x1878, num_put > >::id + Parent: 00000000, End: 00000C20, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000C20) S_END + +(000C24) S_GPROC32: [0001:00016E80], Cb: 00000001, Type: 0x1878, numpunct::id + Parent: 00000000, End: 00000C68, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000C68) S_END + +(000C6C) S_GPROC32: [0001:00016E90], Cb: 00000001, Type: 0x1878, ctype::id + Parent: 00000000, End: 00000CA4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000CA4) S_END + +(000CA8) S_GPROC32: [0001:00016EA0], Cb: 00000001, Type: 0x1878, num_get > >::id + Parent: 00000000, End: 00000D10, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000D10) S_END + +(000D14) S_GPROC32: [0001:00016EB0], Cb: 00000001, Type: 0x1878, ctype::id + Parent: 00000000, End: 00000D58, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000D58) S_END + +(000D5C) S_GPROC32: [0001:00016EC0], Cb: 00000001, Type: 0x1878, num_get > >::id + Parent: 00000000, End: 00000DE4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000DE4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legostate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00016600], Cb: 0000004F, Type: 0x1895, LegoState::~LegoState + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00016647], $L2213 +(0000D8) S_LABEL32: [0001:0001663D], $L2212 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x1894, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00016650], Cb: 00000003, Type: 0x1896, LegoState::VTable0x14 + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000144) S_REGISTER: ecx, Type: 0x1894, this + +(000154) S_END + +(000158) S_GPROC32: [0001:00016660], Cb: 00000003, Type: 0x1896, LegoState::SetFlag + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000194) S_REGISTER: ecx, Type: 0x1894, this + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:00016670], Cb: 0000007E, Type: 0x1899, LegoState::VTable0x1c + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 0000001D, Debug end: 0000005D + Flags: Frame Ptr Present + +(0001E8) S_LABEL32: [0001:000166E6], $L2249 +(0001FC) S_LABEL32: [0001:000166DC], $L2248 +(000210) S_REGISTER: esi, Type: 0x1894, this +(000220) S_BPREL32: [00000008], Type: 0x1897, p_legoFileStream + +(000240) S_END + +(000244) S_GPROC32: [0001:000166F0], Cb: 00000091, Type: 0x189A, LegoFileStream::FUN_10006030 + Parent: 00000000, End: 0000031C, Next: 00000000 + Debug start: 00000030, Debug end: 0000006F + Flags: Frame Ptr Present + +(000288) S_LABEL32: [0001:00016779], $L2257 +(00029C) S_LABEL32: [0001:0001676F], $L2256 +(0002B0) S_BPREL32: [FFFFFFEC], Type: 0x1886, this +(0002C4) S_BPREL32: [00000008], Type: 0x12DB, p_str +(0002D8) S_REGISTER: edi, Type: T_UINT4(0075), fullLength +(0002F0) S_BPREL32: [FFFFFFF2], Type: T_USHORT(0021), limitedLength +(00030C) S_REGISTER: esi, Type: T_32PRCHAR(0470), data + +(00031C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legosoundmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00016460], Cb: 00000064, Type: 0x189D, LegoSoundManager::LegoSoundManager + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:000164BC], $L44057 +(0000E8) S_LABEL32: [0001:000164B2], $L44056 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x189C, this + +(000110) S_END + +(000114) S_GPROC32: [0001:000164D0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoSoundManager::`scalar deleting destructor' + Parent: 00000000, End: 00000190, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00016C) S_REGISTER: esi, Type: 0x189C, this +(00017C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000190) S_END + +(000194) S_GPROC32: [0001:000164F0], Cb: 0000005D, Type: 0x189D, LegoSoundManager::~LegoSoundManager + Parent: 00000000, End: 0000021C, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0001E0) S_LABEL32: [0001:00016545], $L44079 +(0001F4) S_LABEL32: [0001:0001653B], $L44078 +(000208) S_BPREL32: [FFFFFFF0], Type: 0x189C, this + +(00021C) S_END + +(000220) S_GPROC32: [0001:00016550], Cb: 00000009, Type: 0x189D, LegoSoundManager::Init + Parent: 00000000, End: 00000270, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000260) S_REGISTER: ecx, Type: 0x189C, this + +(000270) S_END + +(000274) S_GPROC32: [0001:00016560], Cb: 00000003, Type: 0x189E, LegoSoundManager::Destroy + Parent: 00000000, End: 000002E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002B8) S_REGISTER: ecx, Type: 0x189C, this +(0002C8) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0002E8) S_END + +(0002EC) S_GPROC32: [0001:00016570], Cb: 00000012, Type: 0x189F, LegoSoundManager::Create + Parent: 00000000, End: 00000374, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(00032C) S_REGISTER: ecx, Type: 0x189C, this +(00033C) S_BPREL32: [00000004], Type: T_UINT4(0075), p_frequencyMS +(000358) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_createThread + +(000374) S_END + +(000378) S_GPROC32: [0001:00016590], Cb: 00000008, Type: 0x189D, LegoSoundManager::Destroy + Parent: 00000000, End: 000003CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0003BC) S_REGISTER: ecx, Type: 0x189C, this + +(0003CC) S_END + +(0003D0) S_GPROC32: [0001:000165A0], Cb: 0000005E, Type: 0x18A0, LegoSoundManager::Tickle + Parent: 00000000, End: 0000045C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000040 + Flags: Frame Ptr Present + +(000410) S_LABEL32: [0001:000165F4], $L44094 +(000424) S_LABEL32: [0001:000165EC], $L44095 +(000438) S_REGISTER: esi, Type: 0x189C, this +(000448) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(00045C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoroi.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00015DD0], Cb: 0000000D, Type: 0x338F, LegoROI::WrappedSetLocalTransform + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0000CC) S_REGISTER: ecx, Type: 0x18AF, this +(0000DC) S_BPREL32: [00000004], Type: 0x111E, p_transform + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00015DE0], Cb: 00000003, Type: 0x338F, LegoROI::FUN_100a46b0 + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000138) S_REGISTER: ecx, Type: 0x18AF, this +(000148) S_BPREL32: [00000004], Type: 0x111E, p_transform + +(000160) S_END + +(000164) S_GPROC32: [0001:00015DF0], Cb: 00000003, Type: 0x338F, LegoROI::FUN_100a58f0 + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0001A4) S_REGISTER: ecx, Type: 0x18AF, this +(0001B4) S_BPREL32: [00000004], Type: 0x111E, p_transform + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:00015E00], Cb: 0000000A, Type: 0x18A8, LegoROI::configureLegoROI + Parent: 00000000, End: 0000022C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000214) S_BPREL32: [00000004], Type: T_INT4(0074), p_roiConfig + +(00022C) S_END + +(000230) S_GPROC32: [0001:00015E10], Cb: 000001CC, Type: 0x4484, LegoROI::LegoROI + Parent: 00000000, End: 00000310, Next: 00000000 + Debug start: 0000001D, Debug end: 00000199 + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:00015FD4], $L44264 +(00027C) S_LABEL32: [0001:00015FCA], $L44263 +(000290) S_LABEL32: [0001:00015FC2], $L44266 +(0002A4) S_LABEL32: [0001:00015FBA], $L44279 +(0002B8) S_BPREL32: [FFFFFFF0], Type: 0x18AF, this +(0002CC) S_BPREL32: [00000008], Type: 0x207F, p_renderer +(0002E4) S_BPREL32: [0000000C], Type: 0x2081, p_lodList +(0002FC) S_BPREL32: [00000010], Type: T_INT4(0074), p_time + +(000310) S_END + +(000314) S_GPROC32: [0001:00015FE0], Cb: 00000015, Type: 0x181E, Vector3Data::Vector3Data + Parent: 00000000, End: 00000364, Next: 00000000 + Debug start: 00000000, Debug end: 00000014 + +(000354) S_REGISTER: ecx, Type: 0x181D, this + +(000364) S_END + +(000368) S_GPROC32: [0001:00016000], Cb: 0000000F, Type: 0x112E, Matrix4Data::Matrix4Data + Parent: 00000000, End: 000003B8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(0003A8) S_REGISTER: ecx, Type: 0x112A, this + +(0003B8) S_END + +(0003BC) S_GPROC32: [0001:00016010], Cb: 00000011, Type: 0x277E, ROI::ROI + Parent: 00000000, End: 000003FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000010 + +(0003EC) S_REGISTER: ecx, Type: 0x277D, this + +(0003FC) S_END + +(000400) S_GPROC32: [0001:00016030], Cb: 00000007, Type: 0x277E, ROI::~ROI + Parent: 00000000, End: 00000444, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000434) S_REGISTER: ecx, Type: 0x277D, this + +(000444) S_END + +(000448) S_GPROC32: [0001:00016040], Cb: 0000001F, Type: T_NOTYPE(0000), ROI::`scalar deleting destructor' + Parent: 00000000, End: 000004B8, Next: 00000000 + Debug start: 00000006, Debug end: 0000001B + +(000494) S_REGISTER: esi, Type: 0x277D, this +(0004A4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0004B8) S_END + +(0004BC) S_GPROC32: [0001:00016060], Cb: 00000005, Type: 0x1124, OrientableROI::VTable0x14 + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000500) S_REGISTER: ecx, Type: 0x1123, this + +(000510) S_END + +(000514) S_GPROC32: [0001:00016070], Cb: 00000061, Type: T_NOTYPE(0000), OrientableROI::`scalar deleting destructor' + Parent: 00000000, End: 000005B8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000568) S_LABEL32: [0001:000160C9], $L44521 +(00057C) S_LABEL32: [0001:000160BF], $L44519 +(000590) S_BPREL32: [FFFFFFF0], Type: 0x1123, this +(0005A4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0005B8) S_END + +(0005BC) S_GPROC32: [0001:000160E0], Cb: 00000051, Type: 0x276F, BoundingBox::BoundingBox + Parent: 00000000, End: 0000060C, Next: 00000000 + Debug start: 00000000, Debug end: 00000050 + +(0005FC) S_REGISTER: ecx, Type: 0x276A, this + +(00060C) S_END + +(000610) S_GPROC32: [0001:00016140], Cb: 00000049, Type: 0x1124, OrientableROI::~OrientableROI + Parent: 00000000, End: 00000694, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000658) S_LABEL32: [0001:00016181], $L44580 +(00066C) S_LABEL32: [0001:00016177], $L44579 +(000680) S_BPREL32: [FFFFFFF0], Type: 0x1123, this + +(000694) S_END + +(000698) S_GPROC32: [0001:00016190], Cb: 00000085, Type: 0x2084, ViewROI::~ViewROI + Parent: 00000000, End: 00000710, Next: 00000000 + Debug start: 00000021, Debug end: 00000066 + Flags: Frame Ptr Present + +(0006D4) S_LABEL32: [0001:0001620D], $L44590 +(0006E8) S_LABEL32: [0001:00016203], $L44589 +(0006FC) S_BPREL32: [FFFFFFF0], Type: 0x102A, this + +(000710) S_END + +(000714) S_GPROC32: [0001:00016220], Cb: 0000009D, Type: T_NOTYPE(0000), ViewROI::`scalar deleting destructor' + Parent: 00000000, End: 000007B4, Next: 00000000 + Debug start: 00000021, Debug end: 0000007E + Flags: Frame Ptr Present + +(000764) S_LABEL32: [0001:000162B5], $L44613 +(000778) S_LABEL32: [0001:000162AB], $L44611 +(00078C) S_BPREL32: [FFFFFFF0], Type: 0x102A, this +(0007A0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0007B4) S_END + +(0007B8) S_GPROC32: [0001:000162C0], Cb: 00000061, Type: T_NOTYPE(0000), LegoROI::`scalar deleting destructor' + Parent: 00000000, End: 00000858, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000808) S_LABEL32: [0001:00016319], $L44643 +(00081C) S_LABEL32: [0001:0001630F], $L44641 +(000830) S_BPREL32: [FFFFFFF0], Type: 0x18AF, this +(000844) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000858) S_END + +(00085C) S_GPROC32: [0001:00016330], Cb: 00000053, Type: 0x18AB, LegoROI::CallTheHandlerFunction + Parent: 00000000, End: 00000918, Next: 00000000 + Debug start: 00000004, Debug end: 0000004E + +(0008A4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_param +(0008B8) S_BPREL32: [00000008], Type: 0x18A9, p_red +(0008CC) S_BPREL32: [0000000C], Type: 0x18A9, p_green +(0008E0) S_BPREL32: [00000010], Type: 0x18A9, p_blue +(0008F4) S_BPREL32: [00000014], Type: 0x18A9, p_other +(000908) S_BPREL32: [FFFFFFE0], Type: 0x18AC, buf + +(000918) S_END + +(00091C) S_GPROC32: [0001:00016390], Cb: 00000093, Type: 0x18AB, LegoROI::ColorAliasLookup + Parent: 00000000, End: 000009D0, Next: 00000000 + Debug start: 00000008, Debug end: 0000008F + +(000960) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_param +(000974) S_BPREL32: [00000008], Type: 0x18A9, p_red +(000988) S_BPREL32: [0000000C], Type: 0x18A9, p_green +(00099C) S_BPREL32: [00000010], Type: 0x18A9, p_blue +(0009B0) S_BPREL32: [00000014], Type: 0x18A9, p_other +(0009C4) S_REGISTER: esi, Type: T_UINT4(0075), i + +(0009D0) S_END + +(0009D4) S_GPROC32: [0001:00016430], Cb: 0000000A, Type: 0x18AE, LegoROI::SetSomeHandlerFunction + Parent: 00000000, End: 00000A30, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000A1C) S_BPREL32: [00000004], Type: 0x18A6, p_func + +(000A30) S_END + +(000A34) S_GPROC32: [0001:00016440], Cb: 00000003, Type: 0x18B0, LegoROI::SetDisplayBB + Parent: 00000000, End: 00000A9C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000A74) S_REGISTER: ecx, Type: 0x18AF, this +(000A84) S_BPREL32: [00000004], Type: T_INT4(0074), p_displayBB + +(000A9C) S_END + +(000AA0) S_GPROC32: [0001:00016450], Cb: 00000001, Type: 0x4485, LegoROI::UpdateWorldBoundingVolumes + Parent: 00000000, End: 00000AFC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000AEC) S_REGISTER: ecx, Type: 0x18AF, this + +(000AFC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legorace.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00015AE0], Cb: 00000005, Type: 0x18B3, LegoRace::VTable0x78 + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000BC) S_REGISTER: ecx, Type: 0x18B2, this +(0000CC) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:00015AF0], Cb: 00000003, Type: 0x18B4, LegoRace::VTable0x7c + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000124) S_REGISTER: ecx, Type: 0x18B2, this +(000134) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(00014C) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(000164) S_END + +(000168) S_GPROC32: [0001:00015B00], Cb: 00000003, Type: 0x18B5, LegoRace::VTable0x5c + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0001A4) S_REGISTER: ecx, Type: 0x18B2, this + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:00015B10], Cb: 000000C2, Type: 0x18B6, LegoRace::LegoRace + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 0000001C, Debug end: 000000A4 + Flags: Frame Ptr Present + +(0001F4) S_LABEL32: [0001:00015BCA], $L49592 +(000208) S_LABEL32: [0001:00015BC0], $L49591 +(00021C) S_BPREL32: [FFFFFFF0], Type: 0x18B2, this + +(000230) S_END + +(000234) S_GPROC32: [0001:00015BE0], Cb: 00000006, Type: 0x18B9, LegoRace::ClassName + Parent: 00000000, End: 00000280, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000270) S_REGISTER: ecx, Type: 0x18B8, this + +(000280) S_END + +(000284) S_GPROC32: [0001:00015BF0], Cb: 0000010A, Type: 0x18BA, LegoRace::IsA + Parent: 00000000, End: 000002E0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0002BC) S_REGISTER: ecx, Type: 0x18B8, this +(0002CC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0002E0) S_END + +(0002E4) S_GPROC32: [0001:00015D00], Cb: 0000001E, Type: T_NOTYPE(0000), LegoRace::`scalar deleting destructor' + Parent: 00000000, End: 00000358, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000334) S_REGISTER: esi, Type: 0x18B2, this +(000344) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000358) S_END + +(00035C) S_GPROC32: [0001:00015D20], Cb: 00000005, Type: 0x18B3, LegoRace::VTable0x70 + Parent: 00000000, End: 000003C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000398) S_REGISTER: ecx, Type: 0x18B2, this +(0003A8) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(0003C0) S_END + +(0003C4) S_GPROC32: [0001:00015D30], Cb: 00000005, Type: 0x18B3, LegoRace::VTable0x74 + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000400) S_REGISTER: ecx, Type: 0x18B2, this +(000410) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(000428) S_END + +(00042C) S_GPROC32: [0001:00015D40], Cb: 00000003, Type: 0x18B5, LegoRace::VTable0x64 + Parent: 00000000, End: 00000478, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000468) S_REGISTER: ecx, Type: 0x18B2, this + +(000478) S_END + +(00047C) S_GPROC32: [0001:00015D50], Cb: 00000005, Type: 0x18BB, LegoRace::Create + Parent: 00000000, End: 000004DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0004B4) S_REGISTER: ecx, Type: 0x18B2, this +(0004C4) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(0004DC) S_END + +(0004E0) S_GPROC32: [0001:00015D60], Cb: 0000004F, Type: 0x18B6, LegoRace::~LegoRace + Parent: 00000000, End: 00000558, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00051C) S_LABEL32: [0001:00015DA7], $L49683 +(000530) S_LABEL32: [0001:00015D9D], $L49682 +(000544) S_BPREL32: [FFFFFFF0], Type: 0x18B2, this + +(000558) S_END + +(00055C) S_GPROC32: [0001:00015DB0], Cb: 00000005, Type: 0x18BC, LegoRace::Notify + Parent: 00000000, End: 000005B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000594) S_REGISTER: ecx, Type: 0x18B2, this +(0005A4) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0005B8) S_END + +(0005BC) S_GPROC32: [0001:00015DC0], Cb: 00000003, Type: 0x18BD, LegoRace::VTable0x68 + Parent: 00000000, End: 0000061C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0005F8) S_REGISTER: ecx, Type: 0x18B2, this +(000608) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_add + +(00061C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoplantmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000159D0], Cb: 00000064, Type: 0x18C0, LegoPlantManager::LegoPlantManager + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:00015A2C], $L1033 +(0000E8) S_LABEL32: [0001:00015A22], $L1032 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x18BF, this + +(000110) S_END + +(000114) S_GPROC32: [0001:00015A40], Cb: 00000006, Type: 0x18C3, LegoPlantManager::ClassName + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000158) S_REGISTER: ecx, Type: 0x18C2, this + +(000168) S_END + +(00016C) S_GPROC32: [0001:00015A50], Cb: 0000001E, Type: T_NOTYPE(0000), LegoPlantManager::`scalar deleting destructor' + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001C4) S_REGISTER: esi, Type: 0x18BF, this +(0001D4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:00015A70], Cb: 0000004F, Type: 0x18C0, LegoPlantManager::~LegoPlantManager + Parent: 00000000, End: 00000274, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000238) S_LABEL32: [0001:00015AB7], $L1055 +(00024C) S_LABEL32: [0001:00015AAD], $L1054 +(000260) S_BPREL32: [FFFFFFF0], Type: 0x18BF, this + +(000274) S_END + +(000278) S_GPROC32: [0001:00015AC0], Cb: 00000001, Type: 0x18C0, LegoPlantManager::Init + Parent: 00000000, End: 000002C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002B8) S_REGISTER: ecx, Type: 0x18BF, this + +(0002C8) S_END + +(0002CC) S_GPROC32: [0001:00015AD0], Cb: 00000003, Type: 0x18C4, LegoPlantManager::Tickle + Parent: 00000000, End: 0000031C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00030C) S_REGISTER: ecx, Type: 0x18BF, this + +(00031C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legophonemepresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00015890], Cb: 0000007B, Type: 0x18C7, LegoPhonemePresenter::LegoPhonemePresenter + Parent: 00000000, End: 00000130, Next: 00000000 + Debug start: 0000001C, Debug end: 00000052 + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:00015903], $L43033 +(0000F4) S_LABEL32: [0001:000158F9], $L43032 +(000108) S_LABEL32: [0001:000158EE], $L43034 +(00011C) S_BPREL32: [FFFFFFF0], Type: 0x18C6, this + +(000130) S_END + +(000134) S_GPROC32: [0001:00015910], Cb: 00000006, Type: 0x18CA, LegoPhonemePresenter::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x18C9, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:00015920], Cb: 0000001E, Type: T_NOTYPE(0000), LegoPhonemePresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001EC) S_REGISTER: esi, Type: 0x18C6, this +(0001FC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000210) S_END + +(000214) S_GPROC32: [0001:00015940], Cb: 00000067, Type: 0x18C7, LegoPhonemePresenter::~LegoPhonemePresenter + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000023, Debug end: 0000003D + Flags: Frame Ptr Present + +(000268) S_LABEL32: [0001:0001599F], $L43111 +(00027C) S_LABEL32: [0001:00015995], $L43110 +(000290) S_LABEL32: [0001:0001598A], $L43112 +(0002A4) S_BPREL32: [FFFFFFF0], Type: 0x18C6, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:000159B0], Cb: 00000012, Type: 0x18C7, LegoPhonemePresenter::Init + Parent: 00000000, End: 00000310, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(000300) S_REGISTER: ecx, Type: 0x18C6, this + +(000310) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legopathpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00015530], Cb: 000000C9, Type: 0x18CD, LegoPathPresenter::LegoPathPresenter + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 0000001C, Debug end: 00000085 + Flags: Frame Ptr Present + +(0000D8) S_LABEL32: [0001:000155F1], $L51440 +(0000EC) S_LABEL32: [0001:000155E7], $L51439 +(000100) S_LABEL32: [0001:000155DF], $L51444 +(000114) S_LABEL32: [0001:000155D7], $L51446 +(000128) S_LABEL32: [0001:000155CC], $L51447 +(00013C) S_LABEL32: [0001:000155C1], $L51441 +(000150) S_BPREL32: [FFFFFFF0], Type: 0x18CC, this + +(000164) S_END + +(000168) S_GPROC32: [0001:00015600], Cb: 00000006, Type: 0x18D0, LegoPathPresenter::ClassName + Parent: 00000000, End: 000001BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001AC) S_REGISTER: ecx, Type: 0x18CF, this + +(0001BC) S_END + +(0001C0) S_GPROC32: [0001:00015610], Cb: 000000D6, Type: 0x18D1, LegoPathPresenter::IsA + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(000200) S_REGISTER: ecx, Type: 0x18CF, this +(000210) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000224) S_END + +(000228) S_GPROC32: [0001:000156F0], Cb: 00000079, Type: T_NOTYPE(0000), LegoPathPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000002E4, Next: 00000000 + Debug start: 0000001D, Debug end: 0000004F + Flags: Frame Ptr Present + +(000280) S_LABEL32: [0001:00015761], $L51568 +(000294) S_LABEL32: [0001:00015757], $L51566 +(0002A8) S_LABEL32: [0001:0001574C], $L51569 +(0002BC) S_BPREL32: [FFFFFFF0], Type: 0x18CC, this +(0002D0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0002E4) S_END + +(0002E8) S_GPROC32: [0001:00015770], Cb: 00000001, Type: 0x18CD, LegoPathPresenter::Init + Parent: 00000000, End: 00000338, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000328) S_REGISTER: ecx, Type: 0x18CC, this + +(000338) S_END + +(00033C) S_GPROC32: [0001:00015780], Cb: 00000026, Type: 0x18D2, LegoPathPresenter::AddToManager + Parent: 00000000, End: 000003A8, Next: 00000000 + Debug start: 00000002, Debug end: 00000023 + +(000384) S_REGISTER: esi, Type: 0x18CC, this +(000394) S_REGISTER: edi, Type: T_LONG(0012), status + +(0003A8) S_END + +(0003AC) S_GPROC32: [0001:000157B0], Cb: 00000092, Type: 0x18D3, LegoPathPresenter::Destroy + Parent: 00000000, End: 00000460, Next: 00000000 + Debug start: 0000001B, Debug end: 00000071 + Flags: Frame Ptr Present + +(0003F0) S_LABEL32: [0001:0001583A], $L51581 +(000404) S_LABEL32: [0001:00015830], $L51580 +(000418) S_BPREL32: [FFFFFFF0], Type: 0x18CC, this +(00042C) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_fromDestructor +(00044C) S_BPREL32: [FFFFFFEC], Type: 0x11DF, lock + +(000460) S_END + +(000464) S_GPROC32: [0001:00015850], Cb: 00000008, Type: 0x18CD, LegoPathPresenter::Destroy + Parent: 00000000, End: 000004B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0004A8) S_REGISTER: ecx, Type: 0x18CC, this + +(0004B8) S_END + +(0004BC) S_GPROC32: [0001:00015860], Cb: 00000019, Type: 0x18CD, LegoPathPresenter::RepeatingTickle + Parent: 00000000, End: 00000518, Next: 00000000 + Debug start: 00000001, Debug end: 00000017 + +(000508) S_REGISTER: esi, Type: 0x18CC, this + +(000518) S_END + +(00051C) S_GPROC32: [0001:00015880], Cb: 00000001, Type: 0x18CD, LegoPathPresenter::ParseExtra + Parent: 00000000, End: 00000574, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000564) S_REGISTER: ecx, Type: 0x18CC, this + +(000574) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legopathcontroller.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000153C0], Cb: 0000005D, Type: 0x18D7, LegoPathController::LegoPathController + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:00015415], $L1034 +(0000F0) S_LABEL32: [0001:0001540B], $L1033 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x18D6, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:00015420], Cb: 00000006, Type: 0x18DA, LegoPathController::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x18D9, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00015430], Cb: 00000072, Type: 0x18DB, LegoPathController::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001B8) S_REGISTER: ecx, Type: 0x18D9, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:000154B0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoPathController::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x18D6, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:000154D0], Cb: 0000004F, Type: 0x18D7, LegoPathController::~LegoPathController + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002B0) S_LABEL32: [0001:00015517], $L1066 +(0002C4) S_LABEL32: [0001:0001550D], $L1065 +(0002D8) S_BPREL32: [FFFFFFF0], Type: 0x18D6, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:00015520], Cb: 00000003, Type: 0x18DC, LegoPathController::Tickle + Parent: 00000000, End: 00000344, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000334) S_REGISTER: ecx, Type: 0x18D6, this + +(000344) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legopathactor.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00015230], Cb: 0000005D, Type: 0x18DF, LegoPathActor::LegoPathActor + Parent: 00000000, End: 00000108, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:00015285], $L46084 +(0000E0) S_LABEL32: [0001:0001527B], $L46083 +(0000F4) S_BPREL32: [FFFFFFF0], Type: 0x18DE, this + +(000108) S_END + +(00010C) S_GPROC32: [0001:00015290], Cb: 0000001E, Type: T_NOTYPE(0000), LegoPathActor::`scalar deleting destructor' + Parent: 00000000, End: 00000184, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000160) S_REGISTER: esi, Type: 0x18DE, this +(000170) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000184) S_END + +(000188) S_GPROC32: [0001:000152B0], Cb: 0000004F, Type: 0x18DF, LegoPathActor::~LegoPathActor + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0001D0) S_LABEL32: [0001:000152F7], $L46210 +(0001E4) S_LABEL32: [0001:000152ED], $L46209 +(0001F8) S_BPREL32: [FFFFFFF0], Type: 0x18DE, this + +(00020C) S_END + +(000210) S_GPROC32: [0001:00015300], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x80 + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000254) S_REGISTER: ecx, Type: 0x18DE, this + +(000264) S_END + +(000268) S_GPROC32: [0001:00015310], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x88 + Parent: 00000000, End: 000002BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002AC) S_REGISTER: ecx, Type: 0x18DE, this + +(0002BC) S_END + +(0002C0) S_GPROC32: [0001:00015320], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x84 + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000304) S_REGISTER: ecx, Type: 0x18DE, this + +(000314) S_END + +(000318) S_GPROC32: [0001:00015330], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x8c + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00035C) S_REGISTER: ecx, Type: 0x18DE, this + +(00036C) S_END + +(000370) S_GPROC32: [0001:00015340], Cb: 00000003, Type: 0x3390, LegoPathActor::VTable0x74 + Parent: 00000000, End: 000003DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003B4) S_REGISTER: ecx, Type: 0x18DE, this +(0003C4) S_BPREL32: [00000004], Type: 0x111E, p_transform + +(0003DC) S_END + +(0003E0) S_GPROC32: [0001:00015350], Cb: 00000003, Type: 0x3391, LegoPathActor::VTable0x70 + Parent: 00000000, End: 0000044C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000424) S_REGISTER: ecx, Type: 0x18DE, this +(000434) S_BPREL32: [00000004], Type: T_REAL32(0040), __formal + +(00044C) S_END + +(000450) S_GPROC32: [0001:00015360], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x98 + Parent: 00000000, End: 000004A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000494) S_REGISTER: ecx, Type: 0x18DE, this + +(0004A4) S_END + +(0004A8) S_GPROC32: [0001:00015370], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x6c + Parent: 00000000, End: 000004FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0004EC) S_REGISTER: ecx, Type: 0x18DE, this + +(0004FC) S_END + +(000500) S_GPROC32: [0001:00015380], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x68 + Parent: 00000000, End: 00000554, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000544) S_REGISTER: ecx, Type: 0x18DE, this + +(000554) S_END + +(000558) S_GPROC32: [0001:00015390], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0x9c + Parent: 00000000, End: 000005AC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00059C) S_REGISTER: ecx, Type: 0x18DE, this + +(0005AC) S_END + +(0005B0) S_GPROC32: [0001:000153A0], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0xa4 + Parent: 00000000, End: 00000604, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0005F4) S_REGISTER: ecx, Type: 0x18DE, this + +(000604) S_END + +(000608) S_GPROC32: [0001:000153B0], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0xa8 + Parent: 00000000, End: 0000065C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00064C) S_REGISTER: ecx, Type: 0x18DE, this + +(00065C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legopartpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00015210], Cb: 00000014, Type: 0x18E8, LegoPartPresenter::configureLegoPartPresenter + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 00000000, Debug end: 00000013 + +(0000E4) S_BPREL32: [00000004], Type: T_INT4(0074), p_partPresenterConfig1 +(000108) S_BPREL32: [00000008], Type: T_INT4(0074), p_partPresenterConfig2 + +(00012C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legopalettepresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00014CC0], Cb: 000000D2, Type: 0x18EB, LegoPalettePresenter::LegoPalettePresenter + Parent: 00000000, End: 0000016C, Next: 00000000 + Debug start: 0000001D, Debug end: 0000008D + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:00014D8A], $L51612 +(0000F4) S_LABEL32: [0001:00014D80], $L51611 +(000108) S_LABEL32: [0001:00014D78], $L51614 +(00011C) S_LABEL32: [0001:00014D70], $L51616 +(000130) S_LABEL32: [0001:00014D68], $L51618 +(000144) S_LABEL32: [0001:00014D5D], $L51619 +(000158) S_BPREL32: [FFFFFFF0], Type: 0x18EA, this + +(00016C) S_END + +(000170) S_GPROC32: [0001:00014DA0], Cb: 00000006, Type: 0x18EE, LegoPalettePresenter::ClassName + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001B8) S_REGISTER: ecx, Type: 0x18ED, this + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00014DB0], Cb: 0000010A, Type: 0x18EF, LegoPalettePresenter::IsA + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000210) S_REGISTER: ecx, Type: 0x18ED, this +(000220) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000234) S_END + +(000238) S_GPROC32: [0001:00014EC0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoPalettePresenter::`scalar deleting destructor' + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000294) S_REGISTER: esi, Type: 0x18EA, this +(0002A4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:00014EE0], Cb: 0000005D, Type: 0x18EB, LegoPalettePresenter::~LegoPalettePresenter + Parent: 00000000, End: 0000034C, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000310) S_LABEL32: [0001:00014F35], $L51812 +(000324) S_LABEL32: [0001:00014F2B], $L51811 +(000338) S_BPREL32: [FFFFFFF0], Type: 0x18EA, this + +(00034C) S_END + +(000350) S_GPROC32: [0001:00014F40], Cb: 00000008, Type: 0x18EB, LegoPalettePresenter::Init + Parent: 00000000, End: 000003A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000394) S_REGISTER: ecx, Type: 0x18EA, this + +(0003A4) S_END + +(0003A8) S_GPROC32: [0001:00014F50], Cb: 0000003E, Type: 0x18F0, LegoPalettePresenter::Destroy + Parent: 00000000, End: 00000420, Next: 00000000 + Debug start: 00000002, Debug end: 00000039 + +(0003F0) S_REGISTER: edi, Type: 0x18EA, this +(000400) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000420) S_END + +(000424) S_GPROC32: [0001:00014F90], Cb: 00000008, Type: 0x18EB, LegoPalettePresenter::Destroy + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00046C) S_REGISTER: ecx, Type: 0x18EA, this + +(00047C) S_END + +(000480) S_GPROC32: [0001:00014FA0], Cb: 000000FF, Type: 0x3E16, LegoPalettePresenter::ParsePallete + Parent: 00000000, End: 00000580, Next: 00000000 + Debug start: 0000002A, Debug end: 000000D1 + Flags: Frame Ptr Present + +(0004CC) S_LABEL32: [0001:00015097], $L51834 +(0004E0) S_LABEL32: [0001:0001508D], $L51833 +(0004F4) S_LABEL32: [0001:00015080], $L51835 +(000508) S_REGISTER: esi, Type: 0x18EA, this +(000518) S_BPREL32: [00000008], Type: 0x11CE, p_chunk +(00052C) S_BPREL32: [FFFFFBB4], Type: 0x1FD4, palleteData +(000544) S_BPREL32: [FFFFFFB4], Type: 0x209B, buffer +(000558) S_BPREL32: [FFFFFFDC], Type: 0x1B4B, stream +(00056C) S_BPREL32: [FFFFFFF0], Type: T_LONG(0012), result + +(000580) S_END + +(000584) S_GPROC32: [0001:000150A0], Cb: 0000004F, Type: 0x1B49, LegoMemoryStream::~LegoMemoryStream + Parent: 00000000, End: 0000060C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0005D0) S_LABEL32: [0001:000150E7], $L51848 +(0005E4) S_LABEL32: [0001:000150DD], $L51847 +(0005F8) S_BPREL32: [FFFFFFF0], Type: 0x1881, this + +(00060C) S_END + +(000610) S_GPROC32: [0001:000150F0], Cb: 00000007, Type: 0x1883, LegoStream::~LegoStream + Parent: 00000000, End: 00000660, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000650) S_REGISTER: ecx, Type: 0x187E, this + +(000660) S_END + +(000664) S_GPROC32: [0001:00015100], Cb: 0000001F, Type: T_NOTYPE(0000), LegoStream::`scalar deleting destructor' + Parent: 00000000, End: 000006D8, Next: 00000000 + Debug start: 00000006, Debug end: 0000001B + +(0006B4) S_REGISTER: esi, Type: 0x187E, this +(0006C4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0006D8) S_END + +(0006DC) S_GPROC32: [0001:00015120], Cb: 00000067, Type: T_NOTYPE(0000), LegoMemoryStream::`scalar deleting destructor' + Parent: 00000000, End: 00000784, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(000734) S_LABEL32: [0001:0001517F], $L51861 +(000748) S_LABEL32: [0001:00015175], $L51859 +(00075C) S_BPREL32: [FFFFFFF0], Type: 0x1881, this +(000770) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000784) S_END + +(000788) S_GPROC32: [0001:00015190], Cb: 00000077, Type: 0x18EB, LegoPalettePresenter::ReadyTickle + Parent: 00000000, End: 00000808, Next: 00000000 + Debug start: 00000006, Debug end: 00000072 + +(0007D4) S_REGISTER: esi, Type: 0x18EA, this +(0007E4) S_REGISTER: edi, Type: 0x11CE, chunk +(0007F4) S_REGISTER: ebp, Type: T_LONG(0012), result + +(000808) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoomni.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:000128F0], Cb: 00000005, Type: 0x18F5, Lego + Parent: 00000000, End: 000000AC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0000AC) S_END + +(0000B0) S_GPROC32: [0001:00012900], Cb: 00000009, Type: 0x18F7, SoundManager + Parent: 00000000, End: 000000E4, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0000E4) S_END + +(0000E8) S_GPROC32: [0001:00012910], Cb: 00000009, Type: 0x18F8, VideoManager + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(00011C) S_END + +(000120) S_GPROC32: [0001:00012920], Cb: 0000000C, Type: 0x18FA, BackgroundAudioManager + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000160) S_END + +(000164) S_GPROC32: [0001:00012930], Cb: 00000009, Type: 0x18FB, InputManager + Parent: 00000000, End: 00000198, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000198) S_END + +(00019C) S_GPROC32: [0001:00012940], Cb: 0000000F, Type: 0x18FE, ControlManager + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00012950], Cb: 0000000C, Type: 0x18FF, GameState + Parent: 00000000, End: 0000020C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(00020C) S_END + +(000210) S_GPROC32: [0001:00012960], Cb: 0000000C, Type: 0x1902, AnimationManager + Parent: 00000000, End: 00000248, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000248) S_END + +(00024C) S_GPROC32: [0001:00012970], Cb: 0000000C, Type: 0x1905, NavController + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000284) S_END + +(000288) S_GPROC32: [0001:00012980], Cb: 0000000C, Type: 0x3392, GetCurrentVehicle + Parent: 00000000, End: 000002C4, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0002C4) S_END + +(0002C8) S_GPROC32: [0001:00012990], Cb: 00000009, Type: 0x1906, GetCurrentWorld + Parent: 00000000, End: 00000300, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(000300) S_END + +(000304) S_GPROC32: [0001:000129A0], Cb: 0000000C, Type: 0x1908, PlantManager + Parent: 00000000, End: 00000338, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000338) S_END + +(00033C) S_GPROC32: [0001:000129B0], Cb: 0000000C, Type: 0x190B, BuildingManager + Parent: 00000000, End: 00000374, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000374) S_END + +(000378) S_GPROC32: [0001:000129C0], Cb: 00000009, Type: 0x190C, GetGifManager + Parent: 00000000, End: 000003B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0003B0) S_END + +(0003B4) S_GPROC32: [0001:000129D0], Cb: 00000001, Type: 0x181A, FUN_10015820 + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003E8) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000400) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(000418) S_END + +(00041C) S_GPROC32: [0001:000129E0], Cb: 00000017, Type: 0x341B, FindEntityByAtomIdOrEntityId + Parent: 00000000, End: 0000048C, Next: 00000000 + Debug start: 00000000, Debug end: 00000016 + +(000460) S_BPREL32: [00000004], Type: 0x13B3, p_atom +(000474) S_BPREL32: [00000008], Type: T_INT4(0074), p_entityid + +(00048C) S_END + +(000490) S_GPROC32: [0001:00012A00], Cb: 0000000B, Type: 0x190D, GetCurrentAction + Parent: 00000000, End: 000004C8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0004C8) S_END + +(0004CC) S_GPROC32: [0001:00012A10], Cb: 0000000C, Type: 0x190F, TransitionManager + Parent: 00000000, End: 00000508, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000508) S_END + +(00050C) S_GPROC32: [0001:00012A20], Cb: 000000B0, Type: 0x181B, PlayMusic + Parent: 00000000, End: 000005A4, Next: 00000000 + Debug start: 0000001E, Debug end: 00000086 + Flags: Frame Ptr Present + +(000540) S_LABEL32: [0001:00012AC5], $L63800 +(000554) S_LABEL32: [0001:00012ABB], $L63799 +(000568) S_LABEL32: [0001:00012AB3], $L63804 +(00057C) S_BPREL32: [00000008], Type: T_UINT4(0075), p_index +(000590) S_BPREL32: [FFFFFF5C], Type: 0x3CF2, action + +(0005A4) S_END + +(0005A8) S_GPROC32: [0001:00012AD0], Cb: 00000020, Type: 0x181C, SetIsWorldActive + Parent: 00000000, End: 000005FC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001E + +(0005E0) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_isWorldActive + +(0005FC) S_END + +(000600) S_GPROC32: [0001:00012AF0], Cb: 00000001, Type: 0x1878, FUN_1001a700 + Parent: 00000000, End: 00000634, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000634) S_END + +(000638) S_GPROC32: [0001:00012B00], Cb: 0000001B, Type: 0x1911, PickROI + Parent: 00000000, End: 00000688, Next: 00000000 + Debug start: 00000000, Debug end: 0000001A + +(000668) S_BPREL32: [00000004], Type: T_LONG(0012), p_a +(000678) S_BPREL32: [00000008], Type: T_LONG(0012), p_b + +(000688) S_END + +(00068C) S_GPROC32: [0001:00012B20], Cb: 00000003, Type: 0x1914, PickEntity + Parent: 00000000, End: 000006F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0006C0) S_BPREL32: [00000004], Type: T_LONG(0012), __formal +(0006D8) S_BPREL32: [00000008], Type: T_LONG(0012), __formal + +(0006F0) S_END + +(0006F4) S_GPROC32: [0001:00012B30], Cb: 000007DE, Type: 0x1878, RegisterScripts + Parent: 00000000, End: 00000970, Next: 00000000 + Debug start: 0000001D, Debug end: 0000065A + Flags: Frame Ptr Present + +(00072C) S_LABEL32: [0001:00013301], $L63885 +(000740) S_LABEL32: [0001:000132F7], $L63884 +(000754) S_LABEL32: [0001:000132EA], $L63888 +(000768) S_LABEL32: [0001:000132DD], $L63891 +(00077C) S_LABEL32: [0001:000132D0], $L63894 +(000790) S_LABEL32: [0001:000132C3], $L63897 +(0007A4) S_LABEL32: [0001:000132B6], $L63900 +(0007B8) S_LABEL32: [0001:000132A9], $L63903 +(0007CC) S_LABEL32: [0001:0001329C], $L63906 +(0007E0) S_LABEL32: [0001:0001328F], $L63909 +(0007F4) S_LABEL32: [0001:00013282], $L63912 +(000808) S_LABEL32: [0001:00013275], $L63915 +(00081C) S_LABEL32: [0001:00013268], $L63918 +(000830) S_LABEL32: [0001:0001325B], $L63921 +(000844) S_LABEL32: [0001:0001324E], $L63924 +(000858) S_LABEL32: [0001:00013241], $L63927 +(00086C) S_LABEL32: [0001:00013234], $L63930 +(000880) S_LABEL32: [0001:00013227], $L63933 +(000894) S_LABEL32: [0001:0001321A], $L63936 +(0008A8) S_LABEL32: [0001:0001320D], $L63939 +(0008BC) S_LABEL32: [0001:00013200], $L63942 +(0008D0) S_LABEL32: [0001:000131F3], $L63945 +(0008E4) S_LABEL32: [0001:000131E6], $L63948 +(0008F8) S_LABEL32: [0001:000131D9], $L63951 +(00090C) S_LABEL32: [0001:000131CC], $L63954 +(000920) S_LABEL32: [0001:000131BF], $L63957 +(000934) S_LABEL32: [0001:000131B2], $L63960 +(000948) S_LABEL32: [0001:000131A5], $L63963 +(00095C) S_LABEL32: [0001:00013198], $L63966 + +(000970) S_END + +(000974) S_GPROC32: [0001:00013310], Cb: 00000369, Type: 0x1878, UnregisterScripts + Parent: 00000000, End: 000009B0, Next: 00000000 + Debug start: 00000001, Debug end: 00000368 + +(0009B0) S_END + +(0009B4) S_GPROC32: [0001:00013680], Cb: 00000008, Type: 0x1915, GetNoCD_SourceName + Parent: 00000000, End: 000009F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0009F0) S_END + +(0009F4) S_GPROC32: [0001:00013690], Cb: 00000081, Type: 0x1917, LegoOmni::LegoOmni + Parent: 00000000, End: 00000A80, Next: 00000000 + Debug start: 0000001C, Debug end: 00000055 + Flags: Frame Ptr Present + +(000A30) S_LABEL32: [0001:00013709], $L64149 +(000A44) S_LABEL32: [0001:000136FF], $L64148 +(000A58) S_LABEL32: [0001:000136F1], $L64150 +(000A6C) S_BPREL32: [FFFFFFF0], Type: 0x1916, this + +(000A80) S_END + +(000A84) S_GPROC32: [0001:00013720], Cb: 00000006, Type: 0x191A, LegoOmni::ClassName + Parent: 00000000, End: 00000AD0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000AC0) S_REGISTER: ecx, Type: 0x1919, this + +(000AD0) S_END + +(000AD4) S_GPROC32: [0001:00013730], Cb: 00000072, Type: 0x191B, LegoOmni::IsA + Parent: 00000000, End: 00000B30, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000B0C) S_REGISTER: ecx, Type: 0x1919, this +(000B1C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000B30) S_END + +(000B34) S_GPROC32: [0001:000137B0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoOmni::`scalar deleting destructor' + Parent: 00000000, End: 00000BA8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000B84) S_REGISTER: esi, Type: 0x1916, this +(000B94) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000BA8) S_END + +(000BAC) S_GPROC32: [0001:000137D0], Cb: 00000072, Type: 0x1917, LegoOmni::~LegoOmni + Parent: 00000000, End: 00000C38, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(000BE8) S_LABEL32: [0001:0001383A], $L64179 +(000BFC) S_LABEL32: [0001:00013830], $L64178 +(000C10) S_LABEL32: [0001:00013822], $L64180 +(000C24) S_BPREL32: [FFFFFFF0], Type: 0x1916, this + +(000C38) S_END + +(000C3C) S_GPROC32: [0001:00013850], Cb: 0000005B, Type: 0x1917, LegoOmni::Init + Parent: 00000000, End: 00000C84, Next: 00000000 + Debug start: 00000001, Debug end: 00000059 + +(000C74) S_REGISTER: esi, Type: 0x1916, this + +(000C84) S_END + +(000C88) S_GPROC32: [0001:000138B0], Cb: 000001C1, Type: 0x1917, LegoOmni::Destroy + Parent: 00000000, End: 00000D10, Next: 00000000 + Debug start: 0000001D, Debug end: 000001A0 + Flags: Frame Ptr Present + +(000CC4) S_LABEL32: [0001:00013A69], $L64213 +(000CD8) S_LABEL32: [0001:00013A5F], $L64212 +(000CEC) S_REGISTER: esi, Type: 0x1916, this +(000CFC) S_BPREL32: [FFFFFFF0], Type: 0x11DF, lock + +(000D10) S_END + +(000D14) S_GPROC32: [0001:00013A80], Cb: 000005B3, Type: 0x191C, LegoOmni::Create + Parent: 00000000, End: 00000F64, Next: 00000000 + Debug start: 0000001E, Debug end: 000000DC + Flags: Frame Ptr Present + +(000D4C) S_LABEL32: [0001:0001402B], $L64289 +(000D60) S_LABEL32: [0001:00014021], $L64288 +(000D74) S_LABEL32: [0001:00014014], $L64290 +(000D88) S_LABEL32: [0001:00014007], $L64293 +(000D9C) S_LABEL32: [0001:00013FFA], $L64296 +(000DB0) S_LABEL32: [0001:00013FED], $L64301 +(000DC4) S_LABEL32: [0001:00013FE0], $L64306 +(000DD8) S_LABEL32: [0001:00013FD3], $L64311 +(000DEC) S_LABEL32: [0001:00013FC6], $L64314 +(000E00) S_LABEL32: [0001:00013FB9], $L64317 +(000E14) S_LABEL32: [0001:00013FAC], $L64320 +(000E28) S_LABEL32: [0001:00013F9F], $L64323 +(000E3C) S_LABEL32: [0001:00013F92], $L64326 +(000E50) S_LABEL32: [0001:00013F85], $L64329 +(000E64) S_LABEL32: [0001:00013F78], $L64332 +(000E78) S_LABEL32: [0001:00013F6B], $L64335 +(000E8C) S_LABEL32: [0001:00013E5B], $L64363 +(000EA0) S_LABEL32: [0001:00013E53], $L64365 +(000EB4) S_LABEL32: [0001:00013E4B], $L64370 +(000EC8) S_LABEL32: [0001:00013E43], $L64372 +(000EDC) S_LABEL32: [0001:00013D0A], $L64357 +(000EF0) S_LABEL32: [0001:00013B36], $L64398 +(000F04) S_LABEL32: [0001:00013B2B], $L64399 +(000F18) S_LABEL32: [0001:00013B20], $L64402 +(000F2C) S_REGISTER: edi, Type: 0x1916, this +(000F3C) S_BPREL32: [00000008], Type: 0x14A2, p_param +(000F50) S_BPREL32: [FFFFFFE8], Type: 0x11DF, lock + +(000F64) S_END + +(000F68) S_GPROC32: [0001:00014040], Cb: 00000007, Type: 0x191F, GifManagerBase::~GifManagerBase + Parent: 00000000, End: 00000FC0, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000FB0) S_REGISTER: ecx, Type: 0x191E, this + +(000FC0) S_END + +(000FC4) S_GPROC32: [0001:00014050], Cb: 0000001F, Type: T_NOTYPE(0000), GifManagerBase::`scalar deleting destructor' + Parent: 00000000, End: 0000103C, Next: 00000000 + Debug start: 00000006, Debug end: 0000001B + +(001018) S_REGISTER: esi, Type: 0x191E, this +(001028) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00103C) S_END + +(001040) S_GPROC32: [0001:00014070], Cb: 00000067, Type: T_NOTYPE(0000), GifManager::`scalar deleting destructor' + Parent: 00000000, End: 000010E0, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(001090) S_LABEL32: [0001:000140CF], $L64492 +(0010A4) S_LABEL32: [0001:000140C5], $L64490 +(0010B8) S_BPREL32: [FFFFFFF0], Type: 0x1920, this +(0010CC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0010E0) S_END + +(0010E4) S_GPROC32: [0001:000140E0], Cb: 0000001A, Type: 0x2D13, LegoWorldList::Compare + Parent: 00000000, End: 00001154, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(001124) S_REGISTER: ecx, Type: 0x2D11, this +(001134) S_BPREL32: [00000004], Type: 0x128A, p_a +(001144) S_BPREL32: [00000008], Type: 0x128A, p_b + +(001154) S_END + +(001158) S_GPROC32: [0001:00014100], Cb: 00000001, Type: 0x2D18, MxCollection::Destroy + Parent: 00000000, End: 000011BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0011A4) S_BPREL32: [00000004], Type: 0x128A, __formal + +(0011BC) S_END + +(0011C0) S_GPROC32: [0001:00014110], Cb: 0000004F, Type: 0x2D17, MxCollection::~MxCollection + Parent: 00000000, End: 0000125C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(001220) S_LABEL32: [0001:00014157], $L64509 +(001234) S_LABEL32: [0001:0001414D], $L64508 +(001248) S_BPREL32: [FFFFFFF0], Type: 0x2D16, this + +(00125C) S_END + +(001260) S_GPROC32: [0001:00014160], Cb: 00000005, Type: 0x2D19, MxCollection::Compare + Parent: 00000000, End: 000012EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0012AC) S_REGISTER: ecx, Type: 0x2D16, this +(0012BC) S_BPREL32: [00000004], Type: 0x128A, __formal +(0012D4) S_BPREL32: [00000008], Type: 0x128A, __formal + +(0012EC) S_END + +(0012F0) S_GPROC32: [0001:00014170], Cb: 0000000F, Type: 0x35DD, MxPtrList::Destroy + Parent: 00000000, End: 0000134C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(001338) S_BPREL32: [00000004], Type: 0x128A, p_obj + +(00134C) S_END + +(001350) S_GPROC32: [0001:00014180], Cb: 00000061, Type: T_NOTYPE(0000), LegoWorldList::`scalar deleting destructor' + Parent: 00000000, End: 000013F4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0013A4) S_LABEL32: [0001:000141D9], $L64525 +(0013B8) S_LABEL32: [0001:000141CF], $L64523 +(0013CC) S_BPREL32: [FFFFFFF0], Type: 0x2D11, this +(0013E0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0013F4) S_END + +(0013F8) S_GPROC32: [0001:000141F0], Cb: 00000049, Type: 0x2D1C, MxPtrList::~MxPtrList + Parent: 00000000, End: 00001488, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00144C) S_LABEL32: [0001:00014231], $L64534 +(001460) S_LABEL32: [0001:00014227], $L64533 +(001474) S_BPREL32: [FFFFFFF0], Type: 0x2D1B, this + +(001488) S_END + +(00148C) S_GPROC32: [0001:00014240], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 0000153C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0014EC) S_LABEL32: [0001:0001429F], $L64542 +(001500) S_LABEL32: [0001:00014295], $L64540 +(001514) S_BPREL32: [FFFFFFF0], Type: 0x2D16, this +(001528) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00153C) S_END + +(001540) S_GPROC32: [0001:000142B0], Cb: 000000A3, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 000015EC, Next: 00000000 + Debug start: 0000002D, Debug end: 00000082 + Flags: Frame Ptr Present + +(00159C) S_LABEL32: [0001:0001434B], $L64551 +(0015B0) S_LABEL32: [0001:00014341], $L64549 +(0015C4) S_BPREL32: [FFFFFFF0], Type: 0x2D1E, this +(0015D8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0015EC) S_END + +(0015F0) S_GPROC32: [0001:00014360], Cb: 00000061, Type: T_NOTYPE(0000), MxPtrList::`scalar deleting destructor' + Parent: 00000000, End: 0000169C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00164C) S_LABEL32: [0001:000143B9], $L64585 +(001660) S_LABEL32: [0001:000143AF], $L64583 +(001674) S_BPREL32: [FFFFFFF0], Type: 0x2D1B, this +(001688) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00169C) S_END + +(0016A0) S_GPROC32: [0001:000143D0], Cb: 00000064, Type: 0x1923, list >::~list > + Parent: 00000000, End: 00001744, Next: 00000000 + Debug start: 00000005, Debug end: 0000005E + +(001734) S_REGISTER: esi, Type: 0x1922, this + +(001744) S_END + +(001748) S_GPROC32: [0001:00014440], Cb: 0000001E, Type: T_NOTYPE(0000), MxTickleManager::`scalar deleting destructor' + Parent: 00000000, End: 000017C4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0017A0) S_REGISTER: esi, Type: 0x129E, this +(0017B0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0017C4) S_END + +(0017C8) S_GPROC32: [0001:00014460], Cb: 00000049, Type: 0x1926, List::~List + Parent: 00000000, End: 0000185C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(001820) S_LABEL32: [0001:000144A1], $L64703 +(001834) S_LABEL32: [0001:00014497], $L64702 +(001848) S_BPREL32: [FFFFFFF0], Type: 0x1925, this + +(00185C) S_END + +(001860) S_GPROC32: [0001:000144B0], Cb: 0000007F, Type: 0x1927, LegoOmni::CreateInstance + Parent: 00000000, End: 000018C8, Next: 00000000 + Debug start: 0000001C, Debug end: 0000005D + Flags: Frame Ptr Present + +(0018A0) S_LABEL32: [0001:00014522], $L64712 +(0018B4) S_LABEL32: [0001:00014518], $L64711 + +(0018C8) S_END + +(0018CC) S_GPROC32: [0001:00014530], Cb: 00000005, Type: 0x1928, LegoOmni::GetInstance + Parent: 00000000, End: 0000190C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00190C) S_END + +(001910) S_GPROC32: [0001:00014540], Cb: 00000090, Type: 0x3D02, LegoOmni::AddWorld + Parent: 00000000, End: 00001998, Next: 00000000 + Debug start: 00000021, Debug end: 0000006D + Flags: Frame Ptr Present + +(00194C) S_LABEL32: [0001:000145C3], $L64725 +(001960) S_LABEL32: [0001:000145B9], $L64724 +(001974) S_REGISTER: ecx, Type: 0x1916, this +(001984) S_BPREL32: [00000008], Type: 0x128A, p_world + +(001998) S_END + +(00199C) S_GPROC32: [0001:000145D0], Cb: 00000003, Type: 0x192A, LegoOmni::RemoveWorld + Parent: 00000000, End: 00001A1C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0019DC) S_REGISTER: ecx, Type: 0x1916, this +(0019EC) S_BPREL32: [00000004], Type: 0x13B3, __formal +(001A04) S_BPREL32: [00000008], Type: T_LONG(0012), __formal + +(001A1C) S_END + +(001A20) S_GPROC32: [0001:000145E0], Cb: 00000005, Type: 0x192C, LegoOmni::FindByEntityIdOrAtomId + Parent: 00000000, End: 00001AA4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(001A68) S_REGISTER: ecx, Type: 0x1916, this +(001A78) S_BPREL32: [00000004], Type: 0x13B3, p_atom +(001A8C) S_BPREL32: [00000008], Type: T_INT4(0074), p_entityid + +(001AA4) S_END + +(001AA8) S_GPROC32: [0001:000145F0], Cb: 00000003, Type: 0x34B4, LegoOmni::DeleteObject + Parent: 00000000, End: 00001B10, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001AE8) S_REGISTER: ecx, Type: 0x1916, this +(001AF8) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(001B10) S_END + +(001B14) S_GPROC32: [0001:00014600], Cb: 000000A3, Type: 0x192E, LegoOmni::FindWorld + Parent: 00000000, End: 00001BE4, Next: 00000000 + Debug start: 00000022, Debug end: 00000094 + Flags: Frame Ptr Present + +(001B50) S_LABEL32: [0001:0001466E], $L64772 +(001B64) S_LABEL32: [0001:00014664], $L64771 +(001B78) S_REGISTER: esi, Type: 0x1916, this +(001B88) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_id +(001B9C) S_BPREL32: [0000000C], Type: T_INT4(0074), p_entityId +(001BB4) S_BPREL32: [00000010], Type: 0x1243, p_presenter +(001BCC) S_BPREL32: [FFFFFFF0], Type: 0x128A, foundEntity + +(001BE4) S_END + +(001BE8) S_GPROC32: [0001:000146B0], Cb: 0000001C, Type: 0x192F, LegoOmni::NotifyCurrentEntity + Parent: 00000000, End: 00001C54, Next: 00000000 + Debug start: 00000000, Debug end: 00000019 + +(001C30) S_REGISTER: ecx, Type: 0x1916, this +(001C40) S_BPREL32: [00000004], Type: 0x135A, p_param + +(001C54) S_END + +(001C58) S_GPROC32: [0001:000146D0], Cb: 00000033, Type: 0x1930, LegoOmni::DoesEntityExist + Parent: 00000000, End: 00001CC4, Next: 00000000 + Debug start: 00000002, Debug end: 0000002F + +(001C9C) S_REGISTER: edi, Type: 0x1916, this +(001CAC) S_BPREL32: [00000004], Type: 0x108E, p_dsAction + +(001CC4) S_END + +(001CC8) S_GPROC32: [0001:00014710], Cb: 00000026, Type: 0x1936, LegoOmni::GetCurrPathInfo + Parent: 00000000, End: 00001D34, Next: 00000000 + Debug start: 00000000, Debug end: 00000025 + +(001D0C) S_BPREL32: [00000004], Type: 0x1933, p_path +(001D20) S_BPREL32: [00000008], Type: 0x1934, p_value + +(001D34) S_END + +(001D38) S_GPROC32: [0001:00014740], Cb: 00000018, Type: 0x1917, LegoOmni::CreateBackgroundAudio + Parent: 00000000, End: 00001D90, Next: 00000000 + Debug start: 00000000, Debug end: 00000017 + +(001D80) S_REGISTER: ecx, Type: 0x1916, this + +(001D90) S_END + +(001D94) S_GPROC32: [0001:00014760], Cb: 0000003C, Type: 0x1937, LegoOmni::Start + Parent: 00000000, End: 00001E08, Next: 00000000 + Debug start: 00000005, Debug end: 00000037 + +(001DCC) S_REGISTER: esi, Type: 0x1916, this +(001DDC) S_BPREL32: [00000004], Type: 0x109C, p_dsAction +(001DF4) S_REGISTER: edi, Type: T_LONG(0012), result + +(001E08) S_END + +(001E0C) S_GPROC32: [0001:000147A0], Cb: 00000048, Type: 0x1938, LegoOmni::Notify + Parent: 00000000, End: 00001E8C, Next: 00000000 + Debug start: 00000005, Debug end: 00000043 + +(001E44) S_REGISTER: edi, Type: 0x1916, this +(001E54) S_BPREL32: [00000004], Type: 0x10B7, p_param +(001E68) S_REGISTER: bl, Type: T_UCHAR(0020), isCD +(001E78) S_REGISTER: esi, Type: T_LONG(0012), result + +(001E8C) S_END + +(001E90) S_GPROC32: [0001:000147F0], Cb: 00000010, Type: 0x1917, LegoOmni::StartTimer + Parent: 00000000, End: 00001EDC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(001ECC) S_REGISTER: ecx, Type: 0x1916, this + +(001EDC) S_END + +(001EE0) S_GPROC32: [0001:00014800], Cb: 00000010, Type: 0x1917, LegoOmni::StopTimer + Parent: 00000000, End: 00001F2C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(001F1C) S_REGISTER: ecx, Type: 0x1916, this + +(001F2C) S_END + +(001F30) S_GPROC32: [0001:00014810], Cb: 00000012, Type: 0x1939, Start + Parent: 00000000, End: 00001F78, Next: 00000000 + Debug start: 00000000, Debug end: 00000011 + +(001F60) S_BPREL32: [00000004], Type: 0x109C, p_dsAction + +(001F78) S_END + +(001F7C) S_GPROC32: [0001:00014830], Cb: 00000155, Type: 0x3F21, FUN_100b6e10 + Parent: 00000000, End: 000020DC, Next: 00000000 + Debug start: 00000011, Debug end: 0000014E + +(001FB0) S_BPREL32: [00000004], Type: T_INT4(0074), p_bitmapWidth +(001FCC) S_BPREL32: [00000008], Type: T_INT4(0074), p_bitmapHeight +(001FE8) S_BPREL32: [0000000C], Type: T_INT4(0074), p_videoParamWidth +(002008) S_BPREL32: [00000010], Type: T_INT4(0074), p_videoParamHeight +(002028) S_BPREL32: [00000014], Type: T_32PINT4(0474), p_left +(00203C) S_BPREL32: [00000018], Type: T_32PINT4(0474), p_top +(002050) S_BPREL32: [0000001C], Type: T_32PINT4(0474), p_right +(002064) S_BPREL32: [00000020], Type: T_32PINT4(0474), p_bottom +(00207C) S_BPREL32: [00000024], Type: T_32PINT4(0474), p_width +(002090) S_BPREL32: [00000028], Type: T_32PINT4(0474), p_height +(0020A8) S_BPREL32: [FFFFFFE8], Type: 0x3F36, bitmapRect +(0020C0) S_BPREL32: [FFFFFFD8], Type: 0x3F36, videoParamRect + +(0020DC) S_END + +(0020E0) S_GPROC32: [0001:00014990], Cb: 0000002B, Type: 0x3F33, MxRect32::CopyFrom + Parent: 00000000, End: 00002154, Next: 00000000 + Debug start: 00000001, Debug end: 00000028 + +(00211C) S_REGISTER: ecx, Type: 0x11FB, this +(00212C) S_BPREL32: [00000004], Type: 0x1202, p_point +(002140) S_BPREL32: [00000008], Type: 0x1205, p_size + +(002154) S_END + +(002158) S_GPROC32: [0001:000149C0], Cb: 0000005E, Type: 0x193A, MakeSourceName + Parent: 00000000, End: 000021E0, Next: 00000000 + Debug start: 00000003, Debug end: 0000005A + +(002190) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_output +(0021A8) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_input +(0021BC) S_REGISTER: eax, Type: T_32PRCHAR(0470), extLoc +(0021D0) S_REGISTER: eax, Type: T_32PRCHAR(0470), cln + +(0021E0) S_END + +(0021E4) S_GPROC32: [0001:00014A20], Cb: 00000112, Type: 0x193C, KeyValueStringParse + Parent: 00000000, End: 000022C4, Next: 00000000 + Debug start: 00000019, Debug end: 0000010A + +(002220) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_outputValue +(00223C) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_key +(002250) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_source +(002268) S_REGISTER: bx, Type: T_SHORT(0011), len +(002278) S_BPREL32: [FFFFFFFB], Type: T_UCHAR(0020), didMatch +(002290) S_BPREL32: [FFFFFFFC], Type: T_32PRCHAR(0470), temp +(0022A4) S_REGISTER: esi, Type: T_32PRCHAR(0470), token +(0022B4) S_REGISTER: eax, Type: T_32PRCHAR(0470), cur + +(0022C4) S_END + +(0022C8) S_GPROC32: [0001:00014B40], Cb: 0000000A, Type: 0x193E, SetOmniUserMessage + Parent: 00000000, End: 0000231C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(002304) S_BPREL32: [00000004], Type: 0x18F2, p_userMsg + +(00231C) S_END + +(002320) S_GPROC32: [0001:00014B50], Cb: 000000D2, Type: 0x1941, CreateStreamObject + Parent: 00000000, End: 000023CC, Next: 00000000 + Debug start: 00000005, Debug end: 000000CD + +(00235C) S_BPREL32: [00000004], Type: 0x193F, p_file +(002370) S_BPREL32: [00000008], Type: T_SHORT(0011), p_ofs +(002384) S_BPREL32: [FFFFFFE8], Type: T_32PUCHAR(0420), buf +(002394) S_BPREL32: [FFFFFFEC], Type: 0x15D5, tmpChunk +(0023AC) S_REGISTER: esi, Type: 0x1697, obj +(0023BC) S_REGISTER: edi, Type: T_32PUCHAR(0420), copy + +(0023CC) S_END + +(0023D0) S_GPROC32: [0001:00014C30], Cb: 0000008B, Type: 0x2D1F, MxList::~MxList + Parent: 00000000, End: 00002460, Next: 00000000 + Debug start: 0000002D, Debug end: 0000006A + Flags: Frame Ptr Present + +(002424) S_LABEL32: [0001:00014CB3], $L64965 +(002438) S_LABEL32: [0001:00014CA9], $L64964 +(00244C) S_BPREL32: [FFFFFFF0], Type: 0x2D1E, this + +(002460) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoobjectfactory.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0000A7A0], Cb: 00001D97, Type: 0x1944, LegoObjectFactory::LegoObjectFactory + Parent: 00000000, End: 00000E84, Next: 00000000 + Debug start: 00000022, Debug end: 0000159D + Flags: Frame Ptr Present + +(0000D8) S_LABEL32: [0001:0000C52F], $L55358 +(0000EC) S_LABEL32: [0001:0000C525], $L55357 +(000100) S_LABEL32: [0001:0000C51A], $L55359 +(000114) S_LABEL32: [0001:0000C50F], $L55360 +(000128) S_LABEL32: [0001:0000C504], $L55361 +(00013C) S_LABEL32: [0001:0000C4F9], $L55362 +(000150) S_LABEL32: [0001:0000C4EE], $L55363 +(000164) S_LABEL32: [0001:0000C4E3], $L55364 +(000178) S_LABEL32: [0001:0000C4D8], $L55365 +(00018C) S_LABEL32: [0001:0000C4CD], $L55366 +(0001A0) S_LABEL32: [0001:0000C4C2], $L55367 +(0001B4) S_LABEL32: [0001:0000C4B7], $L55368 +(0001C8) S_LABEL32: [0001:0000C4AC], $L55369 +(0001DC) S_LABEL32: [0001:0000C4A1], $L55370 +(0001F0) S_LABEL32: [0001:0000C496], $L55371 +(000204) S_LABEL32: [0001:0000C48B], $L55372 +(000218) S_LABEL32: [0001:0000C480], $L55373 +(00022C) S_LABEL32: [0001:0000C475], $L55374 +(000240) S_LABEL32: [0001:0000C46A], $L55375 +(000254) S_LABEL32: [0001:0000C45F], $L55376 +(000268) S_LABEL32: [0001:0000C451], $L55377 +(00027C) S_LABEL32: [0001:0000C443], $L55378 +(000290) S_LABEL32: [0001:0000C435], $L55379 +(0002A4) S_LABEL32: [0001:0000C427], $L55380 +(0002B8) S_LABEL32: [0001:0000C419], $L55381 +(0002CC) S_LABEL32: [0001:0000C40B], $L55382 +(0002E0) S_LABEL32: [0001:0000C3FD], $L55383 +(0002F4) S_LABEL32: [0001:0000C3EF], $L55384 +(000308) S_LABEL32: [0001:0000C3E1], $L55385 +(00031C) S_LABEL32: [0001:0000C3D3], $L55386 +(000330) S_LABEL32: [0001:0000C3C5], $L55387 +(000344) S_LABEL32: [0001:0000C3B7], $L55388 +(000358) S_LABEL32: [0001:0000C3A9], $L55389 +(00036C) S_LABEL32: [0001:0000C39B], $L55390 +(000380) S_LABEL32: [0001:0000C38D], $L55391 +(000394) S_LABEL32: [0001:0000C37F], $L55392 +(0003A8) S_LABEL32: [0001:0000C371], $L55393 +(0003BC) S_LABEL32: [0001:0000C363], $L55394 +(0003D0) S_LABEL32: [0001:0000C355], $L55395 +(0003E4) S_LABEL32: [0001:0000C347], $L55396 +(0003F8) S_LABEL32: [0001:0000C339], $L55397 +(00040C) S_LABEL32: [0001:0000C32B], $L55398 +(000420) S_LABEL32: [0001:0000C31D], $L55399 +(000434) S_LABEL32: [0001:0000C30F], $L55400 +(000448) S_LABEL32: [0001:0000C301], $L55401 +(00045C) S_LABEL32: [0001:0000C2F3], $L55402 +(000470) S_LABEL32: [0001:0000C2E5], $L55403 +(000484) S_LABEL32: [0001:0000C2D7], $L55404 +(000498) S_LABEL32: [0001:0000C2C9], $L55405 +(0004AC) S_LABEL32: [0001:0000C2BB], $L55406 +(0004C0) S_LABEL32: [0001:0000C2AD], $L55407 +(0004D4) S_LABEL32: [0001:0000C29F], $L55408 +(0004E8) S_LABEL32: [0001:0000C291], $L55409 +(0004FC) S_LABEL32: [0001:0000C283], $L55410 +(000510) S_LABEL32: [0001:0000C275], $L55411 +(000524) S_LABEL32: [0001:0000C267], $L55412 +(000538) S_LABEL32: [0001:0000C259], $L55413 +(00054C) S_LABEL32: [0001:0000C24B], $L55414 +(000560) S_LABEL32: [0001:0000C23D], $L55415 +(000574) S_LABEL32: [0001:0000C22F], $L55416 +(000588) S_LABEL32: [0001:0000C221], $L55417 +(00059C) S_LABEL32: [0001:0000C213], $L55418 +(0005B0) S_LABEL32: [0001:0000C205], $L55419 +(0005C4) S_LABEL32: [0001:0000C1F7], $L55420 +(0005D8) S_LABEL32: [0001:0000C1E9], $L55421 +(0005EC) S_LABEL32: [0001:0000C1DB], $L55422 +(000600) S_LABEL32: [0001:0000C1CD], $L55423 +(000614) S_LABEL32: [0001:0000C1BF], $L55424 +(000628) S_LABEL32: [0001:0000C1B1], $L55425 +(00063C) S_LABEL32: [0001:0000C1A3], $L55426 +(000650) S_LABEL32: [0001:0000C195], $L55427 +(000664) S_LABEL32: [0001:0000C187], $L55428 +(000678) S_LABEL32: [0001:0000C179], $L55429 +(00068C) S_LABEL32: [0001:0000C16B], $L55430 +(0006A0) S_LABEL32: [0001:0000C15D], $L55431 +(0006B4) S_LABEL32: [0001:0000C14F], $L55432 +(0006C8) S_LABEL32: [0001:0000C141], $L55433 +(0006DC) S_LABEL32: [0001:0000C133], $L55434 +(0006F0) S_LABEL32: [0001:0000C125], $L55435 +(000704) S_LABEL32: [0001:0000C117], $L55436 +(000718) S_LABEL32: [0001:0000C109], $L55437 +(00072C) S_LABEL32: [0001:0000C0FB], $L55438 +(000740) S_LABEL32: [0001:0000C0ED], $L55439 +(000754) S_LABEL32: [0001:0000C0DF], $L55440 +(000768) S_LABEL32: [0001:0000C0D1], $L55441 +(00077C) S_LABEL32: [0001:0000C0C3], $L55442 +(000790) S_LABEL32: [0001:0000C0B5], $L55443 +(0007A4) S_LABEL32: [0001:0000C0A7], $L55444 +(0007B8) S_LABEL32: [0001:0000C09C], $L55445 +(0007CC) S_LABEL32: [0001:0000C091], $L55446 +(0007E0) S_LABEL32: [0001:0000C086], $L55447 +(0007F4) S_LABEL32: [0001:0000C07B], $L55448 +(000808) S_LABEL32: [0001:0000C070], $L55449 +(00081C) S_LABEL32: [0001:0000C065], $L55450 +(000830) S_LABEL32: [0001:0000C05A], $L55451 +(000844) S_LABEL32: [0001:0000C04F], $L55452 +(000858) S_LABEL32: [0001:0000C044], $L55453 +(00086C) S_LABEL32: [0001:0000C039], $L55454 +(000880) S_LABEL32: [0001:0000C02E], $L55455 +(000894) S_LABEL32: [0001:0000C023], $L55456 +(0008A8) S_LABEL32: [0001:0000C018], $L55457 +(0008BC) S_LABEL32: [0001:0000C00D], $L55458 +(0008D0) S_LABEL32: [0001:0000C002], $L55459 +(0008E4) S_LABEL32: [0001:0000BFF7], $L55460 +(0008F8) S_LABEL32: [0001:0000BFEC], $L55461 +(00090C) S_LABEL32: [0001:0000BFE1], $L55462 +(000920) S_LABEL32: [0001:0000BFD6], $L55463 +(000934) S_LABEL32: [0001:0000BFCB], $L55464 +(000948) S_LABEL32: [0001:0000BFC0], $L55465 +(00095C) S_LABEL32: [0001:0000BFB5], $L55466 +(000970) S_LABEL32: [0001:0000BFAA], $L55467 +(000984) S_LABEL32: [0001:0000BF9F], $L55468 +(000998) S_LABEL32: [0001:0000BF94], $L55469 +(0009AC) S_LABEL32: [0001:0000BF89], $L55470 +(0009C0) S_LABEL32: [0001:0000BF7E], $L55471 +(0009D4) S_LABEL32: [0001:0000BF73], $L55472 +(0009E8) S_LABEL32: [0001:0000BF68], $L55473 +(0009FC) S_LABEL32: [0001:0000BF5D], $L55474 +(000A10) S_LABEL32: [0001:0000BF52], $L55475 +(000A24) S_LABEL32: [0001:0000BF47], $L55476 +(000A38) S_LABEL32: [0001:0000BF3C], $L55477 +(000A4C) S_LABEL32: [0001:0000BF31], $L55478 +(000A60) S_LABEL32: [0001:0000BF26], $L55479 +(000A74) S_LABEL32: [0001:0000BF1B], $L55480 +(000A88) S_LABEL32: [0001:0000BF10], $L55481 +(000A9C) S_LABEL32: [0001:0000BF05], $L55482 +(000AB0) S_LABEL32: [0001:0000BEFA], $L55483 +(000AC4) S_LABEL32: [0001:0000BEEF], $L55484 +(000AD8) S_LABEL32: [0001:0000BEE4], $L55485 +(000AEC) S_LABEL32: [0001:0000BED9], $L55486 +(000B00) S_LABEL32: [0001:0000BECE], $L55487 +(000B14) S_LABEL32: [0001:0000BEC3], $L55488 +(000B28) S_LABEL32: [0001:0000BEB8], $L55489 +(000B3C) S_LABEL32: [0001:0000BEAD], $L55490 +(000B50) S_LABEL32: [0001:0000BEA2], $L55491 +(000B64) S_LABEL32: [0001:0000BE97], $L55492 +(000B78) S_LABEL32: [0001:0000BE8C], $L55493 +(000B8C) S_LABEL32: [0001:0000BE81], $L55494 +(000BA0) S_LABEL32: [0001:0000BE76], $L55495 +(000BB4) S_LABEL32: [0001:0000BE6B], $L55496 +(000BC8) S_LABEL32: [0001:0000BE60], $L55497 +(000BDC) S_LABEL32: [0001:0000BE55], $L55498 +(000BF0) S_LABEL32: [0001:0000BE4A], $L55499 +(000C04) S_LABEL32: [0001:0000BE3F], $L55500 +(000C18) S_LABEL32: [0001:0000BE34], $L55501 +(000C2C) S_LABEL32: [0001:0000BE29], $L55502 +(000C40) S_LABEL32: [0001:0000BE21], $L55503 +(000C54) S_LABEL32: [0001:0000BE19], $L55504 +(000C68) S_LABEL32: [0001:0000BE11], $L55505 +(000C7C) S_LABEL32: [0001:0000BE09], $L55506 +(000C90) S_LABEL32: [0001:0000BE01], $L55507 +(000CA4) S_LABEL32: [0001:0000BDF9], $L55508 +(000CB8) S_LABEL32: [0001:0000BDF1], $L55509 +(000CCC) S_LABEL32: [0001:0000BDE9], $L55510 +(000CE0) S_LABEL32: [0001:0000BDE1], $L55511 +(000CF4) S_LABEL32: [0001:0000BDD9], $L55512 +(000D08) S_LABEL32: [0001:0000BDD1], $L55513 +(000D1C) S_LABEL32: [0001:0000BDC9], $L55514 +(000D30) S_LABEL32: [0001:0000BDC1], $L55515 +(000D44) S_LABEL32: [0001:0000BDB9], $L55516 +(000D58) S_LABEL32: [0001:0000BDB1], $L55517 +(000D6C) S_LABEL32: [0001:0000BDA9], $L55518 +(000D80) S_LABEL32: [0001:0000BDA1], $L55519 +(000D94) S_LABEL32: [0001:0000BD99], $L55520 +(000DA8) S_LABEL32: [0001:0000BD91], $L55521 +(000DBC) S_LABEL32: [0001:0000BD89], $L55522 +(000DD0) S_LABEL32: [0001:0000BD81], $L55523 +(000DE4) S_LABEL32: [0001:0000BD79], $L55524 +(000DF8) S_LABEL32: [0001:0000BD71], $L55525 +(000E0C) S_LABEL32: [0001:0000BD69], $L55526 +(000E20) S_LABEL32: [0001:0000BD61], $L55527 +(000E34) S_LABEL32: [0001:0000BD59], $L55528 +(000E48) S_LABEL32: [0001:0000BD51], $L55529 +(000E5C) S_LABEL32: [0001:0000BD49], $L55530 +(000E70) S_BPREL32: [FFFFFFF0], Type: 0x1943, this + +(000E84) S_END + +(000E88) S_GPROC32: [0001:0000C540], Cb: 00000006, Type: 0x1947, MxObjectFactory::ClassName + Parent: 00000000, End: 00000EDC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000ECC) S_REGISTER: ecx, Type: 0x1946, this + +(000EDC) S_END + +(000EE0) S_GPROC32: [0001:0000C550], Cb: 00000072, Type: 0x1948, MxObjectFactory::IsA + Parent: 00000000, End: 00000F40, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(000F1C) S_REGISTER: ecx, Type: 0x1946, this +(000F2C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000F40) S_END + +(000F44) S_GPROC32: [0001:0000C5D0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoObjectFactory::`scalar deleting destructor' + Parent: 00000000, End: 00000FC0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000F9C) S_REGISTER: esi, Type: 0x1943, this +(000FAC) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000FC0) S_END + +(000FC4) S_GPROC32: [0001:0000C5F0], Cb: 00000144, Type: 0x14F3, MxObjectFactory::~MxObjectFactory + Parent: 00000000, End: 0000113C, Next: 00000000 + Debug start: 00000020, Debug end: 000000A1 + Flags: Frame Ptr Present + +(001010) S_LABEL32: [0001:0000C72C], $L55648 +(001024) S_LABEL32: [0001:0000C722], $L55647 +(001038) S_LABEL32: [0001:0000C717], $L55649 +(00104C) S_LABEL32: [0001:0000C70C], $L55650 +(001060) S_LABEL32: [0001:0000C701], $L55651 +(001074) S_LABEL32: [0001:0000C6F6], $L55652 +(001088) S_LABEL32: [0001:0000C6EB], $L55653 +(00109C) S_LABEL32: [0001:0000C6E0], $L55654 +(0010B0) S_LABEL32: [0001:0000C6D5], $L55655 +(0010C4) S_LABEL32: [0001:0000C6CA], $L55656 +(0010D8) S_LABEL32: [0001:0000C6BF], $L55657 +(0010EC) S_LABEL32: [0001:0000C6B4], $L55658 +(001100) S_LABEL32: [0001:0000C6A9], $L55659 +(001114) S_LABEL32: [0001:0000C69E], $L55660 +(001128) S_BPREL32: [FFFFFFF0], Type: 0x14F2, this + +(00113C) S_END + +(001140) S_GPROC32: [0001:0000C740], Cb: 000007D8, Type: 0x1944, LegoObjectFactory::~LegoObjectFactory + Parent: 00000000, End: 00001884, Next: 00000000 + Debug start: 00000020, Debug end: 0000033B + Flags: Frame Ptr Present + +(001190) S_LABEL32: [0001:0000CF10], $L55668 +(0011A4) S_LABEL32: [0001:0000CF06], $L55667 +(0011B8) S_LABEL32: [0001:0000CEFB], $L55669 +(0011CC) S_LABEL32: [0001:0000CEF0], $L55670 +(0011E0) S_LABEL32: [0001:0000CEE5], $L55671 +(0011F4) S_LABEL32: [0001:0000CEDA], $L55672 +(001208) S_LABEL32: [0001:0000CECF], $L55673 +(00121C) S_LABEL32: [0001:0000CEC4], $L55674 +(001230) S_LABEL32: [0001:0000CEB9], $L55675 +(001244) S_LABEL32: [0001:0000CEAE], $L55676 +(001258) S_LABEL32: [0001:0000CEA3], $L55677 +(00126C) S_LABEL32: [0001:0000CE98], $L55678 +(001280) S_LABEL32: [0001:0000CE8D], $L55679 +(001294) S_LABEL32: [0001:0000CE82], $L55680 +(0012A8) S_LABEL32: [0001:0000CE77], $L55681 +(0012BC) S_LABEL32: [0001:0000CE6C], $L55682 +(0012D0) S_LABEL32: [0001:0000CE61], $L55683 +(0012E4) S_LABEL32: [0001:0000CE56], $L55684 +(0012F8) S_LABEL32: [0001:0000CE4B], $L55685 +(00130C) S_LABEL32: [0001:0000CE40], $L55686 +(001320) S_LABEL32: [0001:0000CE32], $L55687 +(001334) S_LABEL32: [0001:0000CE24], $L55688 +(001348) S_LABEL32: [0001:0000CE16], $L55689 +(00135C) S_LABEL32: [0001:0000CE08], $L55690 +(001370) S_LABEL32: [0001:0000CDFA], $L55691 +(001384) S_LABEL32: [0001:0000CDEC], $L55692 +(001398) S_LABEL32: [0001:0000CDDE], $L55693 +(0013AC) S_LABEL32: [0001:0000CDD0], $L55694 +(0013C0) S_LABEL32: [0001:0000CDC2], $L55695 +(0013D4) S_LABEL32: [0001:0000CDB4], $L55696 +(0013E8) S_LABEL32: [0001:0000CDA6], $L55697 +(0013FC) S_LABEL32: [0001:0000CD98], $L55698 +(001410) S_LABEL32: [0001:0000CD8A], $L55699 +(001424) S_LABEL32: [0001:0000CD7C], $L55700 +(001438) S_LABEL32: [0001:0000CD6E], $L55701 +(00144C) S_LABEL32: [0001:0000CD60], $L55702 +(001460) S_LABEL32: [0001:0000CD52], $L55703 +(001474) S_LABEL32: [0001:0000CD44], $L55704 +(001488) S_LABEL32: [0001:0000CD36], $L55705 +(00149C) S_LABEL32: [0001:0000CD28], $L55706 +(0014B0) S_LABEL32: [0001:0000CD1A], $L55707 +(0014C4) S_LABEL32: [0001:0000CD0C], $L55708 +(0014D8) S_LABEL32: [0001:0000CCFE], $L55709 +(0014EC) S_LABEL32: [0001:0000CCF0], $L55710 +(001500) S_LABEL32: [0001:0000CCE2], $L55711 +(001514) S_LABEL32: [0001:0000CCD4], $L55712 +(001528) S_LABEL32: [0001:0000CCC6], $L55713 +(00153C) S_LABEL32: [0001:0000CCB8], $L55714 +(001550) S_LABEL32: [0001:0000CCAA], $L55715 +(001564) S_LABEL32: [0001:0000CC9C], $L55716 +(001578) S_LABEL32: [0001:0000CC8E], $L55717 +(00158C) S_LABEL32: [0001:0000CC80], $L55718 +(0015A0) S_LABEL32: [0001:0000CC72], $L55719 +(0015B4) S_LABEL32: [0001:0000CC64], $L55720 +(0015C8) S_LABEL32: [0001:0000CC56], $L55721 +(0015DC) S_LABEL32: [0001:0000CC48], $L55722 +(0015F0) S_LABEL32: [0001:0000CC3A], $L55723 +(001604) S_LABEL32: [0001:0000CC2C], $L55724 +(001618) S_LABEL32: [0001:0000CC1E], $L55725 +(00162C) S_LABEL32: [0001:0000CC10], $L55726 +(001640) S_LABEL32: [0001:0000CC02], $L55727 +(001654) S_LABEL32: [0001:0000CBF4], $L55728 +(001668) S_LABEL32: [0001:0000CBE6], $L55729 +(00167C) S_LABEL32: [0001:0000CBD8], $L55730 +(001690) S_LABEL32: [0001:0000CBCA], $L55731 +(0016A4) S_LABEL32: [0001:0000CBBC], $L55732 +(0016B8) S_LABEL32: [0001:0000CBAE], $L55733 +(0016CC) S_LABEL32: [0001:0000CBA0], $L55734 +(0016E0) S_LABEL32: [0001:0000CB92], $L55735 +(0016F4) S_LABEL32: [0001:0000CB84], $L55736 +(001708) S_LABEL32: [0001:0000CB76], $L55737 +(00171C) S_LABEL32: [0001:0000CB68], $L55738 +(001730) S_LABEL32: [0001:0000CB5A], $L55739 +(001744) S_LABEL32: [0001:0000CB4C], $L55740 +(001758) S_LABEL32: [0001:0000CB3E], $L55741 +(00176C) S_LABEL32: [0001:0000CB30], $L55742 +(001780) S_LABEL32: [0001:0000CB22], $L55743 +(001794) S_LABEL32: [0001:0000CB14], $L55744 +(0017A8) S_LABEL32: [0001:0000CB06], $L55745 +(0017BC) S_LABEL32: [0001:0000CAF8], $L55746 +(0017D0) S_LABEL32: [0001:0000CAEA], $L55747 +(0017E4) S_LABEL32: [0001:0000CADC], $L55748 +(0017F8) S_LABEL32: [0001:0000CACE], $L55749 +(00180C) S_LABEL32: [0001:0000CAC0], $L55750 +(001820) S_LABEL32: [0001:0000CAB2], $L55751 +(001834) S_LABEL32: [0001:0000CAA4], $L55752 +(001848) S_LABEL32: [0001:0000CA96], $L55753 +(00185C) S_LABEL32: [0001:0000CA88], $L55754 +(001870) S_BPREL32: [FFFFFFF0], Type: 0x1943, this + +(001884) S_END + +(001888) S_GPROC32: [0001:0000CF20], Cb: 00002583, Type: 0x1949, LegoObjectFactory::Create + Parent: 00000000, End: 00002624, Next: 00000000 + Debug start: 00000020, Debug end: 00000104 + Flags: Frame Ptr Present + +(0018CC) S_LABEL32: [0001:0000F49B], $L56020 +(0018E0) S_LABEL32: [0001:0000F491], $L56019 +(0018F4) S_LABEL32: [0001:0000F465], $L56276 +(001908) S_LABEL32: [0001:0000F411], $L56273 +(00191C) S_LABEL32: [0001:0000F3EE], $L56753 +(001930) S_LABEL32: [0001:0000F3E6], $L56755 +(001944) S_LABEL32: [0001:0000F38F], $L56270 +(001958) S_LABEL32: [0001:0000F338], $L56267 +(00196C) S_LABEL32: [0001:0000F2E4], $L56264 +(001980) S_LABEL32: [0001:0000F290], $L56261 +(001994) S_LABEL32: [0001:0000F23C], $L56258 +(0019A8) S_LABEL32: [0001:0000F219], $L56749 +(0019BC) S_LABEL32: [0001:0000F1CC], $L56255 +(0019D0) S_LABEL32: [0001:0000F1A9], $L56745 +(0019E4) S_LABEL32: [0001:0000F15C], $L56252 +(0019F8) S_LABEL32: [0001:0000F139], $L56741 +(001A0C) S_LABEL32: [0001:0000F0EC], $L56249 +(001A20) S_LABEL32: [0001:0000F0C9], $L56737 +(001A34) S_LABEL32: [0001:0000F07C], $L56246 +(001A48) S_LABEL32: [0001:0000F059], $L56733 +(001A5C) S_LABEL32: [0001:0000F00C], $L56243 +(001A70) S_LABEL32: [0001:0000EFE9], $L56729 +(001A84) S_LABEL32: [0001:0000EF9C], $L56240 +(001A98) S_LABEL32: [0001:0000EF48], $L56237 +(001AAC) S_LABEL32: [0001:0000EF25], $L56720 +(001AC0) S_LABEL32: [0001:0000EF1D], $L56722 +(001AD4) S_LABEL32: [0001:0000EEC6], $L56234 +(001AE8) S_LABEL32: [0001:0000EE72], $L56231 +(001AFC) S_LABEL32: [0001:0000EE4F], $L56716 +(001B10) S_LABEL32: [0001:0000EE02], $L56228 +(001B24) S_LABEL32: [0001:0000EDDF], $L56712 +(001B38) S_LABEL32: [0001:0000ED92], $L56225 +(001B4C) S_LABEL32: [0001:0000ED6F], $L56708 +(001B60) S_LABEL32: [0001:0000ED22], $L56222 +(001B74) S_LABEL32: [0001:0000ECFF], $L56699 +(001B88) S_LABEL32: [0001:0000ECF7], $L56701 +(001B9C) S_LABEL32: [0001:0000EC9D], $L56219 +(001BB0) S_LABEL32: [0001:0000EC7A], $L56690 +(001BC4) S_LABEL32: [0001:0000EC72], $L56692 +(001BD8) S_LABEL32: [0001:0000EC18], $L56216 +(001BEC) S_LABEL32: [0001:0000EBC4], $L56213 +(001C00) S_LABEL32: [0001:0000EB6D], $L56210 +(001C14) S_LABEL32: [0001:0000EB19], $L56207 +(001C28) S_LABEL32: [0001:0000EAC2], $L56204 +(001C3C) S_LABEL32: [0001:0000EA6B], $L56201 +(001C50) S_LABEL32: [0001:0000EA14], $L56198 +(001C64) S_LABEL32: [0001:0000E9BD], $L56195 +(001C78) S_LABEL32: [0001:0000E966], $L56192 +(001C8C) S_LABEL32: [0001:0000E912], $L56189 +(001CA0) S_LABEL32: [0001:0000E8EF], $L56686 +(001CB4) S_LABEL32: [0001:0000E89F], $L56186 +(001CC8) S_LABEL32: [0001:0000E87C], $L56762 +(001CDC) S_LABEL32: [0001:0000E874], $L56764 +(001CF0) S_LABEL32: [0001:0000E816], $L56183 +(001D04) S_LABEL32: [0001:0000E7BF], $L56180 +(001D18) S_LABEL32: [0001:0000E79C], $L56622 +(001D2C) S_LABEL32: [0001:0000E794], $L56624 +(001D40) S_LABEL32: [0001:0000E6F2], $L56177 +(001D54) S_LABEL32: [0001:0000E6CF], $L56613 +(001D68) S_LABEL32: [0001:0000E6C7], $L56615 +(001D7C) S_LABEL32: [0001:0000E66D], $L56174 +(001D90) S_LABEL32: [0001:0000E616], $L56171 +(001DA4) S_LABEL32: [0001:0000E5BF], $L56168 +(001DB8) S_LABEL32: [0001:0000E59C], $L56604 +(001DCC) S_LABEL32: [0001:0000E594], $L56606 +(001DE0) S_LABEL32: [0001:0000E53D], $L56165 +(001DF4) S_LABEL32: [0001:0000E4E6], $L56162 +(001E08) S_LABEL32: [0001:0000E48F], $L56159 +(001E1C) S_LABEL32: [0001:0000E43B], $L56156 +(001E30) S_LABEL32: [0001:0000E3E7], $L56153 +(001E44) S_LABEL32: [0001:0000E390], $L56150 +(001E58) S_LABEL32: [0001:0000E33C], $L56147 +(001E6C) S_LABEL32: [0001:0000E319], $L56595 +(001E80) S_LABEL32: [0001:0000E311], $L56597 +(001E94) S_LABEL32: [0001:0000E2BA], $L56144 +(001EA8) S_LABEL32: [0001:0000E297], $L56591 +(001EBC) S_LABEL32: [0001:0000E247], $L56141 +(001ED0) S_LABEL32: [0001:0000E1F0], $L56138 +(001EE4) S_LABEL32: [0001:0000E199], $L56135 +(001EF8) S_LABEL32: [0001:0000E142], $L56132 +(001F0C) S_LABEL32: [0001:0000E0EB], $L56129 +(001F20) S_LABEL32: [0001:0000E0C8], $L56582 +(001F34) S_LABEL32: [0001:0000E0C0], $L56584 +(001F48) S_LABEL32: [0001:0000E069], $L56126 +(001F5C) S_LABEL32: [0001:0000E012], $L56123 +(001F70) S_LABEL32: [0001:0000DFBB], $L56120 +(001F84) S_LABEL32: [0001:0000DF64], $L56117 +(001F98) S_LABEL32: [0001:0000DF0D], $L56114 +(001FAC) S_LABEL32: [0001:0000DEB6], $L56111 +(001FC0) S_LABEL32: [0001:0000DE62], $L56108 +(001FD4) S_LABEL32: [0001:0000DE3F], $L56578 +(001FE8) S_LABEL32: [0001:0000DDEF], $L56105 +(001FFC) S_LABEL32: [0001:0000DD98], $L56102 +(002010) S_LABEL32: [0001:0000DD41], $L56099 +(002024) S_LABEL32: [0001:0000DD1E], $L56556 +(002038) S_LABEL32: [0001:0000DD16], $L56558 +(00204C) S_LABEL32: [0001:0000DD0E], $L56560 +(002060) S_LABEL32: [0001:0000DD06], $L56562 +(002074) S_LABEL32: [0001:0000DC94], $L56096 +(002088) S_LABEL32: [0001:0000DC71], $L56541 +(00209C) S_LABEL32: [0001:0000DC69], $L56543 +(0020B0) S_LABEL32: [0001:0000DC61], $L56545 +(0020C4) S_LABEL32: [0001:0000DBF9], $L56093 +(0020D8) S_LABEL32: [0001:0000DBD6], $L56812 +(0020EC) S_LABEL32: [0001:0000DB41], $L56090 +(002100) S_LABEL32: [0001:0000DB1E], $L56511 +(002114) S_LABEL32: [0001:0000DB16], $L56513 +(002128) S_LABEL32: [0001:0000DB0E], $L56515 +(00213C) S_LABEL32: [0001:0000DB06], $L56517 +(002150) S_LABEL32: [0001:0000DAFE], $L56519 +(002164) S_LABEL32: [0001:0000DA82], $L56087 +(002178) S_LABEL32: [0001:0000DA5F], $L56489 +(00218C) S_LABEL32: [0001:0000DA57], $L56491 +(0021A0) S_LABEL32: [0001:0000DA4F], $L56493 +(0021B4) S_LABEL32: [0001:0000DA47], $L56495 +(0021C8) S_LABEL32: [0001:0000D9D5], $L56084 +(0021DC) S_LABEL32: [0001:0000D97E], $L56081 +(0021F0) S_LABEL32: [0001:0000D92A], $L56078 +(002204) S_LABEL32: [0001:0000D907], $L56442 +(002218) S_LABEL32: [0001:0000D8FF], $L56444 +(00222C) S_LABEL32: [0001:0000D8F7], $L56446 +(002240) S_LABEL32: [0001:0000D8EF], $L56448 +(002254) S_LABEL32: [0001:0000D8E7], $L56450 +(002268) S_LABEL32: [0001:0000D8DF], $L56452 +(00227C) S_LABEL32: [0001:0000D8D4], $L56453 +(002290) S_LABEL32: [0001:0000D81B], $L56075 +(0022A4) S_LABEL32: [0001:0000D7C4], $L56072 +(0022B8) S_LABEL32: [0001:0000D7A1], $L56771 +(0022CC) S_LABEL32: [0001:0000D799], $L56773 +(0022E0) S_LABEL32: [0001:0000D791], $L56775 +(0022F4) S_LABEL32: [0001:0000D786], $L56776 +(002308) S_LABEL32: [0001:0000D6F9], $L56069 +(00231C) S_LABEL32: [0001:0000D6D6], $L56791 +(002330) S_LABEL32: [0001:0000D6CE], $L56794 +(002344) S_LABEL32: [0001:0000D6C6], $L56796 +(002358) S_LABEL32: [0001:0000D6BB], $L56797 +(00236C) S_LABEL32: [0001:0000D6B0], $L56792 +(002380) S_LABEL32: [0001:0000D614], $L56066 +(002394) S_LABEL32: [0001:0000D5C3], $L56063 +(0023A8) S_LABEL32: [0001:0000D5A0], $L56422 +(0023BC) S_LABEL32: [0001:0000D598], $L56424 +(0023D0) S_LABEL32: [0001:0000D590], $L56426 +(0023E4) S_LABEL32: [0001:0000D585], $L56427 +(0023F8) S_LABEL32: [0001:0000D502], $L56060 +(00240C) S_LABEL32: [0001:0000D4B1], $L56057 +(002420) S_LABEL32: [0001:0000D460], $L56054 +(002434) S_LABEL32: [0001:0000D43D], $L56418 +(002448) S_LABEL32: [0001:0000D3F3], $L56051 +(00245C) S_LABEL32: [0001:0000D3A2], $L56048 +(002470) S_LABEL32: [0001:0000D351], $L56045 +(002484) S_LABEL32: [0001:0000D300], $L56042 +(002498) S_LABEL32: [0001:0000D2AC], $L56039 +(0024AC) S_LABEL32: [0001:0000D25B], $L56036 +(0024C0) S_LABEL32: [0001:0000D238], $L56414 +(0024D4) S_LABEL32: [0001:0000D1EE], $L56033 +(0024E8) S_LABEL32: [0001:0000D19D], $L56030 +(0024FC) S_LABEL32: [0001:0000D14C], $L56027 +(002510) S_LABEL32: [0001:0000D0F8], $L56024 +(002524) S_LABEL32: [0001:0000D0D5], $L56394 +(002538) S_LABEL32: [0001:0000D0CD], $L56396 +(00254C) S_LABEL32: [0001:0000D0C5], $L56398 +(002560) S_LABEL32: [0001:0000D0BA], $L56399 +(002574) S_LABEL32: [0001:0000D037], $L56021 +(002588) S_LABEL32: [0001:0000D006], $L56366 +(00259C) S_LABEL32: [0001:0000CFFE], $L56368 +(0025B0) S_LABEL32: [0001:0000CFF6], $L56370 +(0025C4) S_LABEL32: [0001:0000CFEE], $L56372 +(0025D8) S_LABEL32: [0001:0000CFE3], $L56373 +(0025EC) S_REGISTER: esi, Type: 0x1943, this +(0025FC) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_name +(002610) S_BPREL32: [FFFFFFE8], Type: 0x4E96, atom + +(002624) S_END + +(002628) S_GPROC32: [0001:0000F4B0], Cb: 00000012, Type: 0x10E2, Vector2Impl::Vector2Impl + Parent: 00000000, End: 0000268C, Next: 00000000 + Debug start: 00000000, Debug end: 0000000F + +(002668) S_REGISTER: ecx, Type: 0x10E0, this +(002678) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data + +(00268C) S_END + +(002690) S_GPROC32: [0001:0000F4D0], Cb: 00000006, Type: 0x183C, LegoWorld::ClassName + Parent: 00000000, End: 000026DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0026CC) S_REGISTER: ecx, Type: 0x183B, this + +(0026DC) S_END + +(0026E0) S_GPROC32: [0001:0000F4E0], Cb: 000000D6, Type: 0x183D, LegoWorld::IsA + Parent: 00000000, End: 0000273C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(002718) S_REGISTER: ecx, Type: 0x183B, this +(002728) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00273C) S_END + +(002740) S_GPROC32: [0001:0000F5C0], Cb: 00000006, Type: 0x18E2, LegoPathActor::ClassName + Parent: 00000000, End: 00002790, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002780) S_REGISTER: ecx, Type: 0x18E1, this + +(002790) S_END + +(002794) S_GPROC32: [0001:0000F5D0], Cb: 0000010A, Type: 0x18E3, LegoPathActor::IsA + Parent: 00000000, End: 000027F4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0027D0) S_REGISTER: ecx, Type: 0x18E1, this +(0027E0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0027F4) S_END + +(0027F8) S_GPROC32: [0001:0000F6E0], Cb: 00000006, Type: 0x2990, HelicopterState::ClassName + Parent: 00000000, End: 0000284C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00283C) S_REGISTER: ecx, Type: 0x298F, this + +(00284C) S_END + +(002850) S_GPROC32: [0001:0000F6F0], Cb: 000000A2, Type: 0x2991, HelicopterState::IsA + Parent: 00000000, End: 000028B0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00288C) S_REGISTER: ecx, Type: 0x298F, this +(00289C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0028B0) S_END + +(0028B4) S_GPROC32: [0001:0000F7A0], Cb: 00000006, Type: 0x3D0E, Lego3DWavePresenter::ClassName + Parent: 00000000, End: 0000290C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0028FC) S_REGISTER: ecx, Type: 0x3D0D, this + +(00290C) S_END + +(002910) S_GPROC32: [0001:0000F7B0], Cb: 00000172, Type: 0x3D0F, Lego3DWavePresenter::IsA + Parent: 00000000, End: 00002974, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(002950) S_REGISTER: ecx, Type: 0x3D0D, this +(002960) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002974) S_END + +(002978) S_GPROC32: [0001:0000F930], Cb: 00000006, Type: 0x3D13, LegoRaceActor::ClassName + Parent: 00000000, End: 000029C8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0029B8) S_REGISTER: ecx, Type: 0x3D12, this + +(0029C8) S_END + +(0029CC) S_GPROC32: [0001:0000F940], Cb: 0000013E, Type: 0x3D14, LegoRaceActor::IsA + Parent: 00000000, End: 00002A2C, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(002A08) S_REGISTER: ecx, Type: 0x3D12, this +(002A18) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002A2C) S_END + +(002A30) S_GPROC32: [0001:0000FA80], Cb: 00000006, Type: 0x3D18, LegoCarRaceActor::ClassName + Parent: 00000000, End: 00002A84, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002A74) S_REGISTER: ecx, Type: 0x3D17, this + +(002A84) S_END + +(002A88) S_GPROC32: [0001:0000FA90], Cb: 00000172, Type: 0x3D19, LegoCarRaceActor::IsA + Parent: 00000000, End: 00002AEC, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(002AC8) S_REGISTER: ecx, Type: 0x3D17, this +(002AD8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002AEC) S_END + +(002AF0) S_GPROC32: [0001:0000FC10], Cb: 00000006, Type: 0x3D1D, LegoAct2State::ClassName + Parent: 00000000, End: 00002B40, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002B30) S_REGISTER: ecx, Type: 0x3D1C, this + +(002B40) S_END + +(002B44) S_GPROC32: [0001:0000FC20], Cb: 000000A2, Type: 0x3D1E, LegoAct2State::IsA + Parent: 00000000, End: 00002BA4, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(002B80) S_REGISTER: ecx, Type: 0x3D1C, this +(002B90) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002BA4) S_END + +(002BA8) S_GPROC32: [0001:0000FCD0], Cb: 00000006, Type: 0x1EF1, LegoActionControlPresenter::ClassName + Parent: 00000000, End: 00002C08, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002BF8) S_REGISTER: ecx, Type: 0x1EF0, this + +(002C08) S_END + +(002C0C) S_GPROC32: [0001:0000FCE0], Cb: 000000D6, Type: 0x1EF2, LegoActionControlPresenter::IsA + Parent: 00000000, End: 00002C78, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(002C54) S_REGISTER: ecx, Type: 0x1EF0, this +(002C64) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002C78) S_END + +(002C7C) S_GPROC32: [0001:0000FDC0], Cb: 00000089, Type: T_NOTYPE(0000), LegoActionControlPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00002D40, Next: 00000000 + Debug start: 00000021, Debug end: 0000005F + Flags: Frame Ptr Present + +(002CDC) S_LABEL32: [0001:0000FE41], $L57764 +(002CF0) S_LABEL32: [0001:0000FE37], $L57762 +(002D04) S_LABEL32: [0001:0000FE2C], $L57765 +(002D18) S_BPREL32: [FFFFFFF0], Type: 0x1A5A, this +(002D2C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(002D40) S_END + +(002D44) S_GPROC32: [0001:0000FE50], Cb: 00000006, Type: 0x3D22, LegoActorPresenter::ClassName + Parent: 00000000, End: 00002D9C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002D8C) S_REGISTER: ecx, Type: 0x3D21, this + +(002D9C) S_END + +(002DA0) S_GPROC32: [0001:0000FE60], Cb: 0000010A, Type: 0x3D23, LegoActorPresenter::IsA + Parent: 00000000, End: 00002E04, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(002DE0) S_REGISTER: ecx, Type: 0x3D21, this +(002DF0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002E04) S_END + +(002E08) S_GPROC32: [0001:0000FF70], Cb: 00000006, Type: 0x3D27, LegoJetskiRaceActor::ClassName + Parent: 00000000, End: 00002E60, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002E50) S_REGISTER: ecx, Type: 0x3D26, this + +(002E60) S_END + +(002E64) S_GPROC32: [0001:0000FF80], Cb: 000001A6, Type: 0x3D28, LegoJetskiRaceActor::IsA + Parent: 00000000, End: 00002EC8, Next: 00000000 + Debug start: 00000008, Debug end: 000001A2 + +(002EA4) S_REGISTER: ecx, Type: 0x3D26, this +(002EB4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002EC8) S_END + +(002ECC) S_GPROC32: [0001:00010130], Cb: 00000006, Type: 0x3D2C, LegoJetski::ClassName + Parent: 00000000, End: 00002F1C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002F0C) S_REGISTER: ecx, Type: 0x3D2B, this + +(002F1C) S_END + +(002F20) S_GPROC32: [0001:00010140], Cb: 000001DA, Type: 0x3D2D, LegoJetski::IsA + Parent: 00000000, End: 00002F7C, Next: 00000000 + Debug start: 00000002, Debug end: 000001D6 + +(002F58) S_REGISTER: ecx, Type: 0x3D2B, this +(002F68) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(002F7C) S_END + +(002F80) S_GPROC32: [0001:00010320], Cb: 00000006, Type: 0x2182, LegoModelPresenter::ClassName + Parent: 00000000, End: 00002FD8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(002FC8) S_REGISTER: ecx, Type: 0x2181, this + +(002FD8) S_END + +(002FDC) S_GPROC32: [0001:00010330], Cb: 0000010A, Type: 0x2183, LegoModelPresenter::IsA + Parent: 00000000, End: 00003040, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(00301C) S_REGISTER: ecx, Type: 0x2181, this +(00302C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003040) S_END + +(003044) S_GPROC32: [0001:00010440], Cb: 00000006, Type: 0x22F4, LegoPartPresenter::ClassName + Parent: 00000000, End: 00003098, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003088) S_REGISTER: ecx, Type: 0x22F3, this + +(003098) S_END + +(00309C) S_GPROC32: [0001:00010450], Cb: 000000D6, Type: 0x22F5, LegoPartPresenter::IsA + Parent: 00000000, End: 00003100, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0030DC) S_REGISTER: ecx, Type: 0x22F3, this +(0030EC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003100) S_END + +(003104) S_GPROC32: [0001:00010530], Cb: 00000006, Type: 0x3D31, LegoRaceCar::ClassName + Parent: 00000000, End: 00003154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003144) S_REGISTER: ecx, Type: 0x3D30, this + +(003154) S_END + +(003158) S_GPROC32: [0001:00010540], Cb: 000001A6, Type: 0x3D32, LegoRaceCar::IsA + Parent: 00000000, End: 000031B4, Next: 00000000 + Debug start: 00000008, Debug end: 000001A2 + +(003190) S_REGISTER: ecx, Type: 0x3D30, this +(0031A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0031B4) S_END + +(0031B8) S_GPROC32: [0001:000106F0], Cb: 00000006, Type: 0x1873, LegoTexturePresenter::ClassName + Parent: 00000000, End: 00003210, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003200) S_REGISTER: ecx, Type: 0x1872, this + +(003210) S_END + +(003214) S_GPROC32: [0001:00010700], Cb: 000000D6, Type: 0x1874, LegoTexturePresenter::IsA + Parent: 00000000, End: 0000327C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(003258) S_REGISTER: ecx, Type: 0x1872, this +(003268) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00327C) S_END + +(003280) S_GPROC32: [0001:000107E0], Cb: 00000006, Type: 0x11BB, IsleActor::ClassName + Parent: 00000000, End: 000032CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0032BC) S_REGISTER: ecx, Type: 0x11BA, this + +(0032CC) S_END + +(0032D0) S_GPROC32: [0001:000107F0], Cb: 0000010A, Type: 0x11BC, IsleActor::IsA + Parent: 00000000, End: 0000332C, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003308) S_REGISTER: ecx, Type: 0x11BA, this +(003318) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00332C) S_END + +(003330) S_GPROC32: [0001:00010900], Cb: 00000006, Type: 0x274C, PizzaMissionState::ClassName + Parent: 00000000, End: 00003384, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003374) S_REGISTER: ecx, Type: 0x274B, this + +(003384) S_END + +(003388) S_GPROC32: [0001:00010910], Cb: 000000A2, Type: 0x274D, PizzaMissionState::IsA + Parent: 00000000, End: 000033EC, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0033C8) S_REGISTER: ecx, Type: 0x274B, this +(0033D8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0033EC) S_END + +(0033F0) S_GPROC32: [0001:000109C0], Cb: 00000006, Type: 0x27B4, ScoreState::ClassName + Parent: 00000000, End: 00003440, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003430) S_REGISTER: ecx, Type: 0x27B3, this + +(003440) S_END + +(003444) S_GPROC32: [0001:000109D0], Cb: 000000A2, Type: 0x27B5, ScoreState::IsA + Parent: 00000000, End: 000034A0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00347C) S_REGISTER: ecx, Type: 0x27B3, this +(00348C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0034A0) S_END + +(0034A4) S_GPROC32: [0001:00010A80], Cb: 00000006, Type: 0x1C32, Act2PoliceStation::ClassName + Parent: 00000000, End: 000034F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0034E8) S_REGISTER: ecx, Type: 0x1C31, this + +(0034F8) S_END + +(0034FC) S_GPROC32: [0001:00010A90], Cb: 000000D6, Type: 0x1C33, Act2PoliceStation::IsA + Parent: 00000000, End: 00003560, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(00353C) S_REGISTER: ecx, Type: 0x1C31, this +(00354C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003560) S_END + +(003564) S_GPROC32: [0001:00010B70], Cb: 00000006, Type: 0x1D16, Act3State::ClassName + Parent: 00000000, End: 000035B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0035A0) S_REGISTER: ecx, Type: 0x1D15, this + +(0035B0) S_END + +(0035B4) S_GPROC32: [0001:00010B80], Cb: 000000A2, Type: 0x1D17, Act3State::IsA + Parent: 00000000, End: 00003610, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0035EC) S_REGISTER: ecx, Type: 0x1D15, this +(0035FC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003610) S_END + +(003614) S_GPROC32: [0001:00010C30], Cb: 00000061, Type: T_NOTYPE(0000), Act3State::`scalar deleting destructor' + Parent: 00000000, End: 000036B4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(003664) S_LABEL32: [0001:00010C89], $L58732 +(003678) S_LABEL32: [0001:00010C7F], $L58730 +(00368C) S_BPREL32: [FFFFFFF0], Type: 0x1B16, this +(0036A0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0036B4) S_END + +(0036B8) S_GPROC32: [0001:00010CA0], Cb: 00000006, Type: 0x3D36, Doors::ClassName + Parent: 00000000, End: 00003700, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0036F0) S_REGISTER: ecx, Type: 0x3D35, this + +(003700) S_END + +(003704) S_GPROC32: [0001:00010CB0], Cb: 0000013E, Type: 0x3D37, Doors::IsA + Parent: 00000000, End: 0000375C, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(003738) S_REGISTER: ecx, Type: 0x3D35, this +(003748) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00375C) S_END + +(003760) S_GPROC32: [0001:00010DF0], Cb: 00000006, Type: 0x4E99, Act3Actor::ClassName + Parent: 00000000, End: 000037AC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00379C) S_REGISTER: ecx, Type: 0x4E98, this + +(0037AC) S_END + +(0037B0) S_GPROC32: [0001:00010E00], Cb: 00000006, Type: 0x3D3E, Act3Shark::ClassName + Parent: 00000000, End: 000037FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0037EC) S_REGISTER: ecx, Type: 0x3D3D, this + +(0037FC) S_END + +(003800) S_GPROC32: [0001:00010E10], Cb: 00000006, Type: 0x1D2B, BeachHouseEntity::ClassName + Parent: 00000000, End: 00003854, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003844) S_REGISTER: ecx, Type: 0x1D2A, this + +(003854) S_END + +(003858) S_GPROC32: [0001:00010E20], Cb: 0000010A, Type: 0x1D2C, BeachHouseEntity::IsA + Parent: 00000000, End: 000038BC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003898) S_REGISTER: ecx, Type: 0x1D2A, this +(0038A8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0038BC) S_END + +(0038C0) S_GPROC32: [0001:00010F30], Cb: 00000006, Type: 0x3D42, BumpBouy::ClassName + Parent: 00000000, End: 0000390C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0038FC) S_REGISTER: ecx, Type: 0x3D41, this + +(00390C) S_END + +(003910) S_GPROC32: [0001:00010F40], Cb: 0000013E, Type: 0x3D43, BumpBouy::IsA + Parent: 00000000, End: 0000396C, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(003948) S_REGISTER: ecx, Type: 0x3D41, this +(003958) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00396C) S_END + +(003970) S_GPROC32: [0001:00011080], Cb: 00000006, Type: 0x3D47, CarRaceState::ClassName + Parent: 00000000, End: 000039C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0039B0) S_REGISTER: ecx, Type: 0x3D46, this + +(0039C0) S_END + +(0039C4) S_GPROC32: [0001:00011090], Cb: 000000D6, Type: 0x3D48, CarRaceState::IsA + Parent: 00000000, End: 00003A24, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(003A00) S_REGISTER: ecx, Type: 0x3D46, this +(003A10) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003A24) S_END + +(003A28) S_GPROC32: [0001:00011170], Cb: 00000006, Type: 0x3D4C, GasStationEntity::ClassName + Parent: 00000000, End: 00003A7C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003A6C) S_REGISTER: ecx, Type: 0x3D4B, this + +(003A7C) S_END + +(003A80) S_GPROC32: [0001:00011180], Cb: 0000010A, Type: 0x3D4D, GasStationEntity::IsA + Parent: 00000000, End: 00003AE4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003AC0) S_REGISTER: ecx, Type: 0x3D4B, this +(003AD0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003AE4) S_END + +(003AE8) S_GPROC32: [0001:00011290], Cb: 00000006, Type: 0x3D51, HospitalEntity::ClassName + Parent: 00000000, End: 00003B3C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003B2C) S_REGISTER: ecx, Type: 0x3D50, this + +(003B3C) S_END + +(003B40) S_GPROC32: [0001:000112A0], Cb: 0000010A, Type: 0x3D52, HospitalEntity::IsA + Parent: 00000000, End: 00003BA0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003B7C) S_REGISTER: ecx, Type: 0x3D50, this +(003B8C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003BA0) S_END + +(003BA4) S_GPROC32: [0001:000113B0], Cb: 00000006, Type: 0x3D56, InfoCenterEntity::ClassName + Parent: 00000000, End: 00003BF8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003BE8) S_REGISTER: ecx, Type: 0x3D55, this + +(003BF8) S_END + +(003BFC) S_GPROC32: [0001:000113C0], Cb: 0000010A, Type: 0x3D57, InfoCenterEntity::IsA + Parent: 00000000, End: 00003C60, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003C3C) S_REGISTER: ecx, Type: 0x3D55, this +(003C4C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003C60) S_END + +(003C64) S_GPROC32: [0001:000114D0], Cb: 00000006, Type: 0x3D5B, JetskiRaceState::ClassName + Parent: 00000000, End: 00003CB8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003CA8) S_REGISTER: ecx, Type: 0x3D5A, this + +(003CB8) S_END + +(003CBC) S_GPROC32: [0001:000114E0], Cb: 000000D6, Type: 0x3D5C, JetskiRaceState::IsA + Parent: 00000000, End: 00003D1C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(003CF8) S_REGISTER: ecx, Type: 0x3D5A, this +(003D08) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003D1C) S_END + +(003D20) S_GPROC32: [0001:000115C0], Cb: 00000006, Type: 0x344D, Pizzeria::ClassName + Parent: 00000000, End: 00003D6C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003D5C) S_REGISTER: ecx, Type: 0x344C, this + +(003D6C) S_END + +(003D70) S_GPROC32: [0001:000115D0], Cb: 0000013E, Type: 0x344E, Pizzeria::IsA + Parent: 00000000, End: 00003DCC, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(003DA8) S_REGISTER: ecx, Type: 0x344C, this +(003DB8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003DCC) S_END + +(003DD0) S_GPROC32: [0001:00011710], Cb: 00000006, Type: 0x3D60, PoliceEntity::ClassName + Parent: 00000000, End: 00003E20, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003E10) S_REGISTER: ecx, Type: 0x3D5F, this + +(003E20) S_END + +(003E24) S_GPROC32: [0001:00011720], Cb: 0000010A, Type: 0x3D61, PoliceEntity::IsA + Parent: 00000000, End: 00003E84, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(003E60) S_REGISTER: ecx, Type: 0x3D5F, this +(003E70) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003E84) S_END + +(003E88) S_GPROC32: [0001:00011830], Cb: 00000006, Type: 0x1EBF, JukeBoxState::ClassName + Parent: 00000000, End: 00003ED8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(003EC8) S_REGISTER: ecx, Type: 0x1EBE, this + +(003ED8) S_END + +(003EDC) S_GPROC32: [0001:00011840], Cb: 000000A2, Type: 0x1EC0, JukeBoxState::IsA + Parent: 00000000, End: 00003F3C, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(003F18) S_REGISTER: ecx, Type: 0x1EBE, this +(003F28) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(003F3C) S_END + +(003F40) S_GPROC32: [0001:000118F0], Cb: 00000061, Type: T_NOTYPE(0000), LegoModelPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00003FE8, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(003F98) S_LABEL32: [0001:00011949], $L59489 +(003FAC) S_LABEL32: [0001:0001193F], $L59487 +(003FC0) S_BPREL32: [FFFFFFF0], Type: 0x3D62, this +(003FD4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(003FE8) S_END + +(003FEC) S_GPROC32: [0001:00011960], Cb: 0000001E, Type: T_NOTYPE(0000), LegoTexturePresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000406C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(004048) S_REGISTER: esi, Type: 0x186F, this +(004058) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00406C) S_END + +(004070) S_GPROC32: [0001:00011980], Cb: 00000061, Type: T_NOTYPE(0000), LegoActorPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00004118, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0040C8) S_LABEL32: [0001:000119D9], $L59500 +(0040DC) S_LABEL32: [0001:000119CF], $L59498 +(0040F0) S_BPREL32: [FFFFFFF0], Type: 0x3D63, this +(004104) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004118) S_END + +(00411C) S_GPROC32: [0001:000119F0], Cb: 00000061, Type: T_NOTYPE(0000), LegoPartPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000041C4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004174) S_LABEL32: [0001:00011A49], $L59526 +(004188) S_LABEL32: [0001:00011A3F], $L59524 +(00419C) S_BPREL32: [FFFFFFF0], Type: 0x3D64, this +(0041B0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0041C4) S_END + +(0041C8) S_GPROC32: [0001:00011A60], Cb: 00000061, Type: T_NOTYPE(0000), Lego3DWavePresenter::`scalar deleting destructor' + Parent: 00000000, End: 00004274, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004224) S_LABEL32: [0001:00011AB9], $L59535 +(004238) S_LABEL32: [0001:00011AAF], $L59533 +(00424C) S_BPREL32: [FFFFFFF0], Type: 0x3D65, this +(004260) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004274) S_END + +(004278) S_GPROC32: [0001:00011AD0], Cb: 00000061, Type: T_NOTYPE(0000), LegoRaceCar::`scalar deleting destructor' + Parent: 00000000, End: 0000431C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0042CC) S_LABEL32: [0001:00011B29], $L59544 +(0042E0) S_LABEL32: [0001:00011B1F], $L59542 +(0042F4) S_BPREL32: [FFFFFFF0], Type: 0x3D66, this +(004308) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00431C) S_END + +(004320) S_GPROC32: [0001:00011B40], Cb: 00000049, Type: 0x3D68, LegoCarRaceActor::~LegoCarRaceActor + Parent: 00000000, End: 000043A8, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(00436C) S_LABEL32: [0001:00011B81], $L59553 +(004380) S_LABEL32: [0001:00011B77], $L59552 +(004394) S_BPREL32: [FFFFFFF0], Type: 0x3D67, this + +(0043A8) S_END + +(0043AC) S_GPROC32: [0001:00011B90], Cb: 00000061, Type: T_NOTYPE(0000), LegoJetski::`scalar deleting destructor' + Parent: 00000000, End: 0000444C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0043FC) S_LABEL32: [0001:00011BE9], $L59561 +(004410) S_LABEL32: [0001:00011BDF], $L59559 +(004424) S_BPREL32: [FFFFFFF0], Type: 0x3D69, this +(004438) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00444C) S_END + +(004450) S_GPROC32: [0001:00011C00], Cb: 00000049, Type: 0x3D6B, LegoJetskiRaceActor::~LegoJetskiRaceActor + Parent: 00000000, End: 000044E0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0044A4) S_LABEL32: [0001:00011C41], $L59570 +(0044B8) S_LABEL32: [0001:00011C37], $L59569 +(0044CC) S_BPREL32: [FFFFFFF0], Type: 0x3D6A, this + +(0044E0) S_END + +(0044E4) S_GPROC32: [0001:00011C50], Cb: 00000061, Type: T_NOTYPE(0000), LegoCarRaceActor::`scalar deleting destructor' + Parent: 00000000, End: 0000458C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00453C) S_LABEL32: [0001:00011CA9], $L59578 +(004550) S_LABEL32: [0001:00011C9F], $L59576 +(004564) S_BPREL32: [FFFFFFF0], Type: 0x3D67, this +(004578) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00458C) S_END + +(004590) S_GPROC32: [0001:00011CC0], Cb: 00000049, Type: 0x3D6D, LegoRaceActor::~LegoRaceActor + Parent: 00000000, End: 00004614, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0045D8) S_LABEL32: [0001:00011D01], $L59587 +(0045EC) S_LABEL32: [0001:00011CF7], $L59586 +(004600) S_BPREL32: [FFFFFFF0], Type: 0x3D6C, this + +(004614) S_END + +(004618) S_GPROC32: [0001:00011D10], Cb: 00000061, Type: T_NOTYPE(0000), LegoJetskiRaceActor::`scalar deleting destructor' + Parent: 00000000, End: 000046C4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004674) S_LABEL32: [0001:00011D69], $L59595 +(004688) S_LABEL32: [0001:00011D5F], $L59593 +(00469C) S_BPREL32: [FFFFFFF0], Type: 0x3D6A, this +(0046B0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0046C4) S_END + +(0046C8) S_GPROC32: [0001:00011D80], Cb: 00000061, Type: T_NOTYPE(0000), LegoAnimActor::`scalar deleting destructor' + Parent: 00000000, End: 0000476C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00471C) S_LABEL32: [0001:00011DD9], $L59604 +(004730) S_LABEL32: [0001:00011DCF], $L59602 +(004744) S_BPREL32: [FFFFFFF0], Type: 0x3D6F, this +(004758) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00476C) S_END + +(004770) S_GPROC32: [0001:00011DF0], Cb: 00000061, Type: T_NOTYPE(0000), ScoreState::`scalar deleting destructor' + Parent: 00000000, End: 00004810, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0047C0) S_LABEL32: [0001:00011E49], $L59613 +(0047D4) S_LABEL32: [0001:00011E3F], $L59611 +(0047E8) S_BPREL32: [FFFFFFF0], Type: 0x1062, this +(0047FC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004810) S_END + +(004814) S_GPROC32: [0001:00011E60], Cb: 00000061, Type: T_NOTYPE(0000), LegoAct2::`scalar deleting destructor' + Parent: 00000000, End: 000048B4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004864) S_LABEL32: [0001:00011EB9], $L59622 +(004878) S_LABEL32: [0001:00011EAF], $L59620 +(00488C) S_BPREL32: [FFFFFFF0], Type: 0x3D71, this +(0048A0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0048B4) S_END + +(0048B8) S_GPROC32: [0001:00011ED0], Cb: 00000061, Type: T_NOTYPE(0000), LegoAct2State::`scalar deleting destructor' + Parent: 00000000, End: 0000495C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00490C) S_LABEL32: [0001:00011F29], $L59631 +(004920) S_LABEL32: [0001:00011F1F], $L59629 +(004934) S_BPREL32: [FFFFFFF0], Type: 0x3D72, this +(004948) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00495C) S_END + +(004960) S_GPROC32: [0001:00011F40], Cb: 00000061, Type: T_NOTYPE(0000), HelicopterState::`scalar deleting destructor' + Parent: 00000000, End: 00004A08, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0049B8) S_LABEL32: [0001:00011F99], $L59640 +(0049CC) S_LABEL32: [0001:00011F8F], $L59638 +(0049E0) S_BPREL32: [FFFFFFF0], Type: 0x2992, this +(0049F4) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004A08) S_END + +(004A0C) S_GPROC32: [0001:00011FB0], Cb: 00000061, Type: T_NOTYPE(0000), PizzaMissionState::`scalar deleting destructor' + Parent: 00000000, End: 00004AB4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004A64) S_LABEL32: [0001:00012009], $L59649 +(004A78) S_LABEL32: [0001:00011FFF], $L59647 +(004A8C) S_BPREL32: [FFFFFFF0], Type: 0x11B3, this +(004AA0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004AB4) S_END + +(004AB8) S_GPROC32: [0001:00012020], Cb: 00000061, Type: T_NOTYPE(0000), Act2PoliceStation::`scalar deleting destructor' + Parent: 00000000, End: 00004B60, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004B10) S_LABEL32: [0001:00012079], $L59658 +(004B24) S_LABEL32: [0001:0001206F], $L59656 +(004B38) S_BPREL32: [FFFFFFF0], Type: 0x1B20, this +(004B4C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004B60) S_END + +(004B64) S_GPROC32: [0001:00012090], Cb: 00000061, Type: T_NOTYPE(0000), Doors::`scalar deleting destructor' + Parent: 00000000, End: 00004C00, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004BB0) S_LABEL32: [0001:000120E9], $L59667 +(004BC4) S_LABEL32: [0001:000120DF], $L59665 +(004BD8) S_BPREL32: [FFFFFFF0], Type: 0x3D73, this +(004BEC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004C00) S_END + +(004C04) S_GPROC32: [0001:00012100], Cb: 00000061, Type: T_NOTYPE(0000), Act3Shark::`scalar deleting destructor' + Parent: 00000000, End: 00004CA4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004C54) S_LABEL32: [0001:00012159], $L59676 +(004C68) S_LABEL32: [0001:0001214F], $L59674 +(004C7C) S_BPREL32: [FFFFFFF0], Type: 0x3D74, this +(004C90) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004CA4) S_END + +(004CA8) S_GPROC32: [0001:00012170], Cb: 00000049, Type: 0x3D75, LegoAnimActor::~LegoAnimActor + Parent: 00000000, End: 00004D2C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(004CF0) S_LABEL32: [0001:000121B1], $L59685 +(004D04) S_LABEL32: [0001:000121A7], $L59684 +(004D18) S_BPREL32: [FFFFFFF0], Type: 0x3D6F, this + +(004D2C) S_END + +(004D30) S_GPROC32: [0001:000121C0], Cb: 00000061, Type: T_NOTYPE(0000), BumpBouy::`scalar deleting destructor' + Parent: 00000000, End: 00004DD0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004D80) S_LABEL32: [0001:00012219], $L59693 +(004D94) S_LABEL32: [0001:0001220F], $L59691 +(004DA8) S_BPREL32: [FFFFFFF0], Type: 0x3D76, this +(004DBC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004DD0) S_END + +(004DD4) S_GPROC32: [0001:00012230], Cb: 00000061, Type: T_NOTYPE(0000), Act3Actor::`scalar deleting destructor' + Parent: 00000000, End: 00004E74, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004E24) S_LABEL32: [0001:00012289], $L59702 +(004E38) S_LABEL32: [0001:0001227F], $L59700 +(004E4C) S_BPREL32: [FFFFFFF0], Type: 0x3D39, this +(004E60) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004E74) S_END + +(004E78) S_GPROC32: [0001:000122A0], Cb: 00000061, Type: T_NOTYPE(0000), JetskiRaceState::`scalar deleting destructor' + Parent: 00000000, End: 00004F20, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004ED0) S_LABEL32: [0001:000122F9], $L59711 +(004EE4) S_LABEL32: [0001:000122EF], $L59709 +(004EF8) S_BPREL32: [FFFFFFF0], Type: 0x3D77, this +(004F0C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(004F20) S_END + +(004F24) S_GPROC32: [0001:00012310], Cb: 00000049, Type: 0x118C, RaceState::~RaceState + Parent: 00000000, End: 00004FA0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(004F64) S_LABEL32: [0001:00012351], $L59720 +(004F78) S_LABEL32: [0001:00012347], $L59719 +(004F8C) S_BPREL32: [FFFFFFF0], Type: 0x118B, this + +(004FA0) S_END + +(004FA4) S_GPROC32: [0001:00012360], Cb: 00000061, Type: T_NOTYPE(0000), CarRaceState::`scalar deleting destructor' + Parent: 00000000, End: 00005048, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(004FF8) S_LABEL32: [0001:000123B9], $L59728 +(00500C) S_LABEL32: [0001:000123AF], $L59726 +(005020) S_BPREL32: [FFFFFFF0], Type: 0x3D78, this +(005034) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(005048) S_END + +(00504C) S_GPROC32: [0001:000123D0], Cb: 00000061, Type: T_NOTYPE(0000), Pizzeria::`scalar deleting destructor' + Parent: 00000000, End: 000050EC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00509C) S_LABEL32: [0001:00012429], $L59737 +(0050B0) S_LABEL32: [0001:0001241F], $L59735 +(0050C4) S_BPREL32: [FFFFFFF0], Type: 0x3D79, this +(0050D8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0050EC) S_END + +(0050F0) S_GPROC32: [0001:00012440], Cb: 00000049, Type: 0x11C2, IsleActor::~IsleActor + Parent: 00000000, End: 0000516C, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(005130) S_LABEL32: [0001:00012481], $L59746 +(005144) S_LABEL32: [0001:00012477], $L59745 +(005158) S_BPREL32: [FFFFFFF0], Type: 0x11C1, this + +(00516C) S_END + +(005170) S_GPROC32: [0001:00012490], Cb: 00000061, Type: T_NOTYPE(0000), InfoCenterEntity::`scalar deleting destructor' + Parent: 00000000, End: 00005218, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0051C8) S_LABEL32: [0001:000124E9], $L59754 +(0051DC) S_LABEL32: [0001:000124DF], $L59752 +(0051F0) S_BPREL32: [FFFFFFF0], Type: 0x3D7A, this +(005204) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(005218) S_END + +(00521C) S_GPROC32: [0001:00012500], Cb: 00000061, Type: T_NOTYPE(0000), HospitalEntity::`scalar deleting destructor' + Parent: 00000000, End: 000052C0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(005270) S_LABEL32: [0001:00012559], $L59763 +(005284) S_LABEL32: [0001:0001254F], $L59761 +(005298) S_BPREL32: [FFFFFFF0], Type: 0x3D7B, this +(0052AC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0052C0) S_END + +(0052C4) S_GPROC32: [0001:00012570], Cb: 00000061, Type: T_NOTYPE(0000), GasStationEntity::`scalar deleting destructor' + Parent: 00000000, End: 0000536C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00531C) S_LABEL32: [0001:000125C9], $L59772 +(005330) S_LABEL32: [0001:000125BF], $L59770 +(005344) S_BPREL32: [FFFFFFF0], Type: 0x3D7C, this +(005358) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00536C) S_END + +(005370) S_GPROC32: [0001:000125E0], Cb: 00000061, Type: T_NOTYPE(0000), PoliceEntity::`scalar deleting destructor' + Parent: 00000000, End: 00005414, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0053C4) S_LABEL32: [0001:00012639], $L59781 +(0053D8) S_LABEL32: [0001:0001262F], $L59779 +(0053EC) S_BPREL32: [FFFFFFF0], Type: 0x3D7D, this +(005400) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(005414) S_END + +(005418) S_GPROC32: [0001:00012650], Cb: 00000061, Type: T_NOTYPE(0000), BeachHouseEntity::`scalar deleting destructor' + Parent: 00000000, End: 000054C0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(005470) S_LABEL32: [0001:000126A9], $L59790 +(005484) S_LABEL32: [0001:0001269F], $L59788 +(005498) S_BPREL32: [FFFFFFF0], Type: 0x1AFB, this +(0054AC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0054C0) S_END + +(0054C4) S_GPROC32: [0001:000126C0], Cb: 00000061, Type: T_NOTYPE(0000), RaceStandsEntity::`scalar deleting destructor' + Parent: 00000000, End: 0000556C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00551C) S_LABEL32: [0001:00012719], $L59799 +(005530) S_LABEL32: [0001:0001270F], $L59797 +(005544) S_BPREL32: [FFFFFFF0], Type: 0x3D7F, this +(005558) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00556C) S_END + +(005570) S_GPROC32: [0001:00012730], Cb: 00000061, Type: T_NOTYPE(0000), JukeBoxState::`scalar deleting destructor' + Parent: 00000000, End: 00005614, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0055C4) S_LABEL32: [0001:00012789], $L59808 +(0055D8) S_LABEL32: [0001:0001277F], $L59806 +(0055EC) S_BPREL32: [FFFFFFF0], Type: 0x1A5F, this +(005600) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(005614) S_END + +(005618) S_GPROC32: [0001:000127A0], Cb: 00000061, Type: T_NOTYPE(0000), LegoRaceActor::`scalar deleting destructor' + Parent: 00000000, End: 000056BC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00566C) S_LABEL32: [0001:000127F9], $L59817 +(005680) S_LABEL32: [0001:000127EF], $L59815 +(005694) S_BPREL32: [FFFFFFF0], Type: 0x3D6C, this +(0056A8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0056BC) S_END + +(0056C0) S_GPROC32: [0001:00012810], Cb: 00000061, Type: T_NOTYPE(0000), IsleActor::`scalar deleting destructor' + Parent: 00000000, End: 00005760, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(005710) S_LABEL32: [0001:00012869], $L59826 +(005724) S_LABEL32: [0001:0001285F], $L59824 +(005738) S_BPREL32: [FFFFFFF0], Type: 0x11C1, this +(00574C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(005760) S_END + +(005764) S_GPROC32: [0001:00012880], Cb: 00000049, Type: 0x18E6, LegoActor::~LegoActor + Parent: 00000000, End: 000057E0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0057A4) S_LABEL32: [0001:000128C1], $L59835 +(0057B8) S_LABEL32: [0001:000128B7], $L59834 +(0057CC) S_BPREL32: [FFFFFFF0], Type: 0x18E5, this + +(0057E0) S_END + +(0057E4) S_GPROC32: [0001:000128D0], Cb: 00000011, Type: 0x194A, LegoObjectFactory::Destroy + Parent: 00000000, End: 00005850, Next: 00000000 + Debug start: 00000000, Debug end: 0000000E + +(005828) S_REGISTER: ecx, Type: 0x1943, this +(005838) S_BPREL32: [00000004], Type: 0x10AE, p_object + +(005850) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legonavcontroller.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0000A1E0], Cb: 000000B5, Type: 0x194C, LegoNavController::LegoNavController + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 0000001D, Debug end: 00000096 + Flags: Frame Ptr Present + +(0000D8) S_LABEL32: [0001:0000A28D], $L54924 +(0000EC) S_LABEL32: [0001:0000A283], $L54923 +(000100) S_BPREL32: [FFFFFFF0], Type: 0x194B, this +(000114) S_REGISTER: eax, Type: 0x12C0, timer + +(000124) S_END + +(000128) S_GPROC32: [0001:0000A2A0], Cb: 00000006, Type: 0x194F, LegoNavController::ClassName + Parent: 00000000, End: 0000017C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00016C) S_REGISTER: ecx, Type: 0x194E, this + +(00017C) S_END + +(000180) S_GPROC32: [0001:0000A2B0], Cb: 00000072, Type: 0x1950, LegoNavController::IsA + Parent: 00000000, End: 000001E4, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001C0) S_REGISTER: ecx, Type: 0x194E, this +(0001D0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001E4) S_END + +(0001E8) S_GPROC32: [0001:0000A330], Cb: 0000001E, Type: T_NOTYPE(0000), LegoNavController::`scalar deleting destructor' + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000240) S_REGISTER: esi, Type: 0x194B, this +(000250) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000264) S_END + +(000268) S_GPROC32: [0001:0000A350], Cb: 00000063, Type: 0x194C, LegoNavController::~LegoNavController + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 00000021, Debug end: 00000044 + Flags: Frame Ptr Present + +(0002B8) S_LABEL32: [0001:0000A3AB], $L54961 +(0002CC) S_LABEL32: [0001:0000A3A1], $L54960 +(0002E0) S_BPREL32: [FFFFFFF0], Type: 0x194B, this + +(0002F4) S_END + +(0002F8) S_GPROC32: [0001:0000A3C0], Cb: 0000002E, Type: 0x1951, LegoNavController::SetControlMax + Parent: 00000000, End: 00000378, Next: 00000000 + Debug start: 00000005, Debug end: 0000002A + +(000340) S_REGISTER: esi, Type: 0x194B, this +(000350) S_BPREL32: [00000004], Type: T_INT4(0074), p_hMax +(000364) S_BPREL32: [00000008], Type: T_INT4(0074), p_vMax + +(000378) S_END + +(00037C) S_GPROC32: [0001:0000A3F0], Cb: 00000067, Type: 0x194C, LegoNavController::ResetToDefault + Parent: 00000000, End: 000003D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000066 + +(0003C8) S_REGISTER: ecx, Type: 0x194B, this + +(0003D8) S_END + +(0003DC) S_GPROC32: [0001:0000A460], Cb: 00000083, Type: 0x1953, LegoNavController::GetDefaults + Parent: 00000000, End: 00000568, Next: 00000000 + Debug start: 00000000, Debug end: 00000082 + +(000424) S_BPREL32: [00000004], Type: T_32PINT4(0474), p_mouseDeadzone +(000440) S_BPREL32: [00000008], Type: T_32PREAL32(0440), p_movementMaxSpeed +(000460) S_BPREL32: [0000000C], Type: T_32PREAL32(0440), p_turnMaxSpeed +(00047C) S_BPREL32: [00000010], Type: T_32PREAL32(0440), p_movementMaxAccel +(00049C) S_BPREL32: [00000014], Type: T_32PREAL32(0440), p_turnMaxAccel +(0004B8) S_BPREL32: [00000018], Type: T_32PREAL32(0440), p_movementDecel +(0004D4) S_BPREL32: [0000001C], Type: T_32PREAL32(0440), p_turnDecel +(0004EC) S_BPREL32: [00000020], Type: T_32PREAL32(0440), p_movementMinAccel +(00050C) S_BPREL32: [00000024], Type: T_32PREAL32(0440), p_turnMinAccel +(000528) S_BPREL32: [00000028], Type: T_32PREAL32(0440), p_turnSensitivity +(000548) S_BPREL32: [0000002C], Type: T_32PUCHAR(0420), p_turnUseVelocity + +(000568) S_END + +(00056C) S_GPROC32: [0001:0000A4F0], Cb: 0000006B, Type: 0x1955, LegoNavController::SetDefaults + Parent: 00000000, End: 000006F8, Next: 00000000 + Debug start: 00000000, Debug end: 0000006A + +(0005B4) S_BPREL32: [00000004], Type: T_INT4(0074), p_mouseDeadzone +(0005D0) S_BPREL32: [00000008], Type: T_REAL32(0040), p_movementMaxSpeed +(0005F0) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_turnMaxSpeed +(00060C) S_BPREL32: [00000010], Type: T_REAL32(0040), p_movementMaxAccel +(00062C) S_BPREL32: [00000014], Type: T_REAL32(0040), p_turnMaxAccel +(000648) S_BPREL32: [00000018], Type: T_REAL32(0040), p_movementDecel +(000664) S_BPREL32: [0000001C], Type: T_REAL32(0040), p_turnDecel +(00067C) S_BPREL32: [00000020], Type: T_REAL32(0040), p_movementMinAccel +(00069C) S_BPREL32: [00000024], Type: T_REAL32(0040), p_turnMinAccel +(0006B8) S_BPREL32: [00000028], Type: T_REAL32(0040), p_turnSensitivity +(0006D8) S_BPREL32: [0000002C], Type: T_UCHAR(0020), p_turnUseVelocity + +(0006F8) S_END + +(0006FC) S_GPROC32: [0001:0000A560], Cb: 000000C1, Type: 0x1957, LegoNavController::SetTargets + Parent: 00000000, End: 00000790, Next: 00000000 + Debug start: 00000005, Debug end: 000000BC + +(000744) S_REGISTER: esi, Type: 0x194B, this +(000754) S_BPREL32: [00000004], Type: T_INT4(0074), p_hPos +(000768) S_BPREL32: [00000008], Type: T_INT4(0074), p_vPos +(00077C) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_accel + +(000790) S_END + +(000794) S_GPROC32: [0001:0000A630], Cb: 0000007E, Type: 0x1959, LegoNavController::CalculateNewTargetSpeed + Parent: 00000000, End: 00000860, Next: 00000000 + Debug start: 0000000B, Debug end: 00000077 + +(0007E8) S_REGISTER: ecx, Type: 0x194B, this +(0007F8) S_BPREL32: [00000004], Type: T_INT4(0074), p_pos +(00080C) S_BPREL32: [00000008], Type: T_INT4(0074), p_center +(000824) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_maxSpeed +(00083C) S_REGISTER: edx, Type: T_INT4(0074), diff +(00084C) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), result + +(000860) S_END + +(000864) S_GPROC32: [0001:0000A6B0], Cb: 00000049, Type: 0x195B, LegoNavController::CalculateNewAccel + Parent: 00000000, End: 00000930, Next: 00000000 + Debug start: 00000007, Debug end: 00000043 + +(0008B0) S_REGISTER: ecx, Type: 0x194B, this +(0008C0) S_BPREL32: [00000004], Type: T_INT4(0074), p_pos +(0008D4) S_BPREL32: [00000008], Type: T_INT4(0074), p_center +(0008EC) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_maxAccel +(000904) S_BPREL32: [00000010], Type: T_INT4(0074), p_minAccel +(00091C) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), result + +(000930) S_END + +(000934) S_GPROC32: [0001:0000A700], Cb: 00000096, Type: 0x195D, LegoNavController::CalculateNewVel + Parent: 00000000, End: 00000A24, Next: 00000000 + Debug start: 0000000F, Debug end: 00000090 + +(000980) S_REGISTER: ecx, Type: 0x194B, this +(000990) S_BPREL32: [00000004], Type: T_REAL32(0040), p_targetVel +(0009A8) S_BPREL32: [00000008], Type: T_REAL32(0040), p_currentVel +(0009C4) S_BPREL32: [0000000C], Type: T_REAL32(0040), p_accel +(0009D8) S_BPREL32: [00000010], Type: T_REAL32(0040), p_time +(0009EC) S_BPREL32: [FFFFFFF8], Type: T_REAL32(0040), newVel +(000A00) S_BPREL32: [FFFFFFFC], Type: T_REAL32(0040), velDiff +(000A14) S_REGISTER: edx, Type: T_INT4(0074), vSign + +(000A24) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legomodelpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:0000A190], Cb: 00000008, Type: 0x3DBF, LegoModelPresenter::Destroy + Parent: 00000000, End: 000000E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0000D0) S_REGISTER: ecx, Type: 0x3D62, this + +(0000E0) S_END + +(0000E4) S_GPROC32: [0001:0000A1A0], Cb: 0000000A, Type: 0x195F, LegoModelPresenter::configureLegoModelPresenter + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(00013C) S_BPREL32: [00000004], Type: T_INT4(0074), p_modelPresenterConfig + +(000160) S_END + +(000164) S_GPROC32: [0001:0000A1B0], Cb: 00000003, Type: 0x4D1C, LegoModelPresenter::Destroy + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0001A8) S_REGISTER: ecx, Type: 0x3D62, this +(0001B8) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:0000A1C0], Cb: 00000001, Type: 0x3DBF, LegoModelPresenter::ReadyTickle + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000224) S_REGISTER: ecx, Type: 0x3D62, this + +(000234) S_END + +(000238) S_GPROC32: [0001:0000A1D0], Cb: 00000001, Type: 0x3DBF, LegoModelPresenter::ParseExtra + Parent: 00000000, End: 00000290, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000280) S_REGISTER: ecx, Type: 0x3D62, this + +(000290) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legometerpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legolocomotionanimpresenter.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:00009F00], Cb: 00000079, Type: 0x1962, LegoLocomotionAnimPresenter::LegoLocomotionAnimPresenter + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 0000001C, Debug end: 00000053 + Flags: Frame Ptr Present + +(0000F4) S_LABEL32: [0001:00009F71], $L43067 +(000108) S_LABEL32: [0001:00009F67], $L43066 +(00011C) S_LABEL32: [0001:00009F5F], $L43069 +(000130) S_BPREL32: [FFFFFFF0], Type: 0x1961, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00009F80], Cb: 00000006, Type: 0x1965, LegoLocomotionAnimPresenter::ClassName + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000198) S_REGISTER: ecx, Type: 0x1964, this + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00009F90], Cb: 0000017C, Type: 0x1966, LegoLocomotionAnimPresenter::IsA + Parent: 00000000, End: 00000218, Next: 00000000 + Debug start: 00000008, Debug end: 00000176 + +(0001F4) S_REGISTER: ebx, Type: 0x1964, this +(000204) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000218) S_END + +(00021C) S_GPROC32: [0001:0000A110], Cb: 00000061, Type: T_NOTYPE(0000), LegoLocomotionAnimPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000002D0, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000280) S_LABEL32: [0001:0000A169], $L43265 +(000294) S_LABEL32: [0001:0000A15F], $L43263 +(0002A8) S_BPREL32: [FFFFFFF0], Type: 0x1961, this +(0002BC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0002D0) S_END + +(0002D4) S_GPROC32: [0001:0000A180], Cb: 00000001, Type: 0x1962, LegoLocomotionAnimPresenter::Init + Parent: 00000000, End: 00000330, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000320) S_REGISTER: ecx, Type: 0x1961, this + +(000330) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoloadcachesoundpresenter.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:000098D0], Cb: 00000103, Type: 0x1969, LegoLoadCacheSoundPresenter::LegoLoadCacheSoundPresenter + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AE + Flags: Frame Ptr Present + +(0000F4) S_LABEL32: [0001:000099CB], $L44190 +(000108) S_LABEL32: [0001:000099C1], $L44189 +(00011C) S_LABEL32: [0001:000099B9], $L44192 +(000130) S_LABEL32: [0001:000099B1], $L44194 +(000144) S_LABEL32: [0001:000099A9], $L44196 +(000158) S_LABEL32: [0001:000099A1], $L44198 +(00016C) S_LABEL32: [0001:00009999], $L44200 +(000180) S_LABEL32: [0001:0000998E], $L44201 +(000194) S_BPREL32: [FFFFFFF0], Type: 0x1968, this + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:000099E0], Cb: 00000006, Type: 0x196C, MxAudioPresenter::ClassName + Parent: 00000000, End: 00000200, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001F0) S_REGISTER: ecx, Type: 0x196B, this + +(000200) S_END + +(000204) S_GPROC32: [0001:000099F0], Cb: 000000D6, Type: 0x196D, MxAudioPresenter::IsA + Parent: 00000000, End: 00000268, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(000244) S_REGISTER: ecx, Type: 0x196B, this +(000254) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000268) S_END + +(00026C) S_GPROC32: [0001:00009AD0], Cb: 00000061, Type: T_NOTYPE(0000), MxAudioPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0002C4) S_LABEL32: [0001:00009B29], $L44340 +(0002D8) S_LABEL32: [0001:00009B1F], $L44338 +(0002EC) S_BPREL32: [FFFFFFF0], Type: 0x17EE, this +(000300) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000314) S_END + +(000318) S_GPROC32: [0001:00009B40], Cb: 00000049, Type: 0x196E, MxAudioPresenter::~MxAudioPresenter + Parent: 00000000, End: 000003A0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000364) S_LABEL32: [0001:00009B81], $L44349 +(000378) S_LABEL32: [0001:00009B77], $L44348 +(00038C) S_BPREL32: [FFFFFFF0], Type: 0x17EE, this + +(0003A0) S_END + +(0003A4) S_GPROC32: [0001:00009B90], Cb: 00000006, Type: 0x1971, MxSoundPresenter::ClassName + Parent: 00000000, End: 000003F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0003E8) S_REGISTER: ecx, Type: 0x1970, this + +(0003F8) S_END + +(0003FC) S_GPROC32: [0001:00009BA0], Cb: 0000010A, Type: 0x1972, MxSoundPresenter::IsA + Parent: 00000000, End: 00000460, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(00043C) S_REGISTER: ecx, Type: 0x1970, this +(00044C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000460) S_END + +(000464) S_GPROC32: [0001:00009CB0], Cb: 00000006, Type: 0x1975, MxWavePresenter::ClassName + Parent: 00000000, End: 000004B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0004A8) S_REGISTER: ecx, Type: 0x1974, this + +(0004B8) S_END + +(0004BC) S_GPROC32: [0001:00009CC0], Cb: 0000013E, Type: 0x1976, MxWavePresenter::IsA + Parent: 00000000, End: 0000051C, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(0004F8) S_REGISTER: ecx, Type: 0x1974, this +(000508) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00051C) S_END + +(000520) S_GPROC32: [0001:00009E00], Cb: 0000001E, Type: T_NOTYPE(0000), MxWavePresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000059C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000578) S_REGISTER: esi, Type: 0x11C5, this +(000588) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00059C) S_END + +(0005A0) S_GPROC32: [0001:00009E20], Cb: 0000001E, Type: T_NOTYPE(0000), MxSoundPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000061C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0005F8) S_REGISTER: esi, Type: 0x13A6, this +(000608) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00061C) S_END + +(000620) S_GPROC32: [0001:00009E40], Cb: 00000006, Type: 0x1979, LegoLoadCacheSoundPresenter::ClassName + Parent: 00000000, End: 00000680, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000670) S_REGISTER: ecx, Type: 0x1978, this + +(000680) S_END + +(000684) S_GPROC32: [0001:00009E50], Cb: 0000001E, Type: T_NOTYPE(0000), LegoLoadCacheSoundPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000070C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0006E8) S_REGISTER: esi, Type: 0x1968, this +(0006F8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00070C) S_END + +(000710) S_GPROC32: [0001:00009E70], Cb: 0000005D, Type: 0x1969, LegoLoadCacheSoundPresenter::~LegoLoadCacheSoundPresenter + Parent: 00000000, End: 000007B0, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000774) S_LABEL32: [0001:00009EC5], $L44512 +(000788) S_LABEL32: [0001:00009EBB], $L44511 +(00079C) S_BPREL32: [FFFFFFF0], Type: 0x1968, this + +(0007B0) S_END + +(0007B4) S_GPROC32: [0001:00009ED0], Cb: 0000000C, Type: 0x1969, LegoLoadCacheSoundPresenter::Init + Parent: 00000000, End: 00000810, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000800) S_REGISTER: ecx, Type: 0x1968, this + +(000810) S_END + +(000814) S_GPROC32: [0001:00009EE0], Cb: 0000001F, Type: 0x3C98, LegoLoadCacheSoundPresenter::Destroy + Parent: 00000000, End: 00000890, Next: 00000000 + Debug start: 00000001, Debug end: 0000001B + +(000860) S_REGISTER: esi, Type: 0x1968, this +(000870) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000890) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legojetski.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoinputmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000088E0], Cb: 0000011B, Type: 0x197F, LegoInputManager::LegoInputManager + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000021, Debug end: 000000DA + Flags: Frame Ptr Present + +(0000D4) S_LABEL32: [0001:000089F3], $L48972 +(0000E8) S_LABEL32: [0001:000089E9], $L48971 +(0000FC) S_LABEL32: [0001:000089E1], $L48975 +(000110) S_LABEL32: [0001:000089D6], $L48976 +(000124) S_LABEL32: [0001:000089CB], $L48973 +(000138) S_BPREL32: [FFFFFFF0], Type: 0x197E, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:00008A00], Cb: 0000001E, Type: T_NOTYPE(0000), LegoInputManager::`scalar deleting destructor' + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001A8) S_REGISTER: esi, Type: 0x197E, this +(0001B8) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:00008A20], Cb: 00000008, Type: 0x1980, LegoInputManager::Tickle + Parent: 00000000, End: 00000220, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000210) S_REGISTER: ecx, Type: 0x197E, this + +(000220) S_END + +(000224) S_GPROC32: [0001:00008A30], Cb: 0000006F, Type: 0x197F, LegoInputManager::~LegoInputManager + Parent: 00000000, End: 000002C0, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(000270) S_LABEL32: [0001:00008A97], $L49016 +(000284) S_LABEL32: [0001:00008A8D], $L49015 +(000298) S_LABEL32: [0001:00008A82], $L49017 +(0002AC) S_BPREL32: [FFFFFFF0], Type: 0x197E, this + +(0002C0) S_END + +(0002C4) S_GPROC32: [0001:00008AA0], Cb: 000000DF, Type: 0x1981, LegoInputManager::Create + Parent: 00000000, End: 000003A0, Next: 00000000 + Debug start: 00000020, Debug end: 000000B8 + Flags: Frame Ptr Present + +(000304) S_LABEL32: [0001:00008B72], $L49026 +(000318) S_LABEL32: [0001:00008B68], $L49025 +(00032C) S_LABEL32: [0001:00008B3F], $L49030 +(000340) S_LABEL32: [0001:00008B37], $L49032 +(000354) S_LABEL32: [0001:00008B2F], $L49034 +(000368) S_LABEL32: [0001:00008B27], $L49036 +(00037C) S_REGISTER: edi, Type: 0x197E, this +(00038C) S_BPREL32: [00000008], Type: T_32PVOID(0403), p_hwnd + +(0003A0) S_END + +(0003A4) S_GPROC32: [0001:00008B80], Cb: 00000006, Type: 0x1984, MxCore::ClassName + Parent: 00000000, End: 000003F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0003E0) S_REGISTER: ecx, Type: 0x1983, this + +(0003F0) S_END + +(0003F4) S_GPROC32: [0001:00008B90], Cb: 00000043, Type: 0x198A, MxCollection::Destroy + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 0000001F, Debug end: 00000024 + Flags: Frame Ptr Present + +(000450) S_LABEL32: [0001:00008BC9], $L49070 +(000464) S_LABEL32: [0001:00008BC1], $L49071 +(000478) S_BPREL32: [00000008], Type: 0x3252, __formal + +(000490) S_END + +(000494) S_GPROC32: [0001:00008BE0], Cb: 0000004F, Type: 0x1992, LegoEventNotificationParam::~LegoEventNotificationParam + Parent: 00000000, End: 00000530, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0004F4) S_LABEL32: [0001:00008C27], $L49079 +(000508) S_LABEL32: [0001:00008C1D], $L49078 +(00051C) S_BPREL32: [FFFFFFF0], Type: 0x198B, this + +(000530) S_END + +(000534) S_GPROC32: [0001:00008C30], Cb: 0000004F, Type: 0x1998, MxNotificationParam::~MxNotificationParam + Parent: 00000000, End: 000005C4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000588) S_LABEL32: [0001:00008C77], $L49087 +(00059C) S_LABEL32: [0001:00008C6D], $L49086 +(0005B0) S_BPREL32: [FFFFFFF0], Type: 0x150D, this + +(0005C4) S_END + +(0005C8) S_GPROC32: [0001:00008C80], Cb: 00000007, Type: 0x199A, MxParam::~MxParam + Parent: 00000000, End: 00000614, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000604) S_REGISTER: ecx, Type: 0x1999, this + +(000614) S_END + +(000618) S_GPROC32: [0001:00008C90], Cb: 0000001F, Type: T_NOTYPE(0000), MxParam::`scalar deleting destructor' + Parent: 00000000, End: 0000068C, Next: 00000000 + Debug start: 00000006, Debug end: 0000001B + +(000668) S_REGISTER: esi, Type: 0x1999, this +(000678) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00068C) S_END + +(000690) S_GPROC32: [0001:00008CB0], Cb: 00000067, Type: T_NOTYPE(0000), MxNotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 0000073C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0006EC) S_LABEL32: [0001:00008D0F], $L49100 +(000700) S_LABEL32: [0001:00008D05], $L49098 +(000714) S_BPREL32: [FFFFFFF0], Type: 0x150D, this +(000728) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00073C) S_END + +(000740) S_GPROC32: [0001:00008D20], Cb: 00000067, Type: T_NOTYPE(0000), LegoEventNotificationParam::`scalar deleting destructor' + Parent: 00000000, End: 000007F0, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0007A0) S_LABEL32: [0001:00008D7F], $L49109 +(0007B4) S_LABEL32: [0001:00008D75], $L49107 +(0007C8) S_BPREL32: [FFFFFFF0], Type: 0x198B, this +(0007DC) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0007F0) S_END + +(0007F4) S_GPROC32: [0001:00008D90], Cb: 0000004F, Type: 0x1987, MxCollection::~MxCollection + Parent: 00000000, End: 000008AC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000870) S_LABEL32: [0001:00008DD7], $L49118 +(000884) S_LABEL32: [0001:00008DCD], $L49117 +(000898) S_BPREL32: [FFFFFFF0], Type: 0x1986, this + +(0008AC) S_END + +(0008B0) S_GPROC32: [0001:00008DE0], Cb: 0000005D, Type: 0x199C, MxCollection::Compare + Parent: 00000000, End: 00000988, Next: 00000000 + Debug start: 0000001A, Debug end: 00000036 + Flags: Frame Ptr Present + +(00090C) S_LABEL32: [0001:00008E35], $L49126 +(000920) S_LABEL32: [0001:00008E2B], $L49125 +(000934) S_LABEL32: [0001:00008E23], $L49127 +(000948) S_REGISTER: ecx, Type: 0x1986, this +(000958) S_BPREL32: [00000008], Type: 0x3252, __formal +(000970) S_BPREL32: [00000028], Type: 0x3252, __formal + +(000988) S_END + +(00098C) S_GPROC32: [0001:00008E40], Cb: 00000067, Type: T_NOTYPE(0000), MxCollection::`scalar deleting destructor' + Parent: 00000000, End: 00000A4C, Next: 00000000 + Debug start: 00000021, Debug end: 00000048 + Flags: Frame Ptr Present + +(0009FC) S_LABEL32: [0001:00008E9F], $L49135 +(000A10) S_LABEL32: [0001:00008E95], $L49133 +(000A24) S_BPREL32: [FFFFFFF0], Type: 0x1986, this +(000A38) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000A4C) S_END + +(000A50) S_GPROC32: [0001:00008EB0], Cb: 000000E5, Type: T_NOTYPE(0000), MxList::`scalar deleting destructor' + Parent: 00000000, End: 00000B30, Next: 00000000 + Debug start: 00000021, Debug end: 000000B6 + Flags: Frame Ptr Present + +(000AB8) S_LABEL32: [0001:00008F8D], $L49144 +(000ACC) S_LABEL32: [0001:00008F83], $L49142 +(000AE0) S_LABEL32: [0001:00008F7B], $L49148 +(000AF4) S_LABEL32: [0001:00008F73], $L49153 +(000B08) S_BPREL32: [FFFFFFF0], Type: 0x199E, this +(000B1C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000B30) S_END + +(000B34) S_GPROC32: [0001:00008FA0], Cb: 000000B1, Type: 0x19A1, MxListEntry::GetValue + Parent: 00000000, End: 00000C0C, Next: 00000000 + Debug start: 00000028, Debug end: 00000081 + Flags: Frame Ptr Present + +(000B90) S_LABEL32: [0001:00009042], $L49199 +(000BA4) S_LABEL32: [0001:00009038], $L49196 +(000BB8) S_LABEL32: [0001:00009030], $L49201 +(000BCC) S_LABEL32: [0001:00009028], $L49203 +(000BE0) S_REGISTER: ecx, Type: 0x19A0, this +(000BF0) S_BPREL32: [00000008], Type: T_NOTYPE(0000), __$ReturnUdt + +(000C0C) S_END + +(000C10) S_GPROC32: [0001:00009060], Cb: 00000061, Type: T_NOTYPE(0000), LegoEventQueue::`scalar deleting destructor' + Parent: 00000000, End: 00000CB4, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000C64) S_LABEL32: [0001:000090B9], $L49221 +(000C78) S_LABEL32: [0001:000090AF], $L49219 +(000C8C) S_BPREL32: [FFFFFFF0], Type: 0x19A3, this +(000CA0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000CB4) S_END + +(000CB8) S_GPROC32: [0001:000090D0], Cb: 00000049, Type: 0x19A6, MxQueue::~MxQueue + Parent: 00000000, End: 00000D68, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000D2C) S_LABEL32: [0001:00009111], $L49230 +(000D40) S_LABEL32: [0001:00009107], $L49229 +(000D54) S_BPREL32: [FFFFFFF0], Type: 0x19A5, this + +(000D68) S_END + +(000D6C) S_GPROC32: [0001:00009120], Cb: 00000061, Type: T_NOTYPE(0000), MxQueue::`scalar deleting destructor' + Parent: 00000000, End: 00000E28, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000DD8) S_LABEL32: [0001:00009179], $L49238 +(000DEC) S_LABEL32: [0001:0000916F], $L49236 +(000E00) S_BPREL32: [FFFFFFF0], Type: 0x19A5, this +(000E14) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000E28) S_END + +(000E2C) S_GPROC32: [0001:00009190], Cb: 00000042, Type: 0x197F, LegoInputManager::Destroy + Parent: 00000000, End: 00000E80, Next: 00000000 + Debug start: 00000001, Debug end: 00000040 + +(000E70) S_REGISTER: esi, Type: 0x197E, this + +(000E80) S_END + +(000E84) S_GPROC32: [0001:000091E0], Cb: 0000006A, Type: 0x19A7, LegoInputManager::CreateAndAcquireKeyboard + Parent: 00000000, End: 00000EFC, Next: 00000000 + Debug start: 00000009, Debug end: 00000064 + +(000ED8) S_REGISTER: esi, Type: 0x197E, this +(000EE8) S_BPREL32: [00000004], Type: T_32PVOID(0403), p_hwnd + +(000EFC) S_END + +(000F00) S_GPROC32: [0001:00009250], Cb: 00000045, Type: 0x197F, LegoInputManager::ReleaseDX + Parent: 00000000, End: 00000F54, Next: 00000000 + Debug start: 00000001, Debug end: 00000043 + +(000F44) S_REGISTER: esi, Type: 0x197E, this + +(000F54) S_END + +(000F58) S_GPROC32: [0001:000092A0], Cb: 000000D3, Type: 0x1980, LegoInputManager::GetJoystickId + Parent: 00000000, End: 00000FD8, Next: 00000000 + Debug start: 00000009, Debug end: 000000CC + +(000FA0) S_REGISTER: esi, Type: 0x197E, this +(000FB0) S_BPREL32: [FFFFFFCC], Type: 0x19A9, joyinfoex +(000FC8) S_REGISTER: edi, Type: T_INT4(0074), joyid + +(000FD8) S_END + +(000FDC) S_GPROC32: [0001:00009380], Cb: 00000148, Type: 0x19AB, LegoInputManager::GetJoystickState + Parent: 00000000, End: 000010E0, Next: 00000000 + Debug start: 00000008, Debug end: 00000140 + +(001028) S_REGISTER: esi, Type: 0x197E, this +(001038) S_BPREL32: [00000004], Type: T_32PUINT4(0475), p_joystickX +(001050) S_BPREL32: [00000008], Type: T_32PUINT4(0475), p_joystickY +(001068) S_BPREL32: [0000000C], Type: T_32PULONG(0422), p_buttonsState +(001084) S_BPREL32: [00000010], Type: T_32PUINT4(0475), p_povPosition +(0010A0) S_REGISTER: eax, Type: T_UINT4(0075), capabilities +(0010B8) S_BPREL32: [FFFFFFCC], Type: 0x19A9, joyinfoex +(0010D0) S_REGISTER: ecx, Type: T_UINT4(0075), xmin + +(0010E0) S_END + +(0010E4) S_GPROC32: [0001:000094D0], Cb: 00000003, Type: 0x19AC, LegoInputManager::Register + Parent: 00000000, End: 00001150, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001128) S_REGISTER: ecx, Type: 0x197E, this +(001138) S_BPREL32: [00000004], Type: 0x10AE, __formal + +(001150) S_END + +(001154) S_GPROC32: [0001:000094E0], Cb: 00000003, Type: 0x19AC, LegoInputManager::UnRegister + Parent: 00000000, End: 000011C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(001198) S_REGISTER: ecx, Type: 0x197E, this +(0011A8) S_BPREL32: [00000004], Type: 0x10AE, __formal + +(0011C0) S_END + +(0011C4) S_GPROC32: [0001:000094F0], Cb: 0000000A, Type: 0x19B0, LegoInputManager::SetCamera + Parent: 00000000, End: 00001230, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(001208) S_REGISTER: ecx, Type: 0x197E, this +(001218) S_BPREL32: [00000004], Type: 0x19AE, p_camera + +(001230) S_END + +(001234) S_GPROC32: [0001:00009500], Cb: 00000008, Type: 0x197F, LegoInputManager::ClearCamera + Parent: 00000000, End: 0000128C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(00127C) S_REGISTER: ecx, Type: 0x197E, this + +(00128C) S_END + +(001290) S_GPROC32: [0001:00009510], Cb: 0000000A, Type: 0x19B2, LegoInputManager::SetWorld + Parent: 00000000, End: 000012F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0012D4) S_REGISTER: ecx, Type: 0x197E, this +(0012E4) S_BPREL32: [00000004], Type: 0x128A, p_world + +(0012F8) S_END + +(0012FC) S_GPROC32: [0001:00009520], Cb: 00000008, Type: 0x197F, LegoInputManager::ClearWorld + Parent: 00000000, End: 00001350, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(001340) S_REGISTER: ecx, Type: 0x197E, this + +(001350) S_END + +(001354) S_GPROC32: [0001:00009530], Cb: 000000D2, Type: 0x19B4, LegoInputManager::QueueEvent + Parent: 00000000, End: 0000146C, Next: 00000000 + Debug start: 0000002B, Debug end: 000000A0 + Flags: Frame Ptr Present + +(001398) S_LABEL32: [0001:000095FA], $L49285 +(0013AC) S_LABEL32: [0001:000095F0], $L49284 +(0013C0) S_LABEL32: [0001:000095E8], $L49288 +(0013D4) S_LABEL32: [0001:000095E0], $L49290 +(0013E8) S_REGISTER: ecx, Type: 0x197E, this +(0013F8) S_BPREL32: [00000008], Type: 0x1059, p_id +(00140C) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_modifier +(001424) S_BPREL32: [00000010], Type: T_LONG(0012), p_x +(001434) S_BPREL32: [00000014], Type: T_LONG(0012), p_y +(001444) S_BPREL32: [00000018], Type: T_UCHAR(0020), p_key +(001458) S_BPREL32: [FFFFFFD4], Type: 0x3252, param + +(00146C) S_END + +(001470) S_GPROC32: [0001:00009610], Cb: 00000192, Type: 0x197F, LegoInputManager::ProcessEvents + Parent: 00000000, End: 00001580, Next: 00000000 + Debug start: 0000001E, Debug end: 0000014B + Flags: Frame Ptr Present + +(0014B8) S_LABEL32: [0001:0000979A], $L49312 +(0014CC) S_LABEL32: [0001:00009790], $L49311 +(0014E0) S_LABEL32: [0001:00009788], $L49313 +(0014F4) S_LABEL32: [0001:00009780], $L49315 +(001508) S_LABEL32: [0001:00009778], $L49317 +(00151C) S_LABEL32: [0001:00009770], $L49327 +(001530) S_LABEL32: [0001:00009768], $L49354 +(001544) S_BPREL32: [FFFFFFE4], Type: 0x197E, this +(001558) S_BPREL32: [FFFFFFC4], Type: 0x3252, event +(00156C) S_BPREL32: [FFFFFFC0], Type: 0x11DF, lock + +(001580) S_END + +(001584) S_GPROC32: [0001:000097B0], Cb: 00000005, Type: 0x19B7, LegoInputManager::ProcessOneEvent + Parent: 00000000, End: 000015F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0015D0) S_REGISTER: ecx, Type: 0x197E, this +(0015E0) S_BPREL32: [00000004], Type: 0x19B5, p_param + +(0015F4) S_END + +(0015F8) S_GPROC32: [0001:000097C0], Cb: 0000001F, Type: 0x197F, LegoInputManager::SetTimer + Parent: 00000000, End: 0000164C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001D + +(00163C) S_REGISTER: esi, Type: 0x197E, this + +(00164C) S_END + +(001650) S_GPROC32: [0001:000097E0], Cb: 0000001E, Type: 0x197F, LegoInputManager::KillTimer + Parent: 00000000, End: 000016A4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001C + +(001694) S_REGISTER: esi, Type: 0x197E, this + +(0016A4) S_END + +(0016A8) S_GPROC32: [0001:00009800], Cb: 000000CD, Type: 0x19B8, MxList::~MxList + Parent: 00000000, End: 0000177C, Next: 00000000 + Debug start: 00000021, Debug end: 0000009E + Flags: Frame Ptr Present + +(001718) S_LABEL32: [0001:000098C5], $L49427 +(00172C) S_LABEL32: [0001:000098BB], $L49426 +(001740) S_LABEL32: [0001:000098B3], $L49431 +(001754) S_LABEL32: [0001:000098AB], $L49436 +(001768) S_BPREL32: [FFFFFFF0], Type: 0x199E, this + +(00177C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legohideanimpresenter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00008480], Cb: 00000079, Type: 0x19BB, LegoHideAnimPresenter::LegoHideAnimPresenter + Parent: 00000000, End: 00000134, Next: 00000000 + Debug start: 0000001C, Debug end: 00000053 + Flags: Frame Ptr Present + +(0000E4) S_LABEL32: [0001:000084F1], $L43067 +(0000F8) S_LABEL32: [0001:000084E7], $L43066 +(00010C) S_LABEL32: [0001:000084DF], $L43069 +(000120) S_BPREL32: [FFFFFFF0], Type: 0x19BA, this + +(000134) S_END + +(000138) S_GPROC32: [0001:00008500], Cb: 00000006, Type: 0x19BF, LegoLoopingAnimPresenter::ClassName + Parent: 00000000, End: 00000194, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000184) S_REGISTER: ecx, Type: 0x19BE, this + +(000194) S_END + +(000198) S_GPROC32: [0001:00008510], Cb: 0000013E, Type: 0x19C0, LegoLoopingAnimPresenter::IsA + Parent: 00000000, End: 00000204, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(0001E0) S_REGISTER: ecx, Type: 0x19BE, this +(0001F0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000204) S_END + +(000208) S_GPROC32: [0001:00008650], Cb: 00000006, Type: 0x19C3, LegoHideAnimPresenter::ClassName + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000250) S_REGISTER: ecx, Type: 0x19C2, this + +(000260) S_END + +(000264) S_GPROC32: [0001:00008660], Cb: 0000013E, Type: 0x19C4, LegoHideAnimPresenter::IsA + Parent: 00000000, End: 000002CC, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(0002A8) S_REGISTER: ecx, Type: 0x19C2, this +(0002B8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0002CC) S_END + +(0002D0) S_GPROC32: [0001:000087A0], Cb: 00000061, Type: T_NOTYPE(0000), LegoHideAnimPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00032C) S_LABEL32: [0001:000087F9], $L43246 +(000340) S_LABEL32: [0001:000087EF], $L43244 +(000354) S_BPREL32: [FFFFFFF0], Type: 0x19BA, this +(000368) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00037C) S_END + +(000380) S_GPROC32: [0001:00008810], Cb: 00000049, Type: 0x19C6, LegoLoopingAnimPresenter::~LegoLoopingAnimPresenter + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0003DC) S_LABEL32: [0001:00008851], $L43255 +(0003F0) S_LABEL32: [0001:00008847], $L43254 +(000404) S_BPREL32: [FFFFFFF0], Type: 0x19C5, this + +(000418) S_END + +(00041C) S_GPROC32: [0001:00008860], Cb: 00000061, Type: T_NOTYPE(0000), LegoLoopingAnimPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000004CC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00047C) S_LABEL32: [0001:000088B9], $L43263 +(000490) S_LABEL32: [0001:000088AF], $L43261 +(0004A4) S_BPREL32: [FFFFFFF0], Type: 0x19C5, this +(0004B8) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0004CC) S_END + +(0004D0) S_GPROC32: [0001:000088D0], Cb: 00000001, Type: 0x19BB, LegoHideAnimPresenter::Init + Parent: 00000000, End: 00000524, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000514) S_REGISTER: ecx, Type: 0x19BA, this + +(000524) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legogamestate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00007AD0], Cb: 0000015F, Type: 0x19CA, LegoGameState::LegoGameState + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 00000020, Debug end: 00000120 + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:00007C22], $L47092 +(0000E0) S_LABEL32: [0001:00007C18], $L47091 +(0000F4) S_LABEL32: [0001:00007C0B], $L47095 +(000108) S_LABEL32: [0001:00007BFE], $L47098 +(00011C) S_REGISTER: ebx, Type: 0x19C9, this + +(00012C) S_END + +(000130) S_GPROC32: [0001:00007C30], Cb: 00000052, Type: 0x19CA, LegoGameState::~LegoGameState + Parent: 00000000, End: 000001A4, Next: 00000000 + Debug start: 00000002, Debug end: 0000004F + +(000178) S_REGISTER: esi, Type: 0x19C9, this +(000188) S_REGISTER: di, Type: T_SHORT(0011), i +(000194) S_REGISTER: ecx, Type: 0x19CB, state + +(0001A4) S_END + +(0001A8) S_GPROC32: [0001:00007C90], Cb: 000001A9, Type: 0x19CC, LegoGameState::Save + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000020, Debug end: 00000196 + Flags: Frame Ptr Present + +(0001E4) S_LABEL32: [0001:00007E14], $L47122 +(0001F8) S_LABEL32: [0001:00007E0A], $L47121 +(00020C) S_LABEL32: [0001:00007E02], $L47123 +(000220) S_REGISTER: esi, Type: 0x19C9, this +(000230) S_BPREL32: [00000008], Type: T_ULONG(0022), p_slot +(000244) S_BPREL32: [FFFFFFE4], Type: T_LONG(0012), result +(000258) S_REGISTER: eax, Type: 0x19CE, infocenterState +(000274) S_BPREL32: [FFFFFFE8], Type: 0x19D1, fileStream +(00028C) S_REGISTER: edi, Type: 0x1491, variableTable +(0002A4) S_BPREL32: [FFFFFFD0], Type: 0x12DB, savePath +(0002BC) S_BPREL32: [FFFFFFE0], Type: T_UINT4(0075), maybeVersion + +(0002D8) S_END + +(0002DC) S_GPROC32: [0001:00007E40], Cb: 00000005, Type: 0x19CC, LegoGameState::Load + Parent: 00000000, End: 00000340, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000318) S_REGISTER: ecx, Type: 0x19C9, this +(000328) S_BPREL32: [00000004], Type: T_ULONG(0022), __formal + +(000340) S_END + +(000344) S_GPROC32: [0001:00007E50], Cb: 00000067, Type: 0x19D2, LegoGameState::SetSavePath + Parent: 00000000, End: 000003B0, Next: 00000000 + Debug start: 00000005, Debug end: 00000062 + +(000388) S_REGISTER: ebx, Type: 0x19C9, this +(000398) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_savePath + +(0003B0) S_END + +(0003B4) S_GPROC32: [0001:00007EC0], Cb: 0000005A, Type: 0x19D3, LegoGameState::WriteEndOfVariables + Parent: 00000000, End: 00000438, Next: 00000000 + Debug start: 0000000C, Debug end: 00000053 + +(000400) S_REGISTER: ecx, Type: 0x19C9, this +(000410) S_BPREL32: [00000004], Type: 0x1865, p_stream +(000428) S_BPREL32: [FFFFFFFF], Type: T_UCHAR(0020), len + +(000438) S_END + +(00043C) S_GPROC32: [0001:00007F20], Cb: 00000162, Type: 0x19D5, LegoGameState::GetFileSavePath + Parent: 00000000, End: 00000514, Next: 00000000 + Debug start: 00000038, Debug end: 0000013F + Flags: Frame Ptr Present + +(000484) S_LABEL32: [0001:00008078], $L47142 +(000498) S_LABEL32: [0001:00008070], $L47143 +(0004AC) S_REGISTER: edx, Type: 0x19C9, this +(0004BC) S_BPREL32: [00000008], Type: 0x1273, p_outPath +(0004D4) S_BPREL32: [0000000C], Type: T_ULONG(0022), p_slotn +(0004E8) S_BPREL32: [FFFFFFF2], Type: 0x19D6, baseForSlot +(000500) S_BPREL32: [FFFFFBE0], Type: 0x147B, path + +(000514) S_END + +(000518) S_GPROC32: [0001:00008090], Cb: 00000003, Type: 0x19D8, LegoGameState::SerializePlayersInfo + Parent: 00000000, End: 0000058C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000564) S_REGISTER: ecx, Type: 0x19C9, this +(000574) S_BPREL32: [00000004], Type: T_SHORT(0011), __formal + +(00058C) S_END + +(000590) S_GPROC32: [0001:000080A0], Cb: 00000003, Type: 0x19D9, LegoGameState::FUN_1003a720 + Parent: 00000000, End: 000005FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0005D4) S_REGISTER: ecx, Type: 0x19C9, this +(0005E4) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(0005FC) S_END + +(000600) S_GPROC32: [0001:000080B0], Cb: 00000003, Type: 0x19D9, LegoGameState::HandleAction + Parent: 00000000, End: 0000066C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000644) S_REGISTER: ecx, Type: 0x19C9, this +(000654) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal + +(00066C) S_END + +(000670) S_GPROC32: [0001:000080C0], Cb: 0000000E, Type: 0x19CA, LegoGameState::SetROIHandlerFunction + Parent: 00000000, End: 000006CC, Next: 00000000 + Debug start: 00000000, Debug end: 0000000D + +(0006BC) S_REGISTER: ecx, Type: 0x19C9, this + +(0006CC) S_END + +(0006D0) S_GPROC32: [0001:000080D0], Cb: 000000DD, Type: 0x18A5, ROIHandlerFunction + Parent: 00000000, End: 00000770, Next: 00000000 + Debug start: 00000013, Debug end: 000000D3 + +(00070C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_input +(000720) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_output +(000738) S_BPREL32: [0000000C], Type: T_UINT4(0075), p_copyLen +(000750) S_BPREL32: [FFFFFF00], Type: 0x138C, buf +(000760) S_REGISTER: eax, Type: T_32PRCHAR(0470), value + +(000770) S_END + +(000774) S_GPROC32: [0001:000081B0], Cb: 00000046, Type: 0x19DA, LegoGameState::GetState + Parent: 00000000, End: 000007E8, Next: 00000000 + Debug start: 00000008, Debug end: 00000042 + +(0007B4) S_REGISTER: edi, Type: 0x19C9, this +(0007C4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_stateName +(0007DC) S_REGISTER: ebx, Type: T_INT4(0074), i + +(0007E8) S_END + +(0007EC) S_GPROC32: [0001:00008200], Cb: 00000026, Type: 0x19DA, LegoGameState::CreateState + Parent: 00000000, End: 0000086C, Next: 00000000 + Debug start: 00000002, Debug end: 00000022 + +(000830) S_REGISTER: edi, Type: 0x19C9, this +(000840) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_stateName +(000858) S_REGISTER: esi, Type: 0x19CB, newState + +(00086C) S_END + +(000870) S_GPROC32: [0001:00008230], Cb: 000000D1, Type: 0x19DC, LegoGameState::RegisterState + Parent: 00000000, End: 00000904, Next: 00000000 + Debug start: 0000000B, Debug end: 000000C9 + +(0008B4) S_REGISTER: ebx, Type: 0x19C9, this +(0008C4) S_BPREL32: [00000004], Type: 0x19CB, p_state +(0008D8) S_REGISTER: esi, Type: T_INT4(0074), targetIndex +(0008F0) S_REGISTER: ebp, Type: 0x19DD, newBuffer + +(000904) S_END + +(000908) S_GPROC32: [0001:00008310], Cb: 00000001, Type: 0x342A, LegoGameState::ScoreStruct::WriteScoreHistory + Parent: 00000000, End: 00000970, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000960) S_REGISTER: ecx, Type: 0x3429, this + +(000970) S_END + +(000974) S_GPROC32: [0001:00008320], Cb: 00000003, Type: 0x342C, LegoGameState::ScoreStruct::FUN_1003ccf0 + Parent: 00000000, End: 000009EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0009C4) S_REGISTER: ecx, Type: 0x3429, this +(0009D4) S_BPREL32: [00000004], Type: 0x341E, __formal + +(0009EC) S_END + +(0009F0) S_GPROC32: [0001:00008330], Cb: 000000D0, Type: 0x19D8, LegoGameState::SerializeScoreHistory + Parent: 00000000, End: 00000AC8, Next: 00000000 + Debug start: 0000001D, Debug end: 000000A5 + Flags: Frame Ptr Present + +(000A3C) S_LABEL32: [0001:000083F8], $L47181 +(000A50) S_LABEL32: [0001:000083EE], $L47180 +(000A64) S_LABEL32: [0001:000083E6], $L47182 +(000A78) S_REGISTER: esi, Type: 0x19C9, this +(000A88) S_BPREL32: [00000008], Type: T_SHORT(0011), p_flags +(000A9C) S_BPREL32: [FFFFFFD8], Type: 0x12DB, savePath +(000AB4) S_BPREL32: [FFFFFFE8], Type: 0x19D1, stream + +(000AC8) S_END + +(000ACC) S_GPROC32: [0001:00008400], Cb: 0000000A, Type: 0x19D9, LegoGameState::SetSomeEnumState + Parent: 00000000, End: 00000B38, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000B14) S_REGISTER: ecx, Type: 0x19C9, this +(000B24) S_BPREL32: [00000004], Type: T_UINT4(0075), p_state + +(000B38) S_END + +(000B3C) S_GPROC32: [0001:00008410], Cb: 00000063, Type: 0x19CA, LegoGameState::FUN_1003ceb0 + Parent: 00000000, End: 00000B90, Next: 00000000 + Debug start: 00000006, Debug end: 00000061 + +(000B80) S_REGISTER: esi, Type: 0x19C9, this + +(000B90) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legofullscreenmovie.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00007960], Cb: 000000B2, Type: 0x19E0, LegoFullScreenMovie::LegoFullScreenMovie + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 0000001D, Debug end: 0000007B + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:00007A0A], $L50885 +(0000F0) S_LABEL32: [0001:00007A00], $L50884 +(000104) S_LABEL32: [0001:000079F5], $L50887 +(000118) S_LABEL32: [0001:000079EA], $L50888 +(00012C) S_BPREL32: [FFFFFFF0], Type: 0x19DF, this +(000140) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_key +(000154) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_value + +(000168) S_END + +(00016C) S_GPROC32: [0001:00007A20], Cb: 000000A4, Type: 0x19E1, LegoFullScreenMovie::SetValue + Parent: 00000000, End: 000001F4, Next: 00000000 + Debug start: 00000007, Debug end: 0000009E + +(0001B4) S_REGISTER: esi, Type: 0x19DF, this +(0001C4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_option +(0001DC) S_REGISTER: ecx, Type: 0x128F, videomanager + +(0001F4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoflctexturepresenter.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00007750], Cb: 00000064, Type: 0x19E4, LegoFlcTexturePresenter::LegoFlcTexturePresenter + Parent: 00000000, End: 00000124, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000E8) S_LABEL32: [0001:000077AC], $L43034 +(0000FC) S_LABEL32: [0001:000077A2], $L43033 +(000110) S_BPREL32: [FFFFFFF0], Type: 0x19E3, this + +(000124) S_END + +(000128) S_GPROC32: [0001:000077C0], Cb: 0000010A, Type: 0x19E5, MxFlcPresenter::IsA + Parent: 00000000, End: 00000188, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000164) S_REGISTER: ecx, Type: 0x15DA, this +(000174) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000188) S_END + +(00018C) S_GPROC32: [0001:000078D0], Cb: 00000006, Type: 0x19E8, LegoFlcTexturePresenter::ClassName + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001D8) S_REGISTER: ecx, Type: 0x19E7, this + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:000078E0], Cb: 00000061, Type: T_NOTYPE(0000), LegoFlcTexturePresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00024C) S_LABEL32: [0001:00007939], $L43109 +(000260) S_LABEL32: [0001:0000792F], $L43107 +(000274) S_BPREL32: [FFFFFFF0], Type: 0x19E3, this +(000288) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:00007950], Cb: 00000009, Type: 0x19E4, LegoFlcTexturePresenter::Init + Parent: 00000000, End: 000002F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0002E8) S_REGISTER: ecx, Type: 0x19E3, this + +(0002F8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoeventnotificationparam.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoentitypresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000073F0], Cb: 00000064, Type: 0x19EB, LegoEntityPresenter::LegoEntityPresenter + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0000744C], $L55062 +(0000F0) S_LABEL32: [0001:00007442], $L55061 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x19EA, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:00007460], Cb: 00000006, Type: 0x19EE, LegoEntityPresenter::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x19ED, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00007470], Cb: 000000D6, Type: 0x19EF, LegoEntityPresenter::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001B8) S_REGISTER: ecx, Type: 0x19ED, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00007550], Cb: 0000001E, Type: T_NOTYPE(0000), LegoEntityPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000260, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00023C) S_REGISTER: esi, Type: 0x19EA, this +(00024C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000260) S_END + +(000264) S_GPROC32: [0001:00007570], Cb: 00000008, Type: 0x19EB, LegoEntityPresenter::Init + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(0002A8) S_REGISTER: ecx, Type: 0x19EA, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:00007580], Cb: 0000005D, Type: 0x19EB, LegoEntityPresenter::~LegoEntityPresenter + Parent: 00000000, End: 0000034C, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000310) S_LABEL32: [0001:000075D5], $L55124 +(000324) S_LABEL32: [0001:000075CB], $L55123 +(000338) S_BPREL32: [FFFFFFF0], Type: 0x19EA, this + +(00034C) S_END + +(000350) S_GPROC32: [0001:000075E0], Cb: 0000000C, Type: 0x3CF5, LegoEntityPresenter::SetBackend + Parent: 00000000, End: 000003C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(000398) S_REGISTER: ecx, Type: 0x19EA, this +(0003A8) S_BPREL32: [00000004], Type: 0x1913, p_backend + +(0003C0) S_END + +(0003C4) S_GPROC32: [0001:000075F0], Cb: 00000024, Type: 0x19F1, LegoEntityPresenter::Destroy + Parent: 00000000, End: 00000438, Next: 00000000 + Debug start: 00000001, Debug end: 00000020 + +(000408) S_REGISTER: esi, Type: 0x19EA, this +(000418) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000438) S_END + +(00043C) S_GPROC32: [0001:00007620], Cb: 00000008, Type: 0x19EB, LegoEntityPresenter::Destroy + Parent: 00000000, End: 00000490, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000480) S_REGISTER: ecx, Type: 0x19EA, this + +(000490) S_END + +(000494) S_GPROC32: [0001:00007630], Cb: 00000032, Type: 0x3CF6, LegoEntityPresenter::StartAction + Parent: 00000000, End: 00000534, Next: 00000000 + Debug start: 0000000A, Debug end: 0000002E + +(0004DC) S_REGISTER: edi, Type: 0x19EA, this +(0004EC) S_BPREL32: [00000004], Type: 0x12DF, p_controller +(000508) S_BPREL32: [00000008], Type: 0x109C, p_action +(000520) S_REGISTER: esi, Type: T_LONG(0012), result + +(000534) S_END + +(000538) S_GPROC32: [0001:00007670], Cb: 00000060, Type: 0x19EB, LegoEntityPresenter::ReadyTickle + Parent: 00000000, End: 00000590, Next: 00000000 + Debug start: 00000001, Debug end: 0000005E + +(000580) S_REGISTER: esi, Type: 0x19EA, this + +(000590) S_END + +(000594) S_GPROC32: [0001:000076D0], Cb: 0000000C, Type: 0x19EB, LegoEntityPresenter::RepeatingTickle + Parent: 00000000, End: 000005F0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(0005E0) S_REGISTER: ecx, Type: 0x19EA, this + +(0005F0) S_END + +(0005F4) S_GPROC32: [0001:000076E0], Cb: 00000020, Type: 0x3D04, LegoEntityPresenter::SetBackendLocation + Parent: 00000000, End: 00000698, Next: 00000000 + Debug start: 00000000, Debug end: 0000001D + +(000644) S_REGISTER: ecx, Type: 0x19EA, this +(000654) S_BPREL32: [00000004], Type: 0x1C1A, p_location +(00066C) S_BPREL32: [00000008], Type: 0x1C1A, p_direction +(000684) S_BPREL32: [0000000C], Type: 0x1C1A, p_up + +(000698) S_END + +(00069C) S_GPROC32: [0001:00007700], Cb: 0000004C, Type: 0x19EB, LegoEntityPresenter::ParseExtra + Parent: 00000000, End: 00000718, Next: 00000000 + Debug start: 00000014, Debug end: 00000043 + +(0006E4) S_REGISTER: edx, Type: 0x19EA, this +(0006F4) S_REGISTER: ax, Type: T_USHORT(0021), len +(000704) S_BPREL32: [FFFFFE00], Type: 0x11E1, data + +(000718) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoentity.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000070F0], Cb: 0000005D, Type: 0x19F3, LegoEntity::~LegoEntity + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00007145], $L47457 +(0000D8) S_LABEL32: [0001:0000713B], $L47456 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x19F2, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00007150], Cb: 0000005B, Type: 0x19F3, LegoEntity::Init + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 0000000B, Debug end: 00000055 + +(00013C) S_REGISTER: esi, Type: 0x19F2, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:000071B0], Cb: 00000003, Type: 0x19F4, LegoEntity::ResetWorldTransform + Parent: 00000000, End: 000001C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000198) S_REGISTER: ecx, Type: 0x19F2, this +(0001A8) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_inVehicle + +(0001C0) S_END + +(0001C4) S_GPROC32: [0001:000071C0], Cb: 00000003, Type: 0x19F7, LegoEntity::SetWorldTransform + Parent: 00000000, End: 00000258, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00020C) S_REGISTER: ecx, Type: 0x19F2, this +(00021C) S_BPREL32: [00000004], Type: 0x19F5, p_loc +(000230) S_BPREL32: [00000008], Type: 0x19F5, p_dir +(000244) S_BPREL32: [0000000C], Type: 0x19F5, p_up + +(000258) S_END + +(00025C) S_GPROC32: [0001:000071D0], Cb: 00000026, Type: 0x19F8, LegoEntity::Create + Parent: 00000000, End: 000002C0, Next: 00000000 + Debug start: 00000005, Debug end: 00000023 + +(000298) S_REGISTER: esi, Type: 0x19F2, this +(0002A8) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(0002C0) S_END + +(0002C4) S_GPROC32: [0001:00007200], Cb: 0000001A, Type: 0x19F4, LegoEntity::Destroy + Parent: 00000000, End: 00000330, Next: 00000000 + Debug start: 00000001, Debug end: 00000016 + +(000300) S_REGISTER: esi, Type: 0x19F2, this +(000310) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000330) S_END + +(000334) S_GPROC32: [0001:00007220], Cb: 0000001A, Type: 0x19F3, LegoEntity::SetWorld + Parent: 00000000, End: 00000390, Next: 00000000 + Debug start: 00000001, Debug end: 00000018 + +(000370) S_REGISTER: esi, Type: 0x19F2, this +(000380) S_REGISTER: eax, Type: 0x128A, world + +(000390) S_END + +(000394) S_GPROC32: [0001:00007240], Cb: 00000003, Type: 0x19FA, LegoEntity::SetROI + Parent: 00000000, End: 0000041C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003D0) S_REGISTER: ecx, Type: 0x19F2, this +(0003E0) S_BPREL32: [00000004], Type: 0x1910, p_roi +(0003F4) S_BPREL32: [00000008], Type: T_UCHAR(0020), p_bool1 +(000408) S_BPREL32: [0000000C], Type: T_UCHAR(0020), p_bool2 + +(00041C) S_END + +(000420) S_GPROC32: [0001:00007250], Cb: 00000003, Type: 0x3CF8, LegoEntity::SetLocation + Parent: 00000000, End: 000004CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000460) S_REGISTER: ecx, Type: 0x19F2, this +(000470) S_BPREL32: [00000004], Type: 0x1C1A, p_location +(000488) S_BPREL32: [00000008], Type: 0x1C1A, p_direction +(0004A0) S_BPREL32: [0000000C], Type: 0x1C1A, p_up +(0004B4) S_BPREL32: [00000010], Type: T_UCHAR(0020), __formal + +(0004CC) S_END + +(0004D0) S_GPROC32: [0001:00007260], Cb: 00000001, Type: 0x19F3, LegoEntity::FUN_10010c30 + Parent: 00000000, End: 00000520, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000510) S_REGISTER: ecx, Type: 0x19F2, this + +(000520) S_END + +(000524) S_GPROC32: [0001:00007270], Cb: 000000F8, Type: 0x19FB, LegoEntity::ParseAction + Parent: 00000000, End: 000005C4, Next: 00000000 + Debug start: 0000000D, Debug end: 000000EC + +(000564) S_REGISTER: ebx, Type: 0x19F2, this +(000574) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_extra +(000588) S_BPREL32: [FFFFFC00], Type: 0x147B, actionValue +(0005A0) S_BPREL32: [FFFFF800], Type: 0x147B, copy +(0005B4) S_REGISTER: esi, Type: T_32PRCHAR(0470), token + +(0005C4) S_END + +(0005C8) S_GPROC32: [0001:00007370], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x34 + Parent: 00000000, End: 00000618, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000608) S_REGISTER: ecx, Type: 0x19F2, this + +(000618) S_END + +(00061C) S_GPROC32: [0001:00007380], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x38 + Parent: 00000000, End: 0000066C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00065C) S_REGISTER: ecx, Type: 0x19F2, this + +(00066C) S_END + +(000670) S_GPROC32: [0001:00007390], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x3c + Parent: 00000000, End: 000006C0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0006B0) S_REGISTER: ecx, Type: 0x19F2, this + +(0006C0) S_END + +(0006C4) S_GPROC32: [0001:000073A0], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x40 + Parent: 00000000, End: 00000714, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000704) S_REGISTER: ecx, Type: 0x19F2, this + +(000714) S_END + +(000718) S_GPROC32: [0001:000073B0], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x44 + Parent: 00000000, End: 00000768, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000758) S_REGISTER: ecx, Type: 0x19F2, this + +(000768) S_END + +(00076C) S_GPROC32: [0001:000073C0], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x48 + Parent: 00000000, End: 000007BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0007AC) S_REGISTER: ecx, Type: 0x19F2, this + +(0007BC) S_END + +(0007C0) S_GPROC32: [0001:000073D0], Cb: 00000001, Type: 0x19F3, LegoEntity::VTable0x4c + Parent: 00000000, End: 00000810, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000800) S_REGISTER: ecx, Type: 0x19F2, this + +(000810) S_END + +(000814) S_GPROC32: [0001:000073E0], Cb: 00000005, Type: 0x19FC, LegoEntity::Notify + Parent: 00000000, End: 00000874, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000850) S_REGISTER: ecx, Type: 0x19F2, this +(000860) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000874) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legocontrolmanager.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00006F60], Cb: 0000005D, Type: 0x19FE, LegoControlManager::LegoControlManager + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:00006FB5], $L1046 +(0000F0) S_LABEL32: [0001:00006FAB], $L1045 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x19FD, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:00006FC0], Cb: 00000006, Type: 0x1A01, LegoControlManager::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x1A00, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00006FD0], Cb: 00000072, Type: 0x1A02, LegoControlManager::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001B8) S_REGISTER: ecx, Type: 0x1A00, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00007050], Cb: 0000001E, Type: T_NOTYPE(0000), LegoControlManager::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x19FD, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:00007070], Cb: 0000004F, Type: 0x19FE, LegoControlManager::~LegoControlManager + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002B0) S_LABEL32: [0001:000070B7], $L1078 +(0002C4) S_LABEL32: [0001:000070AD], $L1077 +(0002D8) S_BPREL32: [FFFFFFF0], Type: 0x19FD, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:000070C0], Cb: 00000003, Type: 0x1A03, LegoControlManager::Register + Parent: 00000000, End: 0000035C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000334) S_REGISTER: ecx, Type: 0x19FD, this +(000344) S_BPREL32: [00000004], Type: 0x10AE, p_listener + +(00035C) S_END + +(000360) S_GPROC32: [0001:000070D0], Cb: 00000003, Type: 0x1A03, LegoControlManager::Unregister + Parent: 00000000, End: 000003D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003A8) S_REGISTER: ecx, Type: 0x19FD, this +(0003B8) S_BPREL32: [00000004], Type: 0x10AE, p_listener + +(0003D0) S_END + +(0003D4) S_GPROC32: [0001:000070E0], Cb: 00000003, Type: 0x1A04, LegoControlManager::Tickle + Parent: 00000000, End: 00000428, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000418) S_REGISTER: ecx, Type: 0x19FD, this + +(000428) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legocarbuildanimpresenter.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:00006CF0], Cb: 0000005D, Type: 0x1A07, LegoCarBuildAnimPresenter::LegoCarBuildAnimPresenter + Parent: 00000000, End: 0000012C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000F0) S_LABEL32: [0001:00006D45], $L43024 +(000104) S_LABEL32: [0001:00006D3B], $L43023 +(000118) S_BPREL32: [FFFFFFF0], Type: 0x1A06, this + +(00012C) S_END + +(000130) S_GPROC32: [0001:00006D50], Cb: 00000006, Type: 0x1A0A, LegoCarBuildAnimPresenter::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x1A09, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:00006D60], Cb: 0000013E, Type: 0x1A0B, LegoCarBuildAnimPresenter::IsA + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(0001D8) S_REGISTER: ecx, Type: 0x1A09, this +(0001E8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001FC) S_END + +(000200) S_GPROC32: [0001:00006EA0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoCarBuildAnimPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000284, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000260) S_REGISTER: esi, Type: 0x1A06, this +(000270) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000284) S_END + +(000288) S_GPROC32: [0001:00006EC0], Cb: 00000049, Type: 0x1A0E, LegoAnimPresenter::~LegoAnimPresenter + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(0002D8) S_LABEL32: [0001:00006F01], $L43120 +(0002EC) S_LABEL32: [0001:00006EF7], $L43119 +(000300) S_BPREL32: [FFFFFFF0], Type: 0x1A0D, this + +(000314) S_END + +(000318) S_GPROC32: [0001:00006F10], Cb: 0000004F, Type: 0x1A07, LegoCarBuildAnimPresenter::~LegoCarBuildAnimPresenter + Parent: 00000000, End: 000003B4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000378) S_LABEL32: [0001:00006F57], $L43128 +(00038C) S_LABEL32: [0001:00006F4D], $L43127 +(0003A0) S_BPREL32: [FFFFFFF0], Type: 0x1A06, this + +(0003B4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legocarbuild.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00006AE0], Cb: 0000005D, Type: 0x1A11, LegoCarBuild::LegoCarBuild + Parent: 00000000, End: 00000104, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000C8) S_LABEL32: [0001:00006B35], $L47127 +(0000DC) S_LABEL32: [0001:00006B2B], $L47126 +(0000F0) S_BPREL32: [FFFFFFF0], Type: 0x1A10, this + +(000104) S_END + +(000108) S_GPROC32: [0001:00006B40], Cb: 00000006, Type: 0x1A14, LegoCarBuild::ClassName + Parent: 00000000, End: 00000158, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000148) S_REGISTER: ecx, Type: 0x1A13, this + +(000158) S_END + +(00015C) S_GPROC32: [0001:00006B50], Cb: 0000010A, Type: 0x1A15, LegoCarBuild::IsA + Parent: 00000000, End: 000001BC, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000198) S_REGISTER: ecx, Type: 0x1A13, this +(0001A8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001BC) S_END + +(0001C0) S_GPROC32: [0001:00006C60], Cb: 0000001E, Type: T_NOTYPE(0000), LegoCarBuild::`scalar deleting destructor' + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000214) S_REGISTER: esi, Type: 0x1A10, this +(000224) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000238) S_END + +(00023C) S_GPROC32: [0001:00006C80], Cb: 0000004F, Type: 0x1A11, LegoCarBuild::~LegoCarBuild + Parent: 00000000, End: 000002BC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000280) S_LABEL32: [0001:00006CC7], $L47209 +(000294) S_LABEL32: [0001:00006CBD], $L47208 +(0002A8) S_BPREL32: [FFFFFFF0], Type: 0x1A10, this + +(0002BC) S_END + +(0002C0) S_GPROC32: [0001:00006CD0], Cb: 00000003, Type: 0x1A16, LegoCarBuild::Tickle + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002FC) S_REGISTER: ecx, Type: 0x1A10, this + +(00030C) S_END + +(000310) S_GPROC32: [0001:00006CE0], Cb: 00000005, Type: 0x1A17, LegoCarBuild::Notify + Parent: 00000000, End: 00000370, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00034C) S_REGISTER: ecx, Type: 0x1A10, this +(00035C) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000370) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legocameracontroller.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00006870], Cb: 0000005D, Type: 0x1A19, LegoCameraController::LegoCameraController + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000E0) S_LABEL32: [0001:000068C5], $L2084 +(0000F4) S_LABEL32: [0001:000068BB], $L2083 +(000108) S_BPREL32: [FFFFFFF0], Type: 0x1A18, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:000068D0], Cb: 00000006, Type: 0x1A1C, LegoCameraController::ClassName + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000168) S_REGISTER: ecx, Type: 0x1A1B, this + +(000178) S_END + +(00017C) S_GPROC32: [0001:000068E0], Cb: 00000072, Type: 0x1A1D, LegoCameraController::IsA + Parent: 00000000, End: 000001E4, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001C0) S_REGISTER: ecx, Type: 0x1A1B, this +(0001D0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001E4) S_END + +(0001E8) S_GPROC32: [0001:00006960], Cb: 0000001E, Type: T_NOTYPE(0000), LegoCameraController::`scalar deleting destructor' + Parent: 00000000, End: 00000268, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000244) S_REGISTER: esi, Type: 0x1A18, this +(000254) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000268) S_END + +(00026C) S_GPROC32: [0001:00006980], Cb: 0000004F, Type: 0x1A19, LegoCameraController::~LegoCameraController + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002C0) S_LABEL32: [0001:000069C7], $L2115 +(0002D4) S_LABEL32: [0001:000069BD], $L2114 +(0002E8) S_BPREL32: [FFFFFFF0], Type: 0x1A18, this + +(0002FC) S_END + +(000300) S_GPROC32: [0001:000069D0], Cb: 00000003, Type: 0x3393, LegoCameraController::LookAt + Parent: 00000000, End: 00000390, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000344) S_REGISTER: ecx, Type: 0x1A18, this +(000354) S_BPREL32: [00000004], Type: 0x19F5, p_at +(000368) S_BPREL32: [00000008], Type: 0x19F5, p_dir +(00037C) S_BPREL32: [0000000C], Type: 0x19F5, p_up + +(000390) S_END + +(000394) S_GPROC32: [0001:000069E0], Cb: 00000003, Type: 0x3395, LegoCameraController::FUN_100123e0 + Parent: 00000000, End: 00000420, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003E0) S_REGISTER: ecx, Type: 0x1A18, this +(0003F0) S_BPREL32: [00000004], Type: 0x112B, p_transform +(000408) S_BPREL32: [00000008], Type: T_UINT4(0075), __formal + +(000420) S_END + +(000424) S_GPROC32: [0001:000069F0], Cb: 00000037, Type: 0x3396, LegoCameraController::FUN_10012740 + Parent: 00000000, End: 00000480, Next: 00000000 + Debug start: 00000000, Debug end: 00000036 + +(000470) S_REGISTER: ecx, Type: 0x1A18, this + +(000480) S_END + +(000484) S_LPROC32: [0001:00006A30], Cb: 00000001, Type: 0x1878, $E2 + Parent: 00000000, End: 000004B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0004B0) S_END + +(0004B4) S_GPROC32: [0001:00006A40], Cb: 00000037, Type: 0x3396, LegoCameraController::FUN_100127f0 + Parent: 00000000, End: 00000510, Next: 00000000 + Debug start: 00000000, Debug end: 00000036 + +(000500) S_REGISTER: ecx, Type: 0x1A18, this + +(000510) S_END + +(000514) S_LPROC32: [0001:00006A80], Cb: 00000001, Type: 0x1878, $E4 + Parent: 00000000, End: 00000540, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000540) S_END + +(000544) S_GPROC32: [0001:00006A90], Cb: 00000037, Type: 0x3396, LegoCameraController::FUN_100128a0 + Parent: 00000000, End: 000005A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000036 + +(000590) S_REGISTER: ecx, Type: 0x1A18, this + +(0005A0) S_END + +(0005A4) S_LPROC32: [0001:00006AD0], Cb: 00000001, Type: 0x1878, $E6 + Parent: 00000000, End: 000005D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0005D0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legocachesound.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000066F0], Cb: 00000064, Type: 0x1A20, LegoCacheSound::LegoCacheSound + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0000674C], $L1034 +(0000E4) S_LABEL32: [0001:00006742], $L1033 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x1A1F, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:00006760], Cb: 00000006, Type: 0x1A23, LegoCacheSound::ClassName + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000154) S_REGISTER: ecx, Type: 0x1A22, this + +(000164) S_END + +(000168) S_GPROC32: [0001:00006770], Cb: 00000072, Type: 0x1A24, LegoCacheSound::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001A4) S_REGISTER: ecx, Type: 0x1A22, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:000067F0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoCacheSound::`scalar deleting destructor' + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000220) S_REGISTER: esi, Type: 0x1A1F, this +(000230) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000244) S_END + +(000248) S_GPROC32: [0001:00006810], Cb: 0000004F, Type: 0x1A20, LegoCacheSound::~LegoCacheSound + Parent: 00000000, End: 000002CC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000290) S_LABEL32: [0001:00006857], $L1066 +(0002A4) S_LABEL32: [0001:0000684D], $L1065 +(0002B8) S_BPREL32: [FFFFFFF0], Type: 0x1A1F, this + +(0002CC) S_END + +(0002D0) S_GPROC32: [0001:00006860], Cb: 00000001, Type: 0x1A20, LegoCacheSound::Init + Parent: 00000000, End: 0000031C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00030C) S_REGISTER: ecx, Type: 0x1A1F, this + +(00031C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legobuildingmanager.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000065A0], Cb: 0000000A, Type: 0x1A25, LegoBuildingManager::configureLegoBuildingManager + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0000E8) S_BPREL32: [00000004], Type: T_INT4(0074), p_buildingManagerConfig + +(00010C) S_END + +(000110) S_GPROC32: [0001:000065B0], Cb: 00000064, Type: 0x1A27, LegoBuildingManager::LegoBuildingManager + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000046 + Flags: Frame Ptr Present + +(000160) S_LABEL32: [0001:0000660C], $L1037 +(000174) S_LABEL32: [0001:00006602], $L1036 +(000188) S_BPREL32: [FFFFFFF0], Type: 0x1A26, this + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:00006620], Cb: 0000003F, Type: 0x1A28, MxCore::IsA + Parent: 00000000, End: 000001F8, Next: 00000000 + Debug start: 00000005, Debug end: 0000003C + +(0001D4) S_REGISTER: ecx, Type: 0x1983, this +(0001E4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001F8) S_END + +(0001FC) S_GPROC32: [0001:00006660], Cb: 00000006, Type: 0x1A2B, LegoBuildingManager::ClassName + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000244) S_REGISTER: ecx, Type: 0x1A2A, this + +(000254) S_END + +(000258) S_GPROC32: [0001:00006670], Cb: 0000001E, Type: T_NOTYPE(0000), LegoBuildingManager::`scalar deleting destructor' + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0002B4) S_REGISTER: esi, Type: 0x1A26, this +(0002C4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002D8) S_END + +(0002DC) S_GPROC32: [0001:00006690], Cb: 0000004F, Type: 0x1A27, LegoBuildingManager::~LegoBuildingManager + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000330) S_LABEL32: [0001:000066D7], $L1059 +(000344) S_LABEL32: [0001:000066CD], $L1058 +(000358) S_BPREL32: [FFFFFFF0], Type: 0x1A26, this + +(00036C) S_END + +(000370) S_GPROC32: [0001:000066E0], Cb: 00000001, Type: 0x1A27, LegoBuildingManager::Init + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003B4) S_REGISTER: ecx, Type: 0x1A26, this + +(0003C4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legobackgroundcolor.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:000062B0], Cb: 000000B2, Type: 0x1A2E, LegoBackgroundColor::LegoBackgroundColor + Parent: 00000000, End: 00000168, Next: 00000000 + Debug start: 0000001D, Debug end: 0000007B + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:0000635A], $L53107 +(0000F0) S_LABEL32: [0001:00006350], $L53106 +(000104) S_LABEL32: [0001:00006345], $L53109 +(000118) S_LABEL32: [0001:0000633A], $L53110 +(00012C) S_BPREL32: [FFFFFFF0], Type: 0x1A2D, this +(000140) S_BPREL32: [00000008], Type: T_32PRCHAR(0470), p_key +(000154) S_BPREL32: [0000000C], Type: T_32PRCHAR(0470), p_value + +(000168) S_END + +(00016C) S_GPROC32: [0001:00006370], Cb: 00000064, Type: 0x1277, MxVariable::~MxVariable + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 0000001D, Debug end: 00000037 + Flags: Frame Ptr Present + +(0001AC) S_LABEL32: [0001:000063C9], $L53123 +(0001C0) S_LABEL32: [0001:000063BF], $L53122 +(0001D4) S_LABEL32: [0001:000063B4], $L53124 +(0001E8) S_BPREL32: [FFFFFFF0], Type: 0x1274, this + +(0001FC) S_END + +(000200) S_GPROC32: [0001:000063E0], Cb: 000001BF, Type: 0x1A2F, LegoBackgroundColor::SetValue + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 0000000B, Debug end: 000001B5 + +(000248) S_REGISTER: ebp, Type: 0x1A2D, this +(000258) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_colorString +(000274) S_BPREL32: [FFFFFFF4], Type: T_REAL32(0040), convertedG +(00028C) S_BPREL32: [FFFFFFFC], Type: 0x128F, videomanager +(0002A8) S_REGISTER: eax, Type: T_32PRCHAR(0470), colorStringSplit +(0002C4) S_BPREL32: [FFFFFFF8], Type: T_REAL32(0040), convertedR +(0002DC) S_BPREL32: [FFFFFFF0], Type: T_REAL32(0040), convertedB + +(0002F4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoanimpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00005DA0], Cb: 000000CB, Type: 0x1A0E, LegoAnimPresenter::LegoAnimPresenter + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 0000001D, Debug end: 00000086 + Flags: Frame Ptr Present + +(0000D8) S_LABEL32: [0001:00005E63], $L43001 +(0000EC) S_LABEL32: [0001:00005E59], $L43000 +(000100) S_LABEL32: [0001:00005E51], $L43003 +(000114) S_LABEL32: [0001:00005E49], $L43005 +(000128) S_LABEL32: [0001:00005E41], $L43007 +(00013C) S_LABEL32: [0001:00005E36], $L43008 +(000150) S_BPREL32: [FFFFFFF0], Type: 0x1A0D, this + +(000164) S_END + +(000168) S_GPROC32: [0001:00005E70], Cb: 00000006, Type: 0x1A32, MxPresenter::ClassName + Parent: 00000000, End: 000001B8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001A8) S_REGISTER: ecx, Type: 0x1A31, this + +(0001B8) S_END + +(0001BC) S_GPROC32: [0001:00005E80], Cb: 00000072, Type: 0x1A33, MxPresenter::IsA + Parent: 00000000, End: 00000218, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(0001F4) S_REGISTER: ecx, Type: 0x1A31, this +(000204) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000218) S_END + +(00021C) S_GPROC32: [0001:00005F00], Cb: 0000001E, Type: T_NOTYPE(0000), MxPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000270) S_REGISTER: esi, Type: 0x143D, this +(000280) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000294) S_END + +(000298) S_GPROC32: [0001:00005F20], Cb: 00000006, Type: 0x1A36, MxMediaPresenter::ClassName + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002DC) S_REGISTER: ecx, Type: 0x1A35, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:00005F30], Cb: 000000A2, Type: 0x1A37, MxMediaPresenter::IsA + Parent: 00000000, End: 00000354, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(000330) S_REGISTER: ecx, Type: 0x1A35, this +(000340) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000354) S_END + +(000358) S_GPROC32: [0001:00005FE0], Cb: 0000001E, Type: T_NOTYPE(0000), MxMediaPresenter::`scalar deleting destructor' + Parent: 00000000, End: 000003D4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0003B0) S_REGISTER: esi, Type: 0x1580, this +(0003C0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0003D4) S_END + +(0003D8) S_GPROC32: [0001:00006000], Cb: 00000006, Type: 0x1A3A, MxVideoPresenter::ClassName + Parent: 00000000, End: 0000042C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00041C) S_REGISTER: ecx, Type: 0x1A39, this + +(00042C) S_END + +(000430) S_GPROC32: [0001:00006010], Cb: 000000D6, Type: 0x1A3B, MxVideoPresenter::IsA + Parent: 00000000, End: 00000494, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(000470) S_REGISTER: ecx, Type: 0x1A39, this +(000480) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000494) S_END + +(000498) S_GPROC32: [0001:000060F0], Cb: 0000001E, Type: T_NOTYPE(0000), MxVideoPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000514, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0004F0) S_REGISTER: esi, Type: 0x11E3, this +(000500) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000514) S_END + +(000518) S_GPROC32: [0001:00006110], Cb: 00000006, Type: 0x1A3E, LegoAnimPresenter::ClassName + Parent: 00000000, End: 0000056C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00055C) S_REGISTER: ecx, Type: 0x1A3D, this + +(00056C) S_END + +(000570) S_GPROC32: [0001:00006120], Cb: 0000010A, Type: 0x1A3F, LegoAnimPresenter::IsA + Parent: 00000000, End: 000005D4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0005B0) S_REGISTER: ecx, Type: 0x1A3D, this +(0005C0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0005D4) S_END + +(0005D8) S_GPROC32: [0001:00006230], Cb: 00000061, Type: T_NOTYPE(0000), LegoAnimPresenter::`scalar deleting destructor' + Parent: 00000000, End: 00000680, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000630) S_LABEL32: [0001:00006289], $L43200 +(000644) S_LABEL32: [0001:0000627F], $L43198 +(000658) S_BPREL32: [FFFFFFF0], Type: 0x1A0D, this +(00066C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000680) S_END + +(000684) S_GPROC32: [0001:000062A0], Cb: 00000001, Type: 0x1A0E, LegoAnimPresenter::Init + Parent: 00000000, End: 000006D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0006C4) S_REGISTER: ecx, Type: 0x1A0D, this + +(0006D4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoanimmmpresenter.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00005BE0], Cb: 0000005D, Type: 0x1A42, LegoAnimMMPresenter::LegoAnimMMPresenter + Parent: 00000000, End: 00000118, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000DC) S_LABEL32: [0001:00005C35], $L42544 +(0000F0) S_LABEL32: [0001:00005C2B], $L42543 +(000104) S_BPREL32: [FFFFFFF0], Type: 0x1A41, this + +(000118) S_END + +(00011C) S_GPROC32: [0001:00005C40], Cb: 00000006, Type: 0x1A45, LegoAnimMMPresenter::ClassName + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000164) S_REGISTER: ecx, Type: 0x1A44, this + +(000174) S_END + +(000178) S_GPROC32: [0001:00005C50], Cb: 000000D6, Type: 0x1A46, LegoAnimMMPresenter::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001B8) S_REGISTER: ecx, Type: 0x1A44, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00005D30], Cb: 00000061, Type: T_NOTYPE(0000), LegoAnimMMPresenter::`scalar deleting destructor' + Parent: 00000000, End: 0000028C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00023C) S_LABEL32: [0001:00005D89], $L42602 +(000250) S_LABEL32: [0001:00005D7F], $L42600 +(000264) S_BPREL32: [FFFFFFF0], Type: 0x1A41, this +(000278) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00028C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoanimationmanager.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00005A20], Cb: 0000000A, Type: 0x1A47, LegoAnimationManager::configureLegoAnimationManager + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 00000000, Debug end: 00000009 + +(0000E8) S_BPREL32: [00000004], Type: T_INT4(0074), p_legoAnimationManagerConfig + +(000114) S_END + +(000118) S_GPROC32: [0001:00005A30], Cb: 0000005D, Type: 0x1A49, LegoAnimationManager::LegoAnimationManager + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(00016C) S_LABEL32: [0001:00005A85], $L1064 +(000180) S_LABEL32: [0001:00005A7B], $L1063 +(000194) S_BPREL32: [FFFFFFF0], Type: 0x1A48, this + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00005A90], Cb: 00000006, Type: 0x1A4C, LegoAnimationManager::ClassName + Parent: 00000000, End: 00000204, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001F4) S_REGISTER: ecx, Type: 0x1A4B, this + +(000204) S_END + +(000208) S_GPROC32: [0001:00005AA0], Cb: 00000072, Type: 0x1A4D, LegoAnimationManager::IsA + Parent: 00000000, End: 00000270, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(00024C) S_REGISTER: ecx, Type: 0x1A4B, this +(00025C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000270) S_END + +(000274) S_GPROC32: [0001:00005B20], Cb: 0000001E, Type: T_NOTYPE(0000), LegoAnimationManager::`scalar deleting destructor' + Parent: 00000000, End: 000002F4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0002D0) S_REGISTER: esi, Type: 0x1A48, this +(0002E0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002F4) S_END + +(0002F8) S_GPROC32: [0001:00005B40], Cb: 0000004F, Type: 0x1A49, LegoAnimationManager::~LegoAnimationManager + Parent: 00000000, End: 00000388, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00034C) S_LABEL32: [0001:00005B87], $L1095 +(000360) S_LABEL32: [0001:00005B7D], $L1094 +(000374) S_BPREL32: [FFFFFFF0], Type: 0x1A48, this + +(000388) S_END + +(00038C) S_GPROC32: [0001:00005B90], Cb: 00000001, Type: 0x1A49, LegoAnimationManager::Init + Parent: 00000000, End: 000003E0, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003D0) S_REGISTER: ecx, Type: 0x1A48, this + +(0003E0) S_END + +(0003E4) S_GPROC32: [0001:00005BA0], Cb: 00000003, Type: 0x1A4E, LegoAnimationManager::FUN_1005f6d0 + Parent: 00000000, End: 00000458, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000430) S_REGISTER: ecx, Type: 0x1A48, this +(000440) S_BPREL32: [00000004], Type: T_UCHAR(0020), __formal + +(000458) S_END + +(00045C) S_GPROC32: [0001:00005BB0], Cb: 00000005, Type: 0x1A4F, LegoAnimationManager::Notify + Parent: 00000000, End: 000004C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0004A0) S_REGISTER: ecx, Type: 0x1A48, this +(0004B0) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0004C4) S_END + +(0004C8) S_GPROC32: [0001:00005BC0], Cb: 00000003, Type: 0x1A50, LegoAnimationManager::Tickle + Parent: 00000000, End: 0000051C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00050C) S_REGISTER: ecx, Type: 0x1A48, this + +(00051C) S_END + +(000520) S_GPROC32: [0001:00005BD0], Cb: 00000003, Type: 0x1A4E, LegoAnimationManager::FUN_10064670 + Parent: 00000000, End: 00000594, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00056C) S_REGISTER: ecx, Type: 0x1A48, this +(00057C) S_BPREL32: [00000004], Type: T_UCHAR(0020), __formal + +(000594) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoanimactor.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoactor.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000057F0], Cb: 000000C5, Type: 0x18E6, LegoActor::LegoActor + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001D, Debug end: 0000009E + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:000058AD], $L45944 +(0000D4) S_LABEL32: [0001:000058A3], $L45943 +(0000E8) S_LABEL32: [0001:0000589B], $L45946 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x18E5, this + +(000110) S_END + +(000114) S_GPROC32: [0001:000058C0], Cb: 00000006, Type: 0x1A57, LegoActor::ClassName + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000150) S_REGISTER: ecx, Type: 0x1A56, this + +(000160) S_END + +(000164) S_GPROC32: [0001:000058D0], Cb: 000000D6, Type: 0x1A58, LegoActor::IsA + Parent: 00000000, End: 000001C0, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(00019C) S_REGISTER: ecx, Type: 0x1A56, this +(0001AC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C0) S_END + +(0001C4) S_GPROC32: [0001:000059B0], Cb: 00000061, Type: T_NOTYPE(0000), LegoActor::`scalar deleting destructor' + Parent: 00000000, End: 00000264, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000214) S_LABEL32: [0001:00005A09], $L46109 +(000228) S_LABEL32: [0001:000059FF], $L46107 +(00023C) S_BPREL32: [FFFFFFF0], Type: 0x18E5, this +(000250) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000264) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoactioncontrolpresenter.cpp.obj + +(00004C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000094) S_GPROC32: [0001:00005680], Cb: 00000001, Type: 0x1A5B, LegoActionControlPresenter::ReadyTickle + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0000E4) S_REGISTER: ecx, Type: 0x1A5A, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00005690], Cb: 00000001, Type: 0x1A5B, LegoActionControlPresenter::RepeatingTickle + Parent: 00000000, End: 0000015C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00014C) S_REGISTER: ecx, Type: 0x1A5A, this + +(00015C) S_END + +(000160) S_GPROC32: [0001:000056A0], Cb: 00000028, Type: 0x1A5C, LegoActionControlPresenter::AddToManager + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000002, Debug end: 00000025 + +(0001B0) S_REGISTER: esi, Type: 0x1A5A, this +(0001C0) S_REGISTER: edi, Type: T_LONG(0012), result + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:000056D0], Cb: 0000002D, Type: 0x1A5D, LegoActionControlPresenter::Destroy + Parent: 00000000, End: 00000254, Next: 00000000 + Debug start: 00000001, Debug end: 00000029 + +(000224) S_REGISTER: esi, Type: 0x1A5A, this +(000234) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_fromDestructor + +(000254) S_END + +(000258) S_GPROC32: [0001:00005700], Cb: 000000E6, Type: 0x1A5B, LegoActionControlPresenter::ParseExtra + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 0000000E, Debug end: 000000DC + +(0002A8) S_REGISTER: ebx, Type: 0x1A5A, this +(0002B8) S_BPREL32: [FFFFFC00], Type: 0x147B, output +(0002CC) S_REGISTER: edx, Type: T_UINT4(0075), len +(0002DC) S_BPREL32: [FFFFF800], Type: 0x147B, buf + +(0002EC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\legoact2state.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\lego3dview.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000055C0], Cb: 00000009, Type: 0x3E23, Lego3DView::Lego3DView + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000008 + +(0000C4) S_REGISTER: ecx, Type: 0x29B8, this + +(0000D4) S_END + +(0000D8) S_GPROC32: [0001:000055D0], Cb: 0000001E, Type: T_NOTYPE(0000), Lego3DView::`scalar deleting destructor' + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000128) S_REGISTER: esi, Type: 0x29B8, this +(000138) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00014C) S_END + +(000150) S_GPROC32: [0001:000055F0], Cb: 00000007, Type: 0x3E23, Lego3DView::~Lego3DView + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000190) S_REGISTER: ecx, Type: 0x29B8, this + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00005600], Cb: 00000049, Type: 0x4471, Lego3DView::Create + Parent: 00000000, End: 0000023C, Next: 00000000 + Debug start: 00000004, Debug end: 00000042 + +(0001E0) S_REGISTER: esi, Type: 0x29B8, this +(0001F0) S_BPREL32: [00000004], Type: 0x445C, p_createStruct +(00020C) S_BPREL32: [00000008], Type: 0x207F, p_renderer +(000224) S_BPREL32: [FFFFFFEC], Type: 0x4E3A, createData + +(00023C) S_END + +(000240) S_GPROC32: [0001:00005650], Cb: 00000003, Type: 0x448F, Lego3DView::FUN_100ab100 + Parent: 00000000, End: 000002A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000280) S_REGISTER: ecx, Type: 0x29B8, this +(000290) S_BPREL32: [00000004], Type: 0x1910, p_roi + +(0002A4) S_END + +(0002A8) S_GPROC32: [0001:00005660], Cb: 00000003, Type: 0x448F, Lego3DView::FUN_100ab1b0 + Parent: 00000000, End: 0000030C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0002E8) S_REGISTER: ecx, Type: 0x29B8, this +(0002F8) S_BPREL32: [00000004], Type: 0x1910, p_roi + +(00030C) S_END + +(000310) S_GPROC32: [0001:00005670], Cb: 00000005, Type: 0x3479, Lego3DView::PickROI + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00034C) S_REGISTER: ecx, Type: 0x29B8, this +(00035C) S_BPREL32: [00000004], Type: T_LONG(0012), p_a +(00036C) S_BPREL32: [00000008], Type: T_LONG(0012), p_b + +(00037C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\lego3dmanager.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000053D0], Cb: 00000048, Type: 0x4463, InitializeCreateStruct + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 00000000, Debug end: 00000047 + +(0000C8) S_BPREL32: [00000004], Type: 0x445C, p_tglSurface +(0000E4) S_BPREL32: [00000008], Type: 0x4461, p_createStruct + +(000100) S_END + +(000104) S_GPROC32: [0001:00005420], Cb: 00000014, Type: 0x3E28, Lego3DManager::Lego3DManager + Parent: 00000000, End: 00000158, Next: 00000000 + Debug start: 00000000, Debug end: 00000013 + +(000148) S_REGISTER: ecx, Type: 0x1FDB, this + +(000158) S_END + +(00015C) S_GPROC32: [0001:00005440], Cb: 0000001E, Type: T_NOTYPE(0000), Lego3DManager::`scalar deleting destructor' + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001B0) S_REGISTER: esi, Type: 0x1FDB, this +(0001C0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00005460], Cb: 0000000B, Type: 0x3E28, Lego3DManager::~Lego3DManager + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000000, Debug end: 0000000B + +(000220) S_REGISTER: ecx, Type: 0x1FDB, this + +(000230) S_END + +(000234) S_GPROC32: [0001:00005470], Cb: 000000E2, Type: 0x4466, Lego3DManager::Create + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000020, Debug end: 000000AB + Flags: Frame Ptr Present + +(000274) S_LABEL32: [0001:00005545], $L43735 +(000288) S_LABEL32: [0001:0000553B], $L43734 +(00029C) S_LABEL32: [0001:0000552E], $L43738 +(0002B0) S_REGISTER: ebx, Type: 0x1FDB, this +(0002C0) S_BPREL32: [00000008], Type: 0x4464, p_createStruct +(0002DC) S_BPREL32: [FFFFFFC4], Type: 0x4EA9, surfaceCreateStruct + +(0002FC) S_END + +(000300) S_GPROC32: [0001:00005560], Cb: 00000041, Type: 0x3E28, Lego3DManager::Destroy + Parent: 00000000, End: 00000350, Next: 00000000 + Debug start: 00000001, Debug end: 0000003F + +(000340) S_REGISTER: esi, Type: 0x1FDB, this + +(000350) S_END + +(000354) S_GPROC32: [0001:000055B0], Cb: 00000009, Type: 0x4E66, Lego3DManager::FUN_100ab4b0 + Parent: 00000000, End: 000003BC, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000398) S_REGISTER: ecx, Type: 0x1FDB, this +(0003A8) S_BPREL32: [00000004], Type: T_REAL64(0041), p_und + +(0003BC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\jukeboxstate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000053C0], Cb: 00000003, Type: 0x1A60, JukeBoxState::VTable0x14 + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000C4) S_REGISTER: ecx, Type: 0x1A5F, this + +(0000D4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\jukeboxentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000051A0], Cb: 000000B6, Type: 0x1A63, JukeBoxEntity::JukeBoxEntity + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000008D + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:0000524E], $L45914 +(0000E0) S_LABEL32: [0001:00005244], $L45913 +(0000F4) S_LABEL32: [0001:0000523C], $L45916 +(000108) S_BPREL32: [FFFFFFF0], Type: 0x1A62, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:00005260], Cb: 00000006, Type: 0x1A66, JukeBoxEntity::ClassName + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000160) S_REGISTER: ecx, Type: 0x1A65, this + +(000170) S_END + +(000174) S_GPROC32: [0001:00005270], Cb: 000000D6, Type: 0x1A67, JukeBoxEntity::IsA + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(0001B0) S_REGISTER: ecx, Type: 0x1A65, this +(0001C0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00005350], Cb: 0000001E, Type: T_NOTYPE(0000), JukeBoxEntity::`scalar deleting destructor' + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00022C) S_REGISTER: esi, Type: 0x1A62, this +(00023C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000250) S_END + +(000254) S_GPROC32: [0001:00005370], Cb: 0000004F, Type: 0x1A63, JukeBoxEntity::~JukeBoxEntity + Parent: 00000000, End: 000002D8, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00029C) S_LABEL32: [0001:000053B7], $L46068 +(0002B0) S_LABEL32: [0001:000053AD], $L46067 +(0002C4) S_BPREL32: [FFFFFFF0], Type: 0x1A62, this + +(0002D8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\jukebox.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00004F90], Cb: 00000075, Type: 0x1A6A, JukeBox::JukeBox + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000057 + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:00004FFD], $L49368 +(0000CC) S_LABEL32: [0001:00004FF3], $L49367 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x1A69, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00005010], Cb: 00000006, Type: 0x1A6D, JukeBox::ClassName + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000134) S_REGISTER: ecx, Type: 0x1A6C, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00005020], Cb: 0000010A, Type: 0x1A6E, JukeBox::IsA + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(00017C) S_REGISTER: ecx, Type: 0x1A6C, this +(00018C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00005130], Cb: 00000061, Type: T_NOTYPE(0000), JukeBox::`scalar deleting destructor' + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0001F4) S_LABEL32: [0001:00005189], $L49448 +(000208) S_LABEL32: [0001:0000517F], $L49446 +(00021C) S_BPREL32: [FFFFFFF0], Type: 0x1A69, this +(000230) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000244) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\jetskirace.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\jetski.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00004D10], Cb: 00000078, Type: 0x1A71, Jetski::Jetski + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 00000057 + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:00004D80], $L47465 +(0000CC) S_LABEL32: [0001:00004D76], $L47464 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x1A70, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00004D90], Cb: 00000006, Type: 0x1A74, Jetski::ClassName + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000134) S_REGISTER: ecx, Type: 0x1A73, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00004DA0], Cb: 00000172, Type: 0x1A75, Jetski::IsA + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(00017C) S_REGISTER: ecx, Type: 0x1A73, this +(00018C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00004F20], Cb: 00000061, Type: T_NOTYPE(0000), Jetski::`scalar deleting destructor' + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0001F0) S_LABEL32: [0001:00004F79], $L47733 +(000204) S_LABEL32: [0001:00004F6F], $L47731 +(000218) S_BPREL32: [FFFFFFF0], Type: 0x1A70, this +(00022C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000240) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\islepathactor.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00004C30], Cb: 0000007B, Type: 0x1A78, IslePathActor::IslePathActor + Parent: 00000000, End: 00000108, Next: 00000000 + Debug start: 0000001C, Debug end: 00000064 + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:00004CA3], $L47451 +(0000E0) S_LABEL32: [0001:00004C99], $L47450 +(0000F4) S_BPREL32: [FFFFFFF0], Type: 0x1A77, this + +(000108) S_END + +(00010C) S_GPROC32: [0001:00004CB0], Cb: 0000001B, Type: 0x1A79, IslePathActor::Create + Parent: 00000000, End: 00000174, Next: 00000000 + Debug start: 00000000, Debug end: 00000018 + +(00014C) S_REGISTER: ecx, Type: 0x1A77, this +(00015C) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(000174) S_END + +(000178) S_GPROC32: [0001:00004CD0], Cb: 00000001, Type: 0x1A78, IslePathActor::VTable0xe0 + Parent: 00000000, End: 000001CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0001BC) S_REGISTER: ecx, Type: 0x1A77, this + +(0001CC) S_END + +(0001D0) S_GPROC32: [0001:00004CE0], Cb: 00000001, Type: 0x1A78, IslePathActor::VTable0xe4 + Parent: 00000000, End: 00000224, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000214) S_REGISTER: ecx, Type: 0x1A77, this + +(000224) S_END + +(000228) S_GPROC32: [0001:00004CF0], Cb: 00000003, Type: 0x1A7B, IslePathActor::VTable0xe8 + Parent: 00000000, End: 000002C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00026C) S_REGISTER: ecx, Type: 0x1A77, this +(00027C) S_BPREL32: [00000004], Type: T_UINT4(0075), __formal +(000294) S_BPREL32: [00000008], Type: T_UCHAR(0020), __formal +(0002AC) S_BPREL32: [0000000C], Type: T_UCHAR(0020), __formal + +(0002C4) S_END + +(0002C8) S_GPROC32: [0001:00004D00], Cb: 00000001, Type: 0x1A78, IslePathActor::VTable0xec + Parent: 00000000, End: 0000031C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00030C) S_REGISTER: ecx, Type: 0x1A77, this + +(00031C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\isleactor.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\isle.cpp.obj + +(000034) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00007C) S_GPROC32: [0001:00004470], Cb: 000000DB, Type: 0x1A7E, Isle::Isle + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001D, Debug end: 000000AC + Flags: Frame Ptr Present + +(0000B0) S_LABEL32: [0001:00004543], $L53915 +(0000C4) S_LABEL32: [0001:00004539], $L53914 +(0000D8) S_LABEL32: [0001:0000452B], $L53916 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x1A7D, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00004550], Cb: 00000006, Type: 0x1A81, Isle::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x1A80, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:00004560], Cb: 0000010A, Type: 0x1A82, Isle::IsA + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000184) S_REGISTER: ecx, Type: 0x1A80, this +(000194) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00004670], Cb: 00000003, Type: 0x3432, Isle::VTable0x5c + Parent: 00000000, End: 000001F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0001E4) S_REGISTER: ecx, Type: 0x1A7D, this + +(0001F4) S_END + +(0001F8) S_GPROC32: [0001:00004680], Cb: 00000001, Type: 0x1A7E, Isle::VTable0x60 + Parent: 00000000, End: 00000240, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000230) S_REGISTER: ecx, Type: 0x1A7D, this + +(000240) S_END + +(000244) S_GPROC32: [0001:00004690], Cb: 0000001E, Type: T_NOTYPE(0000), Isle::`scalar deleting destructor' + Parent: 00000000, End: 000002B4, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000290) S_REGISTER: esi, Type: 0x1A7D, this +(0002A0) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002B4) S_END + +(0002B8) S_GPROC32: [0001:000046B0], Cb: 000000CB, Type: 0x1A7E, Isle::~Isle + Parent: 00000000, End: 0000033C, Next: 00000000 + Debug start: 00000021, Debug end: 0000009E + Flags: Frame Ptr Present + +(0002EC) S_LABEL32: [0001:00004773], $L54000 +(000300) S_LABEL32: [0001:00004769], $L53999 +(000314) S_LABEL32: [0001:0000475B], $L54001 +(000328) S_BPREL32: [FFFFFFF0], Type: 0x1A7D, this + +(00033C) S_END + +(000340) S_GPROC32: [0001:00004780], Cb: 000000E6, Type: 0x3433, Isle::Create + Parent: 00000000, End: 000003D4, Next: 00000000 + Debug start: 00000003, Debug end: 000000E1 + +(000374) S_REGISTER: edi, Type: 0x1A7D, this +(000384) S_BPREL32: [00000004], Type: 0x1083, p_dsObject +(00039C) S_REGISTER: ebx, Type: T_LONG(0012), result +(0003B0) S_REGISTER: eax, Type: 0x3399, state +(0003C0) S_REGISTER: esi, Type: 0x1088, gameState + +(0003D4) S_END + +(0003D8) S_GPROC32: [0001:00004870], Cb: 00000177, Type: 0x3434, Isle::Notify + Parent: 00000000, End: 00000454, Next: 00000000 + Debug start: 00000005, Debug end: 00000138 + +(00040C) S_LDATA32: [0001:000049D0], Type: T_NOTYPE(0000), +(00041C) S_REGISTER: edi, Type: 0x1A7D, this +(00042C) S_BPREL32: [00000004], Type: 0x10B7, p_param +(000440) S_REGISTER: ebx, Type: T_LONG(0012), result + +(000454) S_END + +(000458) S_GPROC32: [0001:000049F0], Cb: 00000005, Type: 0x3434, Isle::StopAction + Parent: 00000000, End: 000004B4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000490) S_REGISTER: ecx, Type: 0x1A7D, this +(0004A0) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0004B4) S_END + +(0004B8) S_GPROC32: [0001:00004A00], Cb: 00000001, Type: 0x1A7E, Isle::Stop + Parent: 00000000, End: 000004FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0004EC) S_REGISTER: ecx, Type: 0x1A7D, this + +(0004FC) S_END + +(000500) S_GPROC32: [0001:00004A10], Cb: 00000005, Type: 0x3434, Isle::HandleType17Notification + Parent: 00000000, End: 0000056C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000548) S_REGISTER: ecx, Type: 0x1A7D, this +(000558) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(00056C) S_END + +(000570) S_GPROC32: [0001:00004A20], Cb: 00000005, Type: 0x3434, Isle::HandleType19Notification + Parent: 00000000, End: 000005DC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0005B8) S_REGISTER: ecx, Type: 0x1A7D, this +(0005C8) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0005DC) S_END + +(0005E0) S_GPROC32: [0001:00004A30], Cb: 00000003, Type: 0x3435, Isle::VTable0x68 + Parent: 00000000, End: 0000063C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000618) S_REGISTER: ecx, Type: 0x1A7D, this +(000628) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_add + +(00063C) S_END + +(000640) S_GPROC32: [0001:00004A40], Cb: 00000003, Type: 0x3467, Isle::HandleTransitionEnd + Parent: 00000000, End: 00000694, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000684) S_REGISTER: ecx, Type: 0x1A7D, this + +(000694) S_END + +(000698) S_GPROC32: [0001:00004A50], Cb: 00000140, Type: 0x3436, Isle::VTable0x58 + Parent: 00000000, End: 000006F8, Next: 00000000 + Debug start: 00000005, Debug end: 0000013A + +(0006D0) S_REGISTER: ebx, Type: 0x1A7D, this +(0006E0) S_BPREL32: [00000004], Type: 0x10AE, p_object + +(0006F8) S_END + +(0006FC) S_GPROC32: [0001:00004B90], Cb: 00000088, Type: 0x3454, Isle::VTable0x6c + Parent: 00000000, End: 00000758, Next: 00000000 + Debug start: 00000005, Debug end: 00000082 + +(000734) S_REGISTER: ebx, Type: 0x1A7D, this +(000744) S_BPREL32: [00000004], Type: 0x3385, p_actor + +(000758) S_END + +(00075C) S_GPROC32: [0001:00004C20], Cb: 00000003, Type: 0x3432, Isle::VTable0x64 + Parent: 00000000, End: 000007A4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000794) S_REGISTER: ecx, Type: 0x1A7D, this + +(0007A4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\infocenterstate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000042C0], Cb: 00000073, Type: 0x1A84, InfocenterState::InfocenterState + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:0000432B], $L2232 +(0000E4) S_LABEL32: [0001:00004321], $L2231 +(0000F8) S_LABEL32: [0001:00004319], $L2234 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x1A83, this + +(000120) S_END + +(000124) S_GPROC32: [0001:00004340], Cb: 00000006, Type: 0x1A87, InfocenterState::ClassName + Parent: 00000000, End: 00000178, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000168) S_REGISTER: ecx, Type: 0x1A86, this + +(000178) S_END + +(00017C) S_GPROC32: [0001:00004350], Cb: 000000A2, Type: 0x1A88, InfocenterState::IsA + Parent: 00000000, End: 000001DC, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001B8) S_REGISTER: ecx, Type: 0x1A86, this +(0001C8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001DC) S_END + +(0001E0) S_GPROC32: [0001:00004400], Cb: 0000001E, Type: T_NOTYPE(0000), InfocenterState::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x1A83, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:00004420], Cb: 0000004F, Type: 0x1A84, InfocenterState::~InfocenterState + Parent: 00000000, End: 000002E8, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(0002AC) S_LABEL32: [0001:00004467], $L2302 +(0002C0) S_LABEL32: [0001:0000445D], $L2301 +(0002D4) S_BPREL32: [FFFFFFF0], Type: 0x1A83, this + +(0002E8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\infocenterentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\infocenterdoor.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000040C0], Cb: 0000005D, Type: 0x1A8B, InfocenterDoor::InfocenterDoor + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:00004115], $L47123 +(0000E4) S_LABEL32: [0001:0000410B], $L47122 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x1A8A, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:00004120], Cb: 00000006, Type: 0x1A8E, InfocenterDoor::ClassName + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000154) S_REGISTER: ecx, Type: 0x1A8D, this + +(000164) S_END + +(000168) S_GPROC32: [0001:00004130], Cb: 0000010A, Type: 0x1A8F, InfocenterDoor::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001A4) S_REGISTER: ecx, Type: 0x1A8D, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:00004240], Cb: 0000001E, Type: T_NOTYPE(0000), InfocenterDoor::`scalar deleting destructor' + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000220) S_REGISTER: esi, Type: 0x1A8A, this +(000230) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000244) S_END + +(000248) S_GPROC32: [0001:00004260], Cb: 0000004F, Type: 0x1A8B, InfocenterDoor::~InfocenterDoor + Parent: 00000000, End: 000002CC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000290) S_LABEL32: [0001:000042A7], $L47205 +(0002A4) S_LABEL32: [0001:0000429D], $L47204 +(0002B8) S_BPREL32: [FFFFFFF0], Type: 0x1A8A, this + +(0002CC) S_END + +(0002D0) S_GPROC32: [0001:000042B0], Cb: 00000005, Type: 0x1A90, InfocenterDoor::Notify + Parent: 00000000, End: 00000334, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000310) S_REGISTER: ecx, Type: 0x1A8A, this +(000320) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000334) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\infocenter.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00003E60], Cb: 0000005D, Type: 0x1A93, Infocenter::Infocenter + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00003EB5], $L47151 +(0000D8) S_LABEL32: [0001:00003EAB], $L47150 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x1A92, this + +(000100) S_END + +(000104) S_GPROC32: [0001:00003EC0], Cb: 00000006, Type: 0x1A96, Infocenter::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x1A95, this + +(000154) S_END + +(000158) S_GPROC32: [0001:00003ED0], Cb: 0000010A, Type: 0x1A97, Infocenter::IsA + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000190) S_REGISTER: ecx, Type: 0x1A95, this +(0001A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:00003FE0], Cb: 0000001E, Type: T_NOTYPE(0000), Infocenter::`scalar deleting destructor' + Parent: 00000000, End: 0000022C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000208) S_REGISTER: esi, Type: 0x1A92, this +(000218) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00022C) S_END + +(000230) S_GPROC32: [0001:00004000], Cb: 0000004F, Type: 0x1A93, Infocenter::~Infocenter + Parent: 00000000, End: 000002AC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000270) S_LABEL32: [0001:00004047], $L47233 +(000284) S_LABEL32: [0001:0000403D], $L47232 +(000298) S_BPREL32: [FFFFFFF0], Type: 0x1A92, this + +(0002AC) S_END + +(0002B0) S_GPROC32: [0001:00004050], Cb: 00000008, Type: 0x3EFC, Infocenter::Create + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002EC) S_REGISTER: ecx, Type: 0x1A92, this +(0002FC) S_BPREL32: [00000004], Type: 0x1083, p_dsObject + +(000314) S_END + +(000318) S_GPROC32: [0001:00004060], Cb: 00000005, Type: 0x1A98, Infocenter::Notify + Parent: 00000000, End: 00000378, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000354) S_REGISTER: ecx, Type: 0x1A92, this +(000364) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000378) S_END + +(00037C) S_GPROC32: [0001:00004070], Cb: 00000001, Type: 0x1A93, Infocenter::Stop + Parent: 00000000, End: 000003C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(0003B4) S_REGISTER: ecx, Type: 0x1A92, this + +(0003C4) S_END + +(0003C8) S_GPROC32: [0001:00004080], Cb: 00000003, Type: 0x3EFD, Infocenter::VTable0x68 + Parent: 00000000, End: 0000042C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000408) S_REGISTER: ecx, Type: 0x1A92, this +(000418) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_add + +(00042C) S_END + +(000430) S_GPROC32: [0001:00004090], Cb: 00000003, Type: 0x1A99, Infocenter::Tickle + Parent: 00000000, End: 0000047C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00046C) S_REGISTER: ecx, Type: 0x1A92, this + +(00047C) S_END + +(000480) S_GPROC32: [0001:000040A0], Cb: 00000003, Type: 0x3EFE, Infocenter::VTable0x5c + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0004C0) S_REGISTER: ecx, Type: 0x1A92, this + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:000040B0], Cb: 00000003, Type: 0x3EFE, Infocenter::VTable0x64 + Parent: 00000000, End: 00000524, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000514) S_REGISTER: ecx, Type: 0x1A92, this + +(000524) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\hospitalstate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00003CA0], Cb: 00000089, Type: 0x1A9C, HospitalState::HospitalState + Parent: 00000000, End: 0000011C, Next: 00000000 + Debug start: 0000001C, Debug end: 00000063 + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:00003D21], $L2229 +(0000E0) S_LABEL32: [0001:00003D17], $L2228 +(0000F4) S_LABEL32: [0001:00003D0F], $L2231 +(000108) S_BPREL32: [FFFFFFF0], Type: 0x1A9B, this + +(00011C) S_END + +(000120) S_GPROC32: [0001:00003D30], Cb: 00000006, Type: 0x1A9F, HospitalState::ClassName + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000160) S_REGISTER: ecx, Type: 0x1A9E, this + +(000170) S_END + +(000174) S_GPROC32: [0001:00003D40], Cb: 000000A2, Type: 0x1AA0, HospitalState::IsA + Parent: 00000000, End: 000001D4, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001B0) S_REGISTER: ecx, Type: 0x1A9E, this +(0001C0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001D4) S_END + +(0001D8) S_GPROC32: [0001:00003DF0], Cb: 00000061, Type: T_NOTYPE(0000), HospitalState::`scalar deleting destructor' + Parent: 00000000, End: 0000027C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00022C) S_LABEL32: [0001:00003E49], $L2295 +(000240) S_LABEL32: [0001:00003E3F], $L2293 +(000254) S_BPREL32: [FFFFFFF0], Type: 0x1A9B, this +(000268) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00027C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\hospitalentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\hospital.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00003A40], Cb: 000000B3, Type: 0x1AA3, Hospital::Hospital + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 0000001C, Debug end: 00000095 + Flags: Frame Ptr Present + +(0000BC) S_LABEL32: [0001:00003AEB], $L49373 +(0000D0) S_LABEL32: [0001:00003AE1], $L49372 +(0000E4) S_BPREL32: [FFFFFFF0], Type: 0x1AA2, this + +(0000F8) S_END + +(0000FC) S_GPROC32: [0001:00003B00], Cb: 00000006, Type: 0x1AA6, Hospital::ClassName + Parent: 00000000, End: 00000148, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000138) S_REGISTER: ecx, Type: 0x1AA5, this + +(000148) S_END + +(00014C) S_GPROC32: [0001:00003B10], Cb: 0000010A, Type: 0x1AA7, Hospital::IsA + Parent: 00000000, End: 000001A8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000184) S_REGISTER: ecx, Type: 0x1AA5, this +(000194) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A8) S_END + +(0001AC) S_GPROC32: [0001:00003C20], Cb: 0000001E, Type: T_NOTYPE(0000), Hospital::`scalar deleting destructor' + Parent: 00000000, End: 00000220, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001FC) S_REGISTER: esi, Type: 0x1AA2, this +(00020C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000220) S_END + +(000224) S_GPROC32: [0001:00003C40], Cb: 0000004F, Type: 0x1AA3, Hospital::~Hospital + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000260) S_LABEL32: [0001:00003C87], $L49455 +(000274) S_LABEL32: [0001:00003C7D], $L49454 +(000288) S_BPREL32: [FFFFFFF0], Type: 0x1AA2, this + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:00003C90], Cb: 00000005, Type: 0x1AA8, Hospital::Notify + Parent: 00000000, End: 000002FC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002D8) S_REGISTER: ecx, Type: 0x1AA2, this +(0002E8) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0002FC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\historybook.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00003840], Cb: 0000005D, Type: 0x1AAB, HistoryBook::HistoryBook + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00003895], $L47123 +(0000D8) S_LABEL32: [0001:0000388B], $L47122 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x1AAA, this + +(000100) S_END + +(000104) S_GPROC32: [0001:000038A0], Cb: 00000006, Type: 0x1AAE, HistoryBook::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x1AAD, this + +(000154) S_END + +(000158) S_GPROC32: [0001:000038B0], Cb: 0000010A, Type: 0x1AAF, HistoryBook::IsA + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000190) S_REGISTER: ecx, Type: 0x1AAD, this +(0001A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:000039C0], Cb: 0000001E, Type: T_NOTYPE(0000), HistoryBook::`scalar deleting destructor' + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00020C) S_REGISTER: esi, Type: 0x1AAA, this +(00021C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000230) S_END + +(000234) S_GPROC32: [0001:000039E0], Cb: 0000004F, Type: 0x1AAB, HistoryBook::~HistoryBook + Parent: 00000000, End: 000002B4, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000278) S_LABEL32: [0001:00003A27], $L47205 +(00028C) S_LABEL32: [0001:00003A1D], $L47204 +(0002A0) S_BPREL32: [FFFFFFF0], Type: 0x1AAA, this + +(0002B4) S_END + +(0002B8) S_GPROC32: [0001:00003A30], Cb: 00000005, Type: 0x1AB0, HistoryBook::Notify + Parent: 00000000, End: 00000318, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002F4) S_REGISTER: ecx, Type: 0x1AAA, this +(000304) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000318) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\helicopterstate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\helicopter.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00002770], Cb: 000000F5, Type: 0x1AB3, Helicopter::Helicopter + Parent: 00000000, End: 00000114, Next: 00000000 + Debug start: 0000001D, Debug end: 000000C8 + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:0000285D], $L49513 +(0000D8) S_LABEL32: [0001:00002853], $L49512 +(0000EC) S_LABEL32: [0001:00002845], $L49514 +(000100) S_BPREL32: [FFFFFFF0], Type: 0x1AB2, this + +(000114) S_END + +(000118) S_GPROC32: [0001:00002870], Cb: 00000018, Type: 0x1111, Vector3Impl::Vector3Impl + Parent: 00000000, End: 0000017C, Next: 00000000 + Debug start: 00000000, Debug end: 00000015 + +(000158) S_REGISTER: ecx, Type: 0x10F8, this +(000168) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data + +(00017C) S_END + +(000180) S_GPROC32: [0001:00002890], Cb: 00000006, Type: 0x1AB6, Helicopter::ClassName + Parent: 00000000, End: 000001D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001C0) S_REGISTER: ecx, Type: 0x1AB5, this + +(0001D0) S_END + +(0001D4) S_GPROC32: [0001:000028A0], Cb: 00000172, Type: 0x1AB7, Helicopter::IsA + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(00020C) S_REGISTER: ecx, Type: 0x1AB5, this +(00021C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000230) S_END + +(000234) S_GPROC32: [0001:00002A20], Cb: 0000001E, Type: T_NOTYPE(0000), Helicopter::`scalar deleting destructor' + Parent: 00000000, End: 000002A8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000284) S_REGISTER: esi, Type: 0x1AB2, this +(000294) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002A8) S_END + +(0002AC) S_GPROC32: [0001:00002A40], Cb: 00000084, Type: 0x1AB3, Helicopter::~Helicopter + Parent: 00000000, End: 0000033C, Next: 00000000 + Debug start: 00000021, Debug end: 00000057 + Flags: Frame Ptr Present + +(0002EC) S_LABEL32: [0001:00002ABC], $L49833 +(000300) S_LABEL32: [0001:00002AB2], $L49832 +(000314) S_LABEL32: [0001:00002AA4], $L49834 +(000328) S_BPREL32: [FFFFFFF0], Type: 0x1AB2, this + +(00033C) S_END + +(000340) S_GPROC32: [0001:00002AD0], Cb: 00000055, Type: 0x1AB8, Helicopter::Create + Parent: 00000000, End: 000003C8, Next: 00000000 + Debug start: 00000008, Debug end: 00000050 + +(00037C) S_REGISTER: esi, Type: 0x1AB2, this +(00038C) S_BPREL32: [00000004], Type: 0x1083, p_dsObject +(0003A4) S_REGISTER: edi, Type: T_LONG(0012), result +(0003B8) S_REGISTER: eax, Type: 0x128A, world + +(0003C8) S_END + +(0003CC) S_GPROC32: [0001:00002B30], Cb: 00000037, Type: 0x1AB3, Helicopter::GetState + Parent: 00000000, End: 00000418, Next: 00000000 + Debug start: 00000001, Debug end: 00000035 + +(000408) S_REGISTER: esi, Type: 0x1AB2, this + +(000418) S_END + +(00041C) S_GPROC32: [0001:00002B70], Cb: 00000112, Type: 0x1AB3, Helicopter::VTable0xe4 + Parent: 00000000, End: 0000046C, Next: 00000000 + Debug start: 00000002, Debug end: 0000010F + +(00045C) S_REGISTER: esi, Type: 0x1AB2, this + +(00046C) S_END + +(000470) S_GPROC32: [0001:00002C90], Cb: 0000015E, Type: 0x3397, Helicopter::VTable0xcc + Parent: 00000000, End: 000004C0, Next: 00000000 + Debug start: 00000006, Debug end: 0000015A + +(0004B0) S_REGISTER: esi, Type: 0x1AB2, this + +(0004C0) S_END + +(0004C4) S_GPROC32: [0001:00002DF0], Cb: 00000448, Type: 0x3398, Helicopter::VTable0xd4 + Parent: 00000000, End: 0000060C, Next: 00000000 + Debug start: 00000020, Debug end: 000003CF + Flags: Frame Ptr Present + +(000504) S_LABEL32: [0001:00003212], $L49873 +(000518) S_LABEL32: [0001:00003208], $L49872 +(00052C) S_REGISTER: esi, Type: 0x1AB2, this +(00053C) S_BPREL32: [00000008], Type: 0x10BF, p_param +(000550) S_BPREL32: [FFFFFFF0], Type: 0x4E96, script +(000564) S_BPREL32: [FFFFFFEC], Type: T_UINT4(0075), ret +(000574) S_REGISTER: eax, Type: 0x3399, state +(000584) S_BPREL32: [FFFFFFD8], Type: 0x339D, dir +(000594) S_BPREL32: [FFFFFF84], Type: 0x339D, v68 +(0005A4) S_BPREL32: [FFFFFFAC], Type: 0x339D, v7c +(0005B4) S_BPREL32: [FFFFFFC0], Type: 0x339D, loc +(0005C4) S_BPREL32: [FFFFFF70], Type: 0x339D, lookat +(0005D8) S_BPREL32: [FFFFFF5C], Type: 0x339D, va4 +(0005E8) S_BPREL32: [FFFFFF98], Type: 0x339D, v90 +(0005F8) S_BPREL32: [FFFFFFD4], Type: T_REAL32(0040), scale + +(00060C) S_END + +(000610) S_GPROC32: [0001:00003240], Cb: 00000220, Type: 0x33A1, Helicopter::VTable0xd8 + Parent: 00000000, End: 00000728, Next: 00000000 + Debug start: 0000000F, Debug end: 00000214 + +(000650) S_REGISTER: ebx, Type: 0x1AB2, this +(000660) S_BPREL32: [00000004], Type: 0x339F, p_param +(000674) S_BPREL32: [FFFFFF70], Type: 0x33A5, at +(000684) S_BPREL32: [FFFFFF58], Type: 0x33A5, dir +(000694) S_BPREL32: [FFFFFF60], Type: 0x33A5, up +(0006A4) S_BPREL32: [FFFFFFC0], Type: 0x103D, mat2 +(0006B8) S_BPREL32: [FFFFFF6C], Type: T_REAL32(0040), s +(0006C8) S_BPREL32: [FFFFFF68], Type: T_REAL32(0040), c +(0006D8) S_BPREL32: [FFFFFF78], Type: 0x1135, mat +(0006E8) S_BPREL32: [FFFFFF58], Type: 0x33A5, at +(0006F8) S_BPREL32: [FFFFFF60], Type: 0x33A5, dir +(000708) S_BPREL32: [FFFFFFC0], Type: 0x33A5, up +(000718) S_BPREL32: [FFFFFF78], Type: 0x1135, mat + +(000728) S_END + +(00072C) S_GPROC32: [0001:00003460], Cb: 00000042, Type: 0x33A6, Helicopter::VTable0x74 + Parent: 00000000, End: 00000794, Next: 00000000 + Debug start: 00000005, Debug end: 0000003E + +(00076C) S_REGISTER: esi, Type: 0x1AB2, this +(00077C) S_BPREL32: [00000004], Type: 0x111E, p_transform + +(000794) S_END + +(000798) S_GPROC32: [0001:000034B0], Cb: 00000185, Type: 0x33A7, Helicopter::VTable0x70 + Parent: 00000000, End: 0000087C, Next: 00000000 + Debug start: 00000005, Debug end: 0000017D + +(0007D8) S_REGISTER: esi, Type: 0x1AB2, this +(0007E8) S_BPREL32: [00000004], Type: T_REAL32(0040), p_float +(0007FC) S_REGISTER: ecx, Type: T_UINT4(0075), state +(00080C) S_BPREL32: [FFFFFFA8], Type: T_REAL32(0040), f +(00081C) S_BPREL32: [FFFFFFF0], Type: 0x1031, fa +(00082C) S_BPREL32: [FFFFFFA0], Type: 0x33A5, v +(00083C) S_BPREL32: [FFFFFF98], Type: 0x345A, v3 +(00084C) S_BPREL32: [FFFFFFA8], Type: 0x1135, mat +(00085C) S_BPREL32: [FFFFFF90], Type: 0x33A5, v2 +(00086C) S_BPREL32: [FFFFFF8C], Type: T_REAL32(0040), f2 + +(00087C) S_END + +(000880) S_GPROC32: [0001:00003640], Cb: 000001FD, Type: 0x33AC, HelicopterSubclass::FUN_100040a0 + Parent: 00000000, End: 00000940, Next: 00000000 + Debug start: 00000006, Debug end: 000001F4 + +(0008C8) S_REGISTER: edi, Type: 0x33A9, this +(0008D8) S_BPREL32: [00000004], Type: 0x33AA, p_v +(0008E8) S_BPREL32: [00000008], Type: T_REAL32(0040), p_f +(0008F8) S_REGISTER: eax, Type: T_UINT4(0075), state +(000908) S_REGISTER: edx, Type: T_INT4(0074), i +(000914) S_BPREL32: [FFFFFFF8], Type: T_REAL64(0041), d2 +(000924) S_BPREL32: [FFFFFFF0], Type: T_REAL64(0041), d1 +(000934) S_REGISTER: ecx, Type: T_INT4(0074), i + +(000940) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\gifmanager.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00002710], Cb: 0000005A, Type: 0x1ABF, GifMap::FindNode + Parent: 00000000, End: 00000108, Next: 00000000 + Debug start: 00000006, Debug end: 00000054 + +(0000BC) S_REGISTER: ecx, Type: 0x1ABC, this +(0000CC) S_BPREL32: [00000004], Type: 0x1ABD, p_string +(0000E4) S_REGISTER: eax, Type: 0x1ABA, ret +(0000F4) S_REGISTER: esi, Type: 0x1ABA, current + +(000108) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\gasstationstate.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00002550], Cb: 00000090, Type: 0x1AC2, GasStationState::GasStationState + Parent: 00000000, End: 00000134, Next: 00000000 + Debug start: 0000001C, Debug end: 00000067 + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000025D8], $L2230 +(0000E4) S_LABEL32: [0001:000025CE], $L2229 +(0000F8) S_LABEL32: [0001:000025C6], $L2232 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x1AC1, this +(000120) S_REGISTER: eax, Type: T_32PUINT4(0475), unk0x08 + +(000134) S_END + +(000138) S_GPROC32: [0001:000025E0], Cb: 00000006, Type: 0x1AC5, GasStationState::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x1AC4, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:000025F0], Cb: 000000A2, Type: 0x1AC6, GasStationState::IsA + Parent: 00000000, End: 000001F0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001CC) S_REGISTER: ecx, Type: 0x1AC4, this +(0001DC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001F0) S_END + +(0001F4) S_GPROC32: [0001:000026A0], Cb: 00000061, Type: T_NOTYPE(0000), GasStationState::`scalar deleting destructor' + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00024C) S_LABEL32: [0001:000026F9], $L2296 +(000260) S_LABEL32: [0001:000026EF], $L2294 +(000274) S_BPREL32: [FFFFFFF0], Type: 0x1AC1, this +(000288) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(00029C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\gasstationentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\gasstation.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00002340], Cb: 0000005D, Type: 0x1AC9, GasStation::GasStation + Parent: 00000000, End: 00000100, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000C4) S_LABEL32: [0001:00002395], $L47127 +(0000D8) S_LABEL32: [0001:0000238B], $L47126 +(0000EC) S_BPREL32: [FFFFFFF0], Type: 0x1AC8, this + +(000100) S_END + +(000104) S_GPROC32: [0001:000023A0], Cb: 00000006, Type: 0x1ACC, GasStation::ClassName + Parent: 00000000, End: 00000154, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000144) S_REGISTER: ecx, Type: 0x1ACB, this + +(000154) S_END + +(000158) S_GPROC32: [0001:000023B0], Cb: 0000010A, Type: 0x1ACD, GasStation::IsA + Parent: 00000000, End: 000001B4, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(000190) S_REGISTER: ecx, Type: 0x1ACB, this +(0001A0) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001B4) S_END + +(0001B8) S_GPROC32: [0001:000024C0], Cb: 0000001E, Type: T_NOTYPE(0000), GasStation::`scalar deleting destructor' + Parent: 00000000, End: 0000022C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000208) S_REGISTER: esi, Type: 0x1AC8, this +(000218) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00022C) S_END + +(000230) S_GPROC32: [0001:000024E0], Cb: 0000004F, Type: 0x1AC9, GasStation::~GasStation + Parent: 00000000, End: 000002AC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000270) S_LABEL32: [0001:00002527], $L47209 +(000284) S_LABEL32: [0001:0000251D], $L47208 +(000298) S_BPREL32: [FFFFFFF0], Type: 0x1AC8, this + +(0002AC) S_END + +(0002B0) S_GPROC32: [0001:00002530], Cb: 00000005, Type: 0x1ACE, GasStation::Notify + Parent: 00000000, End: 00000310, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002EC) S_REGISTER: ecx, Type: 0x1AC8, this +(0002FC) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000310) S_END + +(000314) S_GPROC32: [0001:00002540], Cb: 00000003, Type: 0x1ACF, GasStation::Tickle + Parent: 00000000, End: 00000360, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000350) S_REGISTER: ecx, Type: 0x1AC8, this + +(000360) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\elevatorbottom.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00002140], Cb: 0000005D, Type: 0x1AD2, ElevatorBottom::ElevatorBottom + Parent: 00000000, End: 0000010C, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:00002195], $L47123 +(0000E4) S_LABEL32: [0001:0000218B], $L47122 +(0000F8) S_BPREL32: [FFFFFFF0], Type: 0x1AD1, this + +(00010C) S_END + +(000110) S_GPROC32: [0001:000021A0], Cb: 00000006, Type: 0x1AD5, ElevatorBottom::ClassName + Parent: 00000000, End: 00000164, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000154) S_REGISTER: ecx, Type: 0x1AD4, this + +(000164) S_END + +(000168) S_GPROC32: [0001:000021B0], Cb: 0000010A, Type: 0x1AD6, ElevatorBottom::IsA + Parent: 00000000, End: 000001C8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001A4) S_REGISTER: ecx, Type: 0x1AD4, this +(0001B4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C8) S_END + +(0001CC) S_GPROC32: [0001:000022C0], Cb: 0000001E, Type: T_NOTYPE(0000), ElevatorBottom::`scalar deleting destructor' + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000220) S_REGISTER: esi, Type: 0x1AD1, this +(000230) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000244) S_END + +(000248) S_GPROC32: [0001:000022E0], Cb: 0000004F, Type: 0x1AD2, ElevatorBottom::~ElevatorBottom + Parent: 00000000, End: 000002CC, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000290) S_LABEL32: [0001:00002327], $L47205 +(0002A4) S_LABEL32: [0001:0000231D], $L47204 +(0002B8) S_BPREL32: [FFFFFFF0], Type: 0x1AD1, this + +(0002CC) S_END + +(0002D0) S_GPROC32: [0001:00002330], Cb: 00000005, Type: 0x1AD7, ElevatorBottom::Notify + Parent: 00000000, End: 00000334, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000310) S_REGISTER: ecx, Type: 0x1AD1, this +(000320) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000334) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\dunebuggy.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00001EC0], Cb: 00000071, Type: 0x1ADA, DuneBuggy::DuneBuggy + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000050 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00001F29], $L47465 +(0000D4) S_LABEL32: [0001:00001F1F], $L47464 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x1AD9, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:00001F40], Cb: 00000006, Type: 0x1ADD, DuneBuggy::ClassName + Parent: 00000000, End: 0000014C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00013C) S_REGISTER: ecx, Type: 0x1ADC, this + +(00014C) S_END + +(000150) S_GPROC32: [0001:00001F50], Cb: 00000172, Type: 0x1ADE, DuneBuggy::IsA + Parent: 00000000, End: 000001AC, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000188) S_REGISTER: ecx, Type: 0x1ADC, this +(000198) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001AC) S_END + +(0001B0) S_GPROC32: [0001:000020D0], Cb: 00000061, Type: T_NOTYPE(0000), DuneBuggy::`scalar deleting destructor' + Parent: 00000000, End: 00000250, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(000200) S_LABEL32: [0001:00002129], $L47733 +(000214) S_LABEL32: [0001:0000211F], $L47731 +(000228) S_BPREL32: [FFFFFFF0], Type: 0x1AD9, this +(00023C) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000250) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\dllmain.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00001EB0], Cb: 00000008, Type: 0x1AE0, DllMain + Parent: 00000000, End: 000000F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0000B0) S_BPREL32: [00000004], Type: T_32PVOID(0403), hinstDLL +(0000C8) S_BPREL32: [00000008], Type: T_ULONG(0022), fdwReason +(0000E0) S_BPREL32: [0000000C], Type: T_32PVOID(0403), lpvReserved + +(0000F8) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\define.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\carrace.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000080) S_GPROC32: [0001:00001C60], Cb: 00000089, Type: 0x1AE3, CarRace::CarRace + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 0000001C, Debug end: 0000006B + Flags: Frame Ptr Present + +(0000B8) S_LABEL32: [0001:00001CE1], $L47331 +(0000CC) S_LABEL32: [0001:00001CD7], $L47330 +(0000E0) S_BPREL32: [FFFFFFF0], Type: 0x1AE2, this + +(0000F4) S_END + +(0000F8) S_GPROC32: [0001:00001CF0], Cb: 00000006, Type: 0x1AE6, CarRace::ClassName + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000134) S_REGISTER: ecx, Type: 0x1AE5, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00001D00], Cb: 0000013E, Type: 0x1AE7, CarRace::IsA + Parent: 00000000, End: 000001A0, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(00017C) S_REGISTER: ecx, Type: 0x1AE5, this +(00018C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001A0) S_END + +(0001A4) S_GPROC32: [0001:00001E40], Cb: 00000061, Type: T_NOTYPE(0000), CarRace::`scalar deleting destructor' + Parent: 00000000, End: 00000244, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0001F4) S_LABEL32: [0001:00001E99], $L47436 +(000208) S_LABEL32: [0001:00001E8F], $L47434 +(00021C) S_BPREL32: [FFFFFFF0], Type: 0x1AE2, this +(000230) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000244) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\bumpbouy.cpp.obj + +(000038) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\buildingentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:00001950], Cb: 000000B6, Type: 0x1AEA, BuildingEntity::BuildingEntity + Parent: 00000000, End: 00000120, Next: 00000000 + Debug start: 0000001C, Debug end: 0000008D + Flags: Frame Ptr Present + +(0000D0) S_LABEL32: [0001:000019FE], $L45914 +(0000E4) S_LABEL32: [0001:000019F4], $L45913 +(0000F8) S_LABEL32: [0001:000019EC], $L45916 +(00010C) S_BPREL32: [FFFFFFF0], Type: 0x1AE9, this + +(000120) S_END + +(000124) S_GPROC32: [0001:00001A10], Cb: 0000000A, Type: 0x10E2, Vector2Impl::SetData + Parent: 00000000, End: 00000184, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000160) S_REGISTER: ecx, Type: 0x10E0, this +(000170) S_BPREL32: [00000004], Type: T_32PREAL32(0440), p_data + +(000184) S_END + +(000188) S_GPROC32: [0001:00001A20], Cb: 00000006, Type: 0x1AED, LegoEntity::ClassName + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001C8) S_REGISTER: ecx, Type: 0x1AEC, this + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:00001A30], Cb: 000000A2, Type: 0x1AEE, LegoEntity::IsA + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(000214) S_REGISTER: ecx, Type: 0x1AEC, this +(000224) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000238) S_END + +(00023C) S_GPROC32: [0001:00001AE0], Cb: 0000001E, Type: T_NOTYPE(0000), LegoEntity::`scalar deleting destructor' + Parent: 00000000, End: 000002B0, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(00028C) S_REGISTER: esi, Type: 0x19F2, this +(00029C) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0002B0) S_END + +(0002B4) S_GPROC32: [0001:00001B00], Cb: 00000006, Type: 0x1AF1, BuildingEntity::ClassName + Parent: 00000000, End: 00000308, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002F8) S_REGISTER: ecx, Type: 0x1AF0, this + +(000308) S_END + +(00030C) S_GPROC32: [0001:00001B10], Cb: 000000D6, Type: 0x1AF2, BuildingEntity::IsA + Parent: 00000000, End: 0000036C, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(000348) S_REGISTER: ecx, Type: 0x1AF0, this +(000358) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00036C) S_END + +(000370) S_GPROC32: [0001:00001BF0], Cb: 0000001E, Type: T_NOTYPE(0000), BuildingEntity::`scalar deleting destructor' + Parent: 00000000, End: 000003E8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0003C4) S_REGISTER: esi, Type: 0x1AE9, this +(0003D4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0003E8) S_END + +(0003EC) S_GPROC32: [0001:00001C10], Cb: 0000004F, Type: 0x1AEA, BuildingEntity::~BuildingEntity + Parent: 00000000, End: 00000470, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000434) S_LABEL32: [0001:00001C57], $L46068 +(000448) S_LABEL32: [0001:00001C4D], $L46067 +(00045C) S_BPREL32: [FFFFFFF0], Type: 0x1AE9, this + +(000470) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\bike.cpp.obj + +(000034) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00007C) S_GPROC32: [0001:000016D0], Cb: 00000078, Type: 0x1AF5, Bike::Bike + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000057 + Flags: Frame Ptr Present + +(0000B0) S_LABEL32: [0001:00001740], $L47465 +(0000C4) S_LABEL32: [0001:00001736], $L47464 +(0000D8) S_BPREL32: [FFFFFFF0], Type: 0x1AF4, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:00001750], Cb: 00000006, Type: 0x1AF8, Bike::ClassName + Parent: 00000000, End: 00000138, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000128) S_REGISTER: ecx, Type: 0x1AF7, this + +(000138) S_END + +(00013C) S_GPROC32: [0001:00001760], Cb: 00000172, Type: 0x1AF9, Bike::IsA + Parent: 00000000, End: 00000194, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000170) S_REGISTER: ecx, Type: 0x1AF7, this +(000180) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000194) S_END + +(000198) S_GPROC32: [0001:000018E0], Cb: 00000061, Type: T_NOTYPE(0000), Bike::`scalar deleting destructor' + Parent: 00000000, End: 00000234, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0001E4) S_LABEL32: [0001:00001939], $L47733 +(0001F8) S_LABEL32: [0001:0000192F], $L47731 +(00020C) S_BPREL32: [FFFFFFF0], Type: 0x1AF4, this +(000220) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000234) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\beachhouseentity.cpp.obj + +(000040) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000088) S_GPROC32: [0001:000016C0], Cb: 00000005, Type: 0x1AFC, BeachHouseEntity::Notify + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000C8) S_REGISTER: ecx, Type: 0x1AFB, this +(0000D8) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0000EC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\animstate.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000014F0], Cb: 0000007D, Type: 0x1AFF, AnimState::AnimState + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 00000054 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00001565], $L2238 +(0000D4) S_LABEL32: [0001:0000155B], $L2237 +(0000E8) S_LABEL32: [0001:00001553], $L2240 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x1AFE, this + +(000110) S_END + +(000114) S_GPROC32: [0001:00001570], Cb: 00000006, Type: 0x1B02, AnimState::ClassName + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000150) S_REGISTER: ecx, Type: 0x1B01, this + +(000160) S_END + +(000164) S_GPROC32: [0001:00001580], Cb: 000000A2, Type: 0x1B03, AnimState::IsA + Parent: 00000000, End: 000001C0, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00019C) S_REGISTER: ecx, Type: 0x1B01, this +(0001AC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C0) S_END + +(0001C4) S_GPROC32: [0001:00001630], Cb: 0000001E, Type: T_NOTYPE(0000), AnimState::`scalar deleting destructor' + Parent: 00000000, End: 00000238, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000214) S_REGISTER: esi, Type: 0x1AFE, this +(000224) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000238) S_END + +(00023C) S_GPROC32: [0001:00001650], Cb: 0000004F, Type: 0x1AFF, AnimState::~AnimState + Parent: 00000000, End: 000002B8, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(00027C) S_LABEL32: [0001:00001697], $L2308 +(000290) S_LABEL32: [0001:0000168D], $L2307 +(0002A4) S_BPREL32: [FFFFFFF0], Type: 0x1AFE, this + +(0002B8) S_END + +(0002BC) S_GPROC32: [0001:000016A0], Cb: 00000008, Type: 0x3468, AnimState::VTable0x1c + Parent: 00000000, End: 0000032C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0002FC) S_REGISTER: ecx, Type: 0x1AFE, this +(00030C) S_BPREL32: [00000004], Type: 0x1897, p_legoFileStream + +(00032C) S_END + +(000330) S_GPROC32: [0001:000016B0], Cb: 00000003, Type: 0x3469, AnimState::SetFlag + Parent: 00000000, End: 0000037C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(00036C) S_REGISTER: ecx, Type: 0x1AFE, this + +(00037C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\ambulancemissionstate.cpp.obj + +(000048) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000090) S_GPROC32: [0001:00001320], Cb: 0000009F, Type: 0x1B05, AmbulanceMissionState::AmbulanceMissionState + Parent: 00000000, End: 00000134, Next: 00000000 + Debug start: 0000001C, Debug end: 00000079 + Flags: Frame Ptr Present + +(0000E4) S_LABEL32: [0001:000013B7], $L2243 +(0000F8) S_LABEL32: [0001:000013AD], $L2242 +(00010C) S_LABEL32: [0001:000013A5], $L2245 +(000120) S_BPREL32: [FFFFFFF0], Type: 0x1B04, this + +(000134) S_END + +(000138) S_GPROC32: [0001:000013C0], Cb: 00000006, Type: 0x1B08, AmbulanceMissionState::ClassName + Parent: 00000000, End: 00000190, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000180) S_REGISTER: ecx, Type: 0x1B07, this + +(000190) S_END + +(000194) S_GPROC32: [0001:000013D0], Cb: 000000A2, Type: 0x1B09, AmbulanceMissionState::IsA + Parent: 00000000, End: 000001FC, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(0001D8) S_REGISTER: ecx, Type: 0x1B07, this +(0001E8) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001FC) S_END + +(000200) S_GPROC32: [0001:00001480], Cb: 00000061, Type: T_NOTYPE(0000), AmbulanceMissionState::`scalar deleting destructor' + Parent: 00000000, End: 000002AC, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(00025C) S_LABEL32: [0001:000014D9], $L2309 +(000270) S_LABEL32: [0001:000014CF], $L2307 +(000284) S_BPREL32: [FFFFFFF0], Type: 0x1B04, this +(000298) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0002AC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\ambulance.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00000DF0], Cb: 000000AC, Type: 0x1B0C, Ambulance::Ambulance + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 00000095 + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00000E94], $L47465 +(0000D4) S_LABEL32: [0001:00000E8A], $L47464 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x1B0B, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:00000EA0], Cb: 0000005D, Type: 0x1A78, IslePathActor::~IslePathActor + Parent: 00000000, End: 00000184, Next: 00000000 + Debug start: 00000021, Debug end: 0000003E + Flags: Frame Ptr Present + +(000148) S_LABEL32: [0001:00000EF5], $L47519 +(00015C) S_LABEL32: [0001:00000EEB], $L47518 +(000170) S_BPREL32: [FFFFFFF0], Type: 0x1A77, this + +(000184) S_END + +(000188) S_GPROC32: [0001:00000F00], Cb: 00000006, Type: 0x1B0F, IslePathActor::ClassName + Parent: 00000000, End: 000001D8, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0001C8) S_REGISTER: ecx, Type: 0x1B0E, this + +(0001D8) S_END + +(0001DC) S_GPROC32: [0001:00000F10], Cb: 0000013E, Type: 0x1B10, IslePathActor::IsA + Parent: 00000000, End: 0000023C, Next: 00000000 + Debug start: 00000008, Debug end: 0000013A + +(000218) S_REGISTER: ecx, Type: 0x1B0E, this +(000228) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(00023C) S_END + +(000240) S_GPROC32: [0001:00001050], Cb: 00000003, Type: 0x33AD, IslePathActor::VTable0xcc + Parent: 00000000, End: 00000294, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000284) S_REGISTER: ecx, Type: 0x1A77, this + +(000294) S_END + +(000298) S_GPROC32: [0001:00001060], Cb: 00000003, Type: 0x33AD, IslePathActor::VTable0xd0 + Parent: 00000000, End: 000002EC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0002DC) S_REGISTER: ecx, Type: 0x1A77, this + +(0002EC) S_END + +(0002F0) S_GPROC32: [0001:00001070], Cb: 00000005, Type: 0x33AE, IslePathActor::VTable0xd4 + Parent: 00000000, End: 0000035C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000334) S_REGISTER: ecx, Type: 0x1A77, this +(000344) S_BPREL32: [00000004], Type: 0x10BF, __formal + +(00035C) S_END + +(000360) S_GPROC32: [0001:00001080], Cb: 00000005, Type: 0x33AF, IslePathActor::VTable0xd8 + Parent: 00000000, End: 000003CC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0003A4) S_REGISTER: ecx, Type: 0x1A77, this +(0003B4) S_BPREL32: [00000004], Type: 0x339F, __formal + +(0003CC) S_END + +(0003D0) S_GPROC32: [0001:00001090], Cb: 00000005, Type: 0x33B3, IslePathActor::VTable0xdc + Parent: 00000000, End: 0000043C, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000414) S_REGISTER: ecx, Type: 0x1A77, this +(000424) S_BPREL32: [00000004], Type: 0x33B1, __formal + +(00043C) S_END + +(000440) S_GPROC32: [0001:000010A0], Cb: 00000075, Type: T_NOTYPE(0000), IslePathActor::`scalar deleting destructor' + Parent: 00000000, End: 000004E4, Next: 00000000 + Debug start: 00000021, Debug end: 00000056 + Flags: Frame Ptr Present + +(000494) S_LABEL32: [0001:0000110D], $L47620 +(0004A8) S_LABEL32: [0001:00001103], $L47618 +(0004BC) S_BPREL32: [FFFFFFF0], Type: 0x1A77, this +(0004D0) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(0004E4) S_END + +(0004E8) S_GPROC32: [0001:00001120], Cb: 00000006, Type: 0x1B13, Ambulance::ClassName + Parent: 00000000, End: 00000534, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000524) S_REGISTER: ecx, Type: 0x1B12, this + +(000534) S_END + +(000538) S_GPROC32: [0001:00001130], Cb: 00000172, Type: 0x1B14, Ambulance::IsA + Parent: 00000000, End: 00000594, Next: 00000000 + Debug start: 00000008, Debug end: 0000016E + +(000570) S_REGISTER: ecx, Type: 0x1B12, this +(000580) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000594) S_END + +(000598) S_GPROC32: [0001:000012B0], Cb: 00000061, Type: T_NOTYPE(0000), Ambulance::`scalar deleting destructor' + Parent: 00000000, End: 00000638, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0005E8) S_LABEL32: [0001:00001309], $L47733 +(0005FC) S_LABEL32: [0001:000012FF], $L47731 +(000610) S_BPREL32: [FFFFFFF0], Type: 0x1B0B, this +(000624) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000638) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act3state.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00000DE0], Cb: 00000003, Type: 0x1B17, Act3State::VTable0x14 + Parent: 00000000, End: 000000D4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000C4) S_REGISTER: ecx, Type: 0x1B16, this + +(0000D4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act3shark.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act3.cpp.obj + +(000034) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00007C) S_GPROC32: [0001:00000BE0], Cb: 0000005D, Type: 0x1B1A, Act3::Act3 + Parent: 00000000, End: 000000EC, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000B0) S_LABEL32: [0001:00000C35], $L47127 +(0000C4) S_LABEL32: [0001:00000C2B], $L47126 +(0000D8) S_BPREL32: [FFFFFFF0], Type: 0x1B19, this + +(0000EC) S_END + +(0000F0) S_GPROC32: [0001:00000C40], Cb: 00000001, Type: 0x1819, LegoWorld::VTable0x60 + Parent: 00000000, End: 00000140, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000130) S_REGISTER: ecx, Type: 0x1818, this + +(000140) S_END + +(000144) S_GPROC32: [0001:00000C50], Cb: 00000006, Type: 0x1B1D, Act3::ClassName + Parent: 00000000, End: 0000018C, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(00017C) S_REGISTER: ecx, Type: 0x1B1C, this + +(00018C) S_END + +(000190) S_GPROC32: [0001:00000C60], Cb: 0000010A, Type: 0x1B1E, Act3::IsA + Parent: 00000000, End: 000001E8, Next: 00000000 + Debug start: 00000008, Debug end: 00000106 + +(0001C4) S_REGISTER: ecx, Type: 0x1B1C, this +(0001D4) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001E8) S_END + +(0001EC) S_GPROC32: [0001:00000D70], Cb: 0000001E, Type: T_NOTYPE(0000), Act3::`scalar deleting destructor' + Parent: 00000000, End: 0000025C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000238) S_REGISTER: esi, Type: 0x1B19, this +(000248) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00025C) S_END + +(000260) S_GPROC32: [0001:00000D90], Cb: 0000004F, Type: 0x1B1A, Act3::~Act3 + Parent: 00000000, End: 000002D0, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000294) S_LABEL32: [0001:00000DD7], $L47209 +(0002A8) S_LABEL32: [0001:00000DCD], $L47208 +(0002BC) S_BPREL32: [FFFFFFF0], Type: 0x1B19, this + +(0002D0) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act2policestation.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00000BD0], Cb: 00000005, Type: 0x1B21, Act2PoliceStation::Notify + Parent: 00000000, End: 000000F4, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0000D0) S_REGISTER: ecx, Type: 0x1B20, this +(0000E0) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(0000F4) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act2brick.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:000008B0], Cb: 0000005D, Type: 0x1B24, Act2Brick::Act2Brick + Parent: 00000000, End: 000000FC, Next: 00000000 + Debug start: 0000001C, Debug end: 0000003C + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:00000905], $L46073 +(0000D4) S_LABEL32: [0001:000008FB], $L46072 +(0000E8) S_BPREL32: [FFFFFFF0], Type: 0x1B23, this + +(0000FC) S_END + +(000100) S_GPROC32: [0001:00000910], Cb: 0000000A, Type: 0x1B25, LegoEntity::SetWorldSpeed + Parent: 00000000, End: 00000170, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000144) S_REGISTER: ecx, Type: 0x19F2, this +(000154) S_BPREL32: [00000004], Type: T_REAL32(0040), p_worldSpeed + +(000170) S_END + +(000174) S_GPROC32: [0001:00000920], Cb: 00000004, Type: 0x1A51, LegoActor::VTable0x50 + Parent: 00000000, End: 000001C4, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0001B4) S_REGISTER: ecx, Type: 0x18E5, this + +(0001C4) S_END + +(0001C8) S_GPROC32: [0001:00000930], Cb: 0000000A, Type: 0x1A52, LegoActor::VTable0x54 + Parent: 00000000, End: 00000230, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000208) S_REGISTER: ecx, Type: 0x18E5, this +(000218) S_BPREL32: [00000004], Type: T_REAL32(0040), p_unk0x68 + +(000230) S_END + +(000234) S_GPROC32: [0001:00000940], Cb: 0000000A, Type: 0x1A52, LegoActor::VTable0x58 + Parent: 00000000, End: 0000029C, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000274) S_REGISTER: ecx, Type: 0x18E5, this +(000284) S_BPREL32: [00000004], Type: T_REAL32(0040), p_unk0x70 + +(00029C) S_END + +(0002A0) S_GPROC32: [0001:00000950], Cb: 00000004, Type: 0x1A51, LegoActor::VTable0x5c + Parent: 00000000, End: 000002F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(0002E0) S_REGISTER: ecx, Type: 0x18E5, this + +(0002F0) S_END + +(0002F4) S_GPROC32: [0001:00000960], Cb: 00000004, Type: 0x1A53, LegoActor::VTable0x60 + Parent: 00000000, End: 00000344, Next: 00000000 + Debug start: 00000000, Debug end: 00000003 + +(000334) S_REGISTER: ecx, Type: 0x18E5, this + +(000344) S_END + +(000348) S_GPROC32: [0001:00000970], Cb: 0000000A, Type: 0x1A54, LegoActor::VTable0x64 + Parent: 00000000, End: 000003B0, Next: 00000000 + Debug start: 00000000, Debug end: 00000007 + +(000388) S_REGISTER: ecx, Type: 0x18E5, this +(000398) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_unk0x74 + +(0003B0) S_END + +(0003B4) S_GPROC32: [0001:00000980], Cb: 0000000D, Type: 0x33B4, LegoPathActor::VTable0x78 + Parent: 00000000, End: 00000420, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0003F8) S_REGISTER: ecx, Type: 0x18DE, this +(000408) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_unk0xea + +(000420) S_END + +(000424) S_GPROC32: [0001:00000990], Cb: 00000007, Type: 0x33B5, LegoPathActor::VTable0x7c + Parent: 00000000, End: 00000478, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000468) S_REGISTER: ecx, Type: 0x18DE, this + +(000478) S_END + +(00047C) S_GPROC32: [0001:000009A0], Cb: 00000003, Type: 0x33B6, LegoPathActor::VTable0x90 + Parent: 00000000, End: 000004D0, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(0004C0) S_REGISTER: ecx, Type: 0x18DE, this + +(0004D0) S_END + +(0004D4) S_GPROC32: [0001:000009B0], Cb: 00000003, Type: 0x33B6, LegoPathActor::VTable0x94 + Parent: 00000000, End: 00000528, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000518) S_REGISTER: ecx, Type: 0x18DE, this + +(000528) S_END + +(00052C) S_GPROC32: [0001:000009C0], Cb: 00000003, Type: 0x33B6, LegoPathActor::VTable0xa0 + Parent: 00000000, End: 00000580, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000570) S_REGISTER: ecx, Type: 0x18DE, this + +(000580) S_END + +(000584) S_GPROC32: [0001:000009D0], Cb: 0000000D, Type: 0x3391, LegoPathActor::VTable0xac + Parent: 00000000, End: 000005F0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0005C8) S_REGISTER: ecx, Type: 0x18DE, this +(0005D8) S_BPREL32: [00000004], Type: T_REAL32(0040), p_unk0x13c + +(0005F0) S_END + +(0005F4) S_GPROC32: [0001:000009E0], Cb: 00000007, Type: 0x33B7, LegoPathActor::VTable0xb0 + Parent: 00000000, End: 00000648, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000638) S_REGISTER: ecx, Type: 0x18DE, this + +(000648) S_END + +(00064C) S_GPROC32: [0001:000009F0], Cb: 00000007, Type: 0x33B7, LegoPathActor::VTable0xb4 + Parent: 00000000, End: 000006A0, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(000690) S_REGISTER: ecx, Type: 0x18DE, this + +(0006A0) S_END + +(0006A4) S_GPROC32: [0001:00000A00], Cb: 00000007, Type: 0x33B7, LegoPathActor::VTable0xb8 + Parent: 00000000, End: 000006F8, Next: 00000000 + Debug start: 00000000, Debug end: 00000006 + +(0006E8) S_REGISTER: ecx, Type: 0x18DE, this + +(0006F8) S_END + +(0006FC) S_GPROC32: [0001:00000A10], Cb: 0000000D, Type: 0x3391, LegoPathActor::VTable0xbc + Parent: 00000000, End: 00000768, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000740) S_REGISTER: ecx, Type: 0x18DE, this +(000750) S_BPREL32: [00000004], Type: T_REAL32(0040), p_unk0x140 + +(000768) S_END + +(00076C) S_GPROC32: [0001:00000A20], Cb: 0000000D, Type: 0x3391, LegoPathActor::VTable0xc0 + Parent: 00000000, End: 000007D8, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(0007B0) S_REGISTER: ecx, Type: 0x18DE, this +(0007C0) S_BPREL32: [00000004], Type: T_REAL32(0040), p_unk0x144 + +(0007D8) S_END + +(0007DC) S_GPROC32: [0001:00000A30], Cb: 00000001, Type: 0x18DF, LegoPathActor::VTable0xc4 + Parent: 00000000, End: 00000830, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(000820) S_REGISTER: ecx, Type: 0x18DE, this + +(000830) S_END + +(000834) S_GPROC32: [0001:00000A40], Cb: 0000000D, Type: 0x33B4, LegoPathActor::VTable0xc8 + Parent: 00000000, End: 000008A0, Next: 00000000 + Debug start: 00000000, Debug end: 0000000A + +(000878) S_REGISTER: ecx, Type: 0x18DE, this +(000888) S_BPREL32: [00000004], Type: T_UCHAR(0020), p_unk0x148 + +(0008A0) S_END + +(0008A4) S_GPROC32: [0001:00000A50], Cb: 00000006, Type: 0x1B28, Act2Brick::ClassName + Parent: 00000000, End: 000008F0, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(0008E0) S_REGISTER: ecx, Type: 0x1B27, this + +(0008F0) S_END + +(0008F4) S_GPROC32: [0001:00000A60], Cb: 000000D6, Type: 0x1B29, Act2Brick::IsA + Parent: 00000000, End: 00000950, Next: 00000000 + Debug start: 00000008, Debug end: 000000D2 + +(00092C) S_REGISTER: ecx, Type: 0x1B27, this +(00093C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000950) S_END + +(000954) S_GPROC32: [0001:00000B40], Cb: 0000001E, Type: T_NOTYPE(0000), Act2Brick::`scalar deleting destructor' + Parent: 00000000, End: 000009C8, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0009A4) S_REGISTER: esi, Type: 0x1B23, this +(0009B4) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(0009C8) S_END + +(0009CC) S_GPROC32: [0001:00000B60], Cb: 0000004F, Type: 0x1B24, Act2Brick::~Act2Brick + Parent: 00000000, End: 00000A48, Next: 00000000 + Debug start: 00000021, Debug end: 00000030 + Flags: Frame Ptr Present + +(000A0C) S_LABEL32: [0001:00000BA7], $L46174 +(000A20) S_LABEL32: [0001:00000B9D], $L46173 +(000A34) S_BPREL32: [FFFFFFF0], Type: 0x1B23, this + +(000A48) S_END + +(000A4C) S_GPROC32: [0001:00000BB0], Cb: 00000003, Type: 0x1B2A, Act2Brick::Tickle + Parent: 00000000, End: 00000A98, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000A88) S_REGISTER: ecx, Type: 0x1B23, this + +(000A98) S_END + +(000A9C) S_GPROC32: [0001:00000BC0], Cb: 00000005, Type: 0x1B2B, Act2Brick::Notify + Parent: 00000000, End: 00000AFC, Next: 00000000 + Debug start: 00000000, Debug end: 00000002 + +(000AD8) S_REGISTER: ecx, Type: 0x1B23, this +(000AE8) S_BPREL32: [00000004], Type: 0x10B7, p_param + +(000AFC) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\act1state.cpp.obj + +(00003C) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(000084) S_GPROC32: [0001:00000650], Cb: 00000073, Type: 0x1B2E, Act1State::Act1State + Parent: 00000000, End: 00000110, Next: 00000000 + Debug start: 0000001C, Debug end: 0000004D + Flags: Frame Ptr Present + +(0000C0) S_LABEL32: [0001:000006BB], $L2234 +(0000D4) S_LABEL32: [0001:000006B1], $L2233 +(0000E8) S_LABEL32: [0001:000006A9], $L2236 +(0000FC) S_BPREL32: [FFFFFFF0], Type: 0x1B2D, this + +(000110) S_END + +(000114) S_GPROC32: [0001:000006D0], Cb: 00000006, Type: 0x1B31, LegoState::ClassName + Parent: 00000000, End: 00000160, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000150) S_REGISTER: ecx, Type: 0x1B30, this + +(000160) S_END + +(000164) S_GPROC32: [0001:000006E0], Cb: 00000072, Type: 0x1B32, LegoState::IsA + Parent: 00000000, End: 000001C0, Next: 00000000 + Debug start: 00000008, Debug end: 0000006E + +(00019C) S_REGISTER: ecx, Type: 0x1B30, this +(0001AC) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(0001C0) S_END + +(0001C4) S_GPROC32: [0001:00000760], Cb: 00000006, Type: 0x1B35, Act1State::ClassName + Parent: 00000000, End: 00000210, Next: 00000000 + Debug start: 00000000, Debug end: 00000005 + +(000200) S_REGISTER: ecx, Type: 0x1B34, this + +(000210) S_END + +(000214) S_GPROC32: [0001:00000770], Cb: 000000A2, Type: 0x1B36, Act1State::IsA + Parent: 00000000, End: 00000270, Next: 00000000 + Debug start: 00000008, Debug end: 0000009E + +(00024C) S_REGISTER: ecx, Type: 0x1B34, this +(00025C) S_BPREL32: [00000004], Type: T_32PRCHAR(0470), p_name + +(000270) S_END + +(000274) S_GPROC32: [0001:00000820], Cb: 00000061, Type: T_NOTYPE(0000), Act1State::`scalar deleting destructor' + Parent: 00000000, End: 00000314, Next: 00000000 + Debug start: 0000001B, Debug end: 00000042 + Flags: Frame Ptr Present + +(0002C4) S_LABEL32: [0001:00000879], $L2300 +(0002D8) S_LABEL32: [0001:0000086F], $L2298 +(0002EC) S_BPREL32: [FFFFFFF0], Type: 0x1B2D, this +(000300) S_BPREL32: [00000008], Type: T_UINT4(0075), __flags + +(000314) S_END + +(000318) S_GPROC32: [0001:00000890], Cb: 0000001E, Type: T_NOTYPE(0000), LegoState::`scalar deleting destructor' + Parent: 00000000, End: 0000038C, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(000368) S_REGISTER: esi, Type: 0x1894, this +(000378) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(00038C) S_END + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + + +(000004) S_OBJNAME: Signature: 00000000, CMakeFiles\lego1.dir\LEGO1\3dmanager\tglsurface.cpp.obj + +(000044) S_COMPILE: + Language: C + Target processor: 80486 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 10.20 + +(00008C) S_GPROC32: [0001:00000000], Cb: 000000FD, Type: 0x4E9E, TglSurface::TglSurface + Parent: 00000000, End: 00000144, Next: 00000000 + Debug start: 00000021, Debug end: 000000BA + Flags: Frame Ptr Present + +(0000CC) S_LABEL32: [0001:000000F2], $L33669 +(0000E0) S_LABEL32: [0001:000000E8], $L33668 +(0000F4) S_LABEL32: [0001:000000DD], $L33672 +(000108) S_LABEL32: [0001:000000D2], $L33670 +(00011C) S_LABEL32: [0001:000000C7], $L33696 +(000130) S_BPREL32: [FFFFFFF0], Type: 0x4E9D, this + +(000144) S_END + +(000148) S_GPROC32: [0001:00000100], Cb: 00000001, Type: 0x447C, MxStopWatch::~MxStopWatch + Parent: 00000000, End: 0000019C, Next: 00000000 + Debug start: 00000000, Debug end: 00000000 + +(00018C) S_REGISTER: ecx, Type: 0x447B, this + +(00019C) S_END + +(0001A0) S_GPROC32: [0001:00000110], Cb: 0000001E, Type: T_NOTYPE(0000), TglSurface::`scalar deleting destructor' + Parent: 00000000, End: 00000214, Next: 00000000 + Debug start: 00000001, Debug end: 0000001A + +(0001F0) S_REGISTER: esi, Type: 0x4E9D, this +(000200) S_BPREL32: [00000004], Type: T_UINT4(0075), __flags + +(000214) S_END + +(000218) S_GPROC32: [0001:00000130], Cb: 0000004C, Type: 0x4EA1, MxFrequencyMeter::~MxFrequencyMeter + Parent: 00000000, End: 000002A0, Next: 00000000 + Debug start: 0000001B, Debug end: 0000002A + Flags: Frame Ptr Present + +(000264) S_LABEL32: [0001:00000171], $L33735 +(000278) S_LABEL32: [0001:00000167], $L33734 +(00028C) S_BPREL32: [FFFFFFF0], Type: 0x4EA0, this + +(0002A0) S_END + +(0002A4) S_GPROC32: [0001:00000180], Cb: 00000072, Type: 0x4E9E, TglSurface::~TglSurface + Parent: 00000000, End: 00000334, Next: 00000000 + Debug start: 00000021, Debug end: 00000045 + Flags: Frame Ptr Present + +(0002E4) S_LABEL32: [0001:000001E7], $L33743 +(0002F8) S_LABEL32: [0001:000001DD], $L33742 +(00030C) S_LABEL32: [0001:000001D2], $L33744 +(000320) S_BPREL32: [FFFFFFF0], Type: 0x4E9D, this + +(000334) S_END + +(000338) S_GPROC32: [0001:00000200], Cb: 00000022, Type: 0x4E9E, TglSurface::Destroy + Parent: 00000000, End: 00000384, Next: 00000000 + Debug start: 00000001, Debug end: 00000020 + +(000374) S_REGISTER: esi, Type: 0x4E9D, this + +(000384) S_END + +(000388) S_GPROC32: [0001:00000230], Cb: 00000031, Type: 0x4EA2, GetBitsPerPixel + Parent: 00000000, End: 000003F0, Next: 00000000 + Debug start: 0000000B, Debug end: 0000002C + +(0003C0) S_BPREL32: [00000004], Type: 0x11E7, pSurface +(0003D8) S_BPREL32: [FFFFFFE0], Type: 0x1DE8, pixelFormat + +(0003F0) S_END + +(0003F4) S_GPROC32: [0001:00000270], Cb: 000001F6, Type: 0x4EA6, TglSurface::Create + Parent: 00000000, End: 00000520, Next: 00000000 + Debug start: 0000000D, Debug end: 000001ED + +(000430) S_REGISTER: esi, Type: 0x4E9D, this +(000440) S_BPREL32: [00000004], Type: 0x4EA4, rCreateStruct +(00045C) S_BPREL32: [00000008], Type: 0x207F, pRenderer +(000474) S_BPREL32: [0000000C], Type: 0x1029, pScene +(000488) S_REGISTER: ebx, Type: T_INT4(0074), textureShadeCount +(0004A4) S_REGISTER: edi, Type: T_INT4(0074), shadeCount +(0004BC) S_REGISTER: ebp, Type: T_INT4(0074), bitsPerPixel +(0004D4) S_BPREL32: [FFFFFFEC], Type: 0x4E3A, createData +(0004EC) S_BPREL32: [FFFFFFE0], Type: T_INT4(0074), textureColorCount +(00050C) S_BPREL32: [FFFFFFE4], Type: T_INT4(0074), dither + +(000520) S_END + +(000524) S_GPROC32: [0001:00000470], Cb: 00000019, Type: 0x4E9E, TglSurface::DestroyView + Parent: 00000000, End: 00000574, Next: 00000000 + Debug start: 00000001, Debug end: 00000017 + +(000564) S_REGISTER: esi, Type: 0x4E9D, this + +(000574) S_END + +(000578) S_GPROC32: [0001:00000490], Cb: 000001BB, Type: 0x4EA7, TglSurface::Render + Parent: 00000000, End: 00000604, Next: 00000000 + Debug start: 00000020, Debug end: 00000199 + Flags: Frame Ptr Present + +(0005B4) S_LABEL32: [0001:00000643], $L33781 +(0005C8) S_LABEL32: [0001:00000639], $L33780 +(0005DC) S_REGISTER: esi, Type: 0x4E9D, this +(0005EC) S_BPREL32: [FFFFFFD4], Type: 0x4482, renderTimer + +(000604) S_END + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + + +(000004) S_OBJNAME: Signature: 00000000, WINMM.dll + +(000018) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000040) S_OBJNAME: Signature: 00000000, WINMM.dll + +(000054) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00007C) S_OBJNAME: Signature: 00000000, WINMM.dll + +(000090) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0000B8) S_THUNK32: [0001:0004E3B2], Cb: 00000006, timeGetTime + Parent: 00000000, End: 000000E0, Next: 00000000 + +(0000E0) S_END + +(0000E4) S_OBJNAME: Signature: 00000000, WINMM.dll + +(0000F8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000120) S_THUNK32: [0001:0004E3AC], Cb: 00000006, midiStreamStop + Parent: 00000000, End: 00000148, Next: 00000000 + +(000148) S_END + +(00014C) S_OBJNAME: Signature: 00000000, WINMM.dll + +(000160) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000188) S_THUNK32: [0001:0004E3A6], Cb: 00000006, midiOutUnprepareHeader + Parent: 00000000, End: 000001B8, Next: 00000000 + +(0001B8) S_END + +(0001BC) S_OBJNAME: Signature: 00000000, WINMM.dll + +(0001D0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0001F8) S_THUNK32: [0001:0004E3A0], Cb: 00000006, midiStreamClose + Parent: 00000000, End: 00000224, Next: 00000000 + +(000224) S_END + +(000228) S_OBJNAME: Signature: 00000000, WINMM.dll + +(00023C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000264) S_THUNK32: [0001:0004E39A], Cb: 00000006, midiOutSetVolume + Parent: 00000000, End: 00000290, Next: 00000000 + +(000290) S_END + +(000294) S_OBJNAME: Signature: 00000000, WINMM.dll + +(0002A8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0002D0) S_THUNK32: [0001:0004E394], Cb: 00000006, joyGetDevCapsA + Parent: 00000000, End: 000002F8, Next: 00000000 + +(0002F8) S_END + +(0002FC) S_OBJNAME: Signature: 00000000, WINMM.dll + +(000310) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000338) S_THUNK32: [0001:0004E38E], Cb: 00000006, joyGetPosEx + Parent: 00000000, End: 00000360, Next: 00000000 + +(000360) S_END + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + + +(000004) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00001C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000044) S_THUNK32: [0001:0006279C], Cb: 00000006, SetEnvironmentVariableA + Parent: 00000000, End: 00000078, Next: 00000000 + +(000078) S_END + +(00007C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000094) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0000BC) S_THUNK32: [0001:00062796], Cb: 00000006, CompareStringW + Parent: 00000000, End: 000000E4, Next: 00000000 + +(0000E4) S_END + +(0000E8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000100) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000128) S_THUNK32: [0001:00062790], Cb: 00000006, CompareStringA + Parent: 00000000, End: 00000150, Next: 00000000 + +(000150) S_END + +(000154) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00016C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000194) S_THUNK32: [0001:0006278A], Cb: 00000006, GetTimeZoneInformation + Parent: 00000000, End: 000001C4, Next: 00000000 + +(0001C4) S_END + +(0001C8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0001E0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000208) S_THUNK32: [0001:00062784], Cb: 00000006, GetLocaleInfoW + Parent: 00000000, End: 00000230, Next: 00000000 + +(000230) S_END + +(000234) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00024C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000274) S_THUNK32: [0001:0006277E], Cb: 00000006, GetLocaleInfoA + Parent: 00000000, End: 0000029C, Next: 00000000 + +(00029C) S_END + +(0002A0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0002B8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0002E0) S_THUNK32: [0001:00062778], Cb: 00000006, GetUserDefaultLCID + Parent: 00000000, End: 0000030C, Next: 00000000 + +(00030C) S_END + +(000310) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000328) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000350) S_THUNK32: [0001:00062772], Cb: 00000006, IsValidCodePage + Parent: 00000000, End: 0000037C, Next: 00000000 + +(00037C) S_END + +(000380) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000398) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0003C0) S_THUNK32: [0001:0006276C], Cb: 00000006, IsValidLocale + Parent: 00000000, End: 000003E8, Next: 00000000 + +(0003E8) S_END + +(0003EC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000404) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00042C) S_THUNK32: [0001:00062766], Cb: 00000006, SetEndOfFile + Parent: 00000000, End: 00000454, Next: 00000000 + +(000454) S_END + +(000458) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000470) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000498) S_THUNK32: [0001:00062760], Cb: 00000006, RaiseException + Parent: 00000000, End: 000004C0, Next: 00000000 + +(0004C0) S_END + +(0004C4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0004DC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000504) S_THUNK32: [0001:0006275A], Cb: 00000006, LCMapStringW + Parent: 00000000, End: 0000052C, Next: 00000000 + +(00052C) S_END + +(000530) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000548) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000570) S_THUNK32: [0001:00062754], Cb: 00000006, LCMapStringA + Parent: 00000000, End: 00000598, Next: 00000000 + +(000598) S_END + +(00059C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0005B4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0005DC) S_THUNK32: [0001:0006274E], Cb: 00000006, LoadLibraryA + Parent: 00000000, End: 00000604, Next: 00000000 + +(000604) S_END + +(000608) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000620) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000648) S_THUNK32: [0001:00062748], Cb: 00000006, CreateProcessA + Parent: 00000000, End: 00000670, Next: 00000000 + +(000670) S_END + +(000674) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00068C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0006B4) S_THUNK32: [0001:00062742], Cb: 00000006, GetExitCodeProcess + Parent: 00000000, End: 000006E0, Next: 00000000 + +(0006E0) S_END + +(0006E4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0006FC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000724) S_THUNK32: [0001:0006273C], Cb: 00000006, GetFileAttributesA + Parent: 00000000, End: 00000750, Next: 00000000 + +(000750) S_END + +(000754) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00076C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000794) S_THUNK32: [0001:00062736], Cb: 00000006, FlushFileBuffers + Parent: 00000000, End: 000007C0, Next: 00000000 + +(0007C0) S_END + +(0007C4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0007DC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000804) S_THUNK32: [0001:00062730], Cb: 00000006, SetStdHandle + Parent: 00000000, End: 0000082C, Next: 00000000 + +(00082C) S_END + +(000830) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000848) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000870) S_THUNK32: [0001:0006272A], Cb: 00000006, GetStringTypeW + Parent: 00000000, End: 00000898, Next: 00000000 + +(000898) S_END + +(00089C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0008B4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0008DC) S_THUNK32: [0001:00062724], Cb: 00000006, GetStringTypeA + Parent: 00000000, End: 00000904, Next: 00000000 + +(000904) S_END + +(000908) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000920) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000948) S_THUNK32: [0001:0006271E], Cb: 00000006, IsBadWritePtr + Parent: 00000000, End: 00000970, Next: 00000000 + +(000970) S_END + +(000974) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00098C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0009B4) S_THUNK32: [0001:00062718], Cb: 00000006, IsBadReadPtr + Parent: 00000000, End: 000009DC, Next: 00000000 + +(0009DC) S_END + +(0009E0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0009F8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000A20) S_THUNK32: [0001:00062712], Cb: 00000006, SetUnhandledExceptionFilter + Parent: 00000000, End: 00000A58, Next: 00000000 + +(000A58) S_END + +(000A5C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000A74) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000A9C) S_THUNK32: [0001:0006270C], Cb: 00000006, WideCharToMultiByte + Parent: 00000000, End: 00000ACC, Next: 00000000 + +(000ACC) S_END + +(000AD0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000AE8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000B10) S_THUNK32: [0001:00062706], Cb: 00000006, GetEnvironmentStringsW + Parent: 00000000, End: 00000B40, Next: 00000000 + +(000B40) S_END + +(000B44) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000B5C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000B84) S_THUNK32: [0001:00062700], Cb: 00000006, FreeEnvironmentStringsW + Parent: 00000000, End: 00000BB8, Next: 00000000 + +(000BB8) S_END + +(000BBC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000BD4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000BFC) S_THUNK32: [0001:000626FA], Cb: 00000006, GetEnvironmentStrings + Parent: 00000000, End: 00000C2C, Next: 00000000 + +(000C2C) S_END + +(000C30) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000C48) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000C70) S_THUNK32: [0001:000626F4], Cb: 00000006, MultiByteToWideChar + Parent: 00000000, End: 00000CA0, Next: 00000000 + +(000CA0) S_END + +(000CA4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000CBC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000CE4) S_THUNK32: [0001:000626EE], Cb: 00000006, FreeEnvironmentStringsA + Parent: 00000000, End: 00000D18, Next: 00000000 + +(000D18) S_END + +(000D1C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000D34) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000D5C) S_THUNK32: [0001:000626E8], Cb: 00000006, GetOEMCP + Parent: 00000000, End: 00000D80, Next: 00000000 + +(000D80) S_END + +(000D84) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000D9C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000DC4) S_THUNK32: [0001:000626E2], Cb: 00000006, GetACP + Parent: 00000000, End: 00000DE4, Next: 00000000 + +(000DE4) S_END + +(000DE8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000E00) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000E28) S_THUNK32: [0001:000626DC], Cb: 00000006, GetCPInfo + Parent: 00000000, End: 00000E4C, Next: 00000000 + +(000E4C) S_END + +(000E50) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000E68) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000E90) S_THUNK32: [0001:000626D6], Cb: 00000006, HeapCreate + Parent: 00000000, End: 00000EB4, Next: 00000000 + +(000EB4) S_END + +(000EB8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000ED0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000EF8) S_THUNK32: [0001:000626D0], Cb: 00000006, HeapDestroy + Parent: 00000000, End: 00000F20, Next: 00000000 + +(000F20) S_END + +(000F24) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000F3C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000F64) S_THUNK32: [0001:000626CA], Cb: 00000006, UnhandledExceptionFilter + Parent: 00000000, End: 00000F98, Next: 00000000 + +(000F98) S_END + +(000F9C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(000FB4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000FDC) S_THUNK32: [0001:000626C4], Cb: 00000006, GetModuleFileNameA + Parent: 00000000, End: 00001008, Next: 00000000 + +(001008) S_END + +(00100C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001024) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00104C) S_THUNK32: [0001:000626BE], Cb: 00000006, SetConsoleCtrlHandler + Parent: 00000000, End: 0000107C, Next: 00000000 + +(00107C) S_END + +(001080) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001098) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0010C0) S_THUNK32: [0001:000626B8], Cb: 00000006, GetStartupInfoA + Parent: 00000000, End: 000010EC, Next: 00000000 + +(0010EC) S_END + +(0010F0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001108) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001130) S_THUNK32: [0001:000626B2], Cb: 00000006, GetStdHandle + Parent: 00000000, End: 00001158, Next: 00000000 + +(001158) S_END + +(00115C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001174) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00119C) S_THUNK32: [0001:000626AC], Cb: 00000006, GetFileType + Parent: 00000000, End: 000011C4, Next: 00000000 + +(0011C4) S_END + +(0011C8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0011E0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001208) S_THUNK32: [0001:000626A6], Cb: 00000006, SetHandleCount + Parent: 00000000, End: 00001230, Next: 00000000 + +(001230) S_END + +(001234) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00124C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001274) S_THUNK32: [0001:000626A0], Cb: 00000006, SetFilePointer + Parent: 00000000, End: 0000129C, Next: 00000000 + +(00129C) S_END + +(0012A0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0012B8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0012E0) S_THUNK32: [0001:0006269A], Cb: 00000006, WriteFile + Parent: 00000000, End: 00001304, Next: 00000000 + +(001304) S_END + +(001308) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001320) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001348) S_THUNK32: [0001:00062694], Cb: 00000006, FatalAppExitA + Parent: 00000000, End: 00001370, Next: 00000000 + +(001370) S_END + +(001374) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00138C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0013B4) S_THUNK32: [0001:0006268E], Cb: 00000006, TerminateProcess + Parent: 00000000, End: 000013E0, Next: 00000000 + +(0013E0) S_END + +(0013E4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0013FC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001424) S_THUNK32: [0001:00062688], Cb: 00000006, ExitProcess + Parent: 00000000, End: 0000144C, Next: 00000000 + +(00144C) S_END + +(001450) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001468) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001490) S_THUNK32: [0001:00062682], Cb: 00000006, GetCurrentThread + Parent: 00000000, End: 000014BC, Next: 00000000 + +(0014BC) S_END + +(0014C0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0014D8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001500) S_THUNK32: [0001:0006267C], Cb: 00000006, TlsGetValue + Parent: 00000000, End: 00001528, Next: 00000000 + +(001528) S_END + +(00152C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001544) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00156C) S_THUNK32: [0001:00062676], Cb: 00000006, SetLastError + Parent: 00000000, End: 00001594, Next: 00000000 + +(001594) S_END + +(001598) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0015B0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0015D8) S_THUNK32: [0001:00062670], Cb: 00000006, TlsFree + Parent: 00000000, End: 000015FC, Next: 00000000 + +(0015FC) S_END + +(001600) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001618) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001640) S_THUNK32: [0001:0006266A], Cb: 00000006, TlsAlloc + Parent: 00000000, End: 00001664, Next: 00000000 + +(001664) S_END + +(001668) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001680) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0016A8) S_THUNK32: [0001:00062664], Cb: 00000006, GetModuleHandleA + Parent: 00000000, End: 000016D4, Next: 00000000 + +(0016D4) S_END + +(0016D8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0016F0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001718) S_THUNK32: [0001:0006265E], Cb: 00000006, GetProcAddress + Parent: 00000000, End: 00001740, Next: 00000000 + +(001740) S_END + +(001744) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00175C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001784) S_THUNK32: [0001:00062658], Cb: 00000006, GetCommandLineA + Parent: 00000000, End: 000017B0, Next: 00000000 + +(0017B0) S_END + +(0017B4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0017CC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0017F4) S_THUNK32: [0001:00062652], Cb: 00000006, ExitThread + Parent: 00000000, End: 00001818, Next: 00000000 + +(001818) S_END + +(00181C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001834) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00185C) S_THUNK32: [0001:0006264C], Cb: 00000006, TlsSetValue + Parent: 00000000, End: 00001884, Next: 00000000 + +(001884) S_END + +(001888) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0018A0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0018C8) S_THUNK32: [0001:00062646], Cb: 00000006, CreateThread + Parent: 00000000, End: 000018F0, Next: 00000000 + +(0018F0) S_END + +(0018F4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00190C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001934) S_THUNK32: [0001:00062640], Cb: 00000006, RtlUnwind + Parent: 00000000, End: 00001958, Next: 00000000 + +(001958) S_END + +(00195C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001974) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00199C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0019B4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0019DC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0019F4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001A1C) S_THUNK32: [0001:0004E4D8], Cb: 00000006, GetVersion + Parent: 00000000, End: 00001A40, Next: 00000000 + +(001A40) S_END + +(001A44) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001A5C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001A84) S_THUNK32: [0001:0004E4D2], Cb: 00000006, SetEvent + Parent: 00000000, End: 00001AA8, Next: 00000000 + +(001AA8) S_END + +(001AAC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001AC4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001AEC) S_THUNK32: [0001:0004E4CC], Cb: 00000006, CreateEventA + Parent: 00000000, End: 00001B14, Next: 00000000 + +(001B14) S_END + +(001B18) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001B30) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001B58) S_THUNK32: [0001:0004E4C6], Cb: 00000006, GetCurrentThreadId + Parent: 00000000, End: 00001B84, Next: 00000000 + +(001B84) S_END + +(001B88) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001BA0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001BC8) S_THUNK32: [0001:0004E4C0], Cb: 00000006, GetLastError + Parent: 00000000, End: 00001BF0, Next: 00000000 + +(001BF0) S_END + +(001BF4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001C0C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001C34) S_THUNK32: [0001:0004E4BA], Cb: 00000006, GetCurrentProcessId + Parent: 00000000, End: 00001C64, Next: 00000000 + +(001C64) S_END + +(001C68) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001C80) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001CA8) S_THUNK32: [0001:0004E4B4], Cb: 00000006, MapViewOfFile + Parent: 00000000, End: 00001CD0, Next: 00000000 + +(001CD0) S_END + +(001CD4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001CEC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001D14) S_THUNK32: [0001:0004E4AE], Cb: 00000006, OpenMutexA + Parent: 00000000, End: 00001D38, Next: 00000000 + +(001D38) S_END + +(001D3C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001D54) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001D7C) S_THUNK32: [0001:0004E4A8], Cb: 00000006, VirtualQueryEx + Parent: 00000000, End: 00001DA4, Next: 00000000 + +(001DA4) S_END + +(001DA8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001DC0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001DE8) S_THUNK32: [0001:0004E4A2], Cb: 00000006, GetCurrentProcess + Parent: 00000000, End: 00001E14, Next: 00000000 + +(001E14) S_END + +(001E18) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001E30) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001E58) S_THUNK32: [0001:0004E49C], Cb: 00000006, OpenProcess + Parent: 00000000, End: 00001E80, Next: 00000000 + +(001E80) S_END + +(001E84) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001E9C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001EC4) S_THUNK32: [0001:0004E496], Cb: 00000006, GetSystemInfo + Parent: 00000000, End: 00001EEC, Next: 00000000 + +(001EEC) S_END + +(001EF0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001F08) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001F30) S_THUNK32: [0001:0004E490], Cb: 00000006, OpenFileMappingA + Parent: 00000000, End: 00001F5C, Next: 00000000 + +(001F5C) S_END + +(001F60) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001F78) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(001FA0) S_THUNK32: [0001:0004E48A], Cb: 00000006, CreateFileMappingA + Parent: 00000000, End: 00001FCC, Next: 00000000 + +(001FCC) S_END + +(001FD0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(001FE8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002010) S_THUNK32: [0001:0004E484], Cb: 00000006, MapViewOfFileEx + Parent: 00000000, End: 0000203C, Next: 00000000 + +(00203C) S_END + +(002040) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002058) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002080) S_THUNK32: [0001:0004E47E], Cb: 00000006, UnmapViewOfFile + Parent: 00000000, End: 000020AC, Next: 00000000 + +(0020AC) S_END + +(0020B0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0020C8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0020F0) S_THUNK32: [0001:0004E478], Cb: 00000006, IsBadCodePtr + Parent: 00000000, End: 00002118, Next: 00000000 + +(002118) S_END + +(00211C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002134) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00215C) S_THUNK32: [0001:0004E472], Cb: 00000006, HeapFree + Parent: 00000000, End: 00002180, Next: 00000000 + +(002180) S_END + +(002184) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00219C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0021C4) S_THUNK32: [0001:0004E46C], Cb: 00000006, HeapReAlloc + Parent: 00000000, End: 000021EC, Next: 00000000 + +(0021EC) S_END + +(0021F0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002208) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002230) S_THUNK32: [0001:0004E466], Cb: 00000006, GetProcessHeap + Parent: 00000000, End: 00002258, Next: 00000000 + +(002258) S_END + +(00225C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002274) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00229C) S_THUNK32: [0001:0004E460], Cb: 00000006, HeapAlloc + Parent: 00000000, End: 000022C0, Next: 00000000 + +(0022C0) S_END + +(0022C4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0022DC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002304) S_THUNK32: [0001:0004E45A], Cb: 00000006, VirtualFree + Parent: 00000000, End: 0000232C, Next: 00000000 + +(00232C) S_END + +(002330) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002348) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002370) S_THUNK32: [0001:0004E454], Cb: 00000006, VirtualAlloc + Parent: 00000000, End: 00002398, Next: 00000000 + +(002398) S_END + +(00239C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0023B4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0023DC) S_THUNK32: [0001:0004E44E], Cb: 00000006, VirtualLock + Parent: 00000000, End: 00002404, Next: 00000000 + +(002404) S_END + +(002408) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002420) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002448) S_THUNK32: [0001:0004E448], Cb: 00000006, VirtualQuery + Parent: 00000000, End: 00002470, Next: 00000000 + +(002470) S_END + +(002474) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00248C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0024B4) S_THUNK32: [0001:0004E442], Cb: 00000006, ReleaseSemaphore + Parent: 00000000, End: 000024E0, Next: 00000000 + +(0024E0) S_END + +(0024E4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0024FC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002524) S_THUNK32: [0001:0004E43C], Cb: 00000006, CreateSemaphoreA + Parent: 00000000, End: 00002550, Next: 00000000 + +(002550) S_END + +(002554) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00256C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002594) S_THUNK32: [0001:0004E436], Cb: 00000006, GetFileSize + Parent: 00000000, End: 000025BC, Next: 00000000 + +(0025BC) S_END + +(0025C0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0025D8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002600) S_THUNK32: [0001:0004E430], Cb: 00000006, _hwrite + Parent: 00000000, End: 00002624, Next: 00000000 + +(002624) S_END + +(002628) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002640) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002668) S_THUNK32: [0001:0004E42A], Cb: 00000006, _hread + Parent: 00000000, End: 00002688, Next: 00000000 + +(002688) S_END + +(00268C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0026A4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0026CC) S_THUNK32: [0001:0004E424], Cb: 00000006, _llseek + Parent: 00000000, End: 000026F0, Next: 00000000 + +(0026F0) S_END + +(0026F4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00270C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002734) S_THUNK32: [0001:0004E41E], Cb: 00000006, _lclose + Parent: 00000000, End: 00002758, Next: 00000000 + +(002758) S_END + +(00275C) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002774) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00279C) S_THUNK32: [0001:0004E418], Cb: 00000006, OpenFile + Parent: 00000000, End: 000027C0, Next: 00000000 + +(0027C0) S_END + +(0027C4) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0027DC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002804) S_THUNK32: [0001:0004E412], Cb: 00000006, OutputDebugStringA + Parent: 00000000, End: 00002830, Next: 00000000 + +(002830) S_END + +(002834) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00284C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002874) S_THUNK32: [0001:0004E40C], Cb: 00000006, ReleaseMutex + Parent: 00000000, End: 0000289C, Next: 00000000 + +(00289C) S_END + +(0028A0) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0028B8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0028E0) S_THUNK32: [0001:0004E406], Cb: 00000006, LeaveCriticalSection + Parent: 00000000, End: 00002910, Next: 00000000 + +(002910) S_END + +(002914) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(00292C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002954) S_THUNK32: [0001:0004E400], Cb: 00000006, WaitForSingleObject + Parent: 00000000, End: 00002984, Next: 00000000 + +(002984) S_END + +(002988) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(0029A0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0029C8) S_THUNK32: [0001:0004E3FA], Cb: 00000006, EnterCriticalSection + Parent: 00000000, End: 000029F8, Next: 00000000 + +(0029F8) S_END + +(0029FC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002A14) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002A3C) S_THUNK32: [0001:0004E3F4], Cb: 00000006, DeleteCriticalSection + Parent: 00000000, End: 00002A6C, Next: 00000000 + +(002A6C) S_END + +(002A70) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002A88) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002AB0) S_THUNK32: [0001:0004E3EE], Cb: 00000006, CreateMutexA + Parent: 00000000, End: 00002AD8, Next: 00000000 + +(002AD8) S_END + +(002ADC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002AF4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002B1C) S_THUNK32: [0001:0004E3E8], Cb: 00000006, InitializeCriticalSection + Parent: 00000000, End: 00002B50, Next: 00000000 + +(002B50) S_END + +(002B54) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002B6C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002B94) S_THUNK32: [0001:0004E3E2], Cb: 00000006, ReadFile + Parent: 00000000, End: 00002BB8, Next: 00000000 + +(002BB8) S_END + +(002BBC) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002BD4) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002BFC) S_THUNK32: [0001:0004E3DC], Cb: 00000006, CreateFileA + Parent: 00000000, End: 00002C24, Next: 00000000 + +(002C24) S_END + +(002C28) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002C40) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002C68) S_THUNK32: [0001:0004E3D6], Cb: 00000006, CloseHandle + Parent: 00000000, End: 00002C90, Next: 00000000 + +(002C90) S_END + +(002C94) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002CAC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002CD4) S_THUNK32: [0001:0004E3D0], Cb: 00000006, Sleep + Parent: 00000000, End: 00002CF4, Next: 00000000 + +(002CF4) S_END + +(002CF8) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002D10) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002D38) S_THUNK32: [0001:0004E3CA], Cb: 00000006, QueryPerformanceCounter + Parent: 00000000, End: 00002D6C, Next: 00000000 + +(002D6C) S_END + +(002D70) S_OBJNAME: Signature: 00000000, KERNEL32.dll + +(002D88) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(002DB0) S_THUNK32: [0001:0004E3C4], Cb: 00000006, QueryPerformanceFrequency + Parent: 00000000, End: 00002DE4, Next: 00000000 + +(002DE4) S_END + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + + +(000004) S_OBJNAME: Signature: 00000000, USER32.dll + +(000018) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000040) S_OBJNAME: Signature: 00000000, USER32.dll + +(000054) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00007C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000090) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0000B8) S_THUNK32: [0001:0004E538], Cb: 00000006, MessageBeep + Parent: 00000000, End: 000000E0, Next: 00000000 + +(0000E0) S_END + +(0000E4) S_OBJNAME: Signature: 00000000, USER32.dll + +(0000F8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000120) S_THUNK32: [0001:0004E532], Cb: 00000006, MessageBoxA + Parent: 00000000, End: 00000148, Next: 00000000 + +(000148) S_END + +(00014C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000160) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000188) S_THUNK32: [0001:0004E52C], Cb: 00000006, ClientToScreen + Parent: 00000000, End: 000001B0, Next: 00000000 + +(0001B0) S_END + +(0001B4) S_OBJNAME: Signature: 00000000, USER32.dll + +(0001C8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0001F0) S_THUNK32: [0001:0004E526], Cb: 00000006, DrawMenuBar + Parent: 00000000, End: 00000218, Next: 00000000 + +(000218) S_END + +(00021C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000230) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000258) S_THUNK32: [0001:0004E520], Cb: 00000006, RedrawWindow + Parent: 00000000, End: 00000280, Next: 00000000 + +(000280) S_END + +(000284) S_OBJNAME: Signature: 00000000, USER32.dll + +(000298) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0002C0) S_THUNK32: [0001:0004E51A], Cb: 00000006, SetRect + Parent: 00000000, End: 000002E4, Next: 00000000 + +(0002E4) S_END + +(0002E8) S_OBJNAME: Signature: 00000000, USER32.dll + +(0002FC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000324) S_THUNK32: [0001:0004E514], Cb: 00000006, GetMenu + Parent: 00000000, End: 00000348, Next: 00000000 + +(000348) S_END + +(00034C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000360) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000388) S_THUNK32: [0001:0004E50E], Cb: 00000006, AdjustWindowRectEx + Parent: 00000000, End: 000003B4, Next: 00000000 + +(0003B4) S_END + +(0003B8) S_OBJNAME: Signature: 00000000, USER32.dll + +(0003CC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0003F4) S_THUNK32: [0001:0004E508], Cb: 00000006, SetWindowPos + Parent: 00000000, End: 0000041C, Next: 00000000 + +(00041C) S_END + +(000420) S_OBJNAME: Signature: 00000000, USER32.dll + +(000434) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00045C) S_THUNK32: [0001:0004E502], Cb: 00000006, SetWindowLongA + Parent: 00000000, End: 00000484, Next: 00000000 + +(000484) S_END + +(000488) S_OBJNAME: Signature: 00000000, USER32.dll + +(00049C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0004C4) S_THUNK32: [0001:0004E4FC], Cb: 00000006, GetDC + Parent: 00000000, End: 000004E4, Next: 00000000 + +(0004E4) S_END + +(0004E8) S_OBJNAME: Signature: 00000000, USER32.dll + +(0004FC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000524) S_THUNK32: [0001:0004E4F6], Cb: 00000006, ReleaseDC + Parent: 00000000, End: 00000548, Next: 00000000 + +(000548) S_END + +(00054C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000560) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000588) S_THUNK32: [0001:0004E4F0], Cb: 00000006, PostMessageA + Parent: 00000000, End: 000005B0, Next: 00000000 + +(0005B0) S_END + +(0005B4) S_OBJNAME: Signature: 00000000, USER32.dll + +(0005C8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0005F0) S_THUNK32: [0001:0004E4EA], Cb: 00000006, KillTimer + Parent: 00000000, End: 00000614, Next: 00000000 + +(000614) S_END + +(000618) S_OBJNAME: Signature: 00000000, USER32.dll + +(00062C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000654) S_THUNK32: [0001:0004E4E4], Cb: 00000006, SetTimer + Parent: 00000000, End: 00000678, Next: 00000000 + +(000678) S_END + +(00067C) S_OBJNAME: Signature: 00000000, USER32.dll + +(000690) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0006B8) S_THUNK32: [0001:0004E4DE], Cb: 00000006, GetWindowLongA + Parent: 00000000, End: 000006E0, Next: 00000000 + +(0006E0) S_END + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + + +(000004) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000018) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000040) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000054) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00007C) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000090) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0000B8) S_THUNK32: [0001:0004E592], Cb: 00000006, GetDeviceCaps + Parent: 00000000, End: 000000E0, Next: 00000000 + +(0000E0) S_END + +(0000E4) S_OBJNAME: Signature: 00000000, GDI32.dll + +(0000F8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000120) S_THUNK32: [0001:0004E58C], Cb: 00000006, CreatePalette + Parent: 00000000, End: 00000148, Next: 00000000 + +(000148) S_END + +(00014C) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000160) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000188) S_THUNK32: [0001:0004E586], Cb: 00000006, SelectPalette + Parent: 00000000, End: 000001B0, Next: 00000000 + +(0001B0) S_END + +(0001B4) S_OBJNAME: Signature: 00000000, GDI32.dll + +(0001C8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0001F0) S_THUNK32: [0001:0004E580], Cb: 00000006, RealizePalette + Parent: 00000000, End: 00000218, Next: 00000000 + +(000218) S_END + +(00021C) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000230) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000258) S_THUNK32: [0001:0004E57A], Cb: 00000006, CreateFontA + Parent: 00000000, End: 00000280, Next: 00000000 + +(000280) S_END + +(000284) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000298) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0002C0) S_THUNK32: [0001:0004E574], Cb: 00000006, GetTextExtentPointA + Parent: 00000000, End: 000002F0, Next: 00000000 + +(0002F0) S_END + +(0002F4) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000308) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000330) S_THUNK32: [0001:0004E56E], Cb: 00000006, SelectObject + Parent: 00000000, End: 00000358, Next: 00000000 + +(000358) S_END + +(00035C) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000370) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000398) S_THUNK32: [0001:0004E568], Cb: 00000006, SetTextColor + Parent: 00000000, End: 000003C0, Next: 00000000 + +(0003C0) S_END + +(0003C4) S_OBJNAME: Signature: 00000000, GDI32.dll + +(0003D8) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000400) S_THUNK32: [0001:0004E562], Cb: 00000006, SetBkColor + Parent: 00000000, End: 00000424, Next: 00000000 + +(000424) S_END + +(000428) S_OBJNAME: Signature: 00000000, GDI32.dll + +(00043C) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000464) S_THUNK32: [0001:0004E55C], Cb: 00000006, SetBkMode + Parent: 00000000, End: 00000488, Next: 00000000 + +(000488) S_END + +(00048C) S_OBJNAME: Signature: 00000000, GDI32.dll + +(0004A0) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0004C8) S_THUNK32: [0001:0004E556], Cb: 00000006, GetTextExtentPoint32A + Parent: 00000000, End: 000004F8, Next: 00000000 + +(0004F8) S_END + +(0004FC) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000510) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000538) S_THUNK32: [0001:0004E550], Cb: 00000006, ExtTextOutA + Parent: 00000000, End: 00000560, Next: 00000000 + +(000560) S_END + +(000564) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000578) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(0005A0) S_THUNK32: [0001:0004E54A], Cb: 00000006, GetSystemPaletteEntries + Parent: 00000000, End: 000005D4, Next: 00000000 + +(0005D4) S_END + +(0005D8) S_OBJNAME: Signature: 00000000, GDI32.dll + +(0005EC) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(000614) S_THUNK32: [0001:0004E544], Cb: 00000006, StretchDIBits + Parent: 00000000, End: 0000063C, Next: 00000000 + +(00063C) S_END + +(000640) S_OBJNAME: Signature: 00000000, GDI32.dll + +(000654) S_COMPILE: + Language: LINK + Target processor: 80386 + Floating-point precision: 0 + Floating-point package: hardware + Ambient data: NEAR + Ambient code: NEAR + PCode present: 0 + Compiler Version: Microsoft LINK 3.10.6081 (NT) + +(00067C) S_THUNK32: [0001:0004E53E], Cb: 00000006, DeleteObject + Parent: 00000000, End: 000006A4, Next: 00000000 + +(0006A4) S_END + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** GLOBALS + + +S_PROCREF: 0x00000000: ( 43, 0000039C) MxHashTableCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 119, 00000AF8) MxBackgroundAudioManager::LowerVolume +S_UDT: T_32PVOID(0403), HDC +S_PROCREF: 0x00000000: ( 18, 000005E4) Score::FUN_100016d0 +S_PROCREF: 0x00000000: ( 210, 00000200) AmbulanceMissionState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 96, 00000C90) MxDSSelectAction::operator= +S_UDT: T_USHORT(0021), wchar_t +S_CONSTANT: Type: 0x104E, Value: 3, MxDSType_Anim +S_PROCREF: 0x00000000: ( 30, 0000021C) RaceCar::~RaceCar +S_PROCREF: 0x00000000: ( 49, 00000114) MxTickleManager::~MxTickleManager +S_PROCREF: 0x00000000: ( 7, 000000FC) ViewportAppData::~ViewportAppData +S_PROCREF: 0x00000000: ( 171, 00000520) LegoAnimationManager::FUN_10064670 +S_UDT: T_32PUCHAR(0420), LPBYTE +S_PROCREF: 0x00000000: ( 89, 000001D4) MxEntity::IsA +S_CONSTANT: Type: 0x1059, Value: 22, TYPE22 +S_PROCREF: 0x00000000: ( 165, 000001E8) LegoCameraController::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 145, 00000584) LegoMemoryStream::~LegoMemoryStream +S_PROCREF: 0x00000000: ( 84, 0000029C) MxLoopingFlcPresenter::Init +S_UDT: T_USHORT(0021), undefined2 +S_PROCREF: 0x00000000: ( 11, 000000EC) TglImpl::MeshImpl::SetColor +S_PROCREF: 0x00000000: ( 165, 00000394) LegoCameraController::FUN_100123e0 +S_PROCREF: 0x00000000: ( 147, 000044E4) LegoCarRaceActor::`scalar deleting destructor' +S_GDATA32: [0004:00000DFC], Type: 0x1065, g_jetskiScript +S_PROCREF: 0x00000000: ( 101, 000004B4) MxDSMediaAction::Deserialize +S_PROCREF: 0x00000000: ( 206, 000003EC) BuildingEntity::~BuildingEntity +S_PROCREF: 0x00000000: ( 119, 0000057C) MxBackgroundAudioManager::Tickle +S_PROCREF: 0x00000000: ( 54, 00000808) MxRAMStreamController::IsA +S_PROCREF: 0x00000000: ( 28, 00000268) RaceState::GetState +S_PROCREF: 0x00000000: ( 127, 000001FC) LegoWorldPresenter::IsA +S_PROCREF: 0x00000000: ( 81, 000006F8) MxMediaManager::StopPresenters +S_CONSTANT: Type: 0x106B, Value: 2, D3DRMCOMBINE_AFTER +S_PROCREF: 0x00000000: ( 34, 000001D8) PizzeriaState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 54, 00000350) MxStreamer::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 127, 000009A4) LegoWorldPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 125, 00000380) MxEndActionNotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 59, 000006F0) MxSoundManager::Pause +S_PROCREF: 0x00000000: ( 118, 00000080) MxBitmap::VTable0x28 +S_UDT: T_32PVOID(0403), HWINSTA +S_PROCREF: 0x00000000: ( 96, 00000AB8) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 100, 00000160) MxDSActionList::Compare +S_PROCREF: 0x00000000: ( 63, 00000084) MxScheduler::GetInstance +S_PROCREF: 0x00000000: ( 24, 000001E4) OrientableROI::UpdateWorldData +S_CONSTANT: Type: 0x4790, Value: 47, D3DRENDERSTATE_ZBIAS +S_PROCREF: 0x00000000: ( 112, 00000560) MxDirect3D::GetZBufferBitDepth +S_PROCREF: 0x00000000: ( 211, 000004E8) Ambulance::ClassName +S_PROCREF: 0x00000000: ( 10, 00000260) Tgl::Renderer::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 154, 00000618) MxParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 156, 00000344) LegoGameState::SetSavePath +S_PROCREF: 0x00000000: ( 211, 00000084) Ambulance::Ambulance +S_PROCREF: 0x00000000: ( 138, 000002E4) LegoRace::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 25, 000003CC) Matrix4Impl::Clear +S_PROCREF: 0x00000000: ( 154, 000005C8) MxParam::~MxParam +S_PROCREF: 0x00000000: ( 147, 000038C0) BumpBouy::ClassName +S_PROCREF: 0x00000000: ( 109, 00000B84) MxDiskStreamProvider::FUN_100d1780 +S_PROCREF: 0x00000000: ( 4, 00000A04) LODListBase::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 107, 000006EC) MxDSAction::GetElapsedTime +S_PROCREF: 0x00000000: ( 79, 0000032C) MxMIDIPresenter::Destroy +S_PROCREF: 0x00000000: ( 79, 00000528) MxMIDIPresenter::Destroy +S_PROCREF: 0x00000000: ( 147, 00002690) LegoWorld::ClassName +S_CONSTANT: Type: 0x104C, Value: 2, LookupMode_UpperCase +S_PROCREF: 0x00000000: ( 114, 0000018C) MxCore::~MxCore +S_PROCREF: 0x00000000: ( 89, 000000F4) MxEntity::~MxEntity +S_PROCREF: 0x00000000: ( 10, 00000130) TglImpl::RendererImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 102, 000003BC) MxDSSource::ClassName +S_PROCREF: 0x00000000: ( 154, 00000494) LegoEventNotificationParam::~LegoEventNotificationParam +S_PROCREF: 0x00000000: ( 73, 00000BA0) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator::_Inc +S_PROCREF: 0x00000000: ( 55, 00001584) MxStreamController::VTable0x30 +S_PROCREF: 0x00000000: ( 91, 000001D0) MxDSStreamingAction::HasId +S_PROCREF: 0x00000000: ( 55, 00000F68) MxStreamController::VTable0x20 +S_PROCREF: 0x00000000: ( 91, 000002F0) MxDSStreamingAction::~MxDSStreamingAction +S_PROCREF: 0x00000000: ( 60, 00000974) MxPtrList::~MxPtrList +S_PROCREF: 0x00000000: ( 42, 00000330) MxVideoManager::Destroy +S_PROCREF: 0x00000000: ( 42, 000008C8) MxVideoManager::Destroy +S_PROCREF: 0x00000000: ( 54, 00000B74) MxStreamerNotification::Clone +S_PROCREF: 0x00000000: ( 107, 000004AC) MxDSAction::~MxDSAction +S_PROCREF: 0x00000000: ( 154, 000011C4) LegoInputManager::SetCamera +S_LPROCREF: 0x00000000: ( 134, 000009FC) $E33 +S_CONSTANT: Type: 0x1015, Value: (LF_CHAR) -1(0xFF), MEM_POINTER_FREE +S_PROCREF: 0x00000000: ( 149, 000000E4) LegoModelPresenter::configureLegoModelPresenter +S_PROCREF: 0x00000000: ( 24, 00000294) OrientableROI::UpdateWorldVelocity +S_UDT: T_32PVOID(0403), HGDIOBJ +S_PROCREF: 0x00000000: ( 156, 0000043C) LegoGameState::GetFileSavePath +S_PROCREF: 0x00000000: ( 101, 00000168) MxDSMediaAction::IsA +S_CONSTANT: Type: 0x1011, Value: (LF_ULONG) 2147483647, MEM_BLOCK_TYPE_INT_MAX +S_PROCREF: 0x00000000: ( 11, 00000088) TglImpl::MeshImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 199, 000001B8) GasStation::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 166, 00000248) LegoCacheSound::~LegoCacheSound +S_PROCREF: 0x00000000: ( 116, 00000DB0) MxCompositePresenter::HasTickleStatePassed +S_PROCREF: 0x00000000: ( 68, 0000050C) MxPresenter::PutData +S_PROCREF: 0x00000000: ( 84, 00000090) MxLoopingFlcPresenter::MxLoopingFlcPresenter +S_PROCREF: 0x00000000: ( 200, 00000110) ElevatorBottom::ClassName +S_PROCREF: 0x00000000: ( 39, 000006B4) MxVideoPresenter::AlphaMask::~AlphaMask +S_PROCREF: 0x00000000: ( 147, 00003AE8) HospitalEntity::ClassName +S_PROCREF: 0x00000000: ( 129, 0000175C) LegoVideoManager::VTable0x34 +S_PROCREF: 0x00000000: ( 105, 0000097C) MxStreamChunk::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 18, 00000414) Score::Notify +S_PROCREF: 0x00000000: ( 85, 000000D0) MXIOINFO::~MXIOINFO +S_PROCREF: 0x00000000: ( 145, 00000610) LegoStream::~LegoStream +S_PROCREF: 0x00000000: ( 64, 000001CC) MxRegionCursor::HasRect +S_GDATA32: [0004:000007F8], Type: T_32PRCHAR(0470), g_historyGSI +S_PROCREF: 0x00000000: ( 112, 000011B0) list >::insert +S_CONSTANT: Type: 0x1059, Value: 21, c_notificationNewPresenter +S_PROCREF: 0x00000000: ( 103, 00000084) MxDSEvent::MxDSEvent +S_PROCREF: 0x00000000: ( 105, 00000BF8) MxDSBuffer::FUN_100c6f80 +S_PROCREF: 0x00000000: ( 139, 0000016C) LegoPlantManager::`scalar deleting destructor' +S_GDATA32: [0004:0000153C], Type: T_INT4(0074), MxAudioManager::g_count +S_PROCREF: 0x00000000: ( 112, 000003F4) MxDirect3D::CreateIDirect3D +S_PROCREF: 0x00000000: ( 218, 000003F4) TglSurface::Create +S_PROCREF: 0x00000000: ( 216, 000006A4) LegoPathActor::VTable0xb8 +S_PROCREF: 0x00000000: ( 147, 00002D44) LegoActorPresenter::ClassName +S_PROCREF: 0x00000000: ( 146, 000004CC) TransitionManager +S_PROCREF: 0x00000000: ( 216, 000005F4) LegoPathActor::VTable0xb0 +S_GDATA32: [0004:00000AB0], Type: T_REAL32(0040), g_turnSensitivity +S_PROCREF: 0x00000000: ( 216, 0000064C) LegoPathActor::VTable0xb4 +S_UDT: T_32PVOID(0403), HCONV +S_UDT: T_32PINT4(0474), PBOOL +S_PROCREF: 0x00000000: ( 101, 0000024C) MxDSMediaAction::~MxDSMediaAction +S_PROCREF: 0x00000000: ( 100, 00000710) MxDSMultiAction::~MxDSMultiAction +S_GDATA32: [0004:000012C8], Type: 0x18A3, g_roiColorAliases +S_PROCREF: 0x00000000: ( 147, 00003E88) JukeBoxState::ClassName +S_PROCREF: 0x00000000: ( 111, 000009FC) MxDirectDraw::DDCreateSurfaces +S_UDT: T_32PVOID(0403), HCURSOR +S_UDT: T_REAL32(0040), FLOAT +S_PROCREF: 0x00000000: ( 14, 0000037C) TglImpl::DeviceImpl::InitFromD3DDevice +S_PROCREF: 0x00000000: ( 217, 00000318) LegoState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 132, 00000318) ConvertHSVToRGB +S_PROCREF: 0x00000000: ( 146, 000010E4) LegoWorldList::Compare +S_PROCREF: 0x00000000: ( 126, 000001B8) Motorcycle::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 0000135C) MxStreamController::FUN_100c1a00 +S_PROCREF: 0x00000000: ( 119, 00000398) MxBackgroundAudioManager::Create +S_PROCREF: 0x00000000: ( 112, 00000D44) MxDevice::~MxDevice +S_PROCREF: 0x00000000: ( 60, 00000ABC) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 64, 00000754) MxRegionCursor::Reset +S_PROCREF: 0x00000000: ( 7, 00000A00) TglImpl::ViewImpl::Pick +S_PROCREF: 0x00000000: ( 128, 00000EF0) MxPresenterList::~MxPresenterList +S_PROCREF: 0x00000000: ( 154, 00000534) MxNotificationParam::~MxNotificationParam +S_PROCREF: 0x00000000: ( 47, 00000264) MxTransitionManager::~MxTransitionManager +S_PROCREF: 0x00000000: ( 112, 00000104) MxDirect3D::`scalar deleting destructor' +S_UDT: T_32PREAL32(0440), PFLOAT +S_PROCREF: 0x00000000: ( 147, 0000309C) LegoPartPresenter::IsA +S_PROCREF: 0x00000000: ( 145, 00000664) LegoStream::`scalar deleting destructor' +S_UDT: T_UINT4(0075), UINT +S_CONSTANT: Type: 0x1069, Value: 3, D3DRMTEXTURE_MIPLINEAR +S_UDT: T_32PULONG(0422), PULONG +S_PROCREF: 0x00000000: ( 178, 00000084) JukeBoxState::VTable0x14 +S_PROCREF: 0x00000000: ( 111, 00000470) MxDirectDraw::SetPaletteEntries +S_PROCREF: 0x00000000: ( 127, 000002E4) LegoWorldPresenter::~LegoWorldPresenter +S_CONSTANT: Type: 0x131C, Value: 1, MxDSBufferType_Allocate +S_PROCREF: 0x00000000: ( 129, 000016DC) LegoVideoManager::OverrideSkyColor +S_PROCREF: 0x00000000: ( 102, 000007E8) MxDSFile::GetStreamBuffersNum +S_PROCREF: 0x00000000: ( 154, 00001234) LegoInputManager::ClearCamera +S_PROCREF: 0x00000000: ( 9, 000002A4) TglImpl::TglD3DRMIMAGE::Destroy +S_PROCREF: 0x00000000: ( 211, 00000440) IslePathActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00001E84) MxOmni::StopTimer +S_PROCREF: 0x00000000: ( 100, 000001D4) MxDSActionList::Destroy +S_CONSTANT: Type: 0x478C, Value: (LF_ULONG) 2147483647, D3DTRANSFORMSTATE_FORCE_DWORD +S_UDT: T_32PVOID(0403), HRGN +S_PROCREF: 0x00000000: ( 17, 000000D8) ScoreState::SetFlag +S_PROCREF: 0x00000000: ( 189, 000002B0) Infocenter::Create +S_PROCREF: 0x00000000: ( 77, 000003FC) MxMusicPresenter::AddToManager +S_PROCREF: 0x00000000: ( 146, 00001F7C) FUN_100b6e10 +S_PROCREF: 0x00000000: ( 112, 00001D68) MxDriver::`scalar deleting destructor' +S_GDATA32: [0004:00000A90], Type: T_REAL32(0040), g_movementMaxSpeed +S_PROCREF: 0x00000000: ( 216, 000006FC) LegoPathActor::VTable0xbc +S_PROCREF: 0x00000000: ( 25, 00000674) Matrix4Impl::EqualsMxProduct +S_PROCREF: 0x00000000: ( 119, 000002C0) MxBackgroundAudioManager::~MxBackgroundAudioManager +S_UDT: T_ULONG(0022), FOURCC +S_PROCREF: 0x00000000: ( 62, 00000084) MxSemaphore::MxSemaphore +S_PROCREF: 0x00000000: ( 169, 00000298) MxMediaPresenter::ClassName +S_PROCREF: 0x00000000: ( 112, 0000017C) MxDirect3D::~MxDirect3D +S_UDT: T_32PVOID(0403), HBRUSH +S_PROCREF: 0x00000000: ( 56, 000002FC) MxStreamChunk::SetBuffer +S_PROCREF: 0x00000000: ( 21, 00001848) Vector3Impl::EqualsScalar +S_PROCREF: 0x00000000: ( 161, 00000150) LegoEntity::ResetWorldTransform +S_PROCREF: 0x00000000: ( 147, 00004770) ScoreState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 2, 00000444) ViewROI::SetUnk101013d8 +S_PROCREF: 0x00000000: ( 146, 00000F68) GifManagerBase::~GifManagerBase +S_PROCREF: 0x00000000: ( 124, 0000010C) MxAtomId::~MxAtomId +S_PROCREF: 0x00000000: ( 14, 000001A8) TglImpl::DeviceImpl::SetColorModel +S_PROCREF: 0x00000000: ( 28, 00000164) RaceState::IsA +S_CONSTANT: Type: 0x101B, Value: (LF_ULONG) 2147483647, MEM_PATCHING_INT_MAX +S_PROCREF: 0x00000000: ( 123, 000000D8) MxAtomIdCounter::Dec +S_PROCREF: 0x00000000: ( 47, 00000BE8) MxTransitionManager::SetupCopyRect +S_UDT: T_LONG(0012), LCSCSTYPE +S_PROCREF: 0x00000000: ( 128, 00001504) LegoWorld::FUN_100220e0 +S_PROCREF: 0x00000000: ( 137, 00000698) ViewROI::~ViewROI +S_PROCREF: 0x00000000: ( 217, 00000114) LegoState::ClassName +S_PROCREF: 0x00000000: ( 147, 00004450) LegoJetskiRaceActor::~LegoJetskiRaceActor +S_PROCREF: 0x00000000: ( 169, 0000021C) MxPresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 23, TYPE23 +S_PROCREF: 0x00000000: ( 21, 00000F90) Vector4Impl::DivScalarImpl +S_LPROCREF: 0x00000000: ( 165, 00000514) $E4 +S_GDATA32: [0004:00000150], Type: 0x4E94, g_mxcoreCount +S_UDT: T_LONG(0012), LCSGAMUTMATCH +S_PROCREF: 0x00000000: ( 136, 00000114) LegoSoundManager::`scalar deleting destructor' +S_LPROCREF: 0x00000000: ( 165, 000005A4) $E6 +S_CONSTANT: Type: 0x106B, Value: 1, D3DRMCOMBINE_BEFORE +S_PROCREF: 0x00000000: ( 68, 00000234) MxPresenter::Unk5Tickle +S_CONSTANT: Type: 0x4790, Value: 34, D3DRENDERSTATE_FOGCOLOR +S_LPROCREF: 0x00000000: ( 165, 00000484) $E2 +S_CONSTANT: Type: 0x1075, Value: 0, D3DRMZBUFFER_FROMPARENT +S_PROCREF: 0x00000000: ( 18, 000007CC) Score::Paint +S_GDATA32: [0004:00000800], Type: T_32PRCHAR(0470), g_fileExtensionGS +S_PROCREF: 0x00000000: ( 65, 00001C68) MxPtrListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 189, 00000430) Infocenter::Tickle +S_PROCREF: 0x00000000: ( 173, 00000164) LegoActor::IsA +S_PROCREF: 0x00000000: ( 109, 00000308) MxStreamProvider::IsA +S_PROCREF: 0x00000000: ( 154, 000007F4) MxCollection::~MxCollection +S_CONSTANT: Type: 0x478E, Value: 3, D3DLIGHTSTATE_COLORMODEL +S_GDATA32: [0004:00000E5C], Type: 0x1065, g_creditsScript +S_PROCREF: 0x00000000: ( 96, 00000178) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 105, 00000A80) MxDSBuffer::ReleaseRef +S_PROCREF: 0x00000000: ( 165, 00000300) LegoCameraController::LookAt +S_CONSTANT: Type: 0x2E71, Value: 1, D3DRMXOF_COMPRESSED +S_PROCREF: 0x00000000: ( 193, 00000234) HistoryBook::~HistoryBook +S_PROCREF: 0x00000000: ( 109, 000004A8) MxSemaphore::~MxSemaphore +S_PROCREF: 0x00000000: ( 155, 00000264) LegoHideAnimPresenter::IsA +S_PROCREF: 0x00000000: ( 71, 000001A0) MxOmniCreateParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 39, 000002A4) MxVideoPresenter::Destroy +S_PROCREF: 0x00000000: ( 39, 000007FC) MxVideoPresenter::Destroy +S_UDT: T_32PRCHAR(0470), ROIName +S_PROCREF: 0x00000000: ( 96, 00000EA0) MxDSSelectAction::Deserialize +S_CONSTANT: Type: 0x1011, Value: 1, MEM_FS_BLOCK +S_PROCREF: 0x00000000: ( 200, 00000248) ElevatorBottom::~ElevatorBottom +S_PROCREF: 0x00000000: ( 39, 000005A0) MxVideoPresenter::AlphaMask::`scalar deleting destructor' +S_UDT: T_ULONG(0022), COLORREF +S_PROCREF: 0x00000000: ( 105, 000008C4) MxStreamChunk::ClassName +S_PROCREF: 0x00000000: ( 73, 00001290) MxVariableTable::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 152, 000001AC) MxAudioPresenter::ClassName +S_CONSTANT: Type: 0x4790, Value: 28, D3DRENDERSTATE_FOGENABLE +S_PROCREF: 0x00000000: ( 147, 000041C8) Lego3DWavePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 140, 000002BC) LegoPhonemePresenter::Init +S_CONSTANT: Type: 0x1073, Value: 2, D3DRMFOG_EXPONENTIALSQUARED +S_PROCREF: 0x00000000: ( 211, 00000188) IslePathActor::ClassName +S_PROCREF: 0x00000000: ( 57, 0000061C) MxStillPresenter::Enable +S_PROCREF: 0x00000000: ( 132, 00000080) MatchActionString +S_PROCREF: 0x00000000: ( 116, 000009B0) MxCompositePresenter::VTable0x58 +S_PROCREF: 0x00000000: ( 185, 00000244) Isle::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 207, 0000013C) Bike::IsA +S_PROCREF: 0x00000000: ( 161, 00000524) LegoEntity::ParseAction +S_CONSTANT: Type: 0x4790, Value: 43, D3DRENDERSTATE_BORDERCOLOR +S_PROCREF: 0x00000000: ( 77, 00000164) MxMusicPresenter::ClassName +S_PROCREF: 0x00000000: ( 154, 000010E4) LegoInputManager::Register +S_PROCREF: 0x00000000: ( 60, 00000234) MxSmkPresenter::~MxSmkPresenter +S_PROCREF: 0x00000000: ( 22, 00000198) RealtimeView::GetPartsThreshold +S_GDATA32: [0004:000004B4], Type: T_32PRCHAR(0470), g_reset +S_PROCREF: 0x00000000: ( 39, 00000BF0) MxVideoPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 171, 0000038C) LegoAnimationManager::Init +S_PROCREF: 0x00000000: ( 180, 00000148) JukeBox::IsA +S_GDATA32: [0004:00003C24], Type: T_REAL32(0040), g_partsThreshold +S_CONSTANT: Type: 0x478E, Value: 7, D3DLIGHTSTATE_FOGDENSITY +S_CONSTANT: Type: 0x4790, Value: 16, D3DRENDERSTATE_LASTPIXEL +S_PROCREF: 0x00000000: ( 109, 0000071C) MxDiskStreamProvider::`scalar deleting destructor' +S_CONSTANT: Type: 0x100F, Value: 12, MEM_BAD_FREE_BLOCK +S_PROCREF: 0x00000000: ( 52, 00000100) MxStreamProvider::VTable0x20 +S_UDT: T_USHORT(0021), _Wchart +S_CONSTANT: Type: 0x478E, Value: (LF_ULONG) 2147483647, D3DLIGHTSTATE_FORCE_DWORD +S_PROCREF: 0x00000000: ( 146, 00000638) PickROI +S_PROCREF: 0x00000000: ( 95, 000004FC) MxDSSerialAction::GetDuration +S_CONSTANT: Type: 0x4790, Value: 5, D3DRENDERSTATE_WRAPU +S_PROCREF: 0x00000000: ( 82, 000006C4) MxLoopingSmkPresenter::AddToManager +S_GDATA32: [0004:00003C1C], Type: T_REAL32(0040), g_userMaxBase +S_PROCREF: 0x00000000: ( 192, 0000014C) Hospital::IsA +S_PROCREF: 0x00000000: ( 146, 00001748) MxTickleManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 129, 00001494) LegoVideoManager::RealizePalette +S_PROCREF: 0x00000000: ( 193, 00000104) HistoryBook::ClassName +S_PROCREF: 0x00000000: ( 129, 00000F00) MxListCursor::MxListCursor +S_PROCREF: 0x00000000: ( 43, 000002F0) MxHashTableCursor::~MxHashTableCursor +S_PROCREF: 0x00000000: ( 129, 00000FB4) MxPresenterListCursor::`scalar deleting destructor' +S_CONSTANT: Type: 0x1007, Value: 3, Directional +S_CONSTANT: Type: 0x1050, Value: 5, ExtraActionType_stop +S_PROCREF: 0x00000000: ( 108, 00000EDC) MxDisplaySurface::GetDC +S_CONSTANT: Type: 0x131C, Value: 2, MxDSBufferType_Preallocated +S_PROCREF: 0x00000000: ( 33, 00000218) Police::~Police +S_CONSTANT: Type: 0x100F, Value: 2, MEM_OUT_OF_MEMORY +S_PROCREF: 0x00000000: ( 116, 000003E0) MxCompositePresenterList::~MxCompositePresenterList +S_PROCREF: 0x00000000: ( 42, 000001A0) MxVideoManager::VTable0x34 +S_PROCREF: 0x00000000: ( 111, 000008CC) MxDirectDraw::CreateDDSurface +S_PROCREF: 0x00000000: ( 176, 000001A4) Lego3DView::Create +S_UDT: T_32PVOID(0403), HMIXEROBJ +S_PROCREF: 0x00000000: ( 99, 00000340) MxDSObject::operator= +S_PROCREF: 0x00000000: ( 148, 00000794) LegoNavController::CalculateNewTargetSpeed +S_UDT: T_32PULONG(0422), PSECURITY_INFORMATION +S_PROCREF: 0x00000000: ( 115, 000003A8) MxControlPresenter::~MxControlPresenter +S_PROCREF: 0x00000000: ( 216, 00000100) LegoEntity::SetWorldSpeed +S_PROCREF: 0x00000000: ( 112, 000019A8) MxDeviceEnumerate::GetDevice +S_PROCREF: 0x00000000: ( 60, 000010DC) MxSmkPresenter::RealizePalette +S_PROCREF: 0x00000000: ( 156, 00000670) LegoGameState::SetROIHandlerFunction +S_PROCREF: 0x00000000: ( 193, 000002B8) HistoryBook::Notify +S_UDT: T_LONG(0012), _off_t +S_PROCREF: 0x00000000: ( 73, 0000051C) MxOmni::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00000EA8) MxRegionTopBottomListCursor::~MxRegionTopBottomListCursor +S_PROCREF: 0x00000000: ( 108, 000011CC) MxDisplaySurface::VTable0x2c +S_PROCREF: 0x00000000: ( 132, 0000042C) FUN_1003ee00 +S_PROCREF: 0x00000000: ( 50, 00000400) MxThread::Start +S_PROCREF: 0x00000000: ( 147, 00003F40) LegoModelPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 00000600) FUN_1001a700 +S_LPROCREF: 0x00000000: ( 134, 00000A8C) $E42 +S_PROCREF: 0x00000000: ( 90, 000001B0) MxStreamChunkList::Compare +S_PROCREF: 0x00000000: ( 152, 00000318) MxAudioPresenter::~MxAudioPresenter +S_PROCREF: 0x00000000: ( 34, 00000120) PizzeriaState::ClassName +S_PROCREF: 0x00000000: ( 156, 000006D0) ROIHandlerFunction +S_UDT: T_LONG(0012), LRESULT +S_PROCREF: 0x00000000: ( 216, 00000834) LegoPathActor::VTable0xc8 +S_PROCREF: 0x00000000: ( 147, 00004FA4) CarRaceState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 99, 00000494) MxDSObject::VTable0x14 +S_UDT: T_LONG(0012), HRESULT +S_PROCREF: 0x00000000: ( 210, 00000138) AmbulanceMissionState::ClassName +S_PROCREF: 0x00000000: ( 216, 0000076C) LegoPathActor::VTable0xc0 +S_PROCREF: 0x00000000: ( 124, 000001F8) MxAtomIdCounterCompare::operator() +S_PROCREF: 0x00000000: ( 216, 000007DC) LegoPathActor::VTable0xc4 +S_PROCREF: 0x00000000: ( 128, 000012F8) LegoWorld::GetCurrPathInfo +S_CONSTANT: Type: 0x1069, Value: 5, D3DRMTEXTURE_LINEARMIPLINEAR +S_PROCREF: 0x00000000: ( 147, 00003704) Doors::IsA +S_PROCREF: 0x00000000: ( 118, 00000328) MxBitmap::ImportBitmapInfo +S_CONSTANT: Type: 0x478E, Value: 6, D3DLIGHTSTATE_FOGEND +S_PROCREF: 0x00000000: ( 128, 000015A4) LegoWorld::FUN_100727e0 +S_PROCREF: 0x00000000: ( 47, 00000920) MxTransitionManager::TransitionWindows +S_PROCREF: 0x00000000: ( 59, 00000110) MxSoundManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 119, 00000820) MxBackgroundAudioManager::StartAction +S_PROCREF: 0x00000000: ( 95, 00000304) MxDSSerialAction::~MxDSSerialAction +S_UDT: T_32PULONG(0422), PDWORD +S_PROCREF: 0x00000000: ( 53, 0000024C) MxStreamListMxNextActionDataStart::FindAndErase +S_PROCREF: 0x00000000: ( 169, 00000168) MxPresenter::ClassName +S_PROCREF: 0x00000000: ( 125, 00000438) MxStartActionNotificationParam::Clone +S_PROCREF: 0x00000000: ( 193, 000001B8) HistoryBook::`scalar deleting destructor' +S_UDT: T_ULONG(0022), LCTYPE +S_CONSTANT: Type: 0x4790, Value: 50, D3DRENDERSTATE_FLUSHBATCH +S_CONSTANT: Type: 0x478A, Value: 2, D3DPT_LINELIST +S_PROCREF: 0x00000000: ( 128, 00000F7C) LegoWorld::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 80, 00000088) MxMediaPresenter::~MxMediaPresenter +S_PROCREF: 0x00000000: ( 216, 00000084) Act2Brick::Act2Brick +S_PROCREF: 0x00000000: ( 118, 00000A6C) MxBitmap::ImportColorsToPalette +S_PROCREF: 0x00000000: ( 85, 000005C4) MXIOINFO::Descend +S_PROCREF: 0x00000000: ( 108, 00000D84) MxDisplaySurface::Display +S_PROCREF: 0x00000000: ( 21, 000002A4) Vector2Impl::DivScalarImpl +S_GDATA32: [0004:000002E4], Type: T_32PRCHAR(0470), g_parseExtraTokens +S_PROCREF: 0x00000000: ( 154, 00001650) LegoInputManager::KillTimer +S_PROCREF: 0x00000000: ( 147, 00002C0C) LegoActionControlPresenter::IsA +S_PROCREF: 0x00000000: ( 54, 000003C8) List::~List +S_PROCREF: 0x00000000: ( 146, 000001D8) GameState +S_PROCREF: 0x00000000: ( 174, 00000258) LegoActionControlPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 21, 0000129C) Vector4Impl::EqualsScalar +S_PROCREF: 0x00000000: ( 13, 00000864) TglImpl::GroupImpl::RemoveAll +S_PROCREF: 0x00000000: ( 211, 00000598) Ambulance::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 117, 00000658) MxCompositeMediaPresenter::PutData +S_PROCREF: 0x00000000: ( 39, 00000404) MxVideoPresenter::GetHeight +S_PROCREF: 0x00000000: ( 76, 00000898) MxNotificationManager::Tickle +S_PROCREF: 0x00000000: ( 147, 000028B4) Lego3DWavePresenter::ClassName +S_PROCREF: 0x00000000: ( 182, 000001A4) Jetski::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 00000E70) MxStreamController::AddSubscriber +S_PROCREF: 0x00000000: ( 73, 00000264) Timer +S_PROCREF: 0x00000000: ( 97, 00000178) MxDSParallelAction::IsA +S_PROCREF: 0x00000000: ( 160, 00000594) LegoEntityPresenter::RepeatingTickle +S_UDT: T_ULONG(0022), RPCOLEDATAREP +S_UDT: T_32PVOID(0403), WIN_TRUST_SUBJECT +S_GDATA32: [0004:0000149C], Type: T_32PRCHAR(0470), g_endOfVariables +S_PROCREF: 0x00000000: ( 21, 00001640) Vector3Impl::DivScalarImpl +S_PROCREF: 0x00000000: ( 73, 00000A14) _Lockit::~_Lockit +S_PROCREF: 0x00000000: ( 152, 000005A0) MxSoundPresenter::`scalar deleting destructor' +S_GDATA32: [0004:00003584], Type: T_UINT4(0075), g_unk0x1010215c +S_PROCREF: 0x00000000: ( 162, 00000360) LegoControlManager::Unregister +S_PROCREF: 0x00000000: ( 68, 00000ACC) PresenterNameDispatch +S_PROCREF: 0x00000000: ( 111, 00000958) MxDirectDraw::GetDDSurfaceDesc +S_PROCREF: 0x00000000: ( 164, 000001C0) LegoCarBuild::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00005170) InfoCenterEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 96, 0000029C) MxCollection::Compare +S_PROCREF: 0x00000000: ( 60, 00000FE8) MxRectListCursor::~MxRectListCursor +S_PROCREF: 0x00000000: ( 146, 00000B34) LegoOmni::`scalar deleting destructor' +S_UDT: T_32PRCHAR(0470), va_list +S_PROCREF: 0x00000000: ( 161, 0000076C) LegoEntity::VTable0x48 +S_PROCREF: 0x00000000: ( 134, 00000270) LegoStream::IsReadMode +S_GDATA32: [0004:00000AAC], Type: T_REAL32(0040), g_turnDecel +S_PROCREF: 0x00000000: ( 161, 0000061C) LegoEntity::VTable0x38 +S_PROCREF: 0x00000000: ( 55, 00000674) MxStreamController::IsA +S_PROCREF: 0x00000000: ( 128, 0000179C) MxList::~MxList +S_PROCREF: 0x00000000: ( 112, 00000A34) List::~List +S_GDATA32: [0004:00000E10], Type: 0x1065, g_jetracerScript +S_PROCREF: 0x00000000: ( 39, 00000DA4) MxVideoPresenter::AddToManager +S_PROCREF: 0x00000000: ( 108, 00001068) MxDisplaySurface::FUN_100bc070 +S_PROCREF: 0x00000000: ( 146, 00000C3C) LegoOmni::Init +S_PROCREF: 0x00000000: ( 218, 00000524) TglSurface::DestroyView +S_PROCREF: 0x00000000: ( 186, 00000260) InfocenterState::~InfocenterState +S_PROCREF: 0x00000000: ( 206, 0000023C) LegoEntity::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 4, TYPE4 +S_PROCREF: 0x00000000: ( 68, 000000D8) MxPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 7, 000008B4) TglImpl::ViewImpl::Render +S_PROCREF: 0x00000000: ( 146, 000012F0) MxPtrList::Destroy +S_CONSTANT: Type: 0x1059, Value: 20, TYPE20 +S_PROCREF: 0x00000000: ( 74, 000007FC) MxLoopingMIDIPresenter::IsA +S_UDT: T_UCHAR(0020), undefined +S_PROCREF: 0x00000000: ( 206, 000002B4) BuildingEntity::ClassName +S_UDT: T_32PVOID(0403), HACCEL +S_GDATA32: [0004:00000E04], Type: 0x1065, g_carraceScript +S_PROCREF: 0x00000000: ( 67, 00000270) MxRAMStreamController::VTable0x24 +S_PROCREF: 0x00000000: ( 147, 00003D20) Pizzeria::ClassName +S_PROCREF: 0x00000000: ( 37, 000001B0) Pizza::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 88, 00000214) MxEventManager::Init +S_PROCREF: 0x00000000: ( 67, 00000150) MxRAMStreamController::VTable0x20 +S_PROCREF: 0x00000000: ( 39, 000003AC) MxVideoPresenter::GetWidth +S_PROCREF: 0x00000000: ( 68, 00000374) MxPresenter::AddToManager +S_PROCREF: 0x00000000: ( 73, 000003F4) EventManager +S_PROCREF: 0x00000000: ( 96, 0000105C) MxList::~MxList +S_PROCREF: 0x00000000: ( 4, 00000A80) LODListBase::~LODListBase +S_PROCREF: 0x00000000: ( 76, 00000258) list >::~list > +S_PROCREF: 0x00000000: ( 38, 00000AD8) MxWavePresenter::Pause +S_GDATA32: [0004:00000E48], Type: 0x1065, g_pz5Script +S_UDT: T_32PVOID(0403), handle_t +S_PROCREF: 0x00000000: ( 21, 0000106C) Vector4Impl::EqualsImpl +S_PROCREF: 0x00000000: ( 86, 000003A8) MxFlcPresenter::RealizePalette +S_PROCREF: 0x00000000: ( 102, 000001F4) MxDSFile::IsA +S_CONSTANT: Type: 0x4790, Value: 19, D3DRENDERSTATE_SRCBLEND +S_PROCREF: 0x00000000: ( 107, 00000384) MxDSAction::HasId +S_PROCREF: 0x00000000: ( 129, 00000CD0) LegoVideoManager::Destroy +S_PROCREF: 0x00000000: ( 189, 00000104) Infocenter::ClassName +S_PROCREF: 0x00000000: ( 154, 00000A50) MxList::`scalar deleting destructor' +S_CONSTANT: Type: 0x1013, Value: 1, MEM_POOL_OK +S_PROCREF: 0x00000000: ( 110, 00001078) MxDiskStreamController::FUN_100c7cb0 +S_GDATA32: [0004:00000E30], Type: 0x1065, g_hospitalScript +S_PROCREF: 0x00000000: ( 94, 000001B0) MxDSSound::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 127, 00000930) LegoWorldPresenter::VTable0x60 +S_PROCREF: 0x00000000: ( 25, 00000470) Matrix4Impl::operator+= +S_PROCREF: 0x00000000: ( 129, 00000B78) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 132, 00000530) FUN_1003ef60 +S_PROCREF: 0x00000000: ( 79, 0000024C) MxMIDIPresenter::~MxMIDIPresenter +S_PROCREF: 0x00000000: ( 128, 000003C8) MxCollection::Compare +S_CONSTANT: Type: 0x100F, Value: 17, MEM_BAD_FLAGS +S_PROCREF: 0x00000000: ( 146, 00001A20) LegoOmni::FindByEntityIdOrAtomId +S_CONSTANT: Type: 0x1050, Value: 1, ExtraActionType_opendisk +S_PROCREF: 0x00000000: ( 147, 00003C64) JetskiRaceState::ClassName +S_PROCREF: 0x00000000: ( 33, 00000290) Police::Notify +S_PROCREF: 0x00000000: ( 83, 00000090) MxLoopingMIDIPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 65, 000004D4) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 138, 000005BC) LegoRace::VTable0x68 +S_PROCREF: 0x00000000: ( 152, 00000684) LegoLoadCacheSoundPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 106, 00000308) MxDSAnim::operator= +S_PROCREF: 0x00000000: ( 42, 00000A98) MxVideoManager::RealizePalette +S_PROCREF: 0x00000000: ( 21, 00001248) Vector4Impl::LenSquared +S_PROCREF: 0x00000000: ( 67, 00000090) MxRAMStreamController::Open +S_PROCREF: 0x00000000: ( 111, 0000108C) MxDirectDraw::FlipToGDISurface +S_CONSTANT: Type: 0x4790, Value: 6, D3DRENDERSTATE_WRAPV +S_GDATA32: [0004:00000A84], Type: T_INT4(0074), g_modelPresenterConfig +S_CONSTANT: Type: 0x478A, Value: 3, D3DPT_LINESTRIP +S_PROCREF: 0x00000000: ( 147, 00003330) PizzaMissionState::ClassName +S_PROCREF: 0x00000000: ( 39, 000001BC) MxVideoPresenter::RealizePalette +S_PROCREF: 0x00000000: ( 129, 00001800) LegoVideoManager::EnableRMDevice +S_CONSTANT: Type: 0x1011, Value: 2, MEM_VAR_MOVEABLE_BLOCK +S_PROCREF: 0x00000000: ( 128, 000013E4) LegoWorld::EndAction +S_PROCREF: 0x00000000: ( 110, 00000C48) MxDiskStreamController::FUN_100c7890 +S_PROCREF: 0x00000000: ( 4, 00000630) map >::~map > +S_PROCREF: 0x00000000: ( 18, 000008BC) Score::FillArea +S_PROCREF: 0x00000000: ( 110, 000007A4) MxStreamList::~MxStreamList +S_PROCREF: 0x00000000: ( 138, 00000080) LegoRace::VTable0x78 +S_PROCREF: 0x00000000: ( 147, 00005618) LegoRaceActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 111, 00001010) MxDirectDraw::RestoreOriginalPaletteEntries +S_PROCREF: 0x00000000: ( 147, 00003E24) PoliceEntity::IsA +S_GDATA32: [0004:00000E64], Type: T_32PRCHAR(0470), g_current +S_PROCREF: 0x00000000: ( 21, 000017F4) Vector3Impl::LenSquared +S_PROCREF: 0x00000000: ( 122, 000002BC) MxAudioManager::Destroy +S_PROCREF: 0x00000000: ( 122, 000003B4) MxAudioManager::Destroy +S_PROCREF: 0x00000000: ( 128, 000002A8) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 156, 000009F0) LegoGameState::SerializeScoreHistory +S_PROCREF: 0x00000000: ( 90, 00000790) MxDSSubscriber::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 206, 00000124) Vector2Impl::SetData +S_CONSTANT: Type: 0x4790, Value: 11, D3DRENDERSTATE_MONOENABLE +S_PROCREF: 0x00000000: ( 78, 000002B8) MxMusicManager::Destroy +S_PROCREF: 0x00000000: ( 78, 000004A0) MxMusicManager::Destroy +S_PROCREF: 0x00000000: ( 112, 00000ABC) List::~List +S_PROCREF: 0x00000000: ( 152, 00000710) LegoLoadCacheSoundPresenter::~LegoLoadCacheSoundPresenter +S_PROCREF: 0x00000000: ( 59, 00000540) MxSoundManager::FUN_100aebd0 +S_UDT: T_UCHAR(0020), byte +S_UDT: T_UCHAR(0020), BYTE +S_PROCREF: 0x00000000: ( 105, 000007D4) MxDSBuffer::ReadChunk +S_PROCREF: 0x00000000: ( 132, 00000490) FUN_1003ef00 +S_PROCREF: 0x00000000: ( 141, 00000168) LegoPathPresenter::ClassName +S_LDATA32: [0004:00000008], Type: 0x1879, $S47 +S_PROCREF: 0x00000000: ( 18, 0000019C) Score::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 7, 000002D4) ViewportPickImpl +S_PROCREF: 0x00000000: ( 141, 000003AC) LegoPathPresenter::Destroy +S_PROCREF: 0x00000000: ( 141, 00000464) LegoPathPresenter::Destroy +S_PROCREF: 0x00000000: ( 147, 00002794) LegoPathActor::IsA +S_PROCREF: 0x00000000: ( 85, 00000258) MXIOINFO::Read +S_PROCREF: 0x00000000: ( 21, 000006A8) Vector2Impl::LenSquared +S_PROCREF: 0x00000000: ( 147, 00003214) LegoTexturePresenter::IsA +S_PROCREF: 0x00000000: ( 110, 000010F0) MxDiskStreamController::FUN_100c7ce0 +S_PROCREF: 0x00000000: ( 91, 0000014C) MxDSStreamingAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 140, 00000190) LegoPhonemePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 105, 000009F8) MxDSBuffer::SkipToData +S_PROCREF: 0x00000000: ( 118, 00000164) MxBitmap::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HPEN +S_PROCREF: 0x00000000: ( 195, 00000610) Helicopter::VTable0xd8 +S_PROCREF: 0x00000000: ( 47, 000006E8) MxTransitionManager::TransitionPixelation +S_PROCREF: 0x00000000: ( 54, 00000AC4) MxStreamerNotification::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00001DD4) MxRegionLeftRightListCursor::~MxRegionLeftRightListCursor +S_PROCREF: 0x00000000: ( 68, 000006DC) MxPresenter::EndAction +S_PROCREF: 0x00000000: ( 39, 000008B4) MxVideoPresenter::NextFrame +S_PROCREF: 0x00000000: ( 171, 00000274) LegoAnimationManager::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), PVOID +S_PROCREF: 0x00000000: ( 114, 000001D8) MxCore::Notify +S_UDT: T_USHORT(0021), OLECHAR +S_PROCREF: 0x00000000: ( 108, 00000B94) MxDisplaySurface::VTable0x30 +S_CONSTANT: Type: 0x4790, Value: 41, D3DRENDERSTATE_COLORKEYENABLE +S_PROCREF: 0x00000000: ( 110, 00000D74) MxDiskStreamController::FUN_100c7970 +S_PROCREF: 0x00000000: ( 98, 000001D4) MxDSObjectAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 0000133C) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 95, 00000210) MxDSSerialAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 127, 000005B8) MxDSActionListCursor::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 0, PARAM_NONE +S_PROCREF: 0x00000000: ( 81, 00000388) MxMediaManager::Destroy +S_PROCREF: 0x00000000: ( 147, 00004C04) Act3Shark::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 44, 000000D4) MxVariable::SetValue +S_PROCREF: 0x00000000: ( 87, 000001A8) MxEventPresenter::IsA +S_PROCREF: 0x00000000: ( 134, 00000B58) numpunct::id +S_PROCREF: 0x00000000: ( 13, 00000390) Tgl::Object::~Object +S_PROCREF: 0x00000000: ( 185, 00000500) Isle::HandleType17Notification +S_PROCREF: 0x00000000: ( 147, 00003280) IsleActor::ClassName +S_PROCREF: 0x00000000: ( 73, 0000121C) MxHashTable::Hash +S_PROCREF: 0x00000000: ( 154, 00000690) MxNotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 21, 0000171C) Vector3Impl::EqualsImpl +S_PROCREF: 0x00000000: ( 44, 00000084) MxVariable::GetValue +S_CONSTANT: Type: 0x1079, Value: 0, D3DRMUSERVISUAL_CANSEE +S_UDT: T_ULONG(0022), MCIERROR +S_PROCREF: 0x00000000: ( 113, 000001B4) MxCriticalSection::Leave +S_PROCREF: 0x00000000: ( 111, 00000A94) MxDirectDraw::FUN_1009e020 +S_PROCREF: 0x00000000: ( 102, 00000124) MxDSSource::~MxDSSource +S_CONSTANT: Type: 0x4790, Value: 8, D3DRENDERSTATE_FILLMODE +S_CONSTANT: Type: 0x1059, Value: 12, c_notificationDragEnd +S_PROCREF: 0x00000000: ( 70, 00000100) MxPalette::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 000012FC) MxPtrList::Destroy +S_PROCREF: 0x00000000: ( 110, 00000BB8) MxDiskStreamController::VTable0x18 +S_PROCREF: 0x00000000: ( 50, 00000598) MxThread::Run +S_PROCREF: 0x00000000: ( 110, 00000E9C) MxDiskStreamController::VTable0x28 +S_PROCREF: 0x00000000: ( 51, 00000364) MxString::ToLowerCase +S_PROCREF: 0x00000000: ( 199, 00000230) GasStation::~GasStation +S_PROCREF: 0x00000000: ( 147, 00004320) LegoCarRaceActor::~LegoCarRaceActor +S_PROCREF: 0x00000000: ( 195, 00000234) Helicopter::`scalar deleting destructor' +S_CONSTANT: Type: 0x1050, Value: 4, ExtraActionType_start +S_CONSTANT: Type: 0x1050, Value: 9, ExtraActionType_disable +S_PROCREF: 0x00000000: ( 21, 00000380) Vector2Impl::EqualsImpl +S_PROCREF: 0x00000000: ( 188, 000001CC) InfocenterDoor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 152, 00000620) LegoLoadCacheSoundPresenter::ClassName +S_PROCREF: 0x00000000: ( 10, 00000B94) Tgl::Group::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 110, 000005F8) MxDiskStreamController::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 136, 00000220) LegoSoundManager::Init +S_PROCREF: 0x00000000: ( 24, 000003B0) OrientableROI::GetWorldBoundingSphere +S_PROCREF: 0x00000000: ( 65, 00001EF4) MxRegionTopBottom::Clone +S_PROCREF: 0x00000000: ( 110, 0000033C) list >::_Buynode +S_GDATA32: [0004:0000B358], Type: T_UCHAR(0020), g_use3dSound +S_PROCREF: 0x00000000: ( 147, 00000EE0) MxObjectFactory::IsA +S_PROCREF: 0x00000000: ( 54, 000005EC) MxStreamer::~MxStreamer +S_PROCREF: 0x00000000: ( 147, 00004E78) JetskiRaceState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00001AFC) MxPtrListCursor::~MxPtrListCursor +S_CONSTANT: Type: 0x1050, Value: 11, ExtraActionType_unknown +S_PROCREF: 0x00000000: ( 107, 000001EC) MxDSAction::IsA +S_CONSTANT: Type: 0x4788, Value: 3, D3DVT_TLVERTEX +S_PROCREF: 0x00000000: ( 147, 000043AC) LegoJetski::`scalar deleting destructor' +S_CONSTANT: Type: 0x100F, Value: 16, MEM_NOT_FIXED_SIZE +S_PROCREF: 0x00000000: ( 57, 00000754) MxStillPresenter::Clone +S_PROCREF: 0x00000000: ( 70, 00000624) MxPalette::GetDefaultPalette +S_CONSTANT: Type: 0x4790, Value: 7, D3DRENDERSTATE_ZENABLE +S_PROCREF: 0x00000000: ( 96, 00000B50) MxListCursor::`scalar deleting destructor' +S_CONSTANT: Type: 0x100D, Value: 0, Error +S_CONSTANT: Type: 0x100F, Value: 1, MEM_INTERNAL_ERROR +S_PROCREF: 0x00000000: ( 47, 00000A80) MxTransitionManager::SetWaitIndicator +S_PROCREF: 0x00000000: ( 74, 000008C0) MxStillPresenter::IsA +S_GDATA32: [0004:00000E68], Type: T_UCHAR(0020), g_isWorldActive +S_PROCREF: 0x00000000: ( 26, 0000016C) RadioState::IsA +S_PROCREF: 0x00000000: ( 111, 000000DC) MxDirectDraw::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 38, 00000168) MxWavePresenter::IsPaused +S_PROCREF: 0x00000000: ( 31, 00000118) PoliceState::ClassName +S_PROCREF: 0x00000000: ( 147, 00000FC4) MxObjectFactory::~MxObjectFactory +S_PROCREF: 0x00000000: ( 160, 000002BC) LegoEntityPresenter::~LegoEntityPresenter +S_CONSTANT: Type: 0x1059, Value: 11, TYPE11 +S_CONSTANT: Type: 0x1003, Value: 1, RGB +S_PROCREF: 0x00000000: ( 60, 00000748) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 39, 00000F8C) MxVideoPresenter::VTable0x74 +S_PROCREF: 0x00000000: ( 112, 00000BE0) MxDriver::Init +S_PROCREF: 0x00000000: ( 156, 00000774) LegoGameState::GetState +S_PROCREF: 0x00000000: ( 38, 000007BC) MxWavePresenter::AppendChunk +S_PROCREF: 0x00000000: ( 80, 000007F8) MxMediaPresenter::AppendChunk +S_PROCREF: 0x00000000: ( 185, 00000698) Isle::VTable0x58 +S_PROCREF: 0x00000000: ( 146, 00000288) GetCurrentVehicle +S_PROCREF: 0x00000000: ( 41, 0000025C) MxVideoParam::SetDeviceName +S_PROCREF: 0x00000000: ( 10, 00000E28) Tgl::Camera::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00000CFC) TglImpl::CameraImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 21, 00000AD0) Vector2Impl::SetVector +S_PROCREF: 0x00000000: ( 21, 00000B38) Vector2Impl::SetVector +S_PROCREF: 0x00000000: ( 209, 00000084) AnimState::AnimState +S_CONSTANT: Type: 0x100F, Value: 4, MEM_ALLOC_ZERO +S_PROCREF: 0x00000000: ( 38, 0000094C) MxWavePresenter::SetVolume +S_PROCREF: 0x00000000: ( 82, 00000628) MxStreamChunkListCursor::~MxStreamChunkListCursor +S_PROCREF: 0x00000000: ( 18, 000000F4) Score::ClassName +S_UDT: T_LONG(0012), DISPID +S_PROCREF: 0x00000000: ( 145, 000001CC) LegoPalettePresenter::IsA +S_UDT: T_32PUCHAR(0420), PUCHAR +S_PROCREF: 0x00000000: ( 141, 00000228) LegoPathPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 116, 0000035C) MxCompositePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00001774) TglImpl::RendererImpl::SetTextureDefaultColorCount +S_PROCREF: 0x00000000: ( 185, 000005E0) Isle::VTable0x68 +S_PROCREF: 0x00000000: ( 115, 00000520) MxControlPresenter::EndAction +S_PROCREF: 0x00000000: ( 54, 00000CAC) MxStreamer::AddStreamControllerToOpenList +S_UDT: T_UQUAD(0023), DWORDLONG +S_PROCREF: 0x00000000: ( 135, 00000158) LegoState::SetFlag +S_PROCREF: 0x00000000: ( 134, 00000670) LegoFileStream::Write +S_PROCREF: 0x00000000: ( 102, 000006A0) MxDSFile::Read +S_PROCREF: 0x00000000: ( 57, 000001D4) MxStillPresenter::CreateBitmap +S_CONSTANT: Type: 0x1017, Value: 1, STUB_CALL_SERVER +S_PROCREF: 0x00000000: ( 160, 00000264) LegoEntityPresenter::Init +S_PROCREF: 0x00000000: ( 110, 00000DD4) MxDiskStreamController::FUN_100c7980 +S_PROCREF: 0x00000000: ( 37, 00000224) Pizza::~Pizza +S_PROCREF: 0x00000000: ( 27, 00000210) Radio::~Radio +S_PROCREF: 0x00000000: ( 18, 00000260) Score::~Score +S_PROCREF: 0x00000000: ( 216, 000009CC) Act2Brick::~Act2Brick +S_PROCREF: 0x00000000: ( 209, 0000023C) AnimState::~AnimState +S_PROCREF: 0x00000000: ( 147, 000050F0) IsleActor::~IsleActor +S_PROCREF: 0x00000000: ( 147, 00005764) LegoActor::~LegoActor +S_PROCREF: 0x00000000: ( 135, 00000084) LegoState::~LegoState +S_PROCREF: 0x00000000: ( 128, 0000109C) LegoWorld::~LegoWorld +S_PROCREF: 0x00000000: ( 104, 00000228) MxDSChunk::~MxDSChunk +S_PROCREF: 0x00000000: ( 103, 00000228) MxDSEvent::~MxDSEvent +S_PROCREF: 0x00000000: ( 94, 00000228) MxDSSound::~MxDSSound +S_PROCREF: 0x00000000: ( 92, 00000228) MxDSStill::~MxDSStill +S_PROCREF: 0x00000000: ( 70, 00000218) MxPalette::~MxPalette +S_PROCREF: 0x00000000: ( 147, 00004F24) RaceState::~RaceState +S_PROCREF: 0x00000000: ( 218, 00000148) MxStopWatch::~MxStopWatch +S_PROCREF: 0x00000000: ( 211, 00000100) IslePathActor::~IslePathActor +S_PROCREF: 0x00000000: ( 179, 00000254) JukeBoxEntity::~JukeBoxEntity +S_PROCREF: 0x00000000: ( 177, 000001D8) Lego3DManager::~Lego3DManager +S_PROCREF: 0x00000000: ( 147, 00004CA8) LegoAnimActor::~LegoAnimActor +S_PROCREF: 0x00000000: ( 156, 00000130) LegoGameState::~LegoGameState +S_PROCREF: 0x00000000: ( 143, 00000188) LegoPathActor::~LegoPathActor +S_PROCREF: 0x00000000: ( 147, 00004590) LegoRaceActor::~LegoRaceActor +S_PROCREF: 0x00000000: ( 56, 00000088) MxStreamChunk::~MxStreamChunk +S_PROCREF: 0x00000000: ( 137, 00000610) OrientableROI::~OrientableROI +S_PROCREF: 0x00000000: ( 124, 00000280) MxAtomIdCounter::~MxAtomIdCounter +S_PROCREF: 0x00000000: ( 38, 00000088) MxWavePresenter::~MxWavePresenter +S_PROCREF: 0x00000000: ( 163, 00000288) LegoAnimPresenter::~LegoAnimPresenter +S_PROCREF: 0x00000000: ( 148, 00000268) LegoNavController::~LegoNavController +S_PROCREF: 0x00000000: ( 147, 00001140) LegoObjectFactory::~LegoObjectFactory +S_PROCREF: 0x00000000: ( 113, 000000EC) MxCriticalSection::~MxCriticalSection +S_PROCREF: 0x00000000: ( 129, 000005E0) MxDeviceEnumerate::~MxDeviceEnumerate +S_PROCREF: 0x00000000: ( 90, 00000644) MxStreamChunkList::~MxStreamChunkList +S_PROCREF: 0x00000000: ( 45, 0000008C) MxUnknown100d7c88::~MxUnknown100d7c88 +S_PROCREF: 0x00000000: ( 128, 00001840) MxList::~MxList +S_PROCREF: 0x00000000: ( 84, 00000204) MxLoopingFlcPresenter::~MxLoopingFlcPresenter +S_PROCREF: 0x00000000: ( 82, 00000268) MxLoopingSmkPresenter::~MxLoopingSmkPresenter +S_PROCREF: 0x00000000: ( 76, 00000480) MxNotificationManager::~MxNotificationManager +S_PROCREF: 0x00000000: ( 76, 00000D7C) MxNotificationPtrList::~MxNotificationPtrList +S_PROCREF: 0x00000000: ( 129, 0000131C) MxPresenterListCursor::~MxPresenterListCursor +S_PROCREF: 0x00000000: ( 163, 00000318) LegoCarBuildAnimPresenter::~LegoCarBuildAnimPresenter +S_PROCREF: 0x00000000: ( 125, 000002E0) MxActionNotificationParam::~MxActionNotificationParam +S_PROCREF: 0x00000000: ( 146, 000011C0) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 117, 00000288) MxCompositeMediaPresenter::~MxCompositeMediaPresenter +S_PROCREF: 0x00000000: ( 129, 00000C30) MxDeviceEnumerate100d9cc8::~MxDeviceEnumerate100d9cc8 +S_PROCREF: 0x00000000: ( 73, 00001ED4) MxHashTable::~MxHashTable +S_PROCREF: 0x00000000: ( 60, 00000D44) MxPtrListCursor::~MxPtrListCursor +S_PROCREF: 0x00000000: ( 55, 00000AA4) List::~List +S_PROCREF: 0x00000000: ( 90, 000002F0) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 90, 00000A9C) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 128, 00000578) MxPtrList::~MxPtrList +S_PROCREF: 0x00000000: ( 65, 000011B4) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 65, 000001D0) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 129, 000008C8) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 65, 00001D24) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 65, 00000DF8) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 55, 000007FC) MxStreamListMxNextActionDataStart::~MxStreamListMxNextActionDataStart +S_PROCREF: 0x00000000: ( 55, 00000954) MxStreamList::~MxStreamList +S_PROCREF: 0x00000000: ( 112, 00000998) list >::~list > +S_PROCREF: 0x00000000: ( 116, 000001F8) list >::~list > +S_PROCREF: 0x00000000: ( 73, 000014A4) Set::~Set +S_PROCREF: 0x00000000: ( 4, 000007B4) Map::~Map +S_PROCREF: 0x00000000: ( 55, 000003F8) list >::~list > +S_PROCREF: 0x00000000: ( 134, 00000368) LegoMemoryStream::Read +S_PROCREF: 0x00000000: ( 116, 00000510) MxCompositePresenter::~MxCompositePresenter +S_PROCREF: 0x00000000: ( 92, 00000084) MxDSStill::MxDSStill +S_PROCREF: 0x00000000: ( 38, 0000064C) MxWavePresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 147, 000056C0) IsleActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 90, 00000BFC) MxDSSubscriber::DeleteChunks +S_UDT: T_LONG(0012), LPARAM +S_PROCREF: 0x00000000: ( 147, 000037B0) Act3Shark::ClassName +S_PROCREF: 0x00000000: ( 7, 000004A4) TglImpl::ViewImpl::Remove +S_UDT: T_32PVOID(0403), LPCVOID +S_UDT: T_32PINT4(0474), LPINT +S_PROCREF: 0x00000000: ( 137, 00000400) ROI::~ROI +S_PROCREF: 0x00000000: ( 139, 00000278) LegoPlantManager::Init +S_PROCREF: 0x00000000: ( 68, 000002DC) MxPresenter::~MxPresenter +S_PROCREF: 0x00000000: ( 55, 00000118) MxStreamController::VTable0x1c +S_PROCREF: 0x00000000: ( 65, 00000380) MxRegionTopBottomList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 125, 00000514) MxStartActionNotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 000014BC) MxStreamController::VTable0x2c +S_LPROCREF: 0x00000000: ( 134, 000009CC) $E30 +S_UDT: T_UINT4(0075), WPARAM +S_PROCREF: 0x00000000: ( 105, 00000B50) MxDSBuffer::CalcBytesRemaining +S_PROCREF: 0x00000000: ( 80, 00000114) MxMediaPresenter::Destroy +S_PROCREF: 0x00000000: ( 80, 000001C0) MxMediaPresenter::Destroy +S_PROCREF: 0x00000000: ( 64, 00000324) MxRegionCursor::VTable0x18 +S_PROCREF: 0x00000000: ( 64, 00000434) MxRegionCursor::VTable0x28 +S_PROCREF: 0x00000000: ( 7, 000005B8) TglImpl::ViewImpl::SetProjection +S_PROCREF: 0x00000000: ( 125, 000005CC) MxType4NotificationParam::Clone +S_PROCREF: 0x00000000: ( 37, 00000108) Pizza::ClassName +S_PROCREF: 0x00000000: ( 90, 00000B44) MxListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 129, 00000780) MxUnknown100d9d00::Compare +S_PROCREF: 0x00000000: ( 146, 00000164) InputManager +S_GDATA32: [0004:00000DF8], Type: 0x1065, g_dunecarScript +S_PROCREF: 0x00000000: ( 65, 000007C8) MxRegion::~MxRegion +S_PROCREF: 0x00000000: ( 115, 0000057C) MxControlPresenter::FUN_10044270 +S_PROCREF: 0x00000000: ( 57, 000006C8) MxStillPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 167, 000002DC) LegoBuildingManager::~LegoBuildingManager +S_PROCREF: 0x00000000: ( 66, 00000400) MxRAMStreamProvider::~MxRAMStreamProvider +S_PROCREF: 0x00000000: ( 73, 00000F28) set >::~set > +S_PROCREF: 0x00000000: ( 9, 000005CC) TglImpl::TextureImpl::FillRowsOfTexture +S_PROCREF: 0x00000000: ( 160, 00000494) LegoEntityPresenter::StartAction +S_PROCREF: 0x00000000: ( 64, 00000220) MxRegionCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 60, 0000030C) MxSmkPresenter::Destroy +S_PROCREF: 0x00000000: ( 60, 000011A4) MxSmkPresenter::Destroy +S_PROCREF: 0x00000000: ( 65, 00001574) MxList::`scalar deleting destructor' +S_GDATA32: [0004:00003554], Type: T_UINT4(0075), g_unk0x10102878 +S_PROCREF: 0x00000000: ( 143, 00000608) LegoPathActor::VTable0xa8 +S_PROCREF: 0x00000000: ( 60, 0000046C) MxSmkPresenter::LoadFrame +S_PROCREF: 0x00000000: ( 31, 000001CC) PoliceState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 90, 00000C68) MxDSSubscriber::AddChunk +S_PROCREF: 0x00000000: ( 146, 0000041C) FindEntityByAtomIdOrEntityId +S_PROCREF: 0x00000000: ( 112, 0000110C) list >::insert +S_PROCREF: 0x00000000: ( 216, 0000052C) LegoPathActor::VTable0xa0 +S_CONSTANT: Type: 0x1017, Value: 2, STUB_MARSHAL +S_PROCREF: 0x00000000: ( 112, 000007AC) MxAssignedDevice::~MxAssignedDevice +S_UDT: T_UINT4(0075), MMVERSION +S_PROCREF: 0x00000000: ( 143, 000005B0) LegoPathActor::VTable0xa4 +S_PROCREF: 0x00000000: ( 78, 000005DC) MxMusicManager::CalculateVolume +S_PROCREF: 0x00000000: ( 155, 00000198) LegoLoopingAnimPresenter::IsA +S_PROCREF: 0x00000000: ( 169, 000003D8) MxVideoPresenter::ClassName +S_GDATA32: [0004:00001480], Type: T_INT4(0074), g_roiConfig +S_GDATA32: [0004:00000A8C], Type: T_REAL32(0040), g_zeroThreshold +S_PROCREF: 0x00000000: ( 208, 00000088) BeachHouseEntity::Notify +S_PROCREF: 0x00000000: ( 147, 00003800) BeachHouseEntity::ClassName +S_PROCREF: 0x00000000: ( 60, 000008D0) MxRectList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 56, 000001A8) MxStreamChunk::ReadChunkHeader +S_PROCREF: 0x00000000: ( 24, 000000E8) OrientableROI::SetLocalTransform +S_PROCREF: 0x00000000: ( 2, 000000E4) ViewROI::GetGeometry +S_PROCREF: 0x00000000: ( 2, 00000134) ViewROI::GetGeometry +S_PROCREF: 0x00000000: ( 128, 000011C8) LegoWorld::Notify +S_PROCREF: 0x00000000: ( 107, 000007E0) MxDSAction::AppendData +S_PROCREF: 0x00000000: ( 147, 00004A0C) PizzaMissionState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 38, 0000059C) MxWavePresenter::StartingTickle +S_PROCREF: 0x00000000: ( 22, 000000EC) RealtimeView::SetPartsThreshold +S_PROCREF: 0x00000000: ( 179, 00000088) JukeBoxEntity::JukeBoxEntity +S_PROCREF: 0x00000000: ( 10, 0000148C) TglImpl::RendererImpl::CreateTexture +S_PROCREF: 0x00000000: ( 10, 00001614) TglImpl::RendererImpl::CreateTexture +S_PROCREF: 0x00000000: ( 67, 00000324) MxRAMStreamController::DeserializeObject +S_PROCREF: 0x00000000: ( 59, 00000680) MxSoundManager::FUN_100aecf0 +S_PROCREF: 0x00000000: ( 147, 00002978) LegoRaceActor::ClassName +S_PROCREF: 0x00000000: ( 38, 000001C0) MxWavePresenter::Init +S_PROCREF: 0x00000000: ( 77, 00000384) MxMusicPresenter::Destroy +S_PROCREF: 0x00000000: ( 77, 0000046C) MxMusicPresenter::Destroy +S_CONSTANT: Type: 0x104E, Value: 6, MxDSType_SerialAction +S_PROCREF: 0x00000000: ( 115, 000002C0) MxControlPresenter::VTable0x64 +S_PROCREF: 0x00000000: ( 109, 000007A0) MxDiskStreamProvider::~MxDiskStreamProvider +S_PROCREF: 0x00000000: ( 68, 00000BE4) MxPresenter::IsEnabled +S_PROCREF: 0x00000000: ( 108, 000003F4) MxDisplaySurface::CountContiguousBitsSetTo1 +S_PROCREF: 0x00000000: ( 6, 000000FC) TowTrack::ClassName +S_UDT: T_32PVOID(0403), SC_LOCK +S_PROCREF: 0x00000000: ( 9, 0000046C) TglImpl::TglD3DRMIMAGE::InitializePalette +S_CONSTANT: Type: 0x1877, Value: 0, _Noinit +S_PROCREF: 0x00000000: ( 218, 00000388) GetBitsPerPixel +S_CONSTANT: Type: 0x100F, Value: 9, MEM_TOO_MANY_TASKS +S_PROCREF: 0x00000000: ( 94, 00000100) MxDSSound::ClassName +S_PROCREF: 0x00000000: ( 4, 00000EDC) ViewLODListManager::Destroy +S_PROCREF: 0x00000000: ( 38, 000003B0) MxWavePresenter::FUN_100b1ba0 +S_CONSTANT: Type: 0x100F, Value: 8, MEM_TOO_MANY_PAGES +S_PROCREF: 0x00000000: ( 189, 0000037C) Infocenter::Stop +S_PROCREF: 0x00000000: ( 43, 00000528) MxVariableTable::GetVariable +S_PROCREF: 0x00000000: ( 57, 00000470) MxStillPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 47, 000004CC) MxTransitionManager::EndTransition +S_PROCREF: 0x00000000: ( 149, 000001DC) LegoModelPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 4, 00000AD8) _Tree,map >::_Kfn,ROINameComparator,allocator >::iterator::_Dec +S_PROCREF: 0x00000000: ( 95, 00000290) MxDSSerialAction::SetDuration +S_PROCREF: 0x00000000: ( 216, 00000584) LegoPathActor::VTable0xac +S_PROCREF: 0x00000000: ( 65, 00000160) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 7, 00000520) TglImpl::ViewImpl::SetCamera +S_PROCREF: 0x00000000: ( 25, 00000088) Matrix4Impl::EqualsMatrixData +S_UDT: T_32PUINT4(0475), LPUINT +S_CONSTANT: Type: 0x104E, Value: 1, MxDSType_Action +S_CONSTANT: Type: 0x1059, Value: 5, MXPRESENTER_NOTIFICATION +S_UDT: T_QUAD(0013), LONGLONG +S_PROCREF: 0x00000000: ( 146, 00000490) GetCurrentAction +S_PROCREF: 0x00000000: ( 139, 000002CC) LegoPlantManager::Tickle +S_PROCREF: 0x00000000: ( 65, 00002328) MxList::InsertEntry +S_PROCREF: 0x00000000: ( 76, 00000ADC) list >::begin +S_PROCREF: 0x00000000: ( 129, 00001064) MxPtrListCursor::~MxPtrListCursor +S_PROCREF: 0x00000000: ( 147, 00002B44) LegoAct2State::IsA +S_PROCREF: 0x00000000: ( 179, 00000174) JukeBoxEntity::IsA +S_PROCREF: 0x00000000: ( 129, 00000670) List::~List +S_CONSTANT: Type: 0x4790, Value: 30, D3DRENDERSTATE_ZVISIBLE +S_PROCREF: 0x00000000: ( 108, 00000678) MxDisplaySurface::Destroy +S_PROCREF: 0x00000000: ( 137, 000004BC) OrientableROI::VTable0x14 +S_PROCREF: 0x00000000: ( 21, 000015D4) Vector3Impl::MullScalarImpl +S_PROCREF: 0x00000000: ( 39, 00000354) MxVideoPresenter::VTable0x7c +S_PROCREF: 0x00000000: ( 94, 000002A8) MxDSSound::CopyFrom +S_GDATA32: [0004:00000A9C], Type: T_REAL32(0040), g_turnMaxAccel +S_PROCREF: 0x00000000: ( 161, 00000084) LegoEntity::~LegoEntity +S_PROCREF: 0x00000000: ( 147, 00003910) BumpBouy::IsA +S_PROCREF: 0x00000000: ( 216, 000001C8) LegoActor::VTable0x54 +S_GDATA32: [0004:000004B0], Type: T_32PRCHAR(0470), g_set +S_CONSTANT: Type: 0x1005, Value: 2, Flat +S_PROCREF: 0x00000000: ( 165, 000004B4) LegoCameraController::FUN_100127f0 +S_PROCREF: 0x00000000: ( 118, 000004C4) MxBitmap::LoadFile +S_PROCREF: 0x00000000: ( 216, 00000174) LegoActor::VTable0x50 +S_PROCREF: 0x00000000: ( 55, 00001738) MxStreamController::FUN_100c1e70 +S_GDATA32: [0004:000035AC], Type: T_USHORT(0021), g_sep +S_PROCREF: 0x00000000: ( 147, 000046C8) LegoAnimActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00001C90) MxOmni::GetCD +S_PROCREF: 0x00000000: ( 79, 00000474) MxMIDIPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 71, 0000008C) MxOmniCreateParam::MxOmniCreateParam +S_UDT: T_32PVOID(0403), HWAVEIN +S_PROCREF: 0x00000000: ( 216, 00000234) LegoActor::VTable0x58 +S_PROCREF: 0x00000000: ( 146, 00001E90) LegoOmni::StartTimer +S_PROCREF: 0x00000000: ( 73, 00000344) MVideoManager +S_PROCREF: 0x00000000: ( 21, 00000238) Vector2Impl::MullScalarImpl +S_PROCREF: 0x00000000: ( 60, 00000644) MxCollection::MxCollection +S_PROCREF: 0x00000000: ( 138, 0000047C) LegoRace::Create +S_PROCREF: 0x00000000: ( 73, 00001CCC) MxOmni::SetCD +S_PROCREF: 0x00000000: ( 147, 000033F0) ScoreState::ClassName +S_PROCREF: 0x00000000: ( 87, 000003DC) MxEventPresenter::Destroy +S_CONSTANT: Type: 0x101B, Value: 0, MEM_PATCH_ALL +S_PROCREF: 0x00000000: ( 24, 00000090) OrientableROI::VTable0x1c +S_PROCREF: 0x00000000: ( 214, 000001EC) Act3::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 14, c_notificationDrag +S_PROCREF: 0x00000000: ( 25, 000007C8) Matrix4Impl::operator= +S_PROCREF: 0x00000000: ( 108, 0000029C) MxDisplaySurface::FUN_100ba640 +S_PROCREF: 0x00000000: ( 87, 0000050C) MxEventPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 167, 00000370) LegoBuildingManager::Init +S_UDT: T_UQUAD(0023), ULONGLONG +S_CONSTANT: Type: 0x1005, Value: 1, UnlitFlat +S_PROCREF: 0x00000000: ( 14, 00000410) TglImpl::DeviceImpl::InitFromWindowsDevice +S_PROCREF: 0x00000000: ( 176, 00000150) Lego3DView::~Lego3DView +S_PROCREF: 0x00000000: ( 141, 000002E8) LegoPathPresenter::Init +S_LPROCREF: 0x00000000: ( 134, 0000099C) $E27 +S_PROCREF: 0x00000000: ( 76, 00000374) MxIdList::~MxIdList +S_PROCREF: 0x00000000: ( 115, 00000620) MxControlPresenter::FUN_10044480 +S_UDT: T_INT4(0074), streamsize +S_GDATA32: [0003:00004F20], Type: 0x178A, GUID_SysKeyboard +S_PROCREF: 0x00000000: ( 89, 00000184) MxEntity::ClassName +S_GDATA32: [0003:00004F40], Type: 0x178A, IID_IDirect3DRMWinDevice +S_PROCREF: 0x00000000: ( 9, 0000008C) TglImpl::TextureImpl::SetImage +S_UDT: T_32PVOID(0403), HMIDI +S_PROCREF: 0x00000000: ( 76, 000009A4) MxNotificationManager::FlushPending +S_PROCREF: 0x00000000: ( 31, 0000016C) PoliceState::IsA +S_PROCREF: 0x00000000: ( 155, 00000380) LegoLoopingAnimPresenter::~LegoLoopingAnimPresenter +S_PROCREF: 0x00000000: ( 167, 000001A0) MxCore::IsA +S_CONSTANT: Type: 0x478E, Value: 2, D3DLIGHTSTATE_AMBIENT +S_PROCREF: 0x00000000: ( 64, 00000178) MxRegionCursor::GetRect +S_PROCREF: 0x00000000: ( 55, 0000106C) MxStreamController::VTable0x24 +S_PROCREF: 0x00000000: ( 111, 00000C48) MxDirectDraw::TextToTextSurface1 +S_UDT: T_ULONG(0022), D3DRMSAVEOPTIONS +S_PROCREF: 0x00000000: ( 216, 000002A0) LegoActor::VTable0x5c +S_PROCREF: 0x00000000: ( 165, 00000424) LegoCameraController::FUN_10012740 +S_PROCREF: 0x00000000: ( 79, 00000664) MxMIDIPresenter::SetVolume +S_PROCREF: 0x00000000: ( 168, 00000200) LegoBackgroundColor::SetValue +S_PROCREF: 0x00000000: ( 154, 00001354) LegoInputManager::QueueEvent +S_PROCREF: 0x00000000: ( 128, 000006DC) MxList::`scalar deleting destructor' +S_UDT: T_ULONG(0022), SECURITY_INFORMATION +S_CONSTANT: Type: 0x4790, Value: 24, D3DRENDERSTATE_ALPHAREF +S_GDATA32: [0004:00000E18], Type: 0x1065, g_elevbottScript +S_PROCREF: 0x00000000: ( 11, 00000310) TglImpl::MeshImpl::DeepClone +S_UDT: T_32PVOID(0403), HGLOBAL +S_PROCREF: 0x00000000: ( 79, 00000408) MxMIDIPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 49, 00000304) MxTickleManager::UnregisterClient +S_PROCREF: 0x00000000: ( 122, 00000408) MxAudioManager::SetVolume +S_PROCREF: 0x00000000: ( 33, 00000148) Police::IsA +S_PROCREF: 0x00000000: ( 148, 00000864) LegoNavController::CalculateNewAccel +S_PROCREF: 0x00000000: ( 128, 00000B94) MxPresenterList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00000308) TglImpl::RendererImpl::CreateDevice +S_PROCREF: 0x00000000: ( 10, 000005B4) TglImpl::RendererImpl::CreateDevice +S_UDT: T_USHORT(0021), wint_t +S_PROCREF: 0x00000000: ( 14, 000004A8) TglImpl::DeviceImpl::Update +S_PROCREF: 0x00000000: ( 112, 0000144C) MxDeviceEnumerate::EnumDisplayModesCallback +S_PROCREF: 0x00000000: ( 111, 000011F0) MxDirectDraw::DeviceModesInfo::DeviceModesInfo +S_PROCREF: 0x00000000: ( 10, 000008F4) Tgl::View::`scalar deleting destructor' +S_GDATA32: [0004:00000808], Type: 0x19C8, g_colorSaveData +S_CONSTANT: Type: 0x1067, Value: 1, D3DRMLIGHT_POINT +S_CONSTANT: Type: 0x1015, Value: 1, MEM_POINTER_OK +S_PROCREF: 0x00000000: ( 79, 000002D8) MxMIDIPresenter::Init +S_PROCREF: 0x00000000: ( 78, 000004F4) MxMusicManager::SetVolume +S_PROCREF: 0x00000000: ( 76, 00000118) MxNotification::~MxNotification +S_PROCREF: 0x00000000: ( 128, 000014B4) LegoWorld::Tickle +S_PROCREF: 0x00000000: ( 122, 00000088) MxAudioManager::GetVolume +S_PROCREF: 0x00000000: ( 147, 00002F80) LegoModelPresenter::ClassName +S_PROCREF: 0x00000000: ( 111, 00000E00) MxDirectDraw::RestoreSurfaces +S_GDATA32: [0004:00000584], Type: T_32PRCHAR(0470), g_strEnable +S_PROCREF: 0x00000000: ( 143, 00000500) LegoPathActor::VTable0x68 +S_CONSTANT: Type: 0x1019, Value: 0, PROXY_CALCSIZE +S_PROCREF: 0x00000000: ( 110, 00001900) MxDiskStreamController::Tickle +S_PROCREF: 0x00000000: ( 96, 000011FC) MxListEntry::MxListEntry +S_PROCREF: 0x00000000: ( 119, 00000238) MxBackgroundAudioManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 129, 00000A10) MxUnknown100d9d00::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 000007D0) TglImpl::ViewImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 0000008C) Tgl::CreateRenderer +S_PROCREF: 0x00000000: ( 65, 00000A5C) MxListEntry::MxListEntry +S_CONSTANT: Type: 0x4790, Value: (LF_ULONG) 2147483647, D3DRENDERSTATE_FORCE_DWORD +S_UDT: T_ULONG(0022), MxULong +S_PROCREF: 0x00000000: ( 134, 000003E8) LegoMemoryStream::Write +S_PROCREF: 0x00000000: ( 73, 00001E34) MxOmni::StartTimer +S_PROCREF: 0x00000000: ( 56, 000003C4) MxStreamChunk::IntoObjectId +S_PROCREF: 0x00000000: ( 78, 0000032C) MxMusicManager::SetMIDIVolume +S_PROCREF: 0x00000000: ( 76, 000002F0) MxNotificationManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 111, 000005A4) MxDirectDraw::DestroyButNotDirectDraw +S_PROCREF: 0x00000000: ( 147, 00003EDC) JukeBoxState::IsA +S_PROCREF: 0x00000000: ( 4, 00000514) _Tree,map >::_Kfn,ROINameComparator,allocator >::_Erase +S_CONSTANT: Type: 0x100F, Value: 6, MEM_LOCK_ERROR +S_PROCREF: 0x00000000: ( 146, 000020E0) MxRect32::CopyFrom +S_PROCREF: 0x00000000: ( 66, 00000278) MxRAMStreamProvider::GetFileSize +S_PROCREF: 0x00000000: ( 218, 00000578) TglSurface::Render +S_PROCREF: 0x00000000: ( 109, 0000008C) MxDiskStreamProviderThread::Run +S_PROCREF: 0x00000000: ( 60, 000002BC) MxSmkPresenter::Init +S_PROCREF: 0x00000000: ( 182, 000000F8) Jetski::ClassName +S_CONSTANT: Type: 0x4788, Value: 2, D3DVT_LVERTEX +S_PROCREF: 0x00000000: ( 146, 000018CC) LegoOmni::GetInstance +S_GDATA32: [0004:0000AF58], Type: 0x147B, g_cdPath +S_PROCREF: 0x00000000: ( 60, 000007E4) MxCollection::Compare +S_CONSTANT: Type: 0x104E, Value: 2, MxDSType_MediaAction +S_PROCREF: 0x00000000: ( 91, 000004D4) MxDSStreamingAction::FUN_100cd2d0 +S_UDT: T_UINT4(0075), MEM_VERSION +S_PROCREF: 0x00000000: ( 82, 00000124) MxSmkPresenter::IsA +S_PROCREF: 0x00000000: ( 218, 000002A4) TglSurface::~TglSurface +S_PROCREF: 0x00000000: ( 58, 00000088) MxSoundPresenter::~MxSoundPresenter +S_UDT: T_USHORT(0021), ATOM +S_PROCREF: 0x00000000: ( 112, 00000B50) MxDriver::~MxDriver +S_PROCREF: 0x00000000: ( 115, 000006AC) MxControlPresenter::FUN_10044540 +S_PROCREF: 0x00000000: ( 110, 00000714) List::~List +S_PROCREF: 0x00000000: ( 109, 00000B1C) MxDiskStreamProvider::WaitForWorkToComplete +S_PROCREF: 0x00000000: ( 21, 00000F24) Vector4Impl::MullScalarImpl +S_PROCREF: 0x00000000: ( 143, 000004A8) LegoPathActor::VTable0x6c +S_PROCREF: 0x00000000: ( 73, 000003BC) MusicManager +S_PROCREF: 0x00000000: ( 104, 00000100) MxDSChunk::ClassName +S_PROCREF: 0x00000000: ( 55, 00001240) MxNextActionDataStart::IsA +S_PROCREF: 0x00000000: ( 147, 00000F44) LegoObjectFactory::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 13, 0000058C) Tgl::Texture::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 134, 000005F4) LegoFileStream::Read +S_CONSTANT: Type: 0x1019, Value: 4, PROXY_UNMARSHAL +S_PROCREF: 0x00000000: ( 37, 00000080) Pizza::Pizza +S_UDT: T_32PVOID(0403), HDROP +S_PROCREF: 0x00000000: ( 18, 00000494) Score::FUN_10001510 +S_PROCREF: 0x00000000: ( 54, 000001E4) MxStreamer::ClassName +S_CONSTANT: Type: 0x1059, Value: 17, TYPE17 +S_PROCREF: 0x00000000: ( 129, 000007F8) MxUnknown100d9d00::Destroy +S_PROCREF: 0x00000000: ( 78, 00000664) MxMusicManager::FUN_100c09c0 +S_PROCREF: 0x00000000: ( 96, 00000648) MxDSSelectAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 192, 000000FC) Hospital::ClassName +S_PROCREF: 0x00000000: ( 192, 000002A0) Hospital::Notify +S_PROCREF: 0x00000000: ( 8, 00000200) TglImpl::UnkImpl::GetBoundingBox +S_PROCREF: 0x00000000: ( 108, 0000036C) MxDisplaySurface::CountTotalBitsSetTo1 +S_PROCREF: 0x00000000: ( 90, 000008BC) MxDSSubscriber::Create +S_PROCREF: 0x00000000: ( 77, 000001BC) MxMusicPresenter::IsA +S_CONSTANT: Type: 0x1005, Value: 0, Wireframe +S_PROCREF: 0x00000000: ( 185, 00000340) Isle::Create +S_PROCREF: 0x00000000: ( 207, 000000F0) Bike::ClassName +S_PROCREF: 0x00000000: ( 142, 00000178) LegoPathController::IsA +S_PROCREF: 0x00000000: ( 112, 00001864) MxDeviceEnumerate::ProcessDeviceBytes +S_PROCREF: 0x00000000: ( 73, 00001A68) MxOmni::FUN_100b06b0 +S_PROCREF: 0x00000000: ( 127, 00000668) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 158, 000002A0) LegoFlcTexturePresenter::Init +S_PROCREF: 0x00000000: ( 74, 000002F0) MxObjectFactory::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00003CBC) JetskiRaceState::IsA +S_PROCREF: 0x00000000: ( 152, 00000204) MxAudioPresenter::IsA +S_PROCREF: 0x00000000: ( 73, 00000590) MxOmni::FindWorld +S_PROCREF: 0x00000000: ( 21, 000006FC) Vector2Impl::Unitize +S_PROCREF: 0x00000000: ( 215, 0000008C) Act2PoliceStation::Notify +S_PROCREF: 0x00000000: ( 73, 00001A24) MxOmni::DestroyInstance +S_GDATA32: [0004:00003BA0], Type: T_32PRCHAR(0470), g_strBmpIsmap +S_PROCREF: 0x00000000: ( 218, 00000218) MxFrequencyMeter::~MxFrequencyMeter +S_PROCREF: 0x00000000: ( 50, 00000384) MxThread::~MxThread +S_PROCREF: 0x00000000: ( 110, 00001218) MxDiskStreamController::FUN_100c7db0 +S_UDT: T_USHORT(0021), WORD +S_UDT: T_USHORT(0021), USHORT +S_PROCREF: 0x00000000: ( 9, 00000128) TextureDestroyCallback +S_CONSTANT: Type: 0x4790, Value: 39, D3DRENDERSTATE_STIPPLEENABLE +S_PROCREF: 0x00000000: ( 112, 00000E5C) MxDeviceEnumerate::MxDeviceEnumerate +S_CONSTANT: Type: 0x1017, Value: 0, STUB_UNMARSHAL +S_PROCREF: 0x00000000: ( 21, 00000310) Vector2Impl::DotImpl +S_GDATA32: [0004:00000E00], Type: 0x1065, g_racecarScript +S_PROCREF: 0x00000000: ( 102, 00000470) MxDSSource::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 70, 000002F4) MxPalette::Clone +S_PROCREF: 0x00000000: ( 109, 000002B0) MxStreamProvider::ClassName +S_CONSTANT: Type: 0x106D, Value: 1, D3DRMPROJECT_ORTHOGRAPHIC +S_PROCREF: 0x00000000: ( 104, 000001B0) MxDSChunk::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 000057E4) LegoObjectFactory::Destroy +S_PROCREF: 0x00000000: ( 109, 00000DC8) MxDiskStreamProvider::FUN_100d1b20 +S_PROCREF: 0x00000000: ( 107, 00000608) MxDSAction::operator= +S_PROCREF: 0x00000000: ( 154, 00001470) LegoInputManager::ProcessEvents +S_PROCREF: 0x00000000: ( 134, 000004F0) LegoFileStream::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 000017C8) List::~List +S_CONSTANT: Type: 0x4790, Value: 9, D3DRENDERSTATE_SHADEMODE +S_UDT: T_INT4(0074), MxS32 +S_PROCREF: 0x00000000: ( 68, 00000A54) MxPresenter::Enable +S_PROCREF: 0x00000000: ( 177, 00000354) Lego3DManager::FUN_100ab4b0 +S_PROCREF: 0x00000000: ( 164, 000002C0) LegoCarBuild::Tickle +S_PROCREF: 0x00000000: ( 65, 00000280) MxCollection::Compare +S_PROCREF: 0x00000000: ( 21, 000016AC) Vector3Impl::DotImpl +S_PROCREF: 0x00000000: ( 136, 000002EC) LegoSoundManager::Create +S_PROCREF: 0x00000000: ( 68, 00000288) MxPresenter::DoneTickle +S_PROCREF: 0x00000000: ( 140, 00000214) LegoPhonemePresenter::~LegoPhonemePresenter +S_PROCREF: 0x00000000: ( 117, 00000190) MxCompositeMediaPresenter::IsA +S_PROCREF: 0x00000000: ( 169, 000002F0) MxMediaPresenter::IsA +S_PROCREF: 0x00000000: ( 60, 000006E0) MxCollection::Destroy +S_GDATA32: [0004:000004B8], Type: T_INT4(0074), g_buildingManagerConfig +S_PROCREF: 0x00000000: ( 88, 00000264) MxEventManager::Destroy +S_PROCREF: 0x00000000: ( 88, 000003C4) MxEventManager::Destroy +S_PROCREF: 0x00000000: ( 173, 00000084) LegoActor::LegoActor +S_PROCREF: 0x00000000: ( 195, 00000340) Helicopter::Create +S_LPROCREF: 0x00000000: ( 134, 00000A2C) $E36 +S_PROCREF: 0x00000000: ( 161, 0000025C) LegoEntity::Create +S_PROCREF: 0x00000000: ( 136, 000003D0) LegoSoundManager::Tickle +S_GDATA32: [0004:0000AB58], Type: 0x147B, g_hdPath +S_PROCREF: 0x00000000: ( 21, 00000FFC) Vector4Impl::DotImpl +S_PROCREF: 0x00000000: ( 112, 00001728) MxDeviceEnumerate::EnumerateErrorToString +S_PROCREF: 0x00000000: ( 146, 00000D14) LegoOmni::Create +S_PROCREF: 0x00000000: ( 177, 00000234) Lego3DManager::Create +S_PROCREF: 0x00000000: ( 101, 00000088) MxDSMediaAction::MxDSMediaAction +S_CONSTANT: Type: 0x2E6D, Value: 1, FromFrame +S_PROCREF: 0x00000000: ( 104, 00000084) MxDSChunk::MxDSChunk +S_UDT: T_ULONG(0022), D3DRMINTERPOLATIONOPTIONS +S_CONSTANT: Type: 0x1013, Value: 0, MEM_POOL_END +S_PROCREF: 0x00000000: ( 202, 00000080) DllMain +S_UDT: T_LONG(0012), MEMBERID +S_PROCREF: 0x00000000: ( 57, 00000414) MxStillPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 81, 0000023C) MxMediaManager::Init +S_PROCREF: 0x00000000: ( 53, 000001B0) MxStreamListMxNextActionDataStart::Find +S_CONSTANT: Type: 0x2E6D, Value: 2, FromMesh +S_PROCREF: 0x00000000: ( 65, 00000890) MxRegion::VTable0x18 +S_UDT: T_32PULONG(0422), LPD3DRMRENDERQUALITY +S_PROCREF: 0x00000000: ( 80, 000006D0) MxMediaPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 134, 00000C6C) ctype::id +S_UDT: T_32PVOID(0403), LPVOID +S_LPROCREF: 0x00000000: ( 134, 0000093C) $E46 +S_PROCREF: 0x00000000: ( 147, 00004070) LegoActorPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00000E88) MxObjectFactory::ClassName +S_PROCREF: 0x00000000: ( 112, 00000394) MxDirect3D::DestroyButNotDirectDraw +S_UDT: T_32PVOID(0403), HMIDIOUT +S_PROCREF: 0x00000000: ( 143, 000003E0) LegoPathActor::VTable0x70 +S_PROCREF: 0x00000000: ( 21, 00000BA0) Vector3Impl::EqualsCrossImpl +S_UDT: T_32PUSHORT(0421), LPWORD +S_UDT: T_UINT4(0075), MxU32 +S_PROCREF: 0x00000000: ( 115, 0000077C) MxControlPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 115, 00000178) MxControlPresenter::IsA +S_PROCREF: 0x00000000: ( 143, 00000370) LegoPathActor::VTable0x74 +S_PROCREF: 0x00000000: ( 117, 000004C8) MxCompositeMediaPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 107, 00000104) MxDSObject::SetAtomId +S_PROCREF: 0x00000000: ( 216, 000003B4) LegoPathActor::VTable0x78 +S_PROCREF: 0x00000000: ( 200, 000001CC) ElevatorBottom::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 0000521C) HospitalEntity::`scalar deleting destructor' +S_CONSTANT: Type: 0x131C, Value: 3, MxDSBufferType_Unknown +S_PROCREF: 0x00000000: ( 11, 00000288) TglImpl::MeshImpl::SetShadingModel +S_UDT: T_32PVOID(0403), HFONT +S_CONSTANT: Type: 0x478E, Value: 5, D3DLIGHTSTATE_FOGSTART +S_CONSTANT: Type: 0x4790, Value: 26, D3DRENDERSTATE_DITHERENABLE +S_CONSTANT: Type: 0x478A, Value: 5, D3DPT_TRIANGLESTRIP +S_PROCREF: 0x00000000: ( 48, 0000019C) MxTimer::GetRealTime +S_PROCREF: 0x00000000: ( 128, 000016F4) LegoWorld::FUN_10073400 +S_PROCREF: 0x00000000: ( 76, 00000174) MxNotificationManager::MxNotificationManager +S_PROCREF: 0x00000000: ( 11, 0000069C) TglImpl::MeshImpl::ShallowClone +S_PROCREF: 0x00000000: ( 199, 00000104) GasStation::ClassName +S_PROCREF: 0x00000000: ( 169, 00000570) LegoAnimPresenter::IsA +S_PROCREF: 0x00000000: ( 65, 00001364) MxRegionLeftRightList::`scalar deleting destructor' +S_GDATA32: [0004:00000588], Type: T_32PRCHAR(0470), g_strDisable +S_UDT: T_LONG(0012), LONG +S_PROCREF: 0x00000000: ( 145, 000003A8) LegoPalettePresenter::Destroy +S_PROCREF: 0x00000000: ( 145, 00000424) LegoPalettePresenter::Destroy +S_PROCREF: 0x00000000: ( 154, 00001154) LegoInputManager::UnRegister +S_UDT: T_32PLONG(0412), LPLONG +S_PROCREF: 0x00000000: ( 78, 00000214) MxMusicManager::Init +S_CONSTANT: Type: 0x100F, Value: (LF_ULONG) 2147483647, MEM_ERROR_CODE_INT_MAX +S_PROCREF: 0x00000000: ( 13, 0000078C) TglImpl::GroupImpl::Remove +S_PROCREF: 0x00000000: ( 13, 000007F8) TglImpl::GroupImpl::Remove +S_UDT: T_ULONG(0022), CALID +S_PROCREF: 0x00000000: ( 195, 00000880) HelicopterSubclass::FUN_100040a0 +S_PROCREF: 0x00000000: ( 122, 0000026C) MxAudioManager::Init +S_PROCREF: 0x00000000: ( 27, 00000140) Radio::IsA +S_PROCREF: 0x00000000: ( 96, 00001110) MxList::InsertEntry +S_CONSTANT: Type: 0x4790, Value: 13, D3DRENDERSTATE_PLANEMASK +S_CONSTANT: Type: 0x100F, Value: 3, MEM_BLOCK_TOO_BIG +S_CONSTANT: Type: 0x1011, Value: 8, MEM_EXTERNAL_BLOCK +S_PROCREF: 0x00000000: ( 31, 00000084) PoliceState::PoliceState +S_PROCREF: 0x00000000: ( 63, 000000C8) MxScheduler::StartMultiTasking +S_PROCREF: 0x00000000: ( 109, 000008C0) MxDiskStreamProvider::SetResourceToGet +S_PROCREF: 0x00000000: ( 217, 00000214) Act1State::IsA +S_PROCREF: 0x00000000: ( 73, 0000077C) MxOmni::SetInstance +S_PROCREF: 0x00000000: ( 65, 000017FC) MxRegionTopBottom::FUN_100c5280 +S_PROCREF: 0x00000000: ( 127, 000008AC) LegoWorldPresenter::StartingTickle +S_PROCREF: 0x00000000: ( 14, 000000F0) TglImpl::DeviceImpl::GetWidth +S_UDT: T_LONG(0012), time_t +S_PROCREF: 0x00000000: ( 216, 00000424) LegoPathActor::VTable0x7c +S_PROCREF: 0x00000000: ( 146, 00001910) LegoOmni::AddWorld +S_PROCREF: 0x00000000: ( 73, 000019E4) MxOmni::GetInstance +S_PROCREF: 0x00000000: ( 124, 000006DC) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Lbound +S_PROCREF: 0x00000000: ( 94, 00000378) MxDSSound::Clone +S_PROCREF: 0x00000000: ( 126, 00000104) Motorcycle::ClassName +S_UDT: T_USHORT(0021), SECURITY_DESCRIPTOR_CONTROL +S_PROCREF: 0x00000000: ( 100, 00000470) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 53, 00000108) MxStreamListMxDSAction::Find +S_PROCREF: 0x00000000: ( 161, 000001C4) LegoEntity::SetWorldTransform +S_PROCREF: 0x00000000: ( 57, 00000088) MxStillPresenter::Destroy +S_PROCREF: 0x00000000: ( 57, 000000E0) MxStillPresenter::Destroy +S_PROCREF: 0x00000000: ( 100, 00000F14) MxDSMultiAction::SetAtomId +S_PROCREF: 0x00000000: ( 209, 000002BC) AnimState::VTable0x1c +S_PROCREF: 0x00000000: ( 73, 000007D4) MxOmni::Create +S_PROCREF: 0x00000000: ( 151, 000002D4) LegoLocomotionAnimPresenter::Init +S_PROCREF: 0x00000000: ( 147, 000052C4) GasStationEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 193, 00000158) HistoryBook::IsA +S_PROCREF: 0x00000000: ( 11, 00000580) Tgl::Mesh::~Mesh +S_PROCREF: 0x00000000: ( 14, 00000088) TglImpl::DeviceImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 64, 000007A8) MxRegionCursor::FUN_100c46c0 +S_PROCREF: 0x00000000: ( 88, 0000018C) MxEventManager::~MxEventManager +S_CONSTANT: Type: 0x4790, Value: 17, D3DRENDERSTATE_TEXTUREMAG +S_PROCREF: 0x00000000: ( 109, 00000D60) MxDiskStreamProvider::FUN_100d1af0 +S_PROCREF: 0x00000000: ( 68, 00000490) MxPresenter::HasTickleStatePassed +S_PROCREF: 0x00000000: ( 55, 00000564) list >::_Buynode +S_PROCREF: 0x00000000: ( 76, 00000CC8) list >::_Buynode +S_GDATA32: [0004:00003C34], Type: 0x4D29, g_pD3DRM +S_CONSTANT: Type: 0x478A, Value: 4, D3DPT_TRIANGLELIST +S_PROCREF: 0x00000000: ( 128, 0000022C) LegoPathControllerList::Compare +S_PROCREF: 0x00000000: ( 51, 0000054C) MxString::operator+= +S_PROCREF: 0x00000000: ( 176, 000000D8) Lego3DView::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 61, 00000190) MxSmack::Destroy +S_PROCREF: 0x00000000: ( 146, 000000E8) VideoManager +S_PROCREF: 0x00000000: ( 128, 00000794) MxPtrList::`scalar deleting destructor' +S_UDT: T_UINT4(0075), undefined4 +S_PROCREF: 0x00000000: ( 55, 000008AC) MxStreamList::~MxStreamList +S_UDT: T_RCHAR(0070), CHAR +S_PROCREF: 0x00000000: ( 111, 000010F8) MxDirectDraw::Error +S_PROCREF: 0x00000000: ( 59, 000002D8) MxSoundManager::Create +S_CONSTANT: Type: 0x104E, Value: 11, MxDSType_ObjectAction +S_GDATA32: [0004:00000E24], Type: 0x1065, g_infoscorScript +S_PROCREF: 0x00000000: ( 171, 000004C8) LegoAnimationManager::Tickle +S_PROCREF: 0x00000000: ( 60, 00000874) MxPtrList::Destroy +S_PROCREF: 0x00000000: ( 98, 00000254) MxDSObjectAction::~MxDSObjectAction +S_PROCREF: 0x00000000: ( 154, 000015F8) LegoInputManager::SetTimer +S_PROCREF: 0x00000000: ( 9, 000006FC) TglImpl::TextureImpl::GetBufferAndPalette +S_PROCREF: 0x00000000: ( 73, 00000E10) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Erase +S_PROCREF: 0x00000000: ( 130, 000001CC) LegoVehicleBuildState::ClassName +S_PROCREF: 0x00000000: ( 76, 00000B70) list >::insert +S_PROCREF: 0x00000000: ( 116, 000005B8) MxCompositePresenter::StartAction +S_PROCREF: 0x00000000: ( 147, 00002ECC) LegoJetski::ClassName +S_PROCREF: 0x00000000: ( 180, 000000F8) JukeBox::ClassName +S_PROCREF: 0x00000000: ( 134, 0000056C) LegoFileStream::~LegoFileStream +S_PROCREF: 0x00000000: ( 147, 00002628) Vector2Impl::Vector2Impl +S_PROCREF: 0x00000000: ( 10, 000012C4) TglImpl::UnkImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 00002158) MakeSourceName +S_PROCREF: 0x00000000: ( 102, 000001A4) MxDSFile::ClassName +S_PROCREF: 0x00000000: ( 73, 000018A0) MxStartActionNotificationParam::~MxStartActionNotificationParam +S_PROCREF: 0x00000000: ( 148, 000001E8) LegoNavController::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 108, 00000FB0) MxDisplaySurface::VTable0x44 +S_CONSTANT: Type: 0x1007, Value: 0, Ambient +S_PROCREF: 0x00000000: ( 48, 000001EC) MxTimer::Start +S_GDATA32: [0004:00001538], Type: 0x147A, _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Nil +S_PROCREF: 0x00000000: ( 148, 000006FC) LegoNavController::SetTargets +S_PROCREF: 0x00000000: ( 147, 00003D70) Pizzeria::IsA +S_PROCREF: 0x00000000: ( 166, 000002D0) LegoCacheSound::Init +S_PROCREF: 0x00000000: ( 60, 00000DE4) MxListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 156, 00000974) LegoGameState::ScoreStruct::FUN_1003ccf0 +S_PROCREF: 0x00000000: ( 7, 0000095C) TglImpl::ViewImpl::ForceUpdate +S_PROCREF: 0x00000000: ( 119, 0000043C) MxBackgroundAudioManager::OpenMusic +S_UDT: T_ULONG(0022), D3DMATERIALHANDLE +S_UDT: T_32PUINT4(0475), PUINT +S_CONSTANT: Type: 0x106D, Value: 0, D3DRMPROJECT_PERSPECTIVE +S_CONSTANT: Type: 0x4790, Value: 38, D3DRENDERSTATE_FOGTABLEDENSITY +S_PROCREF: 0x00000000: ( 111, 0000077C) EnableResizing +S_PROCREF: 0x00000000: ( 103, 00000150) MxDSEvent::IsA +S_PROCREF: 0x00000000: ( 154, 00000D6C) MxQueue::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 20, 000001D4) RegistrationBook::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00004DD4) Act3Actor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 166, 00000168) LegoCacheSound::IsA +S_PROCREF: 0x00000000: ( 201, 00000150) DuneBuggy::IsA +S_PROCREF: 0x00000000: ( 57, 00000258) MxStillPresenter::NextFrame +S_PROCREF: 0x00000000: ( 5, 000001FC) TowTrackMissionState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 100, 00000C4C) MxDSMultiAction::VTable0x14 +S_PROCREF: 0x00000000: ( 68, 000009C8) MxPresenter::Tickle +S_PROCREF: 0x00000000: ( 7, 0000042C) TglImpl::ViewImpl::Add +S_PROCREF: 0x00000000: ( 21, 000003F8) Vector2Impl::GetData +S_PROCREF: 0x00000000: ( 21, 00000448) Vector2Impl::GetData +S_PROCREF: 0x00000000: ( 147, 00002910) Lego3DWavePresenter::IsA +S_PROCREF: 0x00000000: ( 65, 00000430) MxPtrList::~MxPtrList +S_UDT: T_32PVOID(0403), HCONVLIST +S_PROCREF: 0x00000000: ( 77, 000002A4) MxMusicPresenter::~MxMusicPresenter +S_PROCREF: 0x00000000: ( 128, 00000CD8) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 162, 00000178) LegoControlManager::IsA +S_PROCREF: 0x00000000: ( 130, 00000358) `vector constructor iterator' +S_PROCREF: 0x00000000: ( 65, 00001BAC) MxListCursor::`scalar deleting destructor' +S_UDT: T_USHORT(0021), FILEOP_FLAGS +S_PROCREF: 0x00000000: ( 146, 00001860) LegoOmni::CreateInstance +S_GDATA32: [0004:00000AA0], Type: T_REAL32(0040), g_movementMinAccel +S_PROCREF: 0x00000000: ( 180, 000001A4) JukeBox::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00001160) Tgl::Light::`scalar deleting destructor' +S_GDATA32: [0003:00004F50], Type: 0x178A, IID_IDirect3DRM2 +S_PROCREF: 0x00000000: ( 73, 00001648) MxOmni::Start +S_CONSTANT: Type: 0x4790, Value: 4, D3DRENDERSTATE_TEXTUREPERSPECTIVE +S_LPROCREF: 0x00000000: ( 134, 00000ABC) $E45 +S_PROCREF: 0x00000000: ( 147, 000034A4) Act2PoliceStation::ClassName +S_PROCREF: 0x00000000: ( 72, 0000008C) MxOmniCreateFlags::MxOmniCreateFlags +S_PROCREF: 0x00000000: ( 108, 000010B4) MxDisplaySurface::VTable0x24 +S_PROCREF: 0x00000000: ( 115, 00000848) MxControlPresenter::HasTickleStatePassed +S_PROCREF: 0x00000000: ( 92, 00000310) MxDSStill::operator= +S_CONSTANT: Type: 0x1019, Value: 3, PROXY_SENDRECEIVE +S_PROCREF: 0x00000000: ( 56, 00000248) MxStreamChunk::SendChunk +S_PROCREF: 0x00000000: ( 190, 00000120) HospitalState::ClassName +S_UDT: T_32PULONG(0422), LPD3DMATERIALHANDLE +S_PROCREF: 0x00000000: ( 41, 00000204) MxVideoParam::~MxVideoParam +S_PROCREF: 0x00000000: ( 90, 0000042C) MxStreamChunkList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 57, 000003A4) MxStillPresenter::RealizePalette +S_PROCREF: 0x00000000: ( 174, 000001D8) LegoActionControlPresenter::Destroy +S_PROCREF: 0x00000000: ( 18, 00000080) Score::Score +S_PROCREF: 0x00000000: ( 47, 0000008C) MxTransitionManager::MxTransitionManager +S_PROCREF: 0x00000000: ( 128, 00001748) LegoWorld::FUN_10073430 +S_PROCREF: 0x00000000: ( 108, 00000C9C) MxDisplaySurface::VTable0x34 +S_CONSTANT: Type: 0x1005, Value: 3, Gouraud +S_PROCREF: 0x00000000: ( 87, 00000150) MxEventPresenter::ClassName +S_UDT: T_32PVOID(0403), HMETAFILE +S_PROCREF: 0x00000000: ( 124, 0000015C) MxAtomId::Destroy +S_CONSTANT: Type: 0x1079, Value: 1, D3DRMUSERVISUAL_RENDER +S_PROCREF: 0x00000000: ( 100, 00000D30) MxDSMultiAction::GetSizeOnDisk +S_GDATA32: [0004:00000DF4], Type: 0x1065, g_copterScript +S_UDT: T_32PVOID(0403), RPC_AUTH_IDENTITY_HANDLE +S_PROCREF: 0x00000000: ( 70, 00000298) MxPalette::CreateNativePalette +S_PROCREF: 0x00000000: ( 147, 000031B8) LegoTexturePresenter::ClassName +S_PROCREF: 0x00000000: ( 112, 0000045C) MxDirect3D::D3DSetMode +S_PROCREF: 0x00000000: ( 84, 00000124) MxLoopingFlcPresenter::ClassName +S_PROCREF: 0x00000000: ( 169, 000001BC) MxPresenter::IsA +S_PROCREF: 0x00000000: ( 199, 00000314) GasStation::Tickle +S_CONSTANT: Type: 0x1075, Value: 2, D3DRMZBUFFER_DISABLE +S_PROCREF: 0x00000000: ( 84, 000002F4) MxLoopingFlcPresenter::Destroy +S_CONSTANT: Type: 0x478C, Value: 1, D3DTRANSFORMSTATE_WORLD +S_PROCREF: 0x00000000: ( 212, 00000084) Act3State::VTable0x14 +S_PROCREF: 0x00000000: ( 73, 000016C0) MxOmni::DeleteObject +S_PROCREF: 0x00000000: ( 146, 00000080) Lego +S_CONSTANT: Type: 0x104E, Value: 5, MxDSType_MultiAction +S_PROCREF: 0x00000000: ( 62, 00000170) MxSemaphore::Wait +S_PROCREF: 0x00000000: ( 124, 00000374) MxAtomId::GetCounter +S_PROCREF: 0x00000000: ( 163, 00000130) LegoCarBuildAnimPresenter::ClassName +S_UDT: T_REAL64(0041), DOUBLE +S_PROCREF: 0x00000000: ( 216, 000008F4) Act2Brick::IsA +S_PROCREF: 0x00000000: ( 147, 00003DD0) PoliceEntity::ClassName +S_PROCREF: 0x00000000: ( 176, 000002A8) Lego3DView::FUN_100ab1b0 +S_PROCREF: 0x00000000: ( 111, 00000158) MxDirectDraw::~MxDirectDraw +S_PROCREF: 0x00000000: ( 154, 000003F4) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 49, 000001C8) MxTickleManager::Tickle +S_PROCREF: 0x00000000: ( 141, 000004BC) LegoPathPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 185, 00000640) Isle::HandleTransitionEnd +S_CONSTANT: Type: 0x4790, Value: 10, D3DRENDERSTATE_LINEPATTERN +S_PROCREF: 0x00000000: ( 87, 00000370) MxEventPresenter::AddToManager +S_PROCREF: 0x00000000: ( 190, 000001D8) HospitalState::`scalar deleting destructor' +S_GDATA32: [0004:000002F4], Type: T_32PRCHAR(0470), g_strACTION +S_GDATA32: [0004:00000E0C], Type: 0x1065, g_jetraceScript +S_PROCREF: 0x00000000: ( 90, 00000228) MxStreamChunkList::Destroy +S_UDT: T_UCHAR(0020), MxBool +S_PROCREF: 0x00000000: ( 55, 00000CD4) list >::iterator::operator++ +S_PROCREF: 0x00000000: ( 24, 0000015C) OrientableROI::VTable0x24 +S_PROCREF: 0x00000000: ( 38, 00000114) MxWavePresenter::Destroy +S_PROCREF: 0x00000000: ( 38, 00000284) MxWavePresenter::Destroy +S_UDT: T_32PVOID(0403), HSZ +S_PROCREF: 0x00000000: ( 146, 00001540) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 206, 00000370) BuildingEntity::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HDDEDATA +S_PROCREF: 0x00000000: ( 100, 0000079C) MxDSMultiAction::CopyFrom +S_CONSTANT: Type: 0x4790, Value: 37, D3DRENDERSTATE_FOGTABLEEND +S_PROCREF: 0x00000000: ( 90, 0000080C) MxDSSubscriber::~MxDSSubscriber +S_UDT: T_UINT4(0075), size_t +S_PROCREF: 0x00000000: ( 102, 000005A0) MxDSFile::ReadChunks +S_PROCREF: 0x00000000: ( 108, 000001A8) MxDisplaySurface::~MxDisplaySurface +S_PROCREF: 0x00000000: ( 103, 00000310) MxDSEvent::operator= +S_PROCREF: 0x00000000: ( 216, 00000348) LegoActor::VTable0x64 +S_GDATA32: [0004:00000E08], Type: 0x1065, g_carracerScript +S_PROCREF: 0x00000000: ( 39, 00000C5C) MxVideoPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 216, 000002F4) LegoActor::VTable0x60 +S_PROCREF: 0x00000000: ( 42, 000002E0) MxVideoManager::Init +S_PROCREF: 0x00000000: ( 84, 00000370) MxLoopingFlcPresenter::NextFrame +S_PROCREF: 0x00000000: ( 13, 000006BC) TglImpl::GroupImpl::Add +S_PROCREF: 0x00000000: ( 13, 00000724) TglImpl::GroupImpl::Add +S_PROCREF: 0x00000000: ( 197, 00000088) GasStationState::GasStationState +S_CONSTANT: Type: 0x2E73, Value: 0, D3DRMCOLOR_FROMFACE +S_PROCREF: 0x00000000: ( 206, 00000188) LegoEntity::ClassName +S_PROCREF: 0x00000000: ( 96, 00000C00) MxStringListCursor::~MxStringListCursor +S_PROCREF: 0x00000000: ( 100, 000008A0) MxDSMultiAction::operator= +S_PROCREF: 0x00000000: ( 78, 000006E8) MxMusicManager::DeinitializeMIDI +S_PROCREF: 0x00000000: ( 218, 000001A0) TglSurface::`scalar deleting destructor' +S_CONSTANT: Type: 0x1009, Value: 0, Perspective +S_PROCREF: 0x00000000: ( 80, 000008D0) MxMediaPresenter::Enable +S_PROCREF: 0x00000000: ( 147, 00004AB8) Act2PoliceStation::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 70, 00000084) MxPalette::MxPalette +S_PROCREF: 0x00000000: ( 70, 00000178) MxPalette::MxPalette +S_UDT: T_SHORT(0011), VARIANT_BOOL +S_PROCREF: 0x00000000: ( 160, 0000069C) LegoEntityPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 112, 000001FC) MxDirect3D::Create +S_PROCREF: 0x00000000: ( 145, 00000170) LegoPalettePresenter::ClassName +S_PROCREF: 0x00000000: ( 54, 00000DB0) MxStreamer::DeleteObject +S_GDATA32: [0003:00004F60], Type: 0x178A, IID_IDirect3DRMMeshBuilder +S_PROCREF: 0x00000000: ( 137, 00000080) LegoROI::WrappedSetLocalTransform +S_PROCREF: 0x00000000: ( 217, 00000084) Act1State::Act1State +S_PROCREF: 0x00000000: ( 101, 000001CC) MxDSMediaAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 106, 00000224) MxDSAnim::~MxDSAnim +S_PROCREF: 0x00000000: ( 158, 00000128) MxFlcPresenter::IsA +S_PROCREF: 0x00000000: ( 21, 00001388) Vector4Impl::UnknownQuaternionOp +S_PROCREF: 0x00000000: ( 10, 000006A0) TglImpl::RendererImpl::CreateView +S_PROCREF: 0x00000000: ( 209, 00000164) AnimState::IsA +S_PROCREF: 0x00000000: ( 50, 000001E4) MxTickleThread::Run +S_PROCREF: 0x00000000: ( 70, 00000454) MxPalette::SetSkyColor +S_LPROCREF: 0x00000000: ( 134, 0000096C) $E24 +S_PROCREF: 0x00000000: ( 119, 00000C34) MxBackgroundAudioManager::Init +S_PROCREF: 0x00000000: ( 21, 00001490) Vector3Impl::AddScalarImpl +S_PROCREF: 0x00000000: ( 163, 00000200) LegoCarBuildAnimPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 128, 00000318) MxCollection::~MxCollection +S_UDT: T_SHORT(0011), MxS16 +S_CONSTANT: Type: 0x1059, Value: 8, c_notificationButtonUp +S_PROCREF: 0x00000000: ( 65, 00000700) MxRegion::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 156, 000002DC) LegoGameState::Load +S_UDT: T_INT4(0074), HFILE +S_PROCREF: 0x00000000: ( 8, 000000EC) TglImpl::UnkImpl::SetMeshData +S_PROCREF: 0x00000000: ( 25, 0000016C) Matrix4Impl::AnotherSetData +S_PROCREF: 0x00000000: ( 133, 00000120) LegoTexturePresenter::AddToManager +S_PROCREF: 0x00000000: ( 189, 000003C8) Infocenter::VTable0x68 +S_PROCREF: 0x00000000: ( 195, 00000118) Vector3Impl::Vector3Impl +S_PROCREF: 0x00000000: ( 154, 000008B0) MxCollection::Compare +S_PROCREF: 0x00000000: ( 130, 000000F8) LegoVehicleBuildState::LegoVehicleBuildState +S_CONSTANT: Type: 0x4790, Value: 2, D3DRENDERSTATE_ANTIALIAS +S_PROCREF: 0x00000000: ( 109, 0000041C) MxStreamProvider::~MxStreamProvider +S_PROCREF: 0x00000000: ( 109, 00000F08) MxDiskStreamProvider::GetLengthInDWords +S_PROCREF: 0x00000000: ( 111, 00000CB8) MxDirectDraw::TextToTextSurface2 +S_PROCREF: 0x00000000: ( 116, 00000754) MxCompositePresenter::EndAction +S_PROCREF: 0x00000000: ( 106, 000001AC) MxDSAnim::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 189, 000001B8) Infocenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 84, 00000180) MxLoopingFlcPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00000318) MxPtrList::Destroy +S_PROCREF: 0x00000000: ( 37, 0000029C) Pizza::Tickle +S_PROCREF: 0x00000000: ( 111, 0000023C) MxDirectDraw::Create +S_PROCREF: 0x00000000: ( 74, 00000868) MxStillPresenter::ClassName +S_PROCREF: 0x00000000: ( 73, 000010EC) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 21, 000000F4) Vector2Impl::AddScalarImpl +S_CONSTANT: Type: 0x100F, Value: 11, MEM_BAD_BLOCK +S_PROCREF: 0x00000000: ( 39, 000000F4) MxVideoPresenter::CreateBitmap +S_UDT: T_UCHAR(0020), SECURITY_CONTEXT_TRACKING_MODE +S_PROCREF: 0x00000000: ( 25, 000006EC) Matrix4Impl::ToQuaternion +S_PROCREF: 0x00000000: ( 9, 0000088C) TglImpl::TextureImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 156, 00000870) LegoGameState::RegisterState +S_PROCREF: 0x00000000: ( 196, 00000084) GifMap::FindNode +S_PROCREF: 0x00000000: ( 90, 00000590) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 000005A8) SetIsWorldActive +S_PROCREF: 0x00000000: ( 160, 000003C4) LegoEntityPresenter::Destroy +S_PROCREF: 0x00000000: ( 160, 0000043C) LegoEntityPresenter::Destroy +S_UDT: T_ULONG(0022), D3DRMANIMATIONOPTIONS +S_PROCREF: 0x00000000: ( 129, 00000114) LegoVideoManager::VTable0x3c +S_PROCREF: 0x00000000: ( 65, 00000D3C) MxPtrListCursor::`scalar deleting destructor' +S_CONSTANT: Type: 0x101E, Value: 4, D3DLIGHT_PARALLELPOINT +S_PROCREF: 0x00000000: ( 130, 00000294) LegoVehicleBuildState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 00000D9C) MxStreamController::Open +S_PROCREF: 0x00000000: ( 67, 00000404) ReadData +S_PROCREF: 0x00000000: ( 54, 00000590) MxStreamer::Create +S_PROCREF: 0x00000000: ( 147, 00004814) LegoAct2::`scalar deleting destructor' +S_UDT: T_ULONG(0022), HIMC +S_UDT: T_USHORT(0021), MxU16 +S_GDATA32: [0004:0000377C], Type: 0x1449, MxOmni::g_instance +S_PROCREF: 0x00000000: ( 156, 00000088) LegoGameState::LegoGameState +S_PROCREF: 0x00000000: ( 76, 00000ED4) MxNotificationManager::Unregister +S_PROCREF: 0x00000000: ( 171, 0000008C) LegoAnimationManager::configureLegoAnimationManager +S_UDT: T_SHORT(0011), SHORT +S_PROCREF: 0x00000000: ( 6, 0000014C) TowTrack::IsA +S_PROCREF: 0x00000000: ( 128, 00000D90) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 154, 00000E2C) LegoInputManager::Destroy +S_PROCREF: 0x00000000: ( 90, 000006D4) MxDSSubscriber::ClassName +S_PROCREF: 0x00000000: ( 97, 00000368) MxDSParallelAction::operator= +S_CONSTANT: Type: 0x1075, Value: 1, D3DRMZBUFFER_ENABLE +S_PROCREF: 0x00000000: ( 21, 00000DE0) Vector4Impl::AddScalarImpl +S_PROCREF: 0x00000000: ( 128, 00000460) MxPtrList::Destroy +S_PROCREF: 0x00000000: ( 61, 000001E4) MxSmack::LoadFrame +S_PROCREF: 0x00000000: ( 111, 00000388) MxDirectDraw::RecreateDirectDraw +S_PROCREF: 0x00000000: ( 75, 0000008C) MxNotificationParam::Clone +S_UDT: T_ULONG(0022), REGSAM +S_PROCREF: 0x00000000: ( 155, 00000138) LegoLoopingAnimPresenter::ClassName +S_PROCREF: 0x00000000: ( 169, 00000430) MxVideoPresenter::IsA +S_PROCREF: 0x00000000: ( 38, 00000A3C) MxWavePresenter::ParseExtra +S_PROCREF: 0x00000000: ( 55, 00001810) MxStreamController::FUN_100c1f00 +S_GDATA32: [0004:00000E58], Type: 0x1065, g_sndAnimScript +S_PROCREF: 0x00000000: ( 146, 000021E4) KeyValueStringParse +S_PROCREF: 0x00000000: ( 115, 000007D8) MxControlPresenter::Enable +S_PROCREF: 0x00000000: ( 188, 00000110) InfocenterDoor::ClassName +S_PROCREF: 0x00000000: ( 146, 00000FC4) GifManagerBase::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00003858) BeachHouseEntity::IsA +S_PROCREF: 0x00000000: ( 110, 000003E8) MxDiskStreamController::ClassName +S_PROCREF: 0x00000000: ( 95, 00000408) MxDSSerialAction::operator= +S_UDT: T_32PVOID(0403), RPC_BINDING_HANDLE +S_PROCREF: 0x00000000: ( 195, 00000180) Helicopter::ClassName +S_PROCREF: 0x00000000: ( 147, 00003760) Act3Actor::ClassName +S_PROCREF: 0x00000000: ( 98, 00000358) MxDSObjectAction::operator= +S_PROCREF: 0x00000000: ( 16, 00000158) SkateBoard::IsA +S_PROCREF: 0x00000000: ( 99, 0000016C) MxDSObject::IsA +S_PROCREF: 0x00000000: ( 101, 00000110) MxDSMediaAction::ClassName +S_PROCREF: 0x00000000: ( 147, 000035B4) Act3State::IsA +S_PROCREF: 0x00000000: ( 43, 00000198) MxVariableTable::SetVariable +S_PROCREF: 0x00000000: ( 43, 00000458) MxVariableTable::SetVariable +S_UDT: T_ULONG(0022), D3DMATRIXHANDLE +S_PROCREF: 0x00000000: ( 117, 00000094) MxCompositeMediaPresenter::MxCompositeMediaPresenter +S_PROCREF: 0x00000000: ( 134, 0000021C) LegoStream::IsWriteMode +S_PROCREF: 0x00000000: ( 43, 00000104) MxVariableTable::Hash +S_UDT: T_32PVOID(0403), I_RPC_MUTEX +S_PROCREF: 0x00000000: ( 146, 0000199C) LegoOmni::RemoveWorld +S_CONSTANT: Type: 0x131C, Value: 0, MxDSBufferType_Chunk +S_PROCREF: 0x00000000: ( 148, 00000128) LegoNavController::ClassName +S_PROCREF: 0x00000000: ( 92, 00000150) MxDSStill::IsA +S_PROCREF: 0x00000000: ( 146, 00001350) LegoWorldList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00001040) MxRegionTopBottom::MxRegionTopBottom +S_PROCREF: 0x00000000: ( 65, 000016E4) MxRegionTopBottom::MxRegionTopBottom +S_PROCREF: 0x00000000: ( 193, 00000084) HistoryBook::HistoryBook +S_PROCREF: 0x00000000: ( 158, 00000090) LegoFlcTexturePresenter::LegoFlcTexturePresenter +S_PROCREF: 0x00000000: ( 59, 000007FC) MxSoundManager::Resume +S_CONSTANT: Type: 0x4790, Value: 22, D3DRENDERSTATE_CULLMODE +S_PROCREF: 0x00000000: ( 39, 00000218) MxVideoPresenter::~MxVideoPresenter +S_PROCREF: 0x00000000: ( 20, 00000254) RegistrationBook::~RegistrationBook +S_PROCREF: 0x00000000: ( 4, 00000884) ViewLODListManager::~ViewLODListManager +S_PROCREF: 0x00000000: ( 164, 0000023C) LegoCarBuild::~LegoCarBuild +S_PROCREF: 0x00000000: ( 78, 0000018C) MxMusicManager::~MxMusicManager +S_PROCREF: 0x00000000: ( 87, 00000290) MxEventPresenter::~MxEventPresenter +S_PROCREF: 0x00000000: ( 90, 00000E24) MxDSSubscriber::FUN_100b8390 +S_PROCREF: 0x00000000: ( 11, 000005F8) Tgl::Mesh::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 86, 00000160) MxFlcPresenter::ClassName +S_PROCREF: 0x00000000: ( 39, 00000D34) MxVideoPresenter::Unk5Tickle +S_PROCREF: 0x00000000: ( 141, 0000033C) LegoPathPresenter::AddToManager +S_PROCREF: 0x00000000: ( 96, 000006C8) MxStringList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 108, 00000128) MxDisplaySurface::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 110, 00001778) MxDiskStreamController::InsertToList74 +S_GDATA32: [0004:00001520], Type: T_UINT4(0075), g_legoWorldPresenterQuality +S_PROCREF: 0x00000000: ( 66, 000002D4) MxRAMStreamProvider::GetStreamBuffersNum +S_PROCREF: 0x00000000: ( 110, 00000A48) list >::erase +S_PROCREF: 0x00000000: ( 129, 000006F8) list >::~list > +S_PROCREF: 0x00000000: ( 97, 000002F0) MxDSParallelAction::CopyFrom +S_CONSTANT: Type: 0x1077, Value: 3, D3DRMSORT_BACKTOFRONT +S_PROCREF: 0x00000000: ( 137, 000005BC) BoundingBox::BoundingBox +S_PROCREF: 0x00000000: ( 66, 000001F4) MxRAMStreamProvider::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 79, 00000110) MxMIDIPresenter::ClassName +S_PROCREF: 0x00000000: ( 118, 00000684) MxBitmap::VTable0x30 +S_PROCREF: 0x00000000: ( 65, 00001144) MxCollection::Destroy +S_UDT: T_LONG(0012), RPC_STATUS +S_PROCREF: 0x00000000: ( 47, 000005F4) MxTransitionManager::TransitionDissolve +S_PROCREF: 0x00000000: ( 78, 000003B4) MxMusicManager::Create +S_PROCREF: 0x00000000: ( 147, 000034FC) Act2PoliceStation::IsA +S_PROCREF: 0x00000000: ( 128, 00001290) LegoWorld::FUN_1001fc80 +S_GDATA32: [0004:0000040C], Type: T_INT4(0074), g_legoAnimationManagerConfig +S_LDATA32: [0003:00002D90], Type: 0x18A1, g_normalizeByteToFloat +S_PROCREF: 0x00000000: ( 95, 00000480) MxDSSerialAction::Clone +S_PROCREF: 0x00000000: ( 11, 000004D4) TglImpl::MeshImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 98, 000003D0) MxDSObjectAction::Clone +S_PROCREF: 0x00000000: ( 87, 00000210) MxEventPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 185, 000001AC) Isle::VTable0x5c +S_PROCREF: 0x00000000: ( 95, 000001A8) MxDSSerialAction::IsA +S_PROCREF: 0x00000000: ( 98, 0000016C) MxDSObjectAction::IsA +S_PROCREF: 0x00000000: ( 190, 00000174) HospitalState::IsA +S_PROCREF: 0x00000000: ( 70, 000006A4) MxPalette::Reset +S_PROCREF: 0x00000000: ( 97, 00000260) MxDSParallelAction::~MxDSParallelAction +S_PROCREF: 0x00000000: ( 146, 000002C8) GetCurrentWorld +S_PROCREF: 0x00000000: ( 127, 00000850) LegoWorldPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 100, 00000338) MxCollection::Compare +S_PROCREF: 0x00000000: ( 73, 000001AC) ObjectFactory +S_PROCREF: 0x00000000: ( 18, 00000370) Score::DeleteScript +S_PROCREF: 0x00000000: ( 152, 000004BC) MxWavePresenter::IsA +S_PROCREF: 0x00000000: ( 9, 00000504) TglImpl::TextureImpl::SetTexels +S_PROCREF: 0x00000000: ( 156, 000003B4) LegoGameState::WriteEndOfVariables +S_PROCREF: 0x00000000: ( 97, 00000464) MxDSParallelAction::GetDuration +S_CONSTANT: Type: 0x4790, Value: 29, D3DRENDERSTATE_SPECULARENABLE +S_UDT: T_32PUSHORT(0421), LPCOLESTR +S_PROCREF: 0x00000000: ( 13, 0000017C) TglImpl::GroupImpl::SetColor +S_PROCREF: 0x00000000: ( 177, 00000088) InitializeCreateStruct +S_PROCREF: 0x00000000: ( 40, 0000008C) MxVideoParamFlags::MxVideoParamFlags +S_PROCREF: 0x00000000: ( 111, 000003F8) MxDirectDraw::CacheOriginalPaletteEntries +S_PROCREF: 0x00000000: ( 62, 000001D8) MxSemaphore::Release +S_PROCREF: 0x00000000: ( 147, 00003FEC) LegoTexturePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 185, 000006FC) Isle::VTable0x6c +S_PROCREF: 0x00000000: ( 125, 00000094) MxActionNotificationParam::Clone +S_PROCREF: 0x00000000: ( 60, 00000C18) MxRectList::~MxRectList +S_PROCREF: 0x00000000: ( 112, 000017A4) MxDeviceEnumerate::ParseDeviceName +S_PROCREF: 0x00000000: ( 108, 000006D0) MxDisplaySurface::SetPalette +S_PROCREF: 0x00000000: ( 171, 00000208) LegoAnimationManager::IsA +S_PROCREF: 0x00000000: ( 114, 00000080) MxCore::Tickle +S_PROCREF: 0x00000000: ( 161, 00000104) LegoEntity::Init +S_PROCREF: 0x00000000: ( 88, 00000110) MxEventManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 189, 00000230) Infocenter::~Infocenter +S_PROCREF: 0x00000000: ( 55, 000006DC) MxStreamController::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 148, 00000934) LegoNavController::CalculateNewVel +S_PROCREF: 0x00000000: ( 147, 00002850) HelicopterState::IsA +S_PROCREF: 0x00000000: ( 201, 00000084) DuneBuggy::DuneBuggy +S_CONSTANT: Type: 0x1059, Value: 13, c_notificationDragStart +S_PROCREF: 0x00000000: ( 49, 00000250) MxTickleManager::RegisterClient +S_PROCREF: 0x00000000: ( 147, 00005370) PoliceEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 000001A4) MxStreamController::VTable0x28 +S_PROCREF: 0x00000000: ( 216, 000008A4) Act2Brick::ClassName +S_PROCREF: 0x00000000: ( 110, 000004B4) list >::~list > +S_PROCREF: 0x00000000: ( 55, 0000008C) MxStreamController::VTable0x18 +S_CONSTANT: Type: 0x478C, Value: 3, D3DTRANSFORMSTATE_PROJECTION +S_PROCREF: 0x00000000: ( 167, 00000258) LegoBuildingManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00000628) MxOmni::NotifyCurrentEntity +S_PROCREF: 0x00000000: ( 74, 000009D4) MxLoopingMIDIPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 163, 00000190) LegoCarBuildAnimPresenter::IsA +S_CONSTANT: Type: 0x100F, Value: 10, MEM_BAD_MEM_POOL +S_PROCREF: 0x00000000: ( 65, 000023F4) MxList::DeleteEntry +S_PROCREF: 0x00000000: ( 209, 000001C4) AnimState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 206, 000001DC) LegoEntity::IsA +S_GDATA32: [0004:0000118C], Type: T_INT4(0074), g_partPresenterConfig2 +S_PROCREF: 0x00000000: ( 195, 000001D4) Helicopter::IsA +S_PROCREF: 0x00000000: ( 137, 00000368) Matrix4Data::Matrix4Data +S_PROCREF: 0x00000000: ( 129, 00000D28) LegoVideoManager::MoveCursor +S_PROCREF: 0x00000000: ( 90, 00000D24) MxDSSubscriber::FUN_100b8250 +S_PROCREF: 0x00000000: ( 64, 000006B8) MxRegionCursor::VTable0x2c +S_PROCREF: 0x00000000: ( 64, 000005B0) MxRegionCursor::VTable0x1c +S_PROCREF: 0x00000000: ( 99, 00000118) MxDSObject::ClassName +S_CONSTANT: Type: 0x1001, Value: 1, XLAT_SERVER +S_PROCREF: 0x00000000: ( 177, 0000015C) Lego3DManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 16, 00000104) SkateBoard::ClassName +S_PROCREF: 0x00000000: ( 167, 0000008C) LegoBuildingManager::configureLegoBuildingManager +S_PROCREF: 0x00000000: ( 147, 00003A28) GasStationEntity::ClassName +S_PROCREF: 0x00000000: ( 64, 000009F0) MxRegionCursor::FUN_100c4b50 +S_CONSTANT: Type: 0x4790, Value: 67, D3DRENDERSTATE_STIPPLEPATTERN03 +S_PROCREF: 0x00000000: ( 110, 0000169C) MxDiskStreamController::FUN_100c8360 +S_CONSTANT: Type: 0x4790, Value: 66, D3DRENDERSTATE_STIPPLEPATTERN02 +S_PROCREF: 0x00000000: ( 99, 00000244) MxDSObject::~MxDSObject +S_CONSTANT: Type: 0x4790, Value: 65, D3DRENDERSTATE_STIPPLEPATTERN01 +S_CONSTANT: Type: 0x4790, Value: 64, D3DRENDERSTATE_STIPPLEPATTERN00 +S_CONSTANT: Type: 0x4790, Value: 71, D3DRENDERSTATE_STIPPLEPATTERN07 +S_CONSTANT: Type: 0x4790, Value: 70, D3DRENDERSTATE_STIPPLEPATTERN06 +S_CONSTANT: Type: 0x4790, Value: 69, D3DRENDERSTATE_STIPPLEPATTERN05 +S_CONSTANT: Type: 0x4790, Value: 68, D3DRENDERSTATE_STIPPLEPATTERN04 +S_PROCREF: 0x00000000: ( 128, 000008E4) MxPresenterList::Compare +S_CONSTANT: Type: 0x4790, Value: 73, D3DRENDERSTATE_STIPPLEPATTERN09 +S_UDT: T_ULONG(0022), CALTYPE +S_CONSTANT: Type: 0x4790, Value: 72, D3DRENDERSTATE_STIPPLEPATTERN08 +S_GDATA32: [0004:00000AA8], Type: T_REAL32(0040), g_movementDecel +S_PROCREF: 0x00000000: ( 188, 00000168) InfocenterDoor::IsA +S_PROCREF: 0x00000000: ( 177, 00000104) Lego3DManager::Lego3DManager +S_PROCREF: 0x00000000: ( 93, 000000F0) MxDSSource::GetLengthInDWords +S_PROCREF: 0x00000000: ( 110, 00000448) MxDiskStreamController::IsA +S_PROCREF: 0x00000000: ( 116, 00000864) MxEndActionNotificationParam::~MxEndActionNotificationParam +S_PROCREF: 0x00000000: ( 146, 00000304) PlantManager +S_PROCREF: 0x00000000: ( 73, 00001D5C) MxOmni::SetSound3D +S_PROCREF: 0x00000000: ( 25, 000001D8) Matrix4Impl::SetData +S_PROCREF: 0x00000000: ( 154, 00001584) LegoInputManager::ProcessOneEvent +S_CONSTANT: Type: 0x100F, Value: 13, MEM_BAD_HANDLE +S_PROCREF: 0x00000000: ( 81, 000005E4) MxMediaManager::RemovePresenter +S_PROCREF: 0x00000000: ( 56, 00000110) MxStreamChunk::ReadChunk +S_PROCREF: 0x00000000: ( 115, 00000438) MxControlPresenter::AddToManager +S_UDT: T_ULONG(0022), DWORD +S_PROCREF: 0x00000000: ( 129, 00000858) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 109, 00000500) MxDiskStreamProviderThread::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 130, 00000228) LegoVehicleBuildState::IsA +S_PROCREF: 0x00000000: ( 160, 00000178) LegoEntityPresenter::IsA +S_PROCREF: 0x00000000: ( 66, 00000130) MxRAMStreamProvider::ClassName +S_UDT: T_32PUSHORT(0421), PWORD +S_PROCREF: 0x00000000: ( 79, 000001CC) MxMIDIPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00000590) MxList::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HGLRC +S_PROCREF: 0x00000000: ( 10, 000017FC) TglImpl::RendererImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 147, 00003614) Act3State::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00001370) Tgl::Unk::~Unk +S_PROCREF: 0x00000000: ( 145, 000006DC) LegoMemoryStream::`scalar deleting destructor' +S_GDATA32: [0004:00000E1C], Type: 0x1065, g_infodoorScript +S_PROCREF: 0x00000000: ( 195, 000002AC) Helicopter::~Helicopter +S_CONSTANT: Type: 0x106D, Value: 3, D3DRMPROJECT_RIGHTHANDORTHOGRAPHIC +S_PROCREF: 0x00000000: ( 112, 00000910) list >::~list > +S_PROCREF: 0x00000000: ( 74, 0000048C) MxObjectFactory::Create +S_PROCREF: 0x00000000: ( 102, 00000254) MxDSFile::`scalar deleting destructor' +S_CONSTANT: Type: 0x1013, Value: (LF_CHAR) -2(0xFE), MEM_POOL_CORRUPT_FATAL +S_PROCREF: 0x00000000: ( 167, 000001FC) LegoBuildingManager::ClassName +S_PROCREF: 0x00000000: ( 7, 00000628) TglImpl::ViewImpl::SetFrustrum +S_PROCREF: 0x00000000: ( 161, 00000420) LegoEntity::SetLocation +S_PROCREF: 0x00000000: ( 92, 000001B0) MxDSStill::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 18, 00000210) Score::VTable0x5c +S_PROCREF: 0x00000000: ( 100, 00000230) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 214, 000000F0) LegoWorld::VTable0x60 +S_PROCREF: 0x00000000: ( 73, 000002D4) Streamer +S_PROCREF: 0x00000000: ( 90, 0000072C) MxDSSubscriber::IsA +S_UDT: T_32PULONG(0422), LPD3DTEXTUREHANDLE +S_PROCREF: 0x00000000: ( 128, 00001048) LegoWorld::VTable0x64 +S_PROCREF: 0x00000000: ( 5, 00000134) TowTrackMissionState::ClassName +S_PROCREF: 0x00000000: ( 49, 000003A0) MxTickleManager::SetClientTickleInterval +S_PROCREF: 0x00000000: ( 129, 000011C0) MxPtrListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 128, 0000144C) LegoWorld::VTable0x68 +S_CONSTANT: Type: 0x2E6D, Value: 0, FromParent +S_PROCREF: 0x00000000: ( 39, 00000150) MxVideoPresenter::LoadFrame +S_PROCREF: 0x00000000: ( 20, 00000114) RegistrationBook::ClassName +S_PROCREF: 0x00000000: ( 20, 000002E0) RegistrationBook::Notify +S_PROCREF: 0x00000000: ( 103, 00000100) MxDSEvent::ClassName +S_PROCREF: 0x00000000: ( 65, 00001414) MxPtrList::~MxPtrList +S_PROCREF: 0x00000000: ( 138, 000004E0) LegoRace::~LegoRace +S_PROCREF: 0x00000000: ( 65, 00001E78) MxListCursor::operator= +S_PROCREF: 0x00000000: ( 157, 0000008C) LegoFullScreenMovie::LegoFullScreenMovie +S_PROCREF: 0x00000000: ( 201, 00000100) DuneBuggy::ClassName +S_UDT: T_32PREAL32(0440), LPD3DVALUE +S_UDT: T_32PVOID(0403), HMODULE +S_PROCREF: 0x00000000: ( 10, 00000C38) TglImpl::RendererImpl::CreateCamera +S_PROCREF: 0x00000000: ( 62, 000000D8) MxSemaphore::Init +S_PROCREF: 0x00000000: ( 134, 00000CA8) num_get > >::id +S_PROCREF: 0x00000000: ( 160, 00000350) LegoEntityPresenter::SetBackend +S_PROCREF: 0x00000000: ( 68, 000008E8) MxPresenter::SendToCompositePresenter +S_PROCREF: 0x00000000: ( 161, 000007C0) LegoEntity::VTable0x4c +S_PROCREF: 0x00000000: ( 161, 00000670) LegoEntity::VTable0x3c +S_PROCREF: 0x00000000: ( 137, 000001D0) LegoROI::configureLegoROI +S_PROCREF: 0x00000000: ( 200, 000002D0) ElevatorBottom::Notify +S_PROCREF: 0x00000000: ( 158, 000001EC) LegoFlcTexturePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 80, 000002DC) MxMediaPresenter::FUN_100b5650 +S_PROCREF: 0x00000000: ( 21, 00001424) Vector3Impl::AddVectorImpl +S_PROCREF: 0x00000000: ( 7, 0000019C) TglImpl::ViewImpl::ViewportCreateAppData +S_PROCREF: 0x00000000: ( 129, 00000ABC) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 142, 000002F0) LegoPathController::Tickle +S_PROCREF: 0x00000000: ( 204, 000001A4) CarRace::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 00000EEC) MxStreamController::RemoveSubscriber +S_PROCREF: 0x00000000: ( 68, 000007D4) MxPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 79, 0000057C) MxMIDIPresenter::PutData +S_PROCREF: 0x00000000: ( 146, 000000B0) SoundManager +S_PROCREF: 0x00000000: ( 166, 00000110) LegoCacheSound::ClassName +S_CONSTANT: Type: 0x2E6F, Value: 1, D3DRMWRAP_CYLINDER +S_PROCREF: 0x00000000: ( 177, 00000300) Lego3DManager::Destroy +S_PROCREF: 0x00000000: ( 146, 00001D38) LegoOmni::CreateBackgroundAudio +S_PROCREF: 0x00000000: ( 116, 00000BE4) MxCompositePresenter::VTable0x60 +S_PROCREF: 0x00000000: ( 139, 000001EC) LegoPlantManager::~LegoPlantManager +S_PROCREF: 0x00000000: ( 118, 00000438) MxBitmap::Read +S_PROCREF: 0x00000000: ( 21, 00000088) Vector2Impl::AddVectorImpl +S_PROCREF: 0x00000000: ( 138, 00000168) LegoRace::VTable0x5c +S_PROCREF: 0x00000000: ( 119, 00000B5C) MxBackgroundAudioManager::RaiseVolume +S_PROCREF: 0x00000000: ( 118, 0000089C) MxBitmap::SetBitDepth +S_PROCREF: 0x00000000: ( 42, 000003A4) MxVideoManager::UpdateRegion +S_PROCREF: 0x00000000: ( 25, 00000560) Matrix4Impl::SetTranslation +S_UDT: T_UCHAR(0020), u_char +S_PROCREF: 0x00000000: ( 57, 00000158) MxStillPresenter::LoadHeader +S_PROCREF: 0x00000000: ( 24, 00000350) OrientableROI::GetWorldBoundingBox +S_PROCREF: 0x00000000: ( 97, 000003E4) MxDSParallelAction::Clone +S_UDT: T_32PVOID(0403), RPC_NS_HANDLE +S_CONSTANT: Type: 0x4788, Value: (LF_ULONG) 2147483647, D3DVT_FORCE_DWORD +S_PROCREF: 0x00000000: ( 146, 00000BAC) LegoOmni::~LegoOmni +S_CONSTANT: Type: 0x1077, Value: 2, D3DRMSORT_FRONTTOBACK +S_PROCREF: 0x00000000: ( 10, 000001E0) Tgl::Renderer::~Renderer +S_PROCREF: 0x00000000: ( 132, 000001D4) CheckIfEntityExists +S_PROCREF: 0x00000000: ( 74, 00000088) MxObjectFactory::MxObjectFactory +S_CONSTANT: Type: 0x1069, Value: 1, D3DRMTEXTURE_LINEAR +S_PROCREF: 0x00000000: ( 13, 000000F0) TglImpl::GroupImpl::SetTransformation +S_GDATA32: [0004:00001560], Type: T_INT4(0074), g_useMutex +S_PROCREF: 0x00000000: ( 2, 000002FC) Tgl::Array::Array +S_PROCREF: 0x00000000: ( 171, 000003E4) LegoAnimationManager::FUN_1005f6d0 +S_PROCREF: 0x00000000: ( 201, 000001B0) DuneBuggy::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 131, 00000090) LegoUnkSaveDataWriter::WriteSaveData3 +S_PROCREF: 0x00000000: ( 109, 00000EA0) MxDiskStreamProvider::GetStreamBuffersNum +S_PROCREF: 0x00000000: ( 155, 0000041C) LegoLoopingAnimPresenter::`scalar deleting destructor' +S_GDATA32: [0004:0000B35C], Type: T_REAL32(0040), g_userMaxLodPower +S_PROCREF: 0x00000000: ( 103, 000001B0) MxDSEvent::`scalar deleting destructor' +S_CONSTANT: Type: 0x1050, Value: 10, ExtraActionType_notify +S_CONSTANT: Type: 0x104E, Value: 7, MxDSType_ParallelAction +S_PROCREF: 0x00000000: ( 154, 00000224) LegoInputManager::~LegoInputManager +S_PROCREF: 0x00000000: ( 125, 0000068C) MxType4NotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 39, 00000E14) MxVideoPresenter::EndAction +S_PROCREF: 0x00000000: ( 26, 000001CC) RadioState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00003564) Act3State::ClassName +S_PROCREF: 0x00000000: ( 4, 00000914) ViewLODListManager::Create +S_PROCREF: 0x00000000: ( 107, 0000024C) MxDSAction::`scalar deleting destructor' +S_UDT: T_32PUCHAR(0420), PBYTE +S_CONSTANT: Type: 0x100D, Value: 1, Success +S_PROCREF: 0x00000000: ( 13, 0000050C) Tgl::Texture::~Texture +S_PROCREF: 0x00000000: ( 60, 00000A08) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00002F20) LegoJetski::IsA +S_PROCREF: 0x00000000: ( 148, 00000180) LegoNavController::IsA +S_PROCREF: 0x00000000: ( 92, 00000100) MxDSStill::ClassName +S_CONSTANT: Type: 0x106B, Value: 0, D3DRMCOMBINE_REPLACE +S_PROCREF: 0x00000000: ( 30, 00000080) RaceCar::RaceCar +S_PROCREF: 0x00000000: ( 138, 000000E8) LegoRace::VTable0x7c +S_PROCREF: 0x00000000: ( 7, 000007BC) TglImpl::ViewImpl::GetBackgroundColor +S_GDATA32: [0004:00003BF0], Type: 0x1279, g_fullScreenRect +S_PROCREF: 0x00000000: ( 155, 000004D0) LegoHideAnimPresenter::Init +S_PROCREF: 0x00000000: ( 21, 00001308) Vector4Impl::NormalizeQuaternion +S_UDT: T_ULONG(0022), D3DTEXTUREHANDLE +S_PROCREF: 0x00000000: ( 81, 00000418) MxMediaManager::Tickle +S_PROCREF: 0x00000000: ( 171, 000002F8) LegoAnimationManager::~LegoAnimationManager +S_PROCREF: 0x00000000: ( 146, 00001EE0) LegoOmni::StopTimer +S_PROCREF: 0x00000000: ( 96, 00000D84) MxDSSelectAction::GetSizeOnDisk +S_CONSTANT: Type: 0x1071, Value: 2, D3DRMMATERIAL_FROMFRAME +S_PROCREF: 0x00000000: ( 68, 00000B38) MxPresenter::CreateEntityBackend +S_UDT: T_32PULONG(0422), LPDWORD +S_PROCREF: 0x00000000: ( 111, 000007E0) MxDirectDraw::DDSetMode +S_PROCREF: 0x00000000: ( 10, 00000B18) Tgl::Group::~Group +S_PROCREF: 0x00000000: ( 10, 000010E4) Tgl::Light::~Light +S_PROCREF: 0x00000000: ( 80, 000007A0) MxMediaPresenter::DoneTickle +S_CONSTANT: Type: 0x4790, Value: 77, D3DRENDERSTATE_STIPPLEPATTERN13 +S_CONSTANT: Type: 0x4790, Value: 76, D3DRENDERSTATE_STIPPLEPATTERN12 +S_PROCREF: 0x00000000: ( 195, 000003CC) Helicopter::GetState +S_CONSTANT: Type: 0x4790, Value: 75, D3DRENDERSTATE_STIPPLEPATTERN11 +S_PROCREF: 0x00000000: ( 128, 00000A60) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 61, 000003B0) MxSmack::GetRect +S_CONSTANT: Type: 0x4790, Value: 74, D3DRENDERSTATE_STIPPLEPATTERN10 +S_CONSTANT: Type: 0x4790, Value: 81, D3DRENDERSTATE_STIPPLEPATTERN17 +S_PROCREF: 0x00000000: ( 100, 00000AEC) MxDSMultiAction::HasId +S_CONSTANT: Type: 0x4790, Value: 80, D3DRENDERSTATE_STIPPLEPATTERN16 +S_UDT: T_32PVOID(0403), HCOLORSPACE +S_CONSTANT: Type: 0x4790, Value: 79, D3DRENDERSTATE_STIPPLEPATTERN15 +S_PROCREF: 0x00000000: ( 151, 00000094) LegoLocomotionAnimPresenter::LegoLocomotionAnimPresenter +S_CONSTANT: Type: 0x4790, Value: 78, D3DRENDERSTATE_STIPPLEPATTERN14 +S_CONSTANT: Type: 0x4790, Value: 83, D3DRENDERSTATE_STIPPLEPATTERN19 +S_CONSTANT: Type: 0x4790, Value: 82, D3DRENDERSTATE_STIPPLEPATTERN18 +S_PROCREF: 0x00000000: ( 110, 00001304) list >::_Buynode +S_PROCREF: 0x00000000: ( 118, 000003B8) MxBitmap::ImportBitmap +S_PROCREF: 0x00000000: ( 99, 00000558) MxDSObject::Deserialize +S_CONSTANT: Type: 0x1050, Value: 6, ExtraActionType_run +S_PROCREF: 0x00000000: ( 195, 00000470) Helicopter::VTable0xcc +S_CONSTANT: Type: 0x1050, Value: 7, ExtraActionType_exit +S_PROCREF: 0x00000000: ( 47, 00000178) MxTransitionManager::IsA +S_PROCREF: 0x00000000: ( 66, 0000008C) MxRAMStreamProvider::MxRAMStreamProvider +S_UDT: T_ULONG(0022), D3DCOLORMODEL +S_CONSTANT: Type: 0x1001, Value: 2, XLAT_CLIENT +S_PROCREF: 0x00000000: ( 204, 000000F8) CarRace::ClassName +S_PROCREF: 0x00000000: ( 55, 00000B4C) MxStreamController::~MxStreamController +S_PROCREF: 0x00000000: ( 73, 00000298) AtomIdCounterSet +S_PROCREF: 0x00000000: ( 129, 0000185C) LegoVideoManager::DisableRMDevice +S_PROCREF: 0x00000000: ( 76, 000006BC) MxNotificationManager::Create +S_PROCREF: 0x00000000: ( 112, 00001C60) MxDeviceEnumerate::FUN_1009d370 +S_PROCREF: 0x00000000: ( 158, 0000018C) LegoFlcTexturePresenter::ClassName +S_PROCREF: 0x00000000: ( 65, 000014B8) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 80, 0000034C) MxMediaPresenter::NextChunk +S_PROCREF: 0x00000000: ( 129, 00001108) MxListCursor::`scalar deleting destructor' +S_GDATA32: [0004:00000E28], Type: 0x1065, g_regbookScript +S_PROCREF: 0x00000000: ( 120, 000000FC) MxAutoLocker::~MxAutoLocker +S_PROCREF: 0x00000000: ( 13, 00000088) TglImpl::GroupImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 59, 0000018C) MxSoundManager::~MxSoundManager +S_PROCREF: 0x00000000: ( 183, 00000088) IslePathActor::IslePathActor +S_PROCREF: 0x00000000: ( 55, 0000111C) MxStreamController::FUN_100c1800 +S_PROCREF: 0x00000000: ( 104, 000002A8) MxDSChunk::ReturnE +S_PROCREF: 0x00000000: ( 209, 00000114) AnimState::ClassName +S_PROCREF: 0x00000000: ( 192, 00000224) Hospital::~Hospital +S_PROCREF: 0x00000000: ( 110, 0000067C) MxStreamListMxDSAction::~MxStreamListMxDSAction +S_PROCREF: 0x00000000: ( 90, 000009E8) MxStreamChunkListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 116, 000002F0) MxCompositePresenter::IsA +S_CONSTANT: Type: 0x478E, Value: 4, D3DLIGHTSTATE_FOGMODE +S_PROCREF: 0x00000000: ( 73, 0000102C) MxVariableTable::Destroy +S_PROCREF: 0x00000000: ( 22, 00000150) RealtimeView::GetUserMaxLOD +S_UDT: T_REAL32(0040), MxFloat +S_CONSTANT: Type: 0x104C, Value: 0, LookupMode_Exact +S_PROCREF: 0x00000000: ( 146, 000022C8) SetOmniUserMessage +S_PROCREF: 0x00000000: ( 174, 000000F8) LegoActionControlPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 162, 0000011C) LegoControlManager::ClassName +S_PROCREF: 0x00000000: ( 145, 00000238) LegoPalettePresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x106F, Value: 0, D3DRMCONSTRAIN_Z +S_PROCREF: 0x00000000: ( 216, 00000954) Act2Brick::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 174, 00000094) LegoActionControlPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 60, 0000114C) MxSmkPresenter::AddToManager +S_PROCREF: 0x00000000: ( 18, 0000050C) Score::Stop +S_PROCREF: 0x00000000: ( 74, 00000928) MxStillPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00003158) LegoRaceCar::IsA +S_UDT: T_32PVOID(0403), HMMIO +S_PROCREF: 0x00000000: ( 141, 0000051C) LegoPathPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 156, 00000590) LegoGameState::FUN_1003a720 +S_PROCREF: 0x00000000: ( 90, 00000DB8) MxDSSubscriber::FUN_100b8360 +S_CONSTANT: Type: 0x2E73, Value: 1, D3DRMCOLOR_FROMVERTEX +S_PROCREF: 0x00000000: ( 76, 00000E14) MxNotificationManager::Register +S_GDATA32: [0004:00003C20], Type: T_REAL32(0040), g_userMaxLod +S_PROCREF: 0x00000000: ( 106, 000000FC) MxDSAnim::ClassName +S_PROCREF: 0x00000000: ( 162, 00000260) LegoControlManager::~LegoControlManager +S_PROCREF: 0x00000000: ( 21, 00000D74) Vector4Impl::AddVectorImpl +S_PROCREF: 0x00000000: ( 116, 0000047C) List::~List +S_CONSTANT: Type: 0x1077, Value: 1, D3DRMSORT_NONE +S_PROCREF: 0x00000000: ( 204, 00000080) CarRace::CarRace +S_PROCREF: 0x00000000: ( 68, 000003CC) MxPresenter::Destroy +S_PROCREF: 0x00000000: ( 147, 00001888) LegoObjectFactory::Create +S_PROCREF: 0x00000000: ( 47, 00000368) MxTransitionManager::Tickle +S_CONSTANT: Type: 0x1007, Value: 2, Spot +S_GDATA32: [0004:00001750], Type: T_INT4(0074), g_isPaletteIndexed8 +S_CONSTANT: Type: 0x1059, Value: 7, c_notificationKeyPress +S_PROCREF: 0x00000000: ( 148, 0000037C) LegoNavController::ResetToDefault +S_PROCREF: 0x00000000: ( 161, 000006C4) LegoEntity::VTable0x40 +S_CONSTANT: Type: 0x4790, Value: 27, D3DRENDERSTATE_ALPHABLENDENABLE +S_PROCREF: 0x00000000: ( 119, 00000A5C) MxBackgroundAudioManager::Stop +S_PROCREF: 0x00000000: ( 56, 00000424) MxStreamChunk::IntoTime +S_PROCREF: 0x00000000: ( 82, 00000434) MxLoopingSmkPresenter::NextFrame +S_PROCREF: 0x00000000: ( 146, 000006F4) RegisterScripts +S_GDATA32: [0004:00000E38], Type: 0x1065, g_garageScript +S_PROCREF: 0x00000000: ( 197, 00000190) GasStationState::IsA +S_UDT: T_INT4(0074), INT +S_CONSTANT: Type: 0x1059, Value: 18, TYPE18 +S_PROCREF: 0x00000000: ( 73, 0000042C) DeleteObject +S_PROCREF: 0x00000000: ( 176, 00000310) Lego3DView::PickROI +S_PROCREF: 0x00000000: ( 25, 0000041C) Matrix4Impl::SetIdentity +S_CONSTANT: Type: 0x4790, Value: 36, D3DRENDERSTATE_FOGTABLESTART +S_PROCREF: 0x00000000: ( 22, 000001E4) RealtimeView::UpdateMaxLOD +S_CONSTANT: Type: 0x1050, Value: 3, ExtraActionType_close +S_PROCREF: 0x00000000: ( 107, 000003EC) MxDSAction::SetUnknown90 +S_UDT: T_ULONG(0022), LCID +S_UDT: T_32PVOID(0403), HICON +S_PROCREF: 0x00000000: ( 151, 0000021C) LegoLocomotionAnimPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 119, 000007B0) MxBackgroundAudioManager::Notify +S_UDT: T_32PRCHAR(0470), HPSTR +S_PROCREF: 0x00000000: ( 119, 00000168) MxBackgroundAudioManager::ClassName +S_UDT: T_32PRCHAR(0470), LPSTR +S_PROCREF: 0x00000000: ( 93, 0000014C) MxDSSource::GetBuffer +S_PROCREF: 0x00000000: ( 4, 00000E6C) ViewLODListManager::Lookup +S_PROCREF: 0x00000000: ( 218, 00000338) TglSurface::Destroy +S_GDATA32: [0004:000004AC], Type: T_32PRCHAR(0470), g_delimiter +S_CONSTANT: Type: 0x4790, Value: 12, D3DRENDERSTATE_ROP2 +S_PROCREF: 0x00000000: ( 129, 00001944) MxList::~MxList +S_PROCREF: 0x00000000: ( 146, 000016A0) list >::~list > +S_UDT: T_32PVOID(0403), HBITMAP +S_PROCREF: 0x00000000: ( 25, 0000075C) Matrix4Impl::FromQuaternion +S_PROCREF: 0x00000000: ( 107, 00000458) MxDSAction::GetUnknown90 +S_PROCREF: 0x00000000: ( 145, 00000350) LegoPalettePresenter::Init +S_CONSTANT: Type: 0x104E, Value: 4, MxDSType_Sound +S_UDT: T_32PVOID(0403), PSID +S_PROCREF: 0x00000000: ( 57, 00000540) MxStillPresenter::VTable0x88 +S_PROCREF: 0x00000000: ( 186, 000001E0) InfocenterState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 3, 00000090) ViewManager::RemoveAll +S_PROCREF: 0x00000000: ( 137, 00000514) OrientableROI::`scalar deleting destructor' +S_UDT: T_REAL32(0040), D3DVALUE +S_PROCREF: 0x00000000: ( 21, 00000770) Vector2Impl::Add +S_PROCREF: 0x00000000: ( 21, 000007D0) Vector2Impl::Add +S_PROCREF: 0x00000000: ( 21, 00000830) Vector2Impl::Add +S_PROCREF: 0x00000000: ( 155, 00000090) LegoHideAnimPresenter::LegoHideAnimPresenter +S_PROCREF: 0x00000000: ( 116, 00000AD8) MxCompositePresenter::VTable0x5c +S_PROCREF: 0x00000000: ( 10, 00000A6C) TglImpl::GroupImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 214, 00000260) Act3::~Act3 +S_PROCREF: 0x00000000: ( 73, 00000080) DeleteObjects +S_PROCREF: 0x00000000: ( 113, 00000208) MxCriticalSection::SetDoMutex +S_PROCREF: 0x00000000: ( 4, 00000DE0) LODList::~LODList +S_PROCREF: 0x00000000: ( 129, 000002FC) LegoVideoManager::Create +S_GDATA32: [0004:00000E14], Type: 0x1065, g_isleScript +S_PROCREF: 0x00000000: ( 90, 00000E90) MxList::~MxList +S_PROCREF: 0x00000000: ( 100, 00000298) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 160, 0000008C) LegoEntityPresenter::LegoEntityPresenter +S_GDATA32: [0004:0000B5C7], Type: T_UCHAR(0020), ??_B?1???id@?$ctype@D@@$D@@9@9 +S_PROCREF: 0x00000000: ( 54, 00000238) MxStreamer::IsA +S_PROCREF: 0x00000000: ( 117, 00000200) MxCompositeMediaPresenter::`scalar deleting destructor' +S_GDATA32: [0004:0000B5C5], Type: T_UCHAR(0020), ??_B?1???id@?$ctype@G@@$D@@9@9 +S_PROCREF: 0x00000000: ( 82, 000001E4) MxLoopingSmkPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 21, 00001794) Vector3Impl::Clear +S_PROCREF: 0x00000000: ( 70, 000003D4) MxPalette::SetEntries +S_PROCREF: 0x00000000: ( 127, 00000264) LegoWorldPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 134, 00000D14) ctype::id +S_PROCREF: 0x00000000: ( 51, 000003B8) MxString::operator= +S_PROCREF: 0x00000000: ( 51, 0000041C) MxString::operator= +S_PROCREF: 0x00000000: ( 169, 0000008C) LegoAnimPresenter::LegoAnimPresenter +S_PROCREF: 0x00000000: ( 146, 00001F30) Start +S_PROCREF: 0x00000000: ( 13, 00000214) TglImpl::GroupImpl::SetTexture +S_PROCREF: 0x00000000: ( 112, 00001360) MxDeviceEnumerate::DevicesEnumerateCallback +S_PROCREF: 0x00000000: ( 146, 00001260) MxCollection::Compare +S_GDATA32: [0004:00000A94], Type: T_REAL32(0040), g_turnMaxSpeed +S_UDT: T_32PVOID(0403), HMIXER +S_PROCREF: 0x00000000: ( 185, 00000458) Isle::StopAction +S_UDT: T_32PUSHORT(0421), LPOLESTR +S_PROCREF: 0x00000000: ( 124, 00000598) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::_Insert +S_PROCREF: 0x00000000: ( 51, 00000480) MxString::operator+ +S_GDATA32: [0004:000002F8], Type: T_32PRCHAR(0470), g_strVISIBILITY +S_PROCREF: 0x00000000: ( 167, 00000110) LegoBuildingManager::LegoBuildingManager +S_PROCREF: 0x00000000: ( 111, 000001B0) MxDirectDraw::GetPrimaryBitDepth +S_PROCREF: 0x00000000: ( 55, 000011E4) MxNextActionDataStart::ClassName +S_LPROCREF: 0x00000000: ( 134, 00000A5C) $E39 +S_PROCREF: 0x00000000: ( 21, 00000498) Vector2Impl::Clear +S_PROCREF: 0x00000000: ( 13, 000002A0) TglImpl::GroupImpl::GetTexture +S_PROCREF: 0x00000000: ( 138, 0000035C) LegoRace::VTable0x70 +S_PROCREF: 0x00000000: ( 104, 00000150) MxDSChunk::IsA +S_PROCREF: 0x00000000: ( 142, 0000011C) LegoPathController::ClassName +S_PROCREF: 0x00000000: ( 134, 00000768) LegoFileStream::Seek +S_PROCREF: 0x00000000: ( 137, 000003BC) ROI::ROI +S_PROCREF: 0x00000000: ( 156, 00000600) LegoGameState::HandleAction +S_PROCREF: 0x00000000: ( 179, 00000120) JukeBoxEntity::ClassName +S_PROCREF: 0x00000000: ( 146, 00000210) AnimationManager +S_PROCREF: 0x00000000: ( 151, 00000148) LegoLocomotionAnimPresenter::ClassName +S_PROCREF: 0x00000000: ( 147, 00002AF0) LegoAct2State::ClassName +S_PROCREF: 0x00000000: ( 105, 00000408) MxDSBuffer::FUN_100c67b0 +S_UDT: T_REAL64(0041), DATE +S_PROCREF: 0x00000000: ( 146, 0000024C) NavController +S_CONSTANT: Type: 0x4790, Value: 87, D3DRENDERSTATE_STIPPLEPATTERN23 +S_CONSTANT: Type: 0x4790, Value: 86, D3DRENDERSTATE_STIPPLEPATTERN22 +S_CONSTANT: Type: 0x4790, Value: 85, D3DRENDERSTATE_STIPPLEPATTERN21 +S_PROCREF: 0x00000000: ( 54, 00000468) MxStreamerSubClass2::~MxStreamerSubClass2 +S_PROCREF: 0x00000000: ( 154, 00000CB8) MxQueue::~MxQueue +S_PROCREF: 0x00000000: ( 54, 00000298) list >::~list > +S_CONSTANT: Type: 0x4790, Value: 84, D3DRENDERSTATE_STIPPLEPATTERN20 +S_PROCREF: 0x00000000: ( 110, 00000844) List::~List +S_PROCREF: 0x00000000: ( 183, 000002C8) IslePathActor::VTable0xec +S_CONSTANT: Type: 0x4790, Value: 91, D3DRENDERSTATE_STIPPLEPATTERN27 +S_PROCREF: 0x00000000: ( 210, 00000090) AmbulanceMissionState::AmbulanceMissionState +S_CONSTANT: Type: 0x4790, Value: 90, D3DRENDERSTATE_STIPPLEPATTERN26 +S_CONSTANT: Type: 0x4790, Value: 89, D3DRENDERSTATE_STIPPLEPATTERN25 +S_PROCREF: 0x00000000: ( 169, 000005D8) LegoAnimPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 186, 00000124) InfocenterState::ClassName +S_CONSTANT: Type: 0x4790, Value: 88, D3DRENDERSTATE_STIPPLEPATTERN24 +S_PROCREF: 0x00000000: ( 128, 00000B04) MxCollection::Compare +S_GDATA32: [0004:00003C40], Type: T_UCHAR(0020), g_unk101013d8 +S_PROCREF: 0x00000000: ( 134, 000007D0) LegoFileStream::Open +S_CONSTANT: Type: 0x4790, Value: 93, D3DRENDERSTATE_STIPPLEPATTERN29 +S_CONSTANT: Type: 0x4790, Value: 92, D3DRENDERSTATE_STIPPLEPATTERN28 +S_PROCREF: 0x00000000: ( 108, 00000834) MxDisplaySurface::VTable0x28 +S_PROCREF: 0x00000000: ( 7, 00000BC8) TglImpl::ViewImpl::TransformScreenToWorld +S_PROCREF: 0x00000000: ( 80, 000003B8) MxMediaPresenter::StartAction +S_PROCREF: 0x00000000: ( 138, 00000284) LegoRace::IsA +S_PROCREF: 0x00000000: ( 59, 00000440) MxSoundManager::SetVolume +S_PROCREF: 0x00000000: ( 143, 00000210) LegoPathActor::VTable0x80 +S_PROCREF: 0x00000000: ( 143, 000002C0) LegoPathActor::VTable0x84 +S_PROCREF: 0x00000000: ( 152, 00000094) LegoLoadCacheSoundPresenter::LegoLoadCacheSoundPresenter +S_PROCREF: 0x00000000: ( 143, 00000268) LegoPathActor::VTable0x88 +S_PROCREF: 0x00000000: ( 107, 000002C4) MxDSAction::GetDuration +S_UDT: T_32PVOID(0403), HHOOK +S_PROCREF: 0x00000000: ( 126, 00000158) Motorcycle::IsA +S_PROCREF: 0x00000000: ( 54, 000004FC) MxStreamerSubClass3::~MxStreamerSubClass3 +S_PROCREF: 0x00000000: ( 112, 00001A74) MxDeviceEnumerate::FUN_1009d0d0 +S_PROCREF: 0x00000000: ( 128, 00001558) LegoWorld::Stop +S_PROCREF: 0x00000000: ( 112, 00001CE4) MxDeviceEnumerate::FUN_1009d3d0 +S_PROCREF: 0x00000000: ( 152, 00000814) LegoLoadCacheSoundPresenter::Destroy +S_UDT: T_LONG(0012), SCODE +S_PROCREF: 0x00000000: ( 21, 000011E8) Vector4Impl::Clear +S_PROCREF: 0x00000000: ( 39, 00000A54) MxVideoPresenter::PutFrame +S_CONSTANT: Type: 0x1071, Value: 0, D3DRMMATERIAL_FROMMESH +S_PROCREF: 0x00000000: ( 129, 00000DB0) LegoVideoManager::Tickle +S_UDT: T_QUAD(0013), fpos_t +S_PROCREF: 0x00000000: ( 146, 0000068C) PickEntity +S_PROCREF: 0x00000000: ( 107, 00000318) MxDSAction::SetDuration +S_PROCREF: 0x00000000: ( 162, 000003D4) LegoControlManager::Tickle +S_PROCREF: 0x00000000: ( 65, 00001A44) MxRegionLeftRightListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 183, 000001D0) IslePathActor::VTable0xe4 +S_PROCREF: 0x00000000: ( 124, 00000488) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::iterator::_Dec +S_PROCREF: 0x00000000: ( 183, 00000178) IslePathActor::VTable0xe0 +S_PROCREF: 0x00000000: ( 127, 00000708) MxListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 101, 0000043C) MxDSMediaAction::GetSizeOnDisk +S_PROCREF: 0x00000000: ( 147, 00002A88) LegoCarRaceActor::IsA +S_PROCREF: 0x00000000: ( 105, 000002BC) MxDSBuffer::AllocateBuffer +S_PROCREF: 0x00000000: ( 217, 00000274) Act1State::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 183, 00000228) IslePathActor::VTable0xe8 +S_PROCREF: 0x00000000: ( 39, 00000EF8) MxVideoPresenter::PutData +S_PROCREF: 0x00000000: ( 214, 00000144) Act3::ClassName +S_GDATA32: [0004:000007FC], Type: T_32PRCHAR(0470), g_playersGSI +S_PROCREF: 0x00000000: ( 125, 00000208) MxEndActionNotificationParam::Clone +S_PROCREF: 0x00000000: ( 118, 000001DC) MxBitmap::~MxBitmap +S_GDATA32: [0004:00003BEC], Type: T_LONG(0012), MxTimer::g_lastTimeTimerStarted +S_PROCREF: 0x00000000: ( 47, 00000B18) MxTransitionManager::SubmitCopyRect +S_PROCREF: 0x00000000: ( 146, 00001BE8) LegoOmni::NotifyCurrentEntity +S_PROCREF: 0x00000000: ( 73, 000001E8) NotificationManager +S_CONSTANT: Type: 0x106F, Value: 1, D3DRMCONSTRAIN_Y +S_PROCREF: 0x00000000: ( 161, 000004D0) LegoEntity::FUN_10010c30 +S_UDT: T_ULONG(0022), u_long +S_UDT: T_INT4(0074), MxTime +S_PROCREF: 0x00000000: ( 102, 00000080) MxDSFile::~MxDSFile +S_PROCREF: 0x00000000: ( 10, 00001204) TglImpl::RendererImpl::CreateUnk +S_PROCREF: 0x00000000: ( 154, 0000098C) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00001B70) MxOmni::HandleActionEnd +S_PROCREF: 0x00000000: ( 110, 00001480) MxDiskStreamController::VTable0x20 +S_PROCREF: 0x00000000: ( 110, 00000FA0) MxDiskStreamController::VTable0x30 +S_PROCREF: 0x00000000: ( 199, 00000158) GasStation::IsA +S_GDATA32: [0004:00000E3C], Type: 0x1065, g_act2mainScript +S_UDT: T_UINT4(0075), _dev_t +S_PROCREF: 0x00000000: ( 87, 000004A0) MxEventPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 115, 00000494) MxControlPresenter::StartAction +S_PROCREF: 0x00000000: ( 115, 0000011C) MxControlPresenter::ClassName +S_PROCREF: 0x00000000: ( 143, 00000318) LegoPathActor::VTable0x8c +S_PROCREF: 0x00000000: ( 54, 0000017C) MxStreamerSubClass1::~MxStreamerSubClass1 +S_PROCREF: 0x00000000: ( 2, 00000254) Tgl::Array,4>::~Array,4> +S_PROCREF: 0x00000000: ( 107, 0000052C) MxDSAction::CopyFrom +S_PROCREF: 0x00000000: ( 54, 00000EBC) MxStreamer::FUN_100b9b30 +S_PROCREF: 0x00000000: ( 165, 0000017C) LegoCameraController::IsA +S_PROCREF: 0x00000000: ( 27, 0000019C) Radio::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 195, 00000798) Helicopter::VTable0x70 +S_PROCREF: 0x00000000: ( 42, 00000770) MxVideoManager::Create +S_UDT: T_32PVOID(0403), HDWP +S_CONSTANT: Type: 0x1009, Value: 1, Orthographic +S_PROCREF: 0x00000000: ( 89, 00000234) MxEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 30, 00000148) RaceCar::IsA +S_PROCREF: 0x00000000: ( 165, 0000026C) LegoCameraController::~LegoCameraController +S_PROCREF: 0x00000000: ( 80, 00000640) MxMediaPresenter::Tickle +S_PROCREF: 0x00000000: ( 15, 00000088) TglImpl::CameraImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 105, 00000104) MxDSBuffer::ClassName +S_PROCREF: 0x00000000: ( 42, 000003FC) MxVideoManager::SortPresenterList +S_PROCREF: 0x00000000: ( 146, 00000AD4) LegoOmni::IsA +S_PROCREF: 0x00000000: ( 157, 0000016C) LegoFullScreenMovie::SetValue +S_PROCREF: 0x00000000: ( 154, 00000F58) LegoInputManager::GetJoystickId +S_PROCREF: 0x00000000: ( 145, 00000788) LegoPalettePresenter::ReadyTickle +S_CONSTANT: Type: 0x1059, Value: 19, TYPE19 +S_PROCREF: 0x00000000: ( 61, 00000080) MxSmack::LoadHeader +S_PROCREF: 0x00000000: ( 164, 0000015C) LegoCarBuild::IsA +S_PROCREF: 0x00000000: ( 147, 00003BFC) InfoCenterEntity::IsA +S_PROCREF: 0x00000000: ( 170, 00000178) LegoAnimMMPresenter::IsA +S_PROCREF: 0x00000000: ( 11, 0000020C) TglImpl::MeshImpl::SetTextureMappingMode +S_CONSTANT: Type: 0x1019, Value: 2, PROXY_MARSHAL +S_PROCREF: 0x00000000: ( 101, 000002D8) MxDSMediaAction::CopyFrom +S_PROCREF: 0x00000000: ( 79, 000005D0) MxMIDIPresenter::EndAction +S_PROCREF: 0x00000000: ( 152, 000003FC) MxSoundPresenter::IsA +S_PROCREF: 0x00000000: ( 55, 000019F8) MxStreamController::FUN_100c20d0 +S_PROCREF: 0x00000000: ( 7, 00000268) ViewportDestroyCallback +S_PROCREF: 0x00000000: ( 147, 000048B8) LegoAct2State::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 165, 00000544) LegoCameraController::FUN_100128a0 +S_PROCREF: 0x00000000: ( 179, 000001D8) JukeBoxEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 50, 0000013C) MxTickleThread::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 11, 00000184) TglImpl::MeshImpl::SetTexture +S_GDATA32: [0004:00001484], Type: 0x18A6, g_someHandlerFunction +S_PROCREF: 0x00000000: ( 101, 0000034C) MxDSMediaAction::operator= +S_CONSTANT: Type: 0x1069, Value: 4, D3DRMTEXTURE_LINEARMIPNEAREST +S_PROCREF: 0x00000000: ( 118, 0000058C) MxBitmap::VTable0x2c +S_PROCREF: 0x00000000: ( 146, 000023D0) MxList::~MxList +S_PROCREF: 0x00000000: ( 55, 000004BC) list >::~list > +S_PROCREF: 0x00000000: ( 76, 00000614) list >::~list > +S_PROCREF: 0x00000000: ( 73, 00000CB0) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::erase +S_UDT: T_32PVOID(0403), PACCESS_TOKEN +S_CONSTANT: Type: 0x4790, Value: 3, D3DRENDERSTATE_TEXTUREADDRESS +S_PROCREF: 0x00000000: ( 42, 0000098C) MxVideoManager::Tickle +S_CONSTANT: Type: 0x1050, Value: 2, ExtraActionType_openram +S_CONSTANT: Type: 0x1067, Value: 0, D3DRMLIGHT_AMBIENT +S_PROCREF: 0x00000000: ( 154, 000003A4) MxCore::ClassName +S_PROCREF: 0x00000000: ( 137, 00000164) LegoROI::FUN_100a58f0 +S_PROCREF: 0x00000000: ( 169, 00000518) LegoAnimPresenter::ClassName +S_GDATA32: [0004:000002F0], Type: T_32PRCHAR(0470), g_strOBJECT +S_PROCREF: 0x00000000: ( 185, 000001F8) Isle::VTable0x60 +S_PROCREF: 0x00000000: ( 14, 00000220) TglImpl::DeviceImpl::SetShadingModel +S_PROCREF: 0x00000000: ( 148, 000003DC) LegoNavController::GetDefaults +S_PROCREF: 0x00000000: ( 10, 00000ED0) TglImpl::RendererImpl::CreateLight +S_CONSTANT: Type: 0x1015, Value: 0, MEM_POINTER_WILD +S_PROCREF: 0x00000000: ( 107, 00000744) MxDSAction::MergeFrom +S_CONSTANT: Type: 0x478A, Value: 6, D3DPT_TRIANGLEFAN +S_PROCREF: 0x00000000: ( 100, 00000690) MxDSMultiAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 22, 00000090) RealtimeView::SetUserMaxLOD +S_PROCREF: 0x00000000: ( 147, 000039C4) CarRaceState::IsA +S_PROCREF: 0x00000000: ( 2, 000003BC) Tgl::FloatMatrix4::~FloatMatrix4 +S_UDT: T_USHORT(0021), VARTYPE +S_PROCREF: 0x00000000: ( 105, 0000066C) MxDSBuffer::ParseChunk +S_PROCREF: 0x00000000: ( 127, 000007BC) MxDSActionListCursor::~MxDSActionListCursor +S_PROCREF: 0x00000000: ( 65, 00002114) MxList::~MxList +S_PROCREF: 0x00000000: ( 148, 0000008C) LegoNavController::LegoNavController +S_PROCREF: 0x00000000: ( 27, 000000F4) Radio::ClassName +S_PROCREF: 0x00000000: ( 10, 0000087C) Tgl::View::~View +S_PROCREF: 0x00000000: ( 73, 00001D1C) MxOmni::IsSound3D +S_PROCREF: 0x00000000: ( 127, 0000050C) list >::_Buynode +S_PROCREF: 0x00000000: ( 64, 0000029C) MxRegionCursor::~MxRegionCursor +S_PROCREF: 0x00000000: ( 137, 00000714) ViewROI::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HTASK +S_PROCREF: 0x00000000: ( 65, 00000648) MxPtrList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 47, 0000088C) MxTransitionManager::TransitionWipe +S_PROCREF: 0x00000000: ( 113, 0000008C) MxCriticalSection::MxCriticalSection +S_CONSTANT: Type: 0x4790, Value: 15, D3DRENDERSTATE_ALPHATESTENABLE +S_PROCREF: 0x00000000: ( 170, 0000008C) LegoAnimMMPresenter::LegoAnimMMPresenter +S_CONSTANT: Type: 0x1069, Value: 2, D3DRMTEXTURE_MIPNEAREST +S_PROCREF: 0x00000000: ( 217, 000001C4) Act1State::ClassName +S_PROCREF: 0x00000000: ( 189, 000004D4) Infocenter::VTable0x64 +S_PROCREF: 0x00000000: ( 147, 00002E64) LegoJetskiRaceActor::IsA +S_UDT: T_ULONG(0022), D3DCOLOR +S_PROCREF: 0x00000000: ( 147, 00003444) ScoreState::IsA +S_PROCREF: 0x00000000: ( 73, 00001DB8) MxOmni::DoesEntityExist +S_PROCREF: 0x00000000: ( 105, 000004EC) MxDSBuffer::CreateObject +S_PROCREF: 0x00000000: ( 129, 00001628) LegoVideoManager::SetSkyColor +S_PROCREF: 0x00000000: ( 42, 00000244) MxVideoManager::~MxVideoManager +S_UDT: T_USHORT(0021), u_short +S_PROCREF: 0x00000000: ( 180, 00000080) JukeBox::JukeBox +S_UDT: T_32PVOID(0403), RPC_AUTHZ_HANDLE +S_PROCREF: 0x00000000: ( 64, 00000954) MxRegionCursor::FUN_100c4a20 +S_PROCREF: 0x00000000: ( 2, 00000184) ViewROI::UpdateWorldData +S_PROCREF: 0x00000000: ( 25, 000000FC) Matrix4Impl::EqualsMatrixImpl +S_GDATA32: [0004:00001188], Type: T_INT4(0074), g_partPresenterConfig1 +S_PROCREF: 0x00000000: ( 90, 00000398) MxCollection::Compare +S_PROCREF: 0x00000000: ( 64, 000004BC) MxRegionCursor::VTable0x30 +S_PROCREF: 0x00000000: ( 54, 00000D2C) MxStreamer::FUN_100b99b0 +S_PROCREF: 0x00000000: ( 64, 000003AC) MxRegionCursor::VTable0x20 +S_PROCREF: 0x00000000: ( 96, 00000588) MxDSSelectAction::ClassName +S_PROCREF: 0x00000000: ( 182, 00000148) Jetski::IsA +S_PROCREF: 0x00000000: ( 209, 00000330) AnimState::SetFlag +S_PROCREF: 0x00000000: ( 192, 000001AC) Hospital::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 111, 00000F34) MxDirectDraw::Pause +S_PROCREF: 0x00000000: ( 100, 00000088) MxDSMultiAction::MxDSMultiAction +S_PROCREF: 0x00000000: ( 97, 000001E0) MxDSParallelAction::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 38, 000009D0) MxWavePresenter::Enable +S_UDT: T_ULONG(0022), _fsize_t +S_PROCREF: 0x00000000: ( 78, 00000564) MxMusicManager::SetMultiplier +S_PROCREF: 0x00000000: ( 99, 000004E8) MxDSObject::GetSizeOnDisk +S_UDT: T_INT4(0074), mbstate_t +S_PROCREF: 0x00000000: ( 38, 00000708) MxWavePresenter::DoneTickle +S_PROCREF: 0x00000000: ( 9, 000003C8) TglImpl::TglD3DRMIMAGE::FillRowsOfTexture +S_PROCREF: 0x00000000: ( 116, 00000D1C) MxCompositePresenter::Enable +S_PROCREF: 0x00000000: ( 111, 000006DC) MxDirectDraw::IsSupportedMode +S_CONSTANT: Type: 0x4790, Value: 95, D3DRENDERSTATE_STIPPLEPATTERN31 +S_PROCREF: 0x00000000: ( 65, 00002284) MxList::~MxList +S_PROCREF: 0x00000000: ( 129, 00001278) MxListCursor::~MxListCursor +S_CONSTANT: Type: 0x4790, Value: 94, D3DRENDERSTATE_STIPPLEPATTERN30 +S_PROCREF: 0x00000000: ( 211, 000003D0) IslePathActor::VTable0xdc +S_PROCREF: 0x00000000: ( 60, 00000E98) MxPtrListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 68, 0000055C) MxPresenter::IsHit +S_PROCREF: 0x00000000: ( 43, 0000073C) MxHashTable::NodeInsert +S_PROCREF: 0x00000000: ( 134, 00000864) LegoMemoryStream::Tell +S_PROCREF: 0x00000000: ( 146, 00001040) GifManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 216, 0000047C) LegoPathActor::VTable0x90 +S_PROCREF: 0x00000000: ( 113, 00000150) MxCriticalSection::Enter +S_PROCREF: 0x00000000: ( 216, 000004D4) LegoPathActor::VTable0x94 +S_PROCREF: 0x00000000: ( 146, 00001C58) LegoOmni::DoesEntityExist +S_PROCREF: 0x00000000: ( 43, 00000680) MxHashTable::Resize +S_PROCREF: 0x00000000: ( 143, 00000450) LegoPathActor::VTable0x98 +S_PROCREF: 0x00000000: ( 14, 00000294) TglImpl::DeviceImpl::SetShadeCount +S_PROCREF: 0x00000000: ( 107, 00000674) MxDSAction::Clone +S_CONSTANT: Type: 0x478C, Value: 2, D3DTRANSFORMSTATE_VIEW +S_CONSTANT: Type: 0x101B, Value: 1, MEM_SKIP_PATCHING_THIS_DLL +S_PROCREF: 0x00000000: ( 109, 000006B0) MxDiskStreamProvider::IsA +S_PROCREF: 0x00000000: ( 95, 00000390) MxDSSerialAction::CopyFrom +S_PROCREF: 0x00000000: ( 128, 00000FF4) LegoWorld::VTable0x5c +S_PROCREF: 0x00000000: ( 129, 000013B4) LegoVideoManager::DrawFPS +S_PROCREF: 0x00000000: ( 110, 000002A4) list >::~list > +S_PROCREF: 0x00000000: ( 156, 00000B3C) LegoGameState::FUN_1003ceb0 +S_PROCREF: 0x00000000: ( 39, 00000718) MxVideoPresenter::AlphaMask::IsHit +S_PROCREF: 0x00000000: ( 98, 000002E0) MxDSObjectAction::CopyFrom +S_PROCREF: 0x00000000: ( 112, 00001B70) MxDeviceEnumerate::FUN_1009d1e0 +S_PROCREF: 0x00000000: ( 154, 00000150) LegoInputManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 18, 00000990) Score::VTable0x64 +S_PROCREF: 0x00000000: ( 147, 00002C7C) LegoActionControlPresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x1005, Value: 4, Phong +S_PROCREF: 0x00000000: ( 60, 00000160) MxSmkPresenter::ClassName +S_UDT: T_32PVOID(0403), HPALETTE +S_UDT: T_LONG(0012), FXPT2DOT30 +S_PROCREF: 0x00000000: ( 18, 00000768) Score::VTable0x68 +S_PROCREF: 0x00000000: ( 79, 000003A0) MxMIDIPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 185, 00000150) Isle::IsA +S_UDT: T_32PVOID(0403), NDR_CCONTEXT +S_CONSTANT: Type: 0x101B, Value: 7, MEM_DISABLE_ALL_PATCHING +S_UDT: T_ULONG(0022), PROPID +S_UDT: T_32PRCHAR(0470), __exString +S_UDT: T_32PVOID(0403), RPC_SS_THREAD_HANDLE +S_PROCREF: 0x00000000: ( 207, 00000198) Bike::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 189, 00000318) Infocenter::Notify +S_PROCREF: 0x00000000: ( 9, 00000300) TglImpl::TglD3DRMIMAGE::CreateBuffer +S_UDT: T_LONG(0012), MxResult +S_PROCREF: 0x00000000: ( 211, 000002F0) IslePathActor::VTable0xd4 +S_PROCREF: 0x00000000: ( 137, 00000230) LegoROI::LegoROI +S_PROCREF: 0x00000000: ( 211, 00000298) IslePathActor::VTable0xd0 +S_PROCREF: 0x00000000: ( 109, 00000A2C) MxDiskStreamProvider::VTable0x20 +S_PROCREF: 0x00000000: ( 57, 000004E0) MxStillPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 109, 00000370) MxStreamProvider::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 134, 00000B98) num_put > >::id +S_PROCREF: 0x00000000: ( 87, 0000031C) MxEventPresenter::Init +S_PROCREF: 0x00000000: ( 211, 00000360) IslePathActor::VTable0xd8 +S_PROCREF: 0x00000000: ( 144, 0000008C) LegoPartPresenter::configureLegoPartPresenter +S_PROCREF: 0x00000000: ( 216, 00000A9C) Act2Brick::Notify +S_PROCREF: 0x00000000: ( 80, 00000548) MxMediaPresenter::EndAction +S_PROCREF: 0x00000000: ( 41, 000002CC) MxVideoParam::operator= +S_PROCREF: 0x00000000: ( 7, 00000088) ViewportAppData::ViewportAppData +S_UDT: T_32PVOID(0403), HENHMETAFILE +S_PROCREF: 0x00000000: ( 100, 00000A00) MxDSMultiAction::MergeFrom +S_PROCREF: 0x00000000: ( 55, 000012AC) MxNextActionDataStart::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 33, 000000F8) Police::ClassName +S_PROCREF: 0x00000000: ( 116, 00000C7C) MxCompositePresenter::SetTickleState +S_PROCREF: 0x00000000: ( 128, 000004C8) LegoPathControllerList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 24, 000002F4) OrientableROI::GetWorldVelocity +S_CONSTANT: Type: 0x106F, Value: 2, D3DRMCONSTRAIN_X +S_PROCREF: 0x00000000: ( 73, 00000734) MxOmni::Init +S_PROCREF: 0x00000000: ( 128, 00001158) LegoWorld::SetAsCurrentWorld +S_PROCREF: 0x00000000: ( 100, 000005D4) MxDSMultiAction::ClassName +S_UDT: T_32PVOID(0403), HDESK +S_PROCREF: 0x00000000: ( 108, 00000248) MxDisplaySurface::Init +S_PROCREF: 0x00000000: ( 108, 00000480) MxDisplaySurface::Init +S_PROCREF: 0x00000000: ( 128, 0000123C) LegoWorld::VTable0x54 +S_PROCREF: 0x00000000: ( 128, 00001378) LegoWorld::VTable0x58 +S_GDATA32: [0009:00000000], Type: T_NOTYPE(0000), _except_list +S_PROCREF: 0x00000000: ( 96, 00000770) MxDSSelectAction::~MxDSSelectAction +S_PROCREF: 0x00000000: ( 13, 000003E0) Tgl::Object::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 143, 00000558) LegoPathActor::VTable0x9c +S_PROCREF: 0x00000000: ( 149, 00000238) LegoModelPresenter::ParseExtra +S_PROCREF: 0x00000000: ( 129, 00001508) LegoVideoManager::EnableFullScreenMovie +S_PROCREF: 0x00000000: ( 129, 00001584) LegoVideoManager::EnableFullScreenMovie +S_PROCREF: 0x00000000: ( 147, 00002FDC) LegoModelPresenter::IsA +S_PROCREF: 0x00000000: ( 117, 00000130) MxCompositeMediaPresenter::ClassName +S_PROCREF: 0x00000000: ( 143, 00000088) LegoPathActor::LegoPathActor +S_UDT: T_ULONG(0022), SERVICE_STATUS_HANDLE +S_PROCREF: 0x00000000: ( 82, 00000188) MxLoopingSmkPresenter::ClassName +S_PROCREF: 0x00000000: ( 93, 00000084) MxDSSource::ReadToBuffer +S_PROCREF: 0x00000000: ( 59, 00000214) MxSoundManager::Init +S_PROCREF: 0x00000000: ( 73, 00000308) MSoundManager +S_PROCREF: 0x00000000: ( 111, 00000608) MxDirectDraw::FUN_1009d920 +S_GDATA32: [0004:00000E20], Type: 0x1065, g_infomainScript +S_PROCREF: 0x00000000: ( 82, 00000358) MxLoopingSmkPresenter::Destroy +S_PROCREF: 0x00000000: ( 82, 00000760) MxLoopingSmkPresenter::Destroy +S_CONSTANT: Type: 0x101E, Value: 3, D3DLIGHT_DIRECTIONAL +S_CONSTANT: Type: 0x1059, Value: 1, c_notificationStartAction +S_PROCREF: 0x00000000: ( 65, 00000B18) MxRegionTopBottomListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 7, 00000AF4) TglImpl::ViewImpl::TransformWorldToScreen +S_UDT: T_32PVOID(0403), HDRVR +S_GDATA32: [0004:00000AA4], Type: T_REAL32(0040), g_turnMinAccel +S_PROCREF: 0x00000000: ( 21, 00000890) Vector2Impl::Sub +S_PROCREF: 0x00000000: ( 21, 000008F0) Vector2Impl::Sub +S_PROCREF: 0x00000000: ( 147, 00002E08) LegoJetskiRaceActor::ClassName +S_PROCREF: 0x00000000: ( 21, 00000950) Vector2Impl::Mul +S_PROCREF: 0x00000000: ( 21, 000009B0) Vector2Impl::Mul +S_PROCREF: 0x00000000: ( 21, 00000A10) Vector2Impl::Mul +S_CONSTANT: Type: 0x100F, Value: 14, MEM_BAD_POINTER +S_PROCREF: 0x00000000: ( 166, 000001CC) LegoCacheSound::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 47, 000002F8) MxTransitionManager::GetDDrawSurfaceFromVideoManager +S_PROCREF: 0x00000000: ( 141, 000001C0) LegoPathPresenter::IsA +S_PROCREF: 0x00000000: ( 110, 00001A18) MxDiskStreamController::FUN_100c8720 +S_PROCREF: 0x00000000: ( 7, 000003C8) TglImpl::ViewImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 21, 000010E4) Vector4Impl::SetMatrixProductImpl +S_PROCREF: 0x00000000: ( 86, 000002BC) MxFlcPresenter::LoadHeader +S_PROCREF: 0x00000000: ( 41, 00000084) MxVideoParam::MxVideoParam +S_PROCREF: 0x00000000: ( 41, 000000DC) MxVideoParam::MxVideoParam +S_PROCREF: 0x00000000: ( 41, 00000190) MxVideoParam::MxVideoParam +S_PROCREF: 0x00000000: ( 4, 0000015C) _Tree,map >::_Kfn,ROINameComparator,allocator >::~_Tree,map::GetValue +S_PROCREF: 0x00000000: ( 140, 00000134) LegoPhonemePresenter::ClassName +S_PROCREF: 0x00000000: ( 94, 00000310) MxDSSound::operator= +S_PROCREF: 0x00000000: ( 96, 00000364) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 111, 0000125C) MxDirectDraw::DeviceModesInfo::~DeviceModesInfo +S_UDT: T_UINT4(0075), SOCKET +S_PROCREF: 0x00000000: ( 199, 000002B0) GasStation::Notify +S_PROCREF: 0x00000000: ( 134, 00000154) LegoStream::ReadVariable +S_UDT: T_32PVOID(0403), RPC_IF_HANDLE +S_PROCREF: 0x00000000: ( 147, 000032D0) IsleActor::IsA +S_PROCREF: 0x00000000: ( 94, 000003EC) MxDSSound::Deserialize +S_PROCREF: 0x00000000: ( 47, 000003C0) MxTransitionManager::StartTransition +S_PROCREF: 0x00000000: ( 48, 00000238) MxTimer::Stop +S_PROCREF: 0x00000000: ( 107, 00000198) MxDSAction::ClassName +S_PROCREF: 0x00000000: ( 38, 000008B8) MxWavePresenter::EndAction +S_CONSTANT: Type: 0x1067, Value: 2, D3DRMLIGHT_SPOT +S_PROCREF: 0x00000000: ( 129, 000018BC) LegoVideoManager::ConfigureD3DRM +S_PROCREF: 0x00000000: ( 50, 000004F0) MxThread::Terminate +S_PROCREF: 0x00000000: ( 121, 00000088) MxAudioPresenter::GetVolume +S_PROCREF: 0x00000000: ( 6, 00000080) TowTrack::TowTrack +S_PROCREF: 0x00000000: ( 120, 00000084) MxAutoLocker::MxAutoLocker +S_PROCREF: 0x00000000: ( 98, 00000114) MxDSObjectAction::ClassName +S_UDT: T_32PVOID(0403), HINSTANCE +S_PROCREF: 0x00000000: ( 26, 00000118) RadioState::ClassName +S_PROCREF: 0x00000000: ( 95, 00000150) MxDSSerialAction::ClassName +S_UDT: T_ULONG(0022), D3DRMMAPPINGFLAG +S_PROCREF: 0x00000000: ( 10, 00000490) Tgl::Device::~Device +S_PROCREF: 0x00000000: ( 112, 00001668) MxDeviceEnumerate::DirectDrawEnumerateCallback +S_PROCREF: 0x00000000: ( 189, 00000480) Infocenter::VTable0x5c +S_UDT: T_32PRCHAR(0470), LPCTSTR +S_PROCREF: 0x00000000: ( 47, 00000594) MxTransitionManager::TransitionNone +S_PROCREF: 0x00000000: ( 30, 000000F8) RaceCar::ClassName +S_GDATA32: [0004:00000E44], Type: 0x1065, g_jukeboxScript +S_UDT: T_UINT4(0075), u_int +S_PROCREF: 0x00000000: ( 146, 00001AA8) LegoOmni::DeleteObject +S_GDATA32: [0004:00000E54], Type: 0x1065, g_jukeboxwScript +S_CONSTANT: Type: 0x1007, Value: 1, Point +S_PROCREF: 0x00000000: ( 102, 00000718) MxDSFile::Seek +S_PROCREF: 0x00000000: ( 96, 00000810) MxDSSelectAction::CopyFrom +S_PROCREF: 0x00000000: ( 160, 00000538) LegoEntityPresenter::ReadyTickle +S_GDATA32: [0004:0000155C], Type: T_USHORT(0021), g_bitmapSignature +S_PROCREF: 0x00000000: ( 80, 0000016C) MxMediaPresenter::Init +S_PROCREF: 0x00000000: ( 134, 000008D0) LegoMemoryStream::Seek +S_PROCREF: 0x00000000: ( 192, 00000080) Hospital::Hospital +S_PROCREF: 0x00000000: ( 161, 00000334) LegoEntity::SetWorld +S_PROCREF: 0x00000000: ( 129, 00000088) LegoVideoManager::LegoVideoManager +S_PROCREF: 0x00000000: ( 95, 00000088) MxDSSerialAction::MxDSSerialAction +S_PROCREF: 0x00000000: ( 87, 00000088) MxEventPresenter::MxEventPresenter +S_PROCREF: 0x00000000: ( 108, 00000554) MxDisplaySurface::Create +S_PROCREF: 0x00000000: ( 170, 0000011C) LegoAnimMMPresenter::ClassName +S_PROCREF: 0x00000000: ( 154, 000016A8) MxList::~MxList +S_PROCREF: 0x00000000: ( 44, 00000138) MxVariable::Destroy +S_PROCREF: 0x00000000: ( 149, 0000008C) LegoModelPresenter::Destroy +S_PROCREF: 0x00000000: ( 149, 00000164) LegoModelPresenter::Destroy +S_PROCREF: 0x00000000: ( 70, 00000524) MxPalette::operator== +S_PROCREF: 0x00000000: ( 100, 0000062C) MxDSMultiAction::IsA +S_PROCREF: 0x00000000: ( 154, 000012FC) LegoInputManager::ClearWorld +S_PROCREF: 0x00000000: ( 216, 00000A4C) Act2Brick::Tickle +S_PROCREF: 0x00000000: ( 73, 0000156C) MxOmni::Destroy +S_PROCREF: 0x00000000: ( 60, 00000C98) MxRectListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 54, 00000F40) MxStreamer::Notify +S_UDT: T_ULONG(0022), ACCESS_MASK +S_PROCREF: 0x00000000: ( 21, 00000A70) Vector2Impl::Div +S_CONSTANT: Type: 0x4790, Value: 21, D3DRENDERSTATE_TEXTUREMAPBLEND +S_PROCREF: 0x00000000: ( 5, 00000190) TowTrackMissionState::IsA +S_PROCREF: 0x00000000: ( 129, 0000140C) LegoVideoManager::VTable0x38 +S_PROCREF: 0x00000000: ( 211, 00000240) IslePathActor::VTable0xcc +S_PROCREF: 0x00000000: ( 111, 00000D28) MxDirectDraw::CreateTextSurfaces +S_PROCREF: 0x00000000: ( 73, 00001948) MxType4NotificationParam::~MxType4NotificationParam +S_UDT: T_32PVOID(0403), HWAVEOUT +S_PROCREF: 0x00000000: ( 20, 0000016C) RegistrationBook::IsA +S_CONSTANT: Type: 0x4790, Value: 14, D3DRENDERSTATE_ZWRITEENABLE +S_PROCREF: 0x00000000: ( 73, 00000158) MxOmni::IsTimerRunning +S_PROCREF: 0x00000000: ( 147, 00004618) LegoJetskiRaceActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 25, 0000023C) Matrix4Impl::GetData +S_PROCREF: 0x00000000: ( 25, 0000028C) Matrix4Impl::GetData +S_PROCREF: 0x00000000: ( 168, 0000008C) LegoBackgroundColor::LegoBackgroundColor +S_PROCREF: 0x00000000: ( 51, 00000294) MxString::~MxString +S_PROCREF: 0x00000000: ( 134, 000006F0) LegoFileStream::Tell +S_PROCREF: 0x00000000: ( 59, 00000264) MxSoundManager::Destroy +S_PROCREF: 0x00000000: ( 59, 000003EC) MxSoundManager::Destroy +S_PROCREF: 0x00000000: ( 8, 000002A0) TglImpl::UnkImpl::Clone +S_PROCREF: 0x00000000: ( 147, 0000504C) Pizzeria::`scalar deleting destructor' +S_CONSTANT: Type: 0x1011, Value: 4, MEM_VAR_FIXED_BLOCK +S_PROCREF: 0x00000000: ( 21, 0000116C) Vector4Impl::SetMatrixProduct +S_PROCREF: 0x00000000: ( 101, 000003C0) MxDSMediaAction::CopyMediaSrcPath +S_PROCREF: 0x00000000: ( 128, 0000164C) LegoWorld::FUN_10072980 +S_PROCREF: 0x00000000: ( 188, 00000248) InfocenterDoor::~InfocenterDoor +S_PROCREF: 0x00000000: ( 90, 000004D8) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 214, 0000007C) Act3::Act3 +S_PROCREF: 0x00000000: ( 98, 00000088) MxDSObjectAction::MxDSObjectAction +S_CONSTANT: Type: 0x1015, Value: (LF_ULONG) 2147483647, MEM_POINTER_STATUS_INT_MAX +S_CONSTANT: Type: 0x1003, Value: 0, Ramp +S_CONSTANT: Type: 0x101B, Value: 2, MEM_DISABLE_SYSTEM_HEAP_PATCHING +S_CONSTANT: Type: 0x104E, Value: 9, MxDSType_SelectAction +S_PROCREF: 0x00000000: ( 112, 00000D94) MxDevice::Init +S_PROCREF: 0x00000000: ( 79, 000004D0) MxMIDIPresenter::DoneTickle +S_PROCREF: 0x00000000: ( 38, 000002F8) MxWavePresenter::GetPlayedChunks +S_PROCREF: 0x00000000: ( 2, 0000008C) ViewROI::IntrinsicImportance +S_PROCREF: 0x00000000: ( 30, 000001A4) RaceCar::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 185, 00000570) Isle::HandleType19Notification +S_PROCREF: 0x00000000: ( 55, 0000166C) MxStreamController::InsertActionToList54 +S_CONSTANT: Type: 0x1059, Value: 9, c_notificationButtonDown +S_PROCREF: 0x00000000: ( 38, 00000214) MxWavePresenter::AddToManager +S_PROCREF: 0x00000000: ( 111, 00000E70) MxDirectDraw::CreateZBuffer +S_PROCREF: 0x00000000: ( 128, 00000084) LegoWorld::LegoWorld +S_PROCREF: 0x00000000: ( 170, 000001E0) LegoAnimMMPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 156, 00000ACC) LegoGameState::SetSomeEnumState +S_PROCREF: 0x00000000: ( 174, 00000160) LegoActionControlPresenter::AddToManager +S_PROCREF: 0x00000000: ( 25, 000002DC) Matrix4Impl::Element +S_PROCREF: 0x00000000: ( 25, 00000354) Matrix4Impl::Element +S_PROCREF: 0x00000000: ( 68, 00000084) MxPresenter::VTable0x14 +S_PROCREF: 0x00000000: ( 162, 000001E0) LegoControlManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00003388) PizzaMissionState::IsA +S_PROCREF: 0x00000000: ( 147, 00003A80) GasStationEntity::IsA +S_PROCREF: 0x00000000: ( 49, 00000458) MxTickleManager::GetClientTickleInterval +S_PROCREF: 0x00000000: ( 146, 000013F8) MxPtrList::~MxPtrList +S_PROCREF: 0x00000000: ( 176, 00000240) Lego3DView::FUN_100ab100 +S_PROCREF: 0x00000000: ( 27, 00000288) Radio::CreateRadioState +S_UDT: T_32PUCHAR(0420), RPC_BUFPTR +S_PROCREF: 0x00000000: ( 154, 00000740) LegoEventNotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 76, 00000C24) list >::erase +S_CONSTANT: Type: 0x4790, Value: 33, D3DRENDERSTATE_STIPPLEDALPHA +S_CONSTANT: Type: 0x100F, Value: 5, MEM_RESIZE_FAILED +S_PROCREF: 0x00000000: ( 25, 00000830) Matrix4Data::operator= +S_PROCREF: 0x00000000: ( 38, 00000534) MxWavePresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 146, 00001158) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 65, 00000080) MxRegion::MxRegion +S_PROCREF: 0x00000000: ( 96, 00000A0C) MxStringListCursor::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HMETAFILEPICT +S_PROCREF: 0x00000000: ( 154, 00001290) LegoInputManager::SetWorld +S_PROCREF: 0x00000000: ( 136, 00000274) LegoSoundManager::Destroy +S_PROCREF: 0x00000000: ( 136, 00000378) LegoSoundManager::Destroy +S_PROCREF: 0x00000000: ( 37, 00000154) Pizza::IsA +S_PROCREF: 0x00000000: ( 90, 00000284) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 17, 00000084) ScoreState::VTable0x14 +S_PROCREF: 0x00000000: ( 25, 000004DC) Matrix4Impl::TranslateBy +S_PROCREF: 0x00000000: ( 189, 00000158) Infocenter::IsA +S_PROCREF: 0x00000000: ( 146, 00001D94) LegoOmni::Start +S_PROCREF: 0x00000000: ( 51, 00000310) MxString::ToUpperCase +S_GDATA32: [0004:0000B5CA], Type: T_UCHAR(0020), ??_B?1???id@?$numpunct@D@@$D@@9@9 +S_GDATA32: [0004:00003780], Type: 0x1251, g_defaultPaletteEntries +S_PROCREF: 0x00000000: ( 134, 00000C24) numpunct::id +S_CONSTANT: Type: 0x2E6F, Value: 3, D3DRMWRAP_CHROME +S_PROCREF: 0x00000000: ( 118, 00000258) MxBitmap::SetSize +S_GDATA32: [0004:00000E2C], Type: 0x1065, g_histbookScript +S_PROCREF: 0x00000000: ( 82, 000004A0) MxLoopingSmkPresenter::VTable0x8c +S_PROCREF: 0x00000000: ( 147, 00005418) BeachHouseEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 154, 00000E84) LegoInputManager::CreateAndAcquireKeyboard +S_GDATA32: [0004:0000B5C9], Type: T_UCHAR(0020), ??_B?1???id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@@@@@@$D@@9@9 +S_PROCREF: 0x00000000: ( 73, 00001AD4) MxOmni::Notify +S_PROCREF: 0x00000000: ( 43, 00000088) MxVariableTable::Compare +S_PROCREF: 0x00000000: ( 60, 000003EC) MxSmkPresenter::CreateBitmap +S_PROCREF: 0x00000000: ( 12, 000000F0) TglImpl::LightImpl::SetTransformation +S_PROCREF: 0x00000000: ( 169, 00000498) MxVideoPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 128, 00000C40) MxPtrList::~MxPtrList +S_PROCREF: 0x00000000: ( 68, 0000012C) MxPresenter::StartingTickle +S_UDT: T_32PVOID(0403), HMIDIIN +S_PROCREF: 0x00000000: ( 21, 00000EB8) Vector4Impl::MullVectorImpl +S_PROCREF: 0x00000000: ( 116, 0000008C) MxCompositePresenter::VTable0x64 +S_UDT: T_32PRCHAR(0470), LPCSTR +S_PROCREF: 0x00000000: ( 68, 000005CC) MxPresenter::Init +S_PROCREF: 0x00000000: ( 110, 00000AE4) MxDiskStreamController::Open +S_UDT: T_USHORT(0021), CLIPFORMAT +S_GDATA32: [0004:000066E0], Type: 0x1ABA, g_unk0x100f0100 +S_PROCREF: 0x00000000: ( 76, 0000057C) List::~List +S_PROCREF: 0x00000000: ( 134, 000002C4) LegoMemoryStream::LegoMemoryStream +S_PROCREF: 0x00000000: ( 82, 00000300) MxLoopingSmkPresenter::Init +S_PROCREF: 0x00000000: ( 148, 000002F8) LegoNavController::SetControlMax +S_PROCREF: 0x00000000: ( 86, 000001B8) MxFlcPresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x4790, Value: 45, D3DRENDERSTATE_TEXTUREADDRESSV +S_CONSTANT: Type: 0x101E, Value: 1, D3DLIGHT_POINT +S_PROCREF: 0x00000000: ( 107, 0000088C) MxDSAction::Deserialize +S_CONSTANT: Type: 0x104E, Value: 10, MxDSType_Still +S_PROCREF: 0x00000000: ( 137, 0000085C) LegoROI::CallTheHandlerFunction +S_GDATA32: [0004:0000B5CB], Type: T_UCHAR(0020), ??_B?1???id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@@@@@@$D@@9@9 +S_PROCREF: 0x00000000: ( 102, 00000794) MxDSFile::GetBufferSize +S_PROCREF: 0x00000000: ( 81, 000001A0) MxMediaManager::~MxMediaManager +S_PROCREF: 0x00000000: ( 6, 000001AC) TowTrack::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 110, 000008D4) MxDiskStreamController::~MxDiskStreamController +S_GDATA32: [0004:00000E40], Type: 0x1065, g_act3Script +S_CONSTANT: Type: 0x1059, Value: 2, c_notificationEndAction +S_CONSTANT: Type: 0x2E71, Value: 0, D3DRMXOF_BINARY +S_UDT: T_INT4(0074), MEM_BOOL +S_PROCREF: 0x00000000: ( 74, 0000079C) MxLoopingMIDIPresenter::ClassName +S_PROCREF: 0x00000000: ( 47, 000009F8) MxTransitionManager::TransitionBroken +S_PROCREF: 0x00000000: ( 66, 00000338) MxRAMStreamProvider::GetLengthInDWords +S_PROCREF: 0x00000000: ( 13, 000008C0) TglImpl::GroupImpl::Unknown +S_PROCREF: 0x00000000: ( 147, 000029CC) LegoRaceActor::IsA +S_LDATA32: [0003:00004E80], Type: 0x101C, Pi +S_LDATA32: [0003:00004D50], Type: 0x101C, Pi +S_LDATA32: [0003:00004D38], Type: 0x101C, Pi +S_LDATA32: [0003:00004D30], Type: 0x101C, Pi +S_LDATA32: [0003:00004D2C], Type: 0x101C, Pi +S_LDATA32: [0003:00004AFC], Type: 0x101C, Pi +S_LDATA32: [0003:00004AA8], Type: 0x101C, Pi +S_LDATA32: [0003:00004AA4], Type: 0x101C, Pi +S_LDATA32: [0003:00004A58], Type: 0x101C, Pi +S_LDATA32: [0003:00004A54], Type: 0x101C, Pi +S_LDATA32: [0003:00004A50], Type: 0x101C, Pi +S_LDATA32: [0003:00004954], Type: 0x101C, Pi +S_LDATA32: [0003:000048E4], Type: 0x101C, Pi +S_LDATA32: [0003:00004874], Type: 0x101C, Pi +S_LDATA32: [0003:000047F8], Type: 0x101C, Pi +S_LDATA32: [0003:00004700], Type: 0x101C, Pi +S_LDATA32: [0003:000046DC], Type: 0x101C, Pi +S_LDATA32: [0003:00004668], Type: 0x101C, Pi +S_LDATA32: [0003:00004640], Type: 0x101C, Pi +S_LDATA32: [0003:000045D4], Type: 0x101C, Pi +S_LDATA32: [0003:0000455C], Type: 0x101C, Pi +S_LDATA32: [0003:00004470], Type: 0x101C, Pi +S_LDATA32: [0003:0000446C], Type: 0x101C, Pi +S_LDATA32: [0003:00003A44], Type: 0x101C, Pi +S_LDATA32: [0003:00003884], Type: 0x101C, Pi +S_LDATA32: [0003:000037A8], Type: 0x101C, Pi +S_LDATA32: [0003:00003610], Type: 0x101C, Pi +S_LDATA32: [0003:0000339C], Type: 0x101C, Pi +S_LDATA32: [0003:000031EC], Type: 0x101C, Pi +S_LDATA32: [0003:0000314C], Type: 0x101C, Pi +S_LDATA32: [0003:0000301C], Type: 0x101C, Pi +S_LDATA32: [0003:00002F10], Type: 0x101C, Pi +S_LDATA32: [0003:00002EC0], Type: 0x101C, Pi +S_LDATA32: [0003:00002EBC], Type: 0x101C, Pi +S_LDATA32: [0003:00002D88], Type: 0x101C, Pi +S_LDATA32: [0003:00002D04], Type: 0x101C, Pi +S_LDATA32: [0003:00002C04], Type: 0x101C, Pi +S_LDATA32: [0003:00002B1C], Type: 0x101C, Pi +S_LDATA32: [0003:00002A50], Type: 0x101C, Pi +S_LDATA32: [0003:00002970], Type: 0x101C, Pi +S_LDATA32: [0003:00001AEC], Type: 0x101C, Pi +S_LDATA32: [0003:00001AD0], Type: 0x101C, Pi +S_LDATA32: [0003:00001894], Type: 0x101C, Pi +S_LDATA32: [0003:000017C0], Type: 0x101C, Pi +S_LDATA32: [0003:000016AC], Type: 0x101C, Pi +S_LDATA32: [0003:00001698], Type: 0x101C, Pi +S_LDATA32: [0003:0000159C], Type: 0x101C, Pi +S_LDATA32: [0003:00001594], Type: 0x101C, Pi +S_LDATA32: [0003:00001484], Type: 0x101C, Pi +S_LDATA32: [0003:00001410], Type: 0x101C, Pi +S_LDATA32: [0003:000011C0], Type: 0x101C, Pi +S_LDATA32: [0003:00001150], Type: 0x101C, Pi +S_LDATA32: [0003:0000114C], Type: 0x101C, Pi +S_LDATA32: [0003:00001144], Type: 0x101C, Pi +S_LDATA32: [0003:00001130], Type: 0x101C, Pi +S_LDATA32: [0003:000010DC], Type: 0x101C, Pi +S_LDATA32: [0003:0000106C], Type: 0x101C, Pi +S_LDATA32: [0003:00001068], Type: 0x101C, Pi +S_LDATA32: [0003:00000F6C], Type: 0x101C, Pi +S_LDATA32: [0003:00000F5C], Type: 0x101C, Pi +S_LDATA32: [0003:00000F58], Type: 0x101C, Pi +S_LDATA32: [0003:00000EE0], Type: 0x101C, Pi +S_LDATA32: [0003:00000EBC], Type: 0x101C, Pi +S_LDATA32: [0003:00000E4C], Type: 0x101C, Pi +S_LDATA32: [0003:00000DD8], Type: 0x101C, Pi +S_LDATA32: [0003:00000DB4], Type: 0x101C, Pi +S_LDATA32: [0003:00000D44], Type: 0x101C, Pi +S_LDATA32: [0003:00000CD0], Type: 0x101C, Pi +S_LDATA32: [0003:00000988], Type: 0x101C, Pi +S_LDATA32: [0003:00000964], Type: 0x101C, Pi +S_LDATA32: [0003:000008F4], Type: 0x101C, Pi +S_LDATA32: [0003:00000880], Type: 0x101C, Pi +S_LDATA32: [0003:00000780], Type: 0x101C, Pi +S_LDATA32: [0003:000006F8], Type: 0x101C, Pi +S_LDATA32: [0003:000006F4], Type: 0x101C, Pi +S_LDATA32: [0003:00000550], Type: 0x101C, Pi +S_LDATA32: [0003:00000454], Type: 0x101C, Pi +S_LDATA32: [0003:00000450], Type: 0x101C, Pi +S_LDATA32: [0003:00000220], Type: 0x101C, Pi +S_LDATA32: [0003:0000021C], Type: 0x101C, Pi +S_LDATA32: [0003:000001A8], Type: 0x101C, Pi +S_LDATA32: [0003:000001A4], Type: 0x101C, Pi +S_LDATA32: [0003:000000D0], Type: 0x101C, Pi +S_LDATA32: [0003:00000058], Type: 0x101C, Pi +S_PROCREF: 0x00000000: ( 182, 00000080) Jetski::Jetski +S_PROCREF: 0x00000000: ( 114, 000000CC) MxCore::MxCore +S_PROCREF: 0x00000000: ( 73, 0000047C) MxOmni::MxOmni +S_PROCREF: 0x00000000: ( 33, 00000080) Police::Police +S_PROCREF: 0x00000000: ( 138, 000001B8) LegoRace::LegoRace +S_PROCREF: 0x00000000: ( 118, 000000E8) MxBitmap::MxBitmap +S_PROCREF: 0x00000000: ( 199, 00000084) GasStation::GasStation +S_PROCREF: 0x00000000: ( 195, 00000084) Helicopter::Helicopter +S_PROCREF: 0x00000000: ( 189, 00000084) Infocenter::Infocenter +S_PROCREF: 0x00000000: ( 176, 00000084) Lego3DView::Lego3DView +S_PROCREF: 0x00000000: ( 126, 00000084) Motorcycle::Motorcycle +S_PROCREF: 0x00000000: ( 112, 00000084) MxDirect3D::MxDirect3D +S_PROCREF: 0x00000000: ( 107, 00000084) MxDSAction::MxDSAction +S_PROCREF: 0x00000000: ( 105, 00000084) MxDSBuffer::MxDSBuffer +S_PROCREF: 0x00000000: ( 99, 00000084) MxDSObject::MxDSObject +S_PROCREF: 0x00000000: ( 54, 00000084) MxStreamer::MxStreamer +S_PROCREF: 0x00000000: ( 26, 00000084) RadioState::RadioState +S_PROCREF: 0x00000000: ( 16, 00000084) SkateBoard::SkateBoard +S_PROCREF: 0x00000000: ( 218, 0000008C) TglSurface::TglSurface +S_PROCREF: 0x00000000: ( 206, 00000088) BuildingEntity::BuildingEntity +S_PROCREF: 0x00000000: ( 200, 00000088) ElevatorBottom::ElevatorBottom +S_PROCREF: 0x00000000: ( 188, 00000088) InfocenterDoor::InfocenterDoor +S_PROCREF: 0x00000000: ( 166, 00000088) LegoCacheSound::LegoCacheSound +S_PROCREF: 0x00000000: ( 134, 00000468) LegoFileStream::LegoFileStream +S_PROCREF: 0x00000000: ( 122, 000000E0) MxAudioManager::MxAudioManager +S_PROCREF: 0x00000000: ( 90, 00000088) MxDSSubscriber::MxDSSubscriber +S_PROCREF: 0x00000000: ( 88, 00000088) MxEventManager::MxEventManager +S_PROCREF: 0x00000000: ( 86, 00000088) MxFlcPresenter::MxFlcPresenter +S_PROCREF: 0x00000000: ( 81, 00000088) MxMediaManager::MxMediaManager +S_PROCREF: 0x00000000: ( 78, 00000088) MxMusicManager::MxMusicManager +S_PROCREF: 0x00000000: ( 76, 00000090) MxNotification::MxNotification +S_PROCREF: 0x00000000: ( 64, 00000088) MxRegionCursor::MxRegionCursor +S_PROCREF: 0x00000000: ( 60, 00000088) MxSmkPresenter::MxSmkPresenter +S_PROCREF: 0x00000000: ( 59, 00000088) MxSoundManager::MxSoundManager +S_PROCREF: 0x00000000: ( 49, 00000088) MxTickleClient::MxTickleClient +S_PROCREF: 0x00000000: ( 50, 00000080) MxTickleThread::MxTickleThread +S_PROCREF: 0x00000000: ( 42, 00000088) MxVideoManager::MxVideoManager +S_PROCREF: 0x00000000: ( 77, 00000088) MxMusicPresenter::MxMusicPresenter +S_PROCREF: 0x00000000: ( 162, 0000008C) LegoControlManager::LegoControlManager +S_PROCREF: 0x00000000: ( 142, 0000008C) LegoPathController::LegoPathController +S_PROCREF: 0x00000000: ( 127, 00000110) LegoWorldPresenter::LegoWorldPresenter +S_PROCREF: 0x00000000: ( 115, 0000008C) MxControlPresenter::MxControlPresenter +S_PROCREF: 0x00000000: ( 97, 0000008C) MxDSParallelAction::MxDSParallelAction +S_PROCREF: 0x00000000: ( 55, 00000200) MxStreamController::MxStreamController +S_PROCREF: 0x00000000: ( 4, 00000090) ViewLODListManager::ViewLODListManager +S_PROCREF: 0x00000000: ( 110, 00000090) MxDiskStreamController::MxDiskStreamController +S_PROCREF: 0x00000000: ( 146, 00001B14) LegoOmni::FindWorld +S_PROCREF: 0x00000000: ( 55, 00000618) MxStreamController::ClassName +S_PROCREF: 0x00000000: ( 146, 0000148C) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 94, 00000150) MxDSSound::IsA +S_UDT: T_32PUCHAR(0420), PFORMAT_STRING +S_PROCREF: 0x00000000: ( 123, 00000088) MxAtomIdCounter::Inc +S_PROCREF: 0x00000000: ( 64, 00000880) MxRegionCursor::UpdateRect +S_PROCREF: 0x00000000: ( 145, 000002BC) LegoPalettePresenter::~LegoPalettePresenter +S_PROCREF: 0x00000000: ( 197, 00000138) GasStationState::ClassName +S_PROCREF: 0x00000000: ( 65, 00000C80) MxListCursor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 42, 00000124) MxVideoManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 119, 00000668) MxBackgroundAudioManager::FUN_1007ef40 +S_GDATA32: [0003:00004F30], Type: 0x178A, IID_IDirect3D2 +S_PROCREF: 0x00000000: ( 190, 00000088) HospitalState::HospitalState +S_PROCREF: 0x00000000: ( 28, 00000084) RaceState::RaceState +S_PROCREF: 0x00000000: ( 45, 0000011C) MxUnknown100d7c88::VTable0x00 +S_PROCREF: 0x00000000: ( 206, 0000030C) BuildingEntity::IsA +S_PROCREF: 0x00000000: ( 85, 000003B0) MXIOINFO::SetBuffer +S_PROCREF: 0x00000000: ( 82, 000003D4) MxLoopingSmkPresenter::VTable0x88 +S_PROCREF: 0x00000000: ( 7, 00000708) TglImpl::ViewImpl::SetBackgroundColor +S_PROCREF: 0x00000000: ( 50, 0000030C) MxThread::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 42, 00000590) MxVideoManager::VTable0x28 +S_PROCREF: 0x00000000: ( 68, 00000184) MxPresenter::StreamingTickle +S_PROCREF: 0x00000000: ( 154, 00000C10) LegoEventQueue::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HANDLE +S_CONSTANT: Type: 0x1071, Value: 1, D3DRMMATERIAL_FROMPARENT +S_PROCREF: 0x00000000: ( 146, 00001CC8) LegoOmni::GetCurrPathInfo +S_PROCREF: 0x00000000: ( 85, 000002F8) MXIOINFO::Seek +S_PROCREF: 0x00000000: ( 39, 00000088) MxVideoPresenter::LoadHeader +S_PROCREF: 0x00000000: ( 143, 0000010C) LegoPathActor::`scalar deleting destructor' +S_GDATA32: [0004:0000673C], Type: 0x18F2, g_omniUserMessage +S_PROCREF: 0x00000000: ( 106, 00000370) MxDSAnim::Clone +S_PROCREF: 0x00000000: ( 94, 00000084) MxDSSound::MxDSSound +S_CONSTANT: Type: 0x100F, Value: 15, MEM_WRONG_TASK +S_CONSTANT: Type: 0x1059, Value: 24, MXTRANSITIONMANAGER_TRANSITIONENDED +S_PROCREF: 0x00000000: ( 156, 000007EC) LegoGameState::CreateState +S_PROCREF: 0x00000000: ( 112, 00000C78) MxDevice::MxDevice +S_PROCREF: 0x00000000: ( 106, 0000014C) MxDSAnim::IsA +S_PROCREF: 0x00000000: ( 115, 00000720) MxControlPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 27, 00000080) Radio::Radio +S_UDT: T_32PUSHORT(0421), PSECURITY_DESCRIPTOR_CONTROL +S_PROCREF: 0x00000000: ( 115, 00000260) MxControlPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 116, 00000908) MxCompositePresenter::Notify +S_PROCREF: 0x00000000: ( 60, 00000F4C) MxListCursor::~MxListCursor +S_PROCREF: 0x00000000: ( 116, 00000294) MxCompositePresenter::ClassName +S_PROCREF: 0x00000000: ( 12, 00000088) TglImpl::LightImpl::ImplementationDataPtr +S_GDATA32: [0004:00006740], Type: 0x1861, g_saveData3 +S_PROCREF: 0x00000000: ( 56, 00000480) MxStreamChunk::IntoLength +S_PROCREF: 0x00000000: ( 119, 00000720) MxBackgroundAudioManager::FadeInOrFadeOut +S_PROCREF: 0x00000000: ( 160, 000005F4) LegoEntityPresenter::SetBackendLocation +S_CONSTANT: Type: 0x4790, Value: 23, D3DRENDERSTATE_ZFUNC +S_PROCREF: 0x00000000: ( 18, 00000140) Score::IsA +S_PROCREF: 0x00000000: ( 110, 0000195C) MxDiskStreamController::FUN_100c8670 +S_PROCREF: 0x00000000: ( 82, 00000090) MxLoopingSmkPresenter::MxLoopingSmkPresenter +S_PROCREF: 0x00000000: ( 99, 000001CC) MxDSObject::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 80, 00000730) MxMediaPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 16, 000001B8) SkateBoard::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00000844) MxRegion::Reset +S_UDT: T_ULONG(0022), D3DRMLOADOPTIONS +S_PROCREF: 0x00000000: ( 132, 00000298) NotifyEntity +S_PROCREF: 0x00000000: ( 111, 00000084) MxDirectDraw::MxDirectDraw +S_PROCREF: 0x00000000: ( 112, 000015FC) MxDeviceEnumerate::DoEnumerate +S_PROCREF: 0x00000000: ( 36, 0000008C) PizzaMissionState::GetState +S_UDT: T_LONG(0012), MxLong +S_PROCREF: 0x00000000: ( 197, 000001F4) GasStationState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 21, 00001568) Vector3Impl::MullVectorImpl +S_PROCREF: 0x00000000: ( 2, 0000035C) Tgl::Array::~Array +S_PROCREF: 0x00000000: ( 91, 00000458) MxDSStreamingAction::SetInternalAction +S_GDATA32: [0004:000002E8], Type: T_32PRCHAR(0470), g_strWORLD +S_PROCREF: 0x00000000: ( 112, 00000344) MxDirect3D::Destroy +S_CONSTANT: Type: 0x4790, Value: 40, D3DRENDERSTATE_EDGEANTIALIAS +S_PROCREF: 0x00000000: ( 137, 00000448) ROI::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 000013E8) Tgl::Unk::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 74, 00000A84) MxObjectFactory::Destroy +S_PROCREF: 0x00000000: ( 111, 00000B54) MxDirectDraw::TextToTextSurface +S_PROCREF: 0x00000000: ( 110, 000013C4) MxDiskStreamController::FUN_100c7f40 +S_PROCREF: 0x00000000: ( 140, 0000008C) LegoPhonemePresenter::LegoPhonemePresenter +S_PROCREF: 0x00000000: ( 73, 00000A64) _Tree >::_Kfn,MxAtomIdCounterCompare,allocator >::~_Tree > >::id +S_PROCREF: 0x00000000: ( 66, 0000039C) MxRAMStreamProvider::GetBufferForDWords +S_PROCREF: 0x00000000: ( 183, 0000010C) IslePathActor::Create +S_PROCREF: 0x00000000: ( 83, 000000F4) MxLoopingMIDIPresenter::DoneTickle +S_PROCREF: 0x00000000: ( 146, 00000C88) LegoOmni::Destroy +S_GDATA32: [0004:00003C3C], Type: 0x2C64, _Tree,map >::_Kfn,ROINameComparator,allocator >::_Nil +S_CONSTANT: Type: 0x1050, Value: 8, ExtraActionType_enable +S_PROCREF: 0x00000000: ( 21, 000001CC) Vector2Impl::MullVectorImpl +S_PROCREF: 0x00000000: ( 14, 0000030C) TglImpl::DeviceImpl::SetDither +S_UDT: T_LONG(0012), streamoff +S_PROCREF: 0x00000000: ( 58, 00000114) MxSoundPresenter::Destroy +S_PROCREF: 0x00000000: ( 58, 0000016C) MxSoundPresenter::Destroy +S_PROCREF: 0x00000000: ( 54, 00000C20) MxStreamer::GetOpenStream +S_PROCREF: 0x00000000: ( 151, 000001AC) LegoLocomotionAnimPresenter::IsA +S_PROCREF: 0x00000000: ( 100, 000003C8) MxDSActionList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 91, 0000008C) MxDSStreamingAction::MxDSStreamingAction +S_PROCREF: 0x00000000: ( 91, 00000240) MxDSStreamingAction::MxDSStreamingAction +S_PROCREF: 0x00000000: ( 4, 000003AC) _Tree,map >::_Kfn,ROINameComparator,allocator >::erase +S_PROCREF: 0x00000000: ( 186, 0000017C) InfocenterState::IsA +S_PROCREF: 0x00000000: ( 68, 0000061C) MxPresenter::StartAction +S_PROCREF: 0x00000000: ( 111, 00001174) MxDirectDraw::ErrorToString +S_PROCREF: 0x00000000: ( 169, 00000684) LegoAnimPresenter::Init +S_PROCREF: 0x00000000: ( 65, 00000778) MxRegion::VTable0x20 +S_CONSTANT: Type: 0x106D, Value: 2, D3DRMPROJECT_RIGHTHANDPERSPECTIVE +S_PROCREF: 0x00000000: ( 108, 00000088) MxDisplaySurface::MxDisplaySurface +S_UDT: T_LONG(0012), D3DRMGROUPINDEX +S_PROCREF: 0x00000000: ( 108, 00000F44) MxDisplaySurface::ReleaseDC +S_CONSTANT: Type: 0x4788, Value: 1, D3DVT_VERTEX +S_PROCREF: 0x00000000: ( 114, 00000118) MxCore::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 161, 00000718) LegoEntity::VTable0x44 +S_PROCREF: 0x00000000: ( 106, 000002A0) MxDSAnim::CopyFrom +S_UDT: T_UINT4(0075), _Vbase +S_CONSTANT: Type: 0x478A, Value: 1, D3DPT_POINTLIST +S_PROCREF: 0x00000000: ( 85, 000004F8) MXIOINFO::Advance +S_CONSTANT: Type: 0x4790, Value: 18, D3DRENDERSTATE_TEXTUREMIN +S_PROCREF: 0x00000000: ( 161, 000005C8) LegoEntity::VTable0x34 +S_PROCREF: 0x00000000: ( 139, 00000114) LegoPlantManager::ClassName +S_CONSTANT: Type: 0x1017, Value: 3, STUB_CALL_SERVER_NO_HRESULT +S_PROCREF: 0x00000000: ( 87, 00000434) MxEventPresenter::CopyData +S_PROCREF: 0x00000000: ( 68, 0000041C) MxPresenter::SetTickleState +S_PROCREF: 0x00000000: ( 146, 000015F0) MxPtrList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 137, 0000091C) LegoROI::ColorAliasLookup +S_CONSTANT: Type: 0x1059, Value: 6, MXSTREAMER_DELETE_NOTIFY +S_PROCREF: 0x00000000: ( 173, 000001C4) LegoActor::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 128, 00000958) MxCollection::MxCollection +S_GDATA32: [0004:0000B5C8], Type: T_UCHAR(0020), ??_B?1???id@?$numpunct@G@@$D@@9@9 +S_PROCREF: 0x00000000: ( 146, 00000974) UnregisterScripts +S_PROCREF: 0x00000000: ( 85, 00000120) MXIOINFO::Open +S_PROCREF: 0x00000000: ( 171, 00000118) LegoAnimationManager::LegoAnimationManager +S_PROCREF: 0x00000000: ( 155, 000002D0) LegoHideAnimPresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x4790, Value: 46, D3DRENDERSTATE_MIPMAPLODBIAS +S_PROCREF: 0x00000000: ( 53, 00000084) MxStreamListMxDSSubscriber::Find +S_PROCREF: 0x00000000: ( 186, 00000088) InfocenterState::InfocenterState +S_PROCREF: 0x00000000: ( 147, 00004278) LegoRaceCar::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 129, 00000978) MxCollection::Compare +S_PROCREF: 0x00000000: ( 99, 000005DC) DeserializeDSObjectDispatch +S_PROCREF: 0x00000000: ( 28, 000001C4) RaceState::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 55, 00001964) MxStreamController::FindNextActionDataStartFromStreamingAction +S_PROCREF: 0x00000000: ( 99, 000002D8) MxDSObject::CopyFrom +S_PROCREF: 0x00000000: ( 137, 00000A34) LegoROI::SetDisplayBB +S_PROCREF: 0x00000000: ( 129, 0000016C) LegoVideoManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 0000050C) Tgl::Device::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 000003E0) TglImpl::DeviceImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 00005570) JukeBoxState::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), SC_HANDLE +S_PROCREF: 0x00000000: ( 96, 000004E8) MxListEntry::GetValue +S_PROCREF: 0x00000000: ( 10, 00001038) TglImpl::LightImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 129, 00000278) LegoVideoManager::CreateDirect3D +S_PROCREF: 0x00000000: ( 146, 000009B4) GetNoCD_SourceName +S_PROCREF: 0x00000000: ( 105, 00000158) MxDSBuffer::`scalar deleting destructor' +S_UDT: T_32PVOID(0403), HRSRC +S_PROCREF: 0x00000000: ( 106, 00000080) MxDSAnim::MxDSAnim +S_CONSTANT: Type: 0x1067, Value: 4, D3DRMLIGHT_PARALLELPOINT +S_PROCREF: 0x00000000: ( 165, 0000008C) LegoCameraController::LegoCameraController +S_PROCREF: 0x00000000: ( 100, 00000BD0) MxDSMultiAction::Clone +S_PROCREF: 0x00000000: ( 146, 0000019C) ControlManager +S_CONSTANT: Type: 0x4790, Value: 44, D3DRENDERSTATE_TEXTUREADDRESSU +S_PROCREF: 0x00000000: ( 137, 00000314) Vector3Data::Vector3Data +S_LDATA32: [0004:00003C38], Type: T_INT4(0074), g_SetBufferCount +S_UDT: T_32PVOID(0403), HOLEMENU +S_GDATA32: [0001:0004E370], Type: 0x197D, c_dfDIKeyboard +S_PROCREF: 0x00000000: ( 188, 000002D0) InfocenterDoor::Notify +S_CONSTANT: Type: 0x2E6F, Value: 0, D3DRMWRAP_FLAT +S_PROCREF: 0x00000000: ( 147, 00003044) LegoPartPresenter::ClassName +S_PROCREF: 0x00000000: ( 156, 00000518) LegoGameState::SerializePlayersInfo +S_PROCREF: 0x00000000: ( 21, 000004F8) Vector2Impl::Dot +S_PROCREF: 0x00000000: ( 21, 00000564) Vector2Impl::Dot +S_PROCREF: 0x00000000: ( 21, 000005D0) Vector2Impl::Dot +S_PROCREF: 0x00000000: ( 21, 0000063C) Vector2Impl::Dot +S_PROCREF: 0x00000000: ( 112, 000005F0) MxDirect3D::SetDevice +S_PROCREF: 0x00000000: ( 51, 00000080) MxString::MxString +S_PROCREF: 0x00000000: ( 51, 00000174) MxString::MxString +S_PROCREF: 0x00000000: ( 51, 00000204) MxString::MxString +S_PROCREF: 0x00000000: ( 20, 00000088) RegistrationBook::RegistrationBook +S_PROCREF: 0x00000000: ( 154, 00000F00) LegoInputManager::ReleaseDX +S_PROCREF: 0x00000000: ( 138, 0000042C) LegoRace::VTable0x64 +S_PROCREF: 0x00000000: ( 119, 000001C8) MxBackgroundAudioManager::IsA +S_PROCREF: 0x00000000: ( 70, 00000368) MxPalette::GetEntries +S_PROCREF: 0x00000000: ( 133, 000001DC) LegoTexturePresenter::DoneTickle +S_GDATA32: [0004:00000E34], Type: 0x1065, g_policeScript +S_PROCREF: 0x00000000: ( 82, 00000514) MxLoopingSmkPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 112, 00000EFC) MxDeviceEnumerate::EnumDirectDrawCallback +S_PROCREF: 0x00000000: ( 85, 00000454) MXIOINFO::Flush +S_PROCREF: 0x00000000: ( 128, 000009F8) MxCollection::Destroy +S_CONSTANT: Type: 0x104C, Value: 3, LookupMode_LowerCase2 +S_CONSTANT: Type: 0x4790, Value: 48, D3DRENDERSTATE_RANGEFOGENABLE +S_UDT: T_32PULONG(0422), LPD3DMATRIXHANDLE +S_PROCREF: 0x00000000: ( 38, 00000828) MxWavePresenter::PutData +S_PROCREF: 0x00000000: ( 47, 000001E0) MxTransitionManager::`scalar deleting destructor' +S_UDT: T_USHORT(0021), wctype_t +S_GDATA32: [0004:00000E60], Type: 0x1065, g_nocdSourceName +S_CONSTANT: Type: 0x4790, Value: 1, D3DRENDERSTATE_TEXTUREHANDLE +S_PROCREF: 0x00000000: ( 119, 000005D8) MxBackgroundAudioManager::FUN_1007ee70 +S_PROCREF: 0x00000000: ( 112, 000012D8) MxDeviceEnumerate::DisplayModesEnumerateCallback +S_UDT: T_CHAR(0010), MxS8 +S_PROCREF: 0x00000000: ( 128, 0000084C) LegoPathControllerList::~LegoPathControllerList +S_CONSTANT: Type: 0x104C, Value: 1, LookupMode_LowerCase +S_PROCREF: 0x00000000: ( 137, 000009D4) LegoROI::SetSomeHandlerFunction +S_PROCREF: 0x00000000: ( 102, 000002CC) MxDSFile::MxDSFile +S_CONSTANT: Type: 0x1077, Value: 0, D3DRMSORT_FROMPARENT +S_PROCREF: 0x00000000: ( 164, 00000084) LegoCarBuild::LegoCarBuild +S_PROCREF: 0x00000000: ( 154, 00000088) LegoInputManager::LegoInputManager +S_PROCREF: 0x00000000: ( 138, 000003C4) LegoRace::VTable0x74 +S_PROCREF: 0x00000000: ( 152, 000007B4) LegoLoadCacheSoundPresenter::Init +S_PROCREF: 0x00000000: ( 156, 00000908) LegoGameState::ScoreStruct::WriteScoreHistory +S_PROCREF: 0x00000000: ( 60, 000001B8) MxSmkPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 13, 00000634) TglImpl::GroupImpl::SetMaterialMode +S_GDATA32: [0004:00000A98], Type: T_REAL32(0040), g_movementMaxAccel +S_CONSTANT: Type: 0x2E71, Value: 2, D3DRMXOF_TEXT +S_CONSTANT: Type: 0x1007, Value: 4, ParallelPoint +S_PROCREF: 0x00000000: ( 91, 00000384) MxDSStreamingAction::Init +S_PROCREF: 0x00000000: ( 65, 00001264) MxCollection::Compare +S_PROCREF: 0x00000000: ( 89, 00000080) MxEntity::Create +S_PROCREF: 0x00000000: ( 146, 00000378) GetGifManager +S_PROCREF: 0x00000000: ( 147, 00003104) LegoRaceCar::ClassName +S_PROCREF: 0x00000000: ( 99, 000003AC) MxDSObject::SetObjectName +S_PROCREF: 0x00000000: ( 146, 000003B4) FUN_10015820 +S_PROCREF: 0x00000000: ( 92, 000002A8) MxDSStill::CopyFrom +S_PROCREF: 0x00000000: ( 165, 00000120) LegoCameraController::ClassName +S_PROCREF: 0x00000000: ( 147, 00002BA8) LegoActionControlPresenter::ClassName +S_PROCREF: 0x00000000: ( 135, 00000104) LegoState::VTable0x14 +S_PROCREF: 0x00000000: ( 112, 000014E0) MxDeviceEnumerate::EnumDevicesCallback +S_PROCREF: 0x00000000: ( 119, 0000094C) MxBackgroundAudioManager::PlayMusic +S_PROCREF: 0x00000000: ( 38, 0000040C) MxWavePresenter::WriteToSoundBuffer +S_PROCREF: 0x00000000: ( 10, 000016EC) TglImpl::RendererImpl::SetTextureDefaultShadeCount +S_PROCREF: 0x00000000: ( 39, 0000091C) MxVideoPresenter::IsHit +S_PROCREF: 0x00000000: ( 83, 00000154) MxLoopingMIDIPresenter::PutData +S_PROCREF: 0x00000000: ( 50, 00000488) MxThread::Sleep +S_PROCREF: 0x00000000: ( 86, 00000328) MxFlcPresenter::CreateBitmap +S_PROCREF: 0x00000000: ( 147, 00004B64) Doors::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 65, 00000F4C) MxRegion::VTable0x1c +S_PROCREF: 0x00000000: ( 60, 00001074) MxSmkPresenter::VTable0x88 +S_PROCREF: 0x00000000: ( 8, 00000088) TglImpl::UnkImpl::ImplementationDataPtr +S_PROCREF: 0x00000000: ( 50, 00000540) MxThread::ThreadProc +S_PROCREF: 0x00000000: ( 214, 00000190) Act3::IsA +S_UDT: T_ULONG(0022), HREFTYPE +S_PROCREF: 0x00000000: ( 161, 00000814) LegoEntity::Notify +S_UDT: T_32PVOID(0403), PSECURITY_DESCRIPTOR +S_PROCREF: 0x00000000: ( 54, 000007AC) MxRAMStreamController::ClassName +S_CONSTANT: Type: 0x4790, Value: 25, D3DRENDERSTATE_ALPHAFUNC +S_CONSTANT: Type: 0x1013, Value: (LF_CHAR) -1(0xFF), MEM_POOL_CORRUPT +S_UDT: T_32PVOID(0403), HLOCAL +S_PROCREF: 0x00000000: ( 195, 0000041C) Helicopter::VTable0xe4 +S_UDT: T_32PVOID(0403), HKEY +S_PROCREF: 0x00000000: ( 195, 000004C4) Helicopter::VTable0xd4 +S_PROCREF: 0x00000000: ( 122, 00000330) MxAudioManager::InitPresenters +S_UDT: T_UCHAR(0020), MxU8 +S_PROCREF: 0x00000000: ( 147, 0000008C) LegoObjectFactory::LegoObjectFactory +S_PROCREF: 0x00000000: ( 65, 00001984) MxListCursor::MxListCursor +S_PROCREF: 0x00000000: ( 55, 0000075C) MxStreamListMxDSSubscriber::~MxStreamListMxDSSubscriber +S_PROCREF: 0x00000000: ( 21, 00000C18) Vector3Impl::EqualsCross +S_PROCREF: 0x00000000: ( 21, 00000C8C) Vector3Impl::EqualsCross +S_PROCREF: 0x00000000: ( 21, 00000D00) Vector3Impl::EqualsCross +S_CONSTANT: Type: 0x4790, Value: 49, D3DRENDERSTATE_ANISOTROPY +S_PROCREF: 0x00000000: ( 185, 0000007C) Isle::Isle +S_PROCREF: 0x00000000: ( 112, 0000080C) MxDriver::MxDriver +S_PROCREF: 0x00000000: ( 112, 00001040) MxDriver::MxDriver +S_PROCREF: 0x00000000: ( 119, 00000090) MxBackgroundAudioManager::MxBackgroundAudioManager +S_CONSTANT: Type: 0x1019, Value: 1, PROXY_GETBUFFER +S_PROCREF: 0x00000000: ( 147, 00002A30) LegoCarRaceActor::ClassName +S_PROCREF: 0x00000000: ( 97, 0000011C) MxDSParallelAction::ClassName +S_PROCREF: 0x00000000: ( 73, 000013F0) MxHashTable::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 39, 000007A8) MxVideoPresenter::Init +S_PROCREF: 0x00000000: ( 47, 0000011C) MxTransitionManager::ClassName +S_UDT: T_UINT4(0075), MMRESULT +S_UDT: T_32PVOID(0403), HWND +S_PROCREF: 0x00000000: ( 118, 00000830) MxBitmap::ImportPalette +S_PROCREF: 0x00000000: ( 76, 000007B4) MxNotificationManager::Send +S_PROCREF: 0x00000000: ( 135, 000001A8) LegoState::VTable0x1c +S_PROCREF: 0x00000000: ( 60, 00000B68) MxPtrList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 211, 00000538) Ambulance::IsA +S_PROCREF: 0x00000000: ( 121, 000000E0) MxAudioPresenter::SetVolume +S_PROCREF: 0x00000000: ( 147, 00004D30) BumpBouy::`scalar deleting destructor' +S_GDATA32: [0004:000002EC], Type: T_32PRCHAR(0470), g_strSOUND +S_UDT: T_32PVOID(0403), I_RPC_HANDLE +S_PROCREF: 0x00000000: ( 58, 000001E4) MxSoundPresenter::AddToManager +S_PROCREF: 0x00000000: ( 110, 00001830) MxDiskStreamController::FUN_100c8540 +S_PROCREF: 0x00000000: ( 204, 00000148) CarRace::IsA +S_PROCREF: 0x00000000: ( 138, 00000234) LegoRace::ClassName +S_PROCREF: 0x00000000: ( 138, 0000055C) LegoRace::Notify +S_PROCREF: 0x00000000: ( 168, 0000016C) MxVariable::~MxVariable +S_PROCREF: 0x00000000: ( 109, 000005B4) MxDiskStreamProviderThread::~MxDiskStreamProviderThread +S_PROCREF: 0x00000000: ( 85, 000001E0) MXIOINFO::Close +S_PROCREF: 0x00000000: ( 100, 00000524) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 000026E0) LegoWorld::IsA +S_PROCREF: 0x00000000: ( 33, 000001A4) Police::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 109, 000000E8) MxDiskStreamProviderThread::StartWithTarget +S_PROCREF: 0x00000000: ( 129, 000001EC) LegoVideoManager::~LegoVideoManager +S_PROCREF: 0x00000000: ( 105, 000001D0) MxDSBuffer::~MxDSBuffer +S_PROCREF: 0x00000000: ( 110, 00001558) MxDiskStreamController::VTable0x24 +S_PROCREF: 0x00000000: ( 105, 000005BC) MxDSBuffer::StartPresenterFromAction +S_PROCREF: 0x00000000: ( 110, 00000CFC) MxDiskStreamController::VTable0x34 +S_UDT: T_INT4(0074), BOOL +S_UDT: T_INT4(0074), bool +S_CONSTANT: Type: 0x2E6F, Value: 2, D3DRMWRAP_SPHERE +S_PROCREF: 0x00000000: ( 103, 00000378) MxDSEvent::Clone +S_GDATA32: [0004:00003BE8], Type: T_LONG(0012), MxTimer::g_lastTimeCalculated +S_PROCREF: 0x00000000: ( 81, 0000028C) MxMediaManager::InitPresenters +S_CONSTANT: Type: 0x1073, Value: 1, D3DRMFOG_EXPONENTIAL +S_PROCREF: 0x00000000: ( 73, 00001728) MxOmni::CreatePresenter +S_PROCREF: 0x00000000: ( 39, 0000045C) MxVideoPresenter::AlphaMask::AlphaMask +S_PROCREF: 0x00000000: ( 39, 0000062C) MxVideoPresenter::AlphaMask::AlphaMask +S_GDATA32: [0004:00000E50], Type: 0x1065, g_testScript +S_PROCREF: 0x00000000: ( 70, 00000598) MxPalette::ApplySystemEntriesToPalette +S_PROCREF: 0x00000000: ( 38, 00000B2C) MxWavePresenter::Resume +S_CONSTANT: Type: 0x4790, Value: 32, D3DRENDERSTATE_SUBPIXELX +S_PROCREF: 0x00000000: ( 55, 00000A0C) List::~List +S_PROCREF: 0x00000000: ( 91, 000003DC) MxDSStreamingAction::CopyFrom +S_PROCREF: 0x00000000: ( 65, 0000162C) MxPtrList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 195, 0000072C) Helicopter::VTable0x74 +S_PROCREF: 0x00000000: ( 81, 00000524) MxMediaManager::AddPresenter +S_PROCREF: 0x00000000: ( 70, 000004D4) MxPalette::Detach +S_PROCREF: 0x00000000: ( 4, 00000734) ViewLODListManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 00002320) CreateStreamObject +S_PROCREF: 0x00000000: ( 39, 00000CC8) MxVideoPresenter::RepeatingTickle +S_UDT: T_UINT4(0075), MCIDEVICEID +S_CONSTANT: Type: 0x104E, Value: 8, MxDSType_Event +S_PROCREF: 0x00000000: ( 147, 000027F8) HelicopterState::ClassName +S_PROCREF: 0x00000000: ( 54, 00000874) MxRAMStreamController::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 15, c_notificationTimer +S_PROCREF: 0x00000000: ( 21, 00000160) Vector2Impl::SubVectorImpl +S_PROCREF: 0x00000000: ( 132, 000004E0) SetAppCursor +S_PROCREF: 0x00000000: ( 161, 000002C4) LegoEntity::Destroy +S_UDT: T_32PINT4(0474), LPBOOL +S_PROCREF: 0x00000000: ( 103, 000002A8) MxDSEvent::CopyFrom +S_UDT: T_32PVOID(0403), HKL +S_PROCREF: 0x00000000: ( 146, 0000050C) PlayMusic +S_PROCREF: 0x00000000: ( 132, 000000E8) InvokeAction +S_PROCREF: 0x00000000: ( 117, 000005AC) MxCompositeMediaPresenter::Tickle +S_PROCREF: 0x00000000: ( 73, 0000118C) MxCollection::Compare +S_PROCREF: 0x00000000: ( 111, 00000550) MxDirectDraw::Destroy +S_GDATA32: [0004:0000B5C4], Type: T_UCHAR(0020), ??_B?1???id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@@@@@@$D@@9@9 +S_PROCREF: 0x00000000: ( 122, 000001E4) MxAudioManager::~MxAudioManager +S_PROCREF: 0x00000000: ( 185, 000002B8) Isle::~Isle +S_PROCREF: 0x00000000: ( 111, 00000F9C) MxDirectDraw::RestorePaletteEntries +S_PROCREF: 0x00000000: ( 134, 00000AEC) num_put > >::id +S_PROCREF: 0x00000000: ( 89, 000002AC) MxEntity::MxEntity +S_PROCREF: 0x00000000: ( 34, 00000174) PizzeriaState::IsA +S_PROCREF: 0x00000000: ( 39, 000002FC) MxVideoPresenter::VTable0x78 +S_CONSTANT: Type: 0x100F, Value: 7, MEM_EXCEEDED_CEILING +S_PROCREF: 0x00000000: ( 119, 000004C8) MxBackgroundAudioManager::DestroyMusic +S_PROCREF: 0x00000000: ( 146, 00000120) BackgroundAudioManager +S_PROCREF: 0x00000000: ( 48, 00000080) MxTimer::MxTimer +S_PROCREF: 0x00000000: ( 10, 00000998) TglImpl::RendererImpl::CreateGroup +S_PROCREF: 0x00000000: ( 65, 000021B8) MxList::InsertEntry +S_PROCREF: 0x00000000: ( 124, 00000804) MxAtomId::Clear +S_PROCREF: 0x00000000: ( 21, 000014FC) Vector3Impl::SubVectorImpl +S_PROCREF: 0x00000000: ( 73, 00001C04) MxOmni::GetHD +S_PROCREF: 0x00000000: ( 112, 00001DE0) MxDevice::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 154, 000001D0) LegoInputManager::Tickle +S_PROCREF: 0x00000000: ( 25, 000005E8) Matrix4Impl::EqualsDataProduct +S_PROCREF: 0x00000000: ( 23, 0000008C) CalcLocalTransform +S_PROCREF: 0x00000000: ( 210, 00000194) AmbulanceMissionState::IsA +S_PROCREF: 0x00000000: ( 11, 00000784) TglImpl::MeshImpl::GetTexture +S_PROCREF: 0x00000000: ( 48, 000000F8) MxTimer::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 102, 00000654) MxDSFile::Close +S_CONSTANT: Type: 0x1013, Value: (LF_ULONG) 2147483647, MEM_POOL_STATUS_INT_MAX +S_PROCREF: 0x00000000: ( 112, 00001260) MxDeviceEnumerate::BuildErrorString +S_PROCREF: 0x00000000: ( 147, 000036B8) Doors::ClassName +S_PROCREF: 0x00000000: ( 9, 00000800) TglImpl::TextureImpl::SetPalette +S_CONSTANT: Type: 0x4790, Value: 20, D3DRENDERSTATE_DESTBLEND +S_PROCREF: 0x00000000: ( 54, 00000A2C) MxStreamerNotification::~MxStreamerNotification +S_PROCREF: 0x00000000: ( 207, 0000007C) Bike::Bike +S_PROCREF: 0x00000000: ( 109, 00000168) MxDiskStreamProvider::MxDiskStreamProvider +S_PROCREF: 0x00000000: ( 147, 00003970) CarRaceState::ClassName +S_PROCREF: 0x00000000: ( 137, 000007B8) LegoROI::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00001C40) MxOmni::SetHD +S_PROCREF: 0x00000000: ( 146, 0000033C) BuildingManager +S_PROCREF: 0x00000000: ( 102, 00000410) MxDSSource::IsA +S_PROCREF: 0x00000000: ( 185, 0000075C) Isle::VTable0x64 +S_CONSTANT: Type: 0x1073, Value: 0, D3DRMFOG_LINEAR +S_CONSTANT: Type: 0x478A, Value: (LF_ULONG) 2147483647, D3DPT_FORCE_DWORD +S_CONSTANT: Type: 0x1067, Value: 3, D3DRMLIGHT_DIRECTIONAL +S_PROCREF: 0x00000000: ( 137, 00000AA0) LegoROI::UpdateWorldBoundingVolumes +S_PROCREF: 0x00000000: ( 148, 0000056C) LegoNavController::SetDefaults +S_PROCREF: 0x00000000: ( 96, 00000204) MxCollection::~MxCollection +S_PROCREF: 0x00000000: ( 142, 000001E0) LegoPathController::`scalar deleting destructor' +S_CONSTANT: Type: 0x1050, Value: 0, ExtraActionType_none +S_PROCREF: 0x00000000: ( 4, 00000D38) ViewLODList::`scalar deleting destructor' +S_UDT: T_USHORT(0021), WCHAR +S_PROCREF: 0x00000000: ( 60, 000011F8) MxList::~MxList +S_UDT: T_UCHAR(0020), UCHAR +S_PROCREF: 0x00000000: ( 107, 00000594) MxDSAction::GetSizeOnDisk +S_PROCREF: 0x00000000: ( 78, 00000264) MxMusicManager::InitData +S_PROCREF: 0x00000000: ( 14, 0000014C) TglImpl::DeviceImpl::GetHeight +S_PROCREF: 0x00000000: ( 146, 000009F4) LegoOmni::LegoOmni +S_PROCREF: 0x00000000: ( 124, 00000080) MxAtomId::MxAtomId +S_PROCREF: 0x00000000: ( 50, 00000290) MxThread::MxThread +S_CONSTANT: Type: 0x4790, Value: 35, D3DRENDERSTATE_FOGTABLEMODE +S_PROCREF: 0x00000000: ( 105, 00000384) MxDSBuffer::SetBufferPointer +S_PROCREF: 0x00000000: ( 116, 00000100) MxCompositePresenter::MxCompositePresenter +S_PROCREF: 0x00000000: ( 4, 00000BEC) _Tree,map >::_Kfn,ROINameComparator,allocator >::_Insert +S_PROCREF: 0x00000000: ( 42, 0000091C) MxVideoManager::InvalidateRect +S_PROCREF: 0x00000000: ( 118, 0000077C) MxBitmap::CreatePalette +S_PROCREF: 0x00000000: ( 152, 00000464) MxWavePresenter::ClassName +S_PROCREF: 0x00000000: ( 141, 0000008C) LegoPathPresenter::LegoPathPresenter +S_PROCREF: 0x00000000: ( 163, 00000094) LegoCarBuildAnimPresenter::LegoCarBuildAnimPresenter +S_UDT: T_32PUSHORT(0421), LPCWSTR +S_PROCREF: 0x00000000: ( 146, 00000A84) LegoOmni::ClassName +S_PROCREF: 0x00000000: ( 127, 000001A0) LegoWorldPresenter::ClassName +S_PROCREF: 0x00000000: ( 9, 000001A8) TglImpl::TglD3DRMIMAGE::TglD3DRMIMAGE +S_PROCREF: 0x00000000: ( 13, 0000045C) TglImpl::TextureImpl::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 146, 00001E0C) LegoOmni::Notify +S_PROCREF: 0x00000000: ( 99, 00000420) MxDSObject::SetSourceName +S_PROCREF: 0x00000000: ( 109, 00000E40) MxDiskStreamProvider::GetFileSize +S_PROCREF: 0x00000000: ( 156, 000001A8) LegoGameState::Save +S_PROCREF: 0x00000000: ( 152, 000003A4) MxSoundPresenter::ClassName +S_PROCREF: 0x00000000: ( 164, 00000108) LegoCarBuild::ClassName +S_PROCREF: 0x00000000: ( 73, 00000228) TickleManager +S_PROCREF: 0x00000000: ( 164, 00000310) LegoCarBuild::Notify +S_PROCREF: 0x00000000: ( 147, 00003BA4) InfoCenterEntity::ClassName +S_PROCREF: 0x00000000: ( 92, 00000378) MxDSStill::Clone +S_PROCREF: 0x00000000: ( 160, 000001E0) LegoEntityPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 110, 00001168) MxDiskStreamController::FUN_100c7d10 +S_PROCREF: 0x00000000: ( 79, 00000168) MxMIDIPresenter::IsA +S_PROCREF: 0x00000000: ( 51, 000000FC) MxString::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 76, 000003F0) List::~List +S_PROCREF: 0x00000000: ( 52, 00000088) MxStreamProvider::SetResourceToGet +S_GDATA32: [0004:0000B5C6], Type: T_UCHAR(0020), ??_B?1???id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@@@@@@$D@@9@9 +S_UDT: T_ULONG(0022), D3DRMMAPPING +S_PROCREF: 0x00000000: ( 85, 00000080) MXIOINFO::MXIOINFO +S_PROCREF: 0x00000000: ( 139, 00000088) LegoPlantManager::LegoPlantManager +S_PROCREF: 0x00000000: ( 5, 0000008C) TowTrackMissionState::TowTrackMissionState +S_PROCREF: 0x00000000: ( 127, 00000374) LegoWorldPresenter::StartAction +S_CONSTANT: Type: 0x4790, Value: 31, D3DRENDERSTATE_SUBPIXEL +S_PROCREF: 0x00000000: ( 64, 00000544) MxRegionCursor::VTable0x14 +S_UDT: T_USHORT(0021), LANGID +S_PROCREF: 0x00000000: ( 64, 0000061C) MxRegionCursor::VTable0x24 +S_PROCREF: 0x00000000: ( 5, 000002AC) TowTrackMissionState::VTable0x1c +S_UDT: T_32PRCHAR(0470), PSTR +S_UDT: T_USHORT(0021), _ino_t +S_PROCREF: 0x00000000: ( 68, 000001DC) MxPresenter::RepeatingTickle +S_PROCREF: 0x00000000: ( 28, 00000114) RaceState::ClassName +S_PROCREF: 0x00000000: ( 78, 00000110) MxMusicManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 96, 00000968) MxList::Append +S_PROCREF: 0x00000000: ( 116, 00000E58) MxList::DeleteEntry +S_PROCREF: 0x00000000: ( 119, 00000898) MxBackgroundAudioManager::StopAction +S_PROCREF: 0x00000000: ( 105, 00000AEC) MxDSBuffer::AddRef +S_PROCREF: 0x00000000: ( 130, 00000090) LegoVehicleBuildState::UnkStruct::UnkStruct +S_UDT: T_32PUSHORT(0421), BSTR +S_PROCREF: 0x00000000: ( 217, 00000164) LegoState::IsA +S_PROCREF: 0x00000000: ( 4, 00000298) _Tree,map >::_Kfn,ROINameComparator,allocator >::iterator::_Inc +S_PROCREF: 0x00000000: ( 136, 00000088) LegoSoundManager::LegoSoundManager +S_PROCREF: 0x00000000: ( 112, 0000074C) MxAssignedDevice::MxAssignedDevice +S_PROCREF: 0x00000000: ( 145, 0000008C) LegoPalettePresenter::LegoPalettePresenter +S_PROCREF: 0x00000000: ( 169, 00000358) MxMediaPresenter::`scalar deleting destructor' +S_CONSTANT: Type: 0x1059, Value: 10, c_notificationMouseMove +S_GDATA32: [0004:00000A88], Type: T_INT4(0074), g_mouseDeadzone +S_PROCREF: 0x00000000: ( 109, 00000C50) MxDiskStreamProvider::PerformWork +S_PROCREF: 0x00000000: ( 18, 000002D8) Score::Create +S_PROCREF: 0x00000000: ( 135, 00000244) LegoFileStream::FUN_10006030 +S_PROCREF: 0x00000000: ( 122, 00000168) MxAudioManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 128, 00000620) MxCollection::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 10, 00000DAC) Tgl::Camera::~Camera +S_PROCREF: 0x00000000: ( 34, 00000088) PizzeriaState::PizzeriaState +S_UDT: T_VOID(0003), MENUTEMPLATEA +S_PROCREF: 0x00000000: ( 173, 00000114) LegoActor::ClassName +S_PROCREF: 0x00000000: ( 60, 00000380) MxSmkPresenter::LoadHeader +S_UDT: T_32PUSHORT(0421), LPWSTR +S_UDT: T_32PVOID(0403), LPMENUTEMPLATEA +S_PROCREF: 0x00000000: ( 65, 00000BD0) MxPtrListCursor::~MxPtrListCursor +S_GDATA32: [0004:00000E4C], Type: 0x1065, g_introScript +S_PROCREF: 0x00000000: ( 133, 00000180) LegoTexturePresenter::PutData +S_PROCREF: 0x00000000: ( 118, 00000980) MxBitmap::StretchBits +S_PROCREF: 0x00000000: ( 134, 00000084) LegoStream::WriteVariable +S_CONSTANT: Type: 0x100F, Value: 0, MEM_NO_ERROR +S_PROCREF: 0x00000000: ( 147, 00004960) HelicopterState::`scalar deleting destructor' +S_UDT: T_ULONG(0022), D3DRMRENDERQUALITY +S_PROCREF: 0x00000000: ( 127, 0000008C) LegoWorldPresenter::configureLegoWorldPresenter +S_PROCREF: 0x00000000: ( 136, 00000194) LegoSoundManager::~LegoSoundManager +S_UDT: T_VOID(0003), MENUTEMPLATEW +S_PROCREF: 0x00000000: ( 112, 00001B24) MxDeviceEnumerate::FUN_1009d1a0 +S_PROCREF: 0x00000000: ( 142, 00000260) LegoPathController::~LegoPathController +S_PROCREF: 0x00000000: ( 147, 000054C4) RaceStandsEntity::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 155, 00000208) LegoHideAnimPresenter::ClassName +S_UDT: T_32PLONG(0412), PLONG +S_PROCREF: 0x00000000: ( 105, 00000918) MxStreamChunk::IsA +S_PROCREF: 0x00000000: ( 66, 00000494) MxRAMStreamProvider::SetResourceToGet +S_PROCREF: 0x00000000: ( 112, 00001BBC) MxDeviceEnumerate::FUN_1009d210 +S_UDT: T_ULONG(0022), ULONG +S_CONSTANT: Type: 0x1069, Value: 0, D3DRMTEXTURE_NEAREST +S_PROCREF: 0x00000000: ( 161, 00000394) LegoEntity::SetROI +S_PROCREF: 0x00000000: ( 117, 00000328) MxCompositeMediaPresenter::StartAction +S_PROCREF: 0x00000000: ( 21, 00000E4C) Vector4Impl::SubVectorImpl +S_CONSTANT: Type: 0x101E, Value: (LF_ULONG) 2147483647, D3DLIGHT_FORCE_DWORD +S_PROCREF: 0x00000000: ( 154, 000002C4) LegoInputManager::Create +S_PROCREF: 0x00000000: ( 87, 00000578) MxEventPresenter::PutData +S_PROCREF: 0x00000000: ( 109, 00000654) MxDiskStreamProvider::ClassName +S_PROCREF: 0x00000000: ( 100, 00001028) MxList::~MxList +S_PROCREF: 0x00000000: ( 200, 00000168) ElevatorBottom::IsA +S_PROCREF: 0x00000000: ( 133, 0000008C) LegoTexturePresenter::~LegoTexturePresenter +S_PROCREF: 0x00000000: ( 147, 00003B40) HospitalEntity::IsA +S_PROCREF: 0x00000000: ( 185, 00000104) Isle::ClassName +S_PROCREF: 0x00000000: ( 109, 00000F6C) MxDiskStreamProvider::GetBufferForDWords +S_PROCREF: 0x00000000: ( 185, 000003D8) Isle::Notify +S_PROCREF: 0x00000000: ( 115, 000001E0) MxControlPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 124, 0000030C) MxAtomId::operator= +S_CONSTANT: Type: 0x104E, Value: 0, MxDSType_Object +S_PROCREF: 0x00000000: ( 94, 00000470) MxDSSound::GetSizeOnDisk +S_PROCREF: 0x00000000: ( 77, 00000224) MxMusicPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 211, 000001DC) IslePathActor::IsA +S_PROCREF: 0x00000000: ( 162, 000002F0) LegoControlManager::Register +S_CONSTANT: Type: 0x101E, Value: 2, D3DLIGHT_SPOT +S_PROCREF: 0x00000000: ( 154, 00000FDC) LegoInputManager::GetJoystickState +S_PROCREF: 0x00000000: ( 128, 00000E40) MxPtrList::`scalar deleting destructor' +S_UDT: T_INT4(0074), ptrdiff_t +S_PROCREF: 0x00000000: ( 115, 00000334) MxControlPresenter::VTable0x68 +S_PROCREF: 0x00000000: ( 152, 0000026C) MxAudioPresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00001084) MxCollection::Destroy +S_PROCREF: 0x00000000: ( 160, 0000011C) LegoEntityPresenter::ClassName +S_PROCREF: 0x00000000: ( 66, 0000018C) MxRAMStreamProvider::IsA +S_PROCREF: 0x00000000: ( 81, 00000124) MxMediaManager::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 185, 000004B8) Isle::Stop +S_PROCREF: 0x00000000: ( 39, 00000B84) MxVideoPresenter::ReadyTickle +S_PROCREF: 0x00000000: ( 86, 00000234) MxFlcPresenter::~MxFlcPresenter +S_GDATA32: [0004:00000AB4], Type: T_UCHAR(0020), g_turnUseVelocity +S_PROCREF: 0x00000000: ( 65, 00002014) MxRegionTopBottom::FUN_100c57b0 +S_PROCREF: 0x00000000: ( 56, 00000368) MxStreamChunk::IntoFlags +S_PROCREF: 0x00000000: ( 110, 0000054C) list >::_Buynode +S_PROCREF: 0x00000000: ( 7, 00000860) TglImpl::ViewImpl::Clear +S_UDT: T_UCHAR(0020), boolean +S_UDT: T_UCHAR(0020), BOOLEAN +S_UDT: T_32PVOID(0403), HMIDISTRM +S_PROCREF: 0x00000000: ( 54, 00000938) MxStreamer::Close +S_PROCREF: 0x00000000: ( 79, 00000088) MxMIDIPresenter::MxMIDIPresenter +S_PROCREF: 0x00000000: ( 96, 00000414) MxList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 54, 000006B4) MxStreamer::Open +S_PROCREF: 0x00000000: ( 102, 00000514) MxDSFile::Open +S_PROCREF: 0x00000000: ( 152, 00000520) MxWavePresenter::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 73, 00000694) MxOmni::~MxOmni +S_PROCREF: 0x00000000: ( 100, 00000914) MxDSMultiAction::SetUnknown90 +S_PROCREF: 0x00000000: ( 137, 000000F8) LegoROI::FUN_100a46b0 +S_PROCREF: 0x00000000: ( 96, 000005E0) MxDSSelectAction::IsA +S_PROCREF: 0x00000000: ( 88, 000002D8) MxEventManager::Create +S_PROCREF: 0x00000000: ( 147, 00002DA0) LegoActorPresenter::IsA +S_UDT: T_32PVOID(0403), HMENU +S_PROCREF: 0x00000000: ( 4, 00000F48) LODList::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 110, 00001AC8) _Construct +S_PROCREF: 0x00000000: ( 96, 00000088) MxDSSelectAction::MxDSSelectAction +S_PROCREF: 0x00000000: ( 96, 00000D08) MxDSSelectAction::Clone +S_PROCREF: 0x00000000: ( 125, 00000154) MxActionNotificationParam::`scalar deleting destructor' +S_PROCREF: 0x00000000: ( 147, 0000411C) LegoPartPresenter::`scalar deleting destructor' + + +*** COFF SYMBOL RVA + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** INLINEE LINES + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** LINES + +** Module: "LEGO1.exp" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None), 0001:00047540-00047547, line/addr pairs = 2 + + 12 00047540 14 00047546 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None), 0001:00047550-00047557, line/addr pairs = 2 + + 18 00047550 20 00047556 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None), 0001:00047560-00047567, line/addr pairs = 2 + + 24 00047560 26 00047566 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None), 0001:00047570-000476A9, line/addr pairs = 9 + + 30 00047570 31 00047592 32 00047597 33 000475A4 + 34 000475BB 35 0004765B 37 00047660 38 0004766C + 33 0004767C + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None), 0001:00047780-00047790, line/addr pairs = 3 + + 42 00047780 44 00047789 46 0004778F + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../tgl/tglvector.h (None), 0001:000476B0-00047704, line/addr pairs = 1 + + 38 000476B0 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../tgl/tglvector.h (None), 0001:00047710-00047713, line/addr pairs = 1 + + 36 00047710 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../tgl/tglvector.h (None), 0001:00047720-00047721, line/addr pairs = 1 + + 38 00047720 + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewmanager.cpp (None), 0001:00047530-00047533, line/addr pairs = 1 + + 5 00047530 + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None), 0001:000466B0-0004679B, line/addr pairs = 3 + + 9 000466B0 10 00046764 9 00046768 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None), 0001:00046E00-00046E52, line/addr pairs = 2 + + 14 00046E00 16 00046E2B + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None), 0001:00046E60-00047088, line/addr pairs = 7 + + 20 00046E60 30 00046E80 31 00046F08 34 00046F0B + 35 00046F2B 37 00046F46 42 0004705F + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None), 0001:000474A0-000474A5, line/addr pairs = 2 + + 47 000474A0 49 000474A2 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None), 0001:000474B0-000474B3, line/addr pairs = 1 + + 53 000474B0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:000467A0-00046864, line/addr pairs = 3 + + 167 000467A0 168 00046843 169 0004685D + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00046870-000468AC, line/addr pairs = 7 + + 97 00046870 98 0004687D 99 0004688D 101 0004688E + 102 0004689A 103 000468A2 104 000468A9 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:000468B0-00046CFF, line/addr pairs = 80 + + 247 000468B0 248 000468C1 250 0004690F 252 0004691C + 255 00046924 253 00046939 254 0004693B 251 00046941 + 256 00046947 276 00046951 277 00046961 279 00046968 + 282 0004696C 283 0004696F 278 00046971 283 00046973 + 285 0004697E 288 00046987 289 00046999 286 0004699B + 289 000469A4 291 000469B6 294 000469C2 292 000469D5 + 293 000469DE 257 000469E0 258 000469E7 259 000469EB + 260 000469EF 261 000469F2 262 000469F4 263 000469FA + 264 000469FF 265 00046A04 266 00046A09 268 00046A1A + 271 00046A1E 267 00046A23 272 00046A25 273 00046A32 + 295 00046A40 296 00046A4A 297 00046A67 298 00046A6B + 299 00046A6E 300 00046A74 301 00046A7B 302 00046A86 + 303 00046AC1 305 00046AC6 321 00046AE1 322 00046AE7 + 323 00046AEE 324 00046AF9 325 00046B33 327 00046B37 + 328 00046B50 329 00046B57 330 00046B5C 309 00046B6A + 310 00046B73 311 00046B7C 312 00046B83 313 00046BBF + 314 00046BC5 315 00046BCE 316 00046BD9 317 00046BE2 + 331 00046C2A 332 00046C32 333 00046C3C 334 00046C43 + 335 00046C7B 336 00046C80 337 00046C89 338 00046C94 + 339 00046C9C 341 00046CD8 343 00046CDF 345 00046CF3 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00046D00-00046D39, line/addr pairs = 6 + + 433 00046D00 434 00046D13 435 00046D1E 437 00046D21 + 433 00046D2B 437 00046D33 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:000470E0-0004712B, line/addr pairs = 9 + + 86 000470E0 87 000470E3 88 000470F1 89 000470F7 + 90 00047102 91 00047114 93 00047115 94 00047120 + 95 00047127 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00047130-000473D6, line/addr pairs = 40 + + 448 00047130 449 00047155 450 00047169 451 00047179 + 453 0004717C 461 000471BB 462 000471C8 463 000471CC + 454 000471D0 455 000471D9 458 000471DD 459 000471E1 + 460 000471E3 456 000471E5 457 000471EC 464 000471F2 + 465 000471F9 466 0004721B 467 00047223 468 00047228 + 474 00047237 475 0004723B 476 0004723D 477 0004726E + 478 00047278 479 0004728B 482 000472DE 488 000472EA + 489 000472EE 490 000472F0 491 00047326 492 00047330 + 493 00047343 483 0004738B 484 00047391 485 00047398 + 486 000473A4 487 000473A9 494 000473B5 495 000473CC + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../realtime/lodlist.h (None), 0001:000470C0-000470D3, line/addr pairs = 3 + + 86 000470C0 90 000470C9 91 000470D2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.cpp (None), 0001:000463D0-00046472, line/addr pairs = 11 + + 7 000463D0 10 0004641B 12 00046422 14 00046429 + 16 00046430 17 00046434 18 0004643D 19 00046441 + 20 00046445 21 00046449 7 00046458 + + C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.cpp (None), 0001:000465B0-000466AE, line/addr pairs = 16 + + 25 000465B0 26 000465D5 27 000465DE 42 00046629 + 43 00046635 44 0004663F 45 00046649 46 00046653 + 47 0004665D 48 00046667 49 00046671 50 0004667B + 51 00046685 52 00046692 55 00046699 56 0004669E + + C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.h (None), 0001:00046480-00046486, line/addr pairs = 2 + + 14 00046480 17 00046485 + + C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.h (None), 0001:00046490-00046532, line/addr pairs = 3 + + 21 00046490 22 00046498 23 0004652E + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\towtrack.cpp (None), 0001:00046130-000461CE, line/addr pairs = 7 + + 7 00046130 9 0004616D 11 0004617A 13 00046187 + 15 00046194 16 000461A3 17 000461AD + + C:\Users\Christian\Downloads\isle\LEGO1\towtrack.h (None), 0001:000461D0-000461D6, line/addr pairs = 2 + + 15 000461D0 18 000461D5 + + C:\Users\Christian\Downloads\isle\LEGO1\towtrack.h (None), 0001:000461E0-00046352, line/addr pairs = 3 + + 22 000461E0 23 000461E8 24 0004634E + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045B10-00045B38, line/addr pairs = 6 + + 21 00045B10 22 00045B18 23 00045B22 25 00045B28 + 26 00045B2D 28 00045B33 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045B40-00045BB9, line/addr pairs = 11 + + 32 00045B40 34 00045B49 35 00045B54 36 00045B5A + 37 00045B68 38 00045B7F 39 00045B89 36 00045B93 + 41 00045BA1 42 00045BAD 43 00045BB3 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045BC0-00045C95, line/addr pairs = 10 + + 50 00045BC0 51 00045BDE 52 00045C16 53 00045C2A + 54 00045C30 55 00045C46 57 00045C4C 58 00045C51 + 59 00045C65 61 00045C6B + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045CA0-00045CE3, line/addr pairs = 4 + + 85 00045CA0 92 00045CB0 94 00045CCA 95 00045CDE + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045CF0-00045CF3, line/addr pairs = 2 + + 107 00045CF0 110 00045CF2 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045D00-00045D04, line/addr pairs = 2 + + 124 00045D00 126 00045D03 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045D10-00045D39, line/addr pairs = 4 + + 130 00045D10 132 00045D15 133 00045D1B 134 00045D35 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045D40-00045D6C, line/addr pairs = 4 + + 138 00045D40 140 00045D45 141 00045D4B 142 00045D68 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045D70-00045DE8, line/addr pairs = 7 + + 146 00045D70 153 00045D81 158 00045D99 159 00045DBF + 160 00045DC3 162 00045DD3 163 00045DDE + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045DF0-00045E22, line/addr pairs = 2 + + 167 00045DF0 169 00045E1F + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045E30-00045EB4, line/addr pairs = 8 + + 173 00045E30 174 00045E4E 176 00045E66 177 00045E71 + 178 00045E84 180 00045E8F 181 00045EA2 185 00045EAD + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045EC0-00045F3C, line/addr pairs = 17 + + 189 00045EC0 190 00045EC4 193 00045ECA 194 00045ECF + 195 00045EDA 196 00045EE1 197 00045EE7 198 00045F04 + 200 00045F0A 201 00045F0C 205 00045F10 206 00045F13 + 207 00045F19 208 00045F22 209 00045F2B 210 00045F34 + 211 00045F39 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045F40-00045F55, line/addr pairs = 3 + + 215 00045F40 216 00045F49 217 00045F54 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045F60-00045FDC, line/addr pairs = 14 + + 249 00045F60 250 00045F69 252 00045F74 255 00045F7B + 256 00045F7F 257 00045F83 259 00045F91 261 00045F98 + 262 00045F9D 267 00045FA4 268 00045FB4 270 00045FBC + 273 00045FC0 274 00045FD5 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00045FE0-00046013, line/addr pairs = 3 + + 278 00045FE0 279 00046004 280 0004600F + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00046020-0004604D, line/addr pairs = 2 + + 291 00046020 301 0004604A + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:00046050-000460B3, line/addr pairs = 11 + + 305 00046050 308 00046057 309 00046060 310 0004606A + 313 0004607E 315 00046089 316 0004608E 317 00046098 + 318 0004609F 319 000460A6 323 000460AD + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None), 0001:000460C0-00046123, line/addr pairs = 11 + + 327 000460C0 331 000460C7 332 000460CD 333 000460D7 + 334 000460E5 337 000460F5 339 00046100 340 00046105 + 341 0004610F 342 00046116 346 0004611D + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp (None), 0001:000459C0-000459C4, line/addr pairs = 2 + + 10 000459C0 12 000459C3 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp (None), 0001:000459D0-000459D5, line/addr pairs = 2 + + 24 000459D0 26 000459D2 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp (None), 0001:000459E0-00045A37, line/addr pairs = 10 + + 30 000459E0 32 000459F1 33 000459FC 34 00045A01 + 35 00045A0B 36 00045A12 37 00045A19 38 00045A23 + 39 00045A2A 42 00045A31 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp (None), 0001:00045A40-00045B05, line/addr pairs = 7 + + 46 00045A40 47 00045A60 48 00045ABB 49 00045AC9 + 50 00045ACD 51 00045AD9 53 00045ADB + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045620-00045673, line/addr pairs = 10 + + 17 00045620 21 0004562C 25 0004562F 27 0004563C + 28 00045642 29 0004565B 30 00045661 31 00045666 + 34 0004566C 35 0004566F + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045680-000456AD, line/addr pairs = 5 + + 39 00045680 40 0004568A 41 0004568F 42 000456A3 + 43 000456A9 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:000456B0-0004572D, line/addr pairs = 14 + + 55 000456B0 58 000456BE 60 000456C5 62 000456CB + 63 000456D3 65 000456D9 67 000456DF 69 000456E5 + 70 000456EC 72 000456F2 73 000456F6 75 00045712 + 76 0004571A 78 00045727 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045730-00045753, line/addr pairs = 5 + + 82 00045730 83 00045733 84 00045739 86 00045745 + 87 00045751 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045760-00045765, line/addr pairs = 2 + + 91 00045760 93 00045762 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045770-0004579D, line/addr pairs = 3 + + 97 00045770 99 00045779 100 00045798 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:000457A0-0004582F, line/addr pairs = 15 + + 104 000457A0 107 000457AD 108 000457B2 109 000457B6 + 113 000457CD 114 000457D1 115 000457E4 118 000457E7 + 119 000457EB 120 000457F6 121 00045806 122 00045810 + 123 0004581A 126 00045823 127 00045829 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045830-0004587A, line/addr pairs = 6 + + 131 00045830 132 00045837 133 0004583C 134 00045859 + 135 0004586B 138 00045876 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045880-000458A2, line/addr pairs = 4 + + 142 00045880 143 00045883 144 00045889 145 0004589F + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:000458B0-000458D1, line/addr pairs = 3 + + 149 000458B0 150 000458C3 151 000458CE + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:000458E0-00045961, line/addr pairs = 14 + + 162 000458E0 164 000458E6 165 000458EC 166 000458F4 + 167 00045901 168 0004590A 169 00045913 170 00045918 + 171 00045925 172 00045937 173 00045944 170 00045951 + 175 00045956 176 0004595C + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:00045970-000459A3, line/addr pairs = 6 + + 180 00045970 183 00045977 184 0004597C 185 00045992 + 186 0004599A 187 000459A0 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None), 0001:000459B0-000459B4, line/addr pairs = 2 + + 191 000459B0 193 000459B3 + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044190-00044276, line/addr pairs = 6 + + 7 00044190 8 000441AD 9 00044202 10 0004423F + 11 0004424B 13 0004424D + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:000443E0-000444AA, line/addr pairs = 7 + + 53 000443E0 54 00044400 55 00044454 56 0004446C + 57 00044470 58 0004447C 60 0004447E + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044600-000446F1, line/addr pairs = 9 + + 68 00044600 69 00044620 75 0004467F 76 00044695 + 77 000446AB 79 000446B1 80 000446B7 81 000446C3 + 83 000446C5 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044700-00044825, line/addr pairs = 7 + + 117 00044700 118 00044720 128 0004478B 129 000447E7 + 130 000447EB 131 000447F7 133 000447F9 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044980-00044A8F, line/addr pairs = 7 + + 151 00044980 152 000449A0 154 000449FD 155 00044A51 + 156 00044A55 157 00044A61 159 00044A63 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044BE0-00044CA0, line/addr pairs = 6 + + 164 00044BE0 165 00044C00 166 00044C5B 167 00044C68 + 168 00044C74 170 00044C76 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00044DF0-00044F80, line/addr pairs = 33 + + 175 00044DF0 176 00044E11 178 00044E66 196 00044E69 + 195 00044E75 196 00044E77 180 00044E79 181 00044E7B + 183 00044E7D 184 00044E82 186 00044E84 187 00044E89 + 189 00044E8B 190 00044E90 192 00044E92 196 00044E97 + 199 00044EA9 200 00044EB4 202 00044EDB 203 00044EE1 + 204 00044EE6 206 00044EEF 207 00044F03 208 00044F09 + 209 00044F0F 210 00044F17 212 00044F20 214 00044F25 + 218 00044F2B 219 00044F30 220 00044F3C 222 00044F3E + 223 00044F6C + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:000450D0-0004518E, line/addr pairs = 6 + + 227 000450D0 234 000450F0 235 0004514B 236 00045156 + 237 00045162 239 00045164 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:000452E0-00045459, line/addr pairs = 7 + + 284 000452E0 285 00045300 296 00045368 297 00045412 + 298 0004541E 300 00045420 296 00045435 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00045460-000455C2, line/addr pairs = 7 + + 305 00045460 306 00045480 307 000454E0 308 0004557D + 309 00045589 311 0004558B 307 0004559E + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:000455D0-000455EC, line/addr pairs = 3 + + 316 000455D0 317 000455DE 318 000455E9 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:000455F0-0004560C, line/addr pairs = 3 + + 322 000455F0 323 000455FE 324 00045609 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None), 0001:00045610-00045614, line/addr pairs = 2 + + 328 00045610 330 00045613 + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:00043AF0-00043AF4, line/addr pairs = 2 + + 12 00043AF0 14 00043AF3 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:00043B00-00043B6F, line/addr pairs = 8 + + 18 00043B00 24 00043B08 25 00043B0A 26 00043B33 + 31 00043B3F 28 00043B42 29 00043B60 31 00043B6B + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:00043B70-00043B9E, line/addr pairs = 3 + + 35 00043B70 37 00043B90 38 00043B9B + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:00043BA0-00043E75, line/addr pairs = 46 + + 42 00043BA0 44 00043BB8 49 00043BC3 46 00043BC6 + 47 00043BD2 49 00043BDD 53 00043BE0 55 00043BE7 + 57 00043BF3 58 00043BF8 60 00043BFA 61 00043BFF + 63 00043C01 64 00043C06 66 00043C08 67 00043C0D + 69 00043C0F 71 00043C1A 72 00043C2A 73 00043C35 + 77 00043C50 79 00043C70 80 00043CC5 81 00043CD2 + 86 00043CE0 87 00043CF3 88 00043D0A 90 00043D25 + 91 00043D3F 93 00043D59 94 00043D6B 95 00043D7D + 96 00043D8F 101 00043DA2 102 00043DB9 103 00043DC5 + 104 00043DD9 105 00043DEA 106 00043DFB 107 00043E0C + 110 00043E1F 111 00043E2E 112 00043E37 113 00043E3B + 114 00043E47 117 00043E49 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:00043FD0-000440A3, line/addr pairs = 9 + + 122 00043FD0 123 00043FF0 124 00044045 126 00044052 + 127 00044056 128 00044062 134 00044067 131 0004407C + 132 00044088 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None), 0001:000440B0-00044181, line/addr pairs = 7 + + 139 000440B0 141 000440D0 142 00044138 143 00044143 + 151 00044147 153 0004414D 154 0004415D + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\light.cpp (None), 0001:00043A30-00043A34, line/addr pairs = 2 + + 10 00043A30 12 00043A33 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\light.cpp (None), 0001:00043A40-00043A93, line/addr pairs = 4 + + 16 00043A40 18 00043A4C 19 00043A81 20 00043A8C + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\light.cpp (None), 0001:00043AA0-00043AEC, line/addr pairs = 5 + + 24 00043AA0 27 00043AA6 28 00043AB1 29 00043ADB + 30 00043AE6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:000435B0-000435B4, line/addr pairs = 2 + + 7 000435B0 9 000435B3 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:000435C0-00043613, line/addr pairs = 4 + + 13 000435C0 15 000435CC 16 00043601 17 0004360C + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043620-00043689, line/addr pairs = 8 + + 21 00043620 27 00043628 28 0004362A 29 00043650 + 34 0004365C 31 0004365F 32 0004367A 34 00043685 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043690-000436BB, line/addr pairs = 3 + + 38 00043690 40 000436AD 41 000436B8 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:000436C0-0004378B, line/addr pairs = 7 + + 45 000436C0 47 000436E0 48 00043742 49 0004374D + 57 00043751 59 00043757 60 00043767 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043910-00043959, line/addr pairs = 10 + + 65 00043910 67 00043917 77 00043929 78 00043936 + 79 00043941 69 00043947 70 0004394C 72 0004394E + 73 00043953 75 00043955 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043960-00043981, line/addr pairs = 3 + + 83 00043960 85 00043973 86 0004397E + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043990-000439AF, line/addr pairs = 3 + + 90 00043990 92 000439A1 93 000439AC + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:000439B0-000439D2, line/addr pairs = 3 + + 97 000439B0 99 000439C4 100 000439CF + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:000439E0-00043A04, line/addr pairs = 3 + + 104 000439E0 106 000439F6 107 00043A01 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043A10-00043A13, line/addr pairs = 2 + + 111 00043A10 113 00043A12 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None), 0001:00043A20-00043A23, line/addr pairs = 2 + + 117 00043A20 119 00043A22 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\../tgl.h (None), 0001:00043790-00043797, line/addr pairs = 1 + + 104 00043790 + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043430-00043434, line/addr pairs = 2 + + 9 00043430 11 00043433 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043440-0004344A, line/addr pairs = 3 + + 15 00043440 16 00043443 17 00043449 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043450-0004345A, line/addr pairs = 3 + + 21 00043450 22 00043453 23 00043459 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043460-00043468, line/addr pairs = 2 + + 27 00043460 29 00043465 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043470-000434D4, line/addr pairs = 3 + + 33 00043470 37 000434B2 38 000434BD + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:000434E0-000434FC, line/addr pairs = 3 + + 42 000434E0 43 000434EE 44 000434F9 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043500-0004351C, line/addr pairs = 3 + + 48 00043500 49 0004350E 50 00043519 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043520-0004355C, line/addr pairs = 5 + + 55 00043520 58 00043538 59 00043543 60 0004354B + 62 00043555 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043560-00043589, line/addr pairs = 4 + + 69 00043560 72 00043566 74 00043579 76 00043583 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None), 0001:00043590-000435A5, line/addr pairs = 3 + + 80 00043590 81 00043599 82 000435A4 + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\camera.cpp (None), 0001:000433A0-000433A4, line/addr pairs = 2 + + 10 000433A0 12 000433A3 + + C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\camera.cpp (None), 0001:000433B0-00043428, line/addr pairs = 4 + + 16 000433B0 18 000433BF 29 00043415 30 00043420 + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\skateboard.cpp (None), 0001:00043110-00043199, line/addr pairs = 6 + + 11 00043110 13 00043148 14 00043152 15 0004315C + 17 00043163 18 0004316F + + C:\Users\Christian\Downloads\isle\LEGO1\skateboard.h (None), 0001:000431A0-000431A6, line/addr pairs = 2 + + 15 000431A0 18 000431A5 + + C:\Users\Christian\Downloads\isle\LEGO1\skateboard.h (None), 0001:000431B0-00043322, line/addr pairs = 3 + + 22 000431B0 23 000431B8 24 0004331E + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\scorestate.cpp (None), 0001:000430F0-000430F3, line/addr pairs = 2 + + 7 000430F0 9 000430F2 + + C:\Users\Christian\Downloads\isle\LEGO1\scorestate.cpp (None), 0001:00043100-00043107, line/addr pairs = 3 + + 13 00043100 15 00043104 16 00043106 + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042340-000423AE, line/addr pairs = 3 + + 20 00042340 22 00042378 23 00042384 + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:000424F0-000424F3, line/addr pairs = 2 + + 27 000424F0 29 000424F2 + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042500-0004259F, line/addr pairs = 7 + + 33 00042500 34 00042530 35 00042538 36 00042544 + 37 00042554 38 00042564 39 00042574 + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:000425A0-00042634, line/addr pairs = 14 + + 43 000425A0 44 000425A9 46 000425B1 47 000425B5 + 48 000425C2 49 000425CF 50 000425DC 51 000425E6 + 52 000425EF 53 000425F9 54 00042614 55 0004261E + 58 0004262C 59 0004262F + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042640-0004270A, line/addr pairs = 11 + + 63 00042640 64 00042667 65 0004266D 66 0004267F + 67 00042697 68 000426AF 69 000426B8 70 000426CA + 71 000426DB 72 000426E0 67 000426ED + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042710-00042804, line/addr pairs = 26 + + 76 00042710 77 00042715 78 0004271B 79 00042721 + 80 0004272E 82 0004274A 83 00042751 84 00042756 + 107 00042758 86 0004275E 87 00042768 107 0004276A + 89 00042770 90 00042776 91 0004277D 92 00042782 + 107 00042784 94 0004278A 95 00042794 107 00042796 + 97 0004279C 98 000427B4 99 000427B8 100 000427C5 + 106 000427CA 107 000427CC + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042810-0004287E, line/addr pairs = 13 + + 111 00042810 112 00042817 114 0004281A 116 00042822 + 128 00042837 118 0004283A 119 00042844 120 00042858 + 128 0004285E 122 00042861 123 00042871 127 00042875 + 128 0004287B + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042880-000429CC, line/addr pairs = 19 + + 132 00042880 133 000428A1 135 000428A6 136 000428B8 + 137 000428D2 138 000428ED 139 000428FA 141 00042905 + 142 00042911 143 00042920 144 00042938 145 00042950 + 146 00042963 147 00042968 144 0004296A 148 0004297D + 150 00042987 151 0004299A 137 000429AC + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:000429D0-00042CC9, line/addr pairs = 48 + + 155 000429D0 156 000429F5 158 000429F9 159 00042A05 + 161 00042A15 162 00042A1F 163 00042A26 164 00042A3A + 212 00042A42 166 00042A51 171 00042A5D 172 00042A64 + 173 00042A6B 174 00042A73 176 00042A78 177 00042A86 + 178 00042A9E 179 00042AB5 180 00042ACB 178 00042AD5 + 183 00042AE8 185 00042B07 186 00042B1A 187 00042B32 + 188 00042B49 189 00042B5F 187 00042B69 192 00042B7C + 193 00042B8F 194 00042BA7 195 00042BBE 196 00042BD4 + 194 00042BDE 199 00042BF1 200 00042C04 201 00042C1C + 202 00042C33 203 00042C49 201 00042C53 211 00042C70 + 216 00042C80 217 00042C88 219 00042C8E 220 00042C92 + 221 00042C9F 223 00042CA9 224 00042CB8 225 00042CC4 + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042CD0-00042FAC, line/addr pairs = 44 + + 229 00042CD0 230 00042CDE 231 00042CE8 233 00042D47 + 234 00042D52 235 00042D6C 236 00042D81 237 00042D94 + 238 00042DA9 241 00042DBB 242 00042DC4 243 00042DDC + 244 00042DEC 245 00042E02 246 00042E0B 249 00042E16 + 250 00042E1B 251 00042E29 252 00042E2C 253 00042E33 + 254 00042E45 255 00042E53 256 00042E5B 257 00042E5E + 258 00042E65 259 00042E77 260 00042E84 261 00042E87 + 262 00042E8E 263 00042EA0 264 00042EAD 265 00042EB0 + 266 00042EB4 267 00042EE4 268 00042EF1 269 00042EF4 + 270 00042EF8 271 00042F26 249 00042F33 272 00042F42 + 274 00042F4E 275 00042F62 276 00042F68 279 00042F76 + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:00042FB0-000430C4, line/addr pairs = 19 + + 283 00042FB0 291 00042FED 293 00042FFA 295 00043002 + 296 00043012 297 0004301A 300 00043022 301 0004302A + 302 00043032 303 0004303A 304 00043042 306 00043053 + 307 00043063 308 0004306B 313 0004308E 314 00043092 + 315 000430B1 313 000430B7 317 000430BA + + C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None), 0001:000430D0-000430E6, line/addr pairs = 5 + + 321 000430D0 322 000430D3 323 000430D8 324 000430E2 + 325 000430E5 + + C:\Users\Christian\Downloads\isle\LEGO1\score.h (None), 0001:000423B0-000423B6, line/addr pairs = 2 + + 20 000423B0 23 000423B5 + + C:\Users\Christian\Downloads\isle\LEGO1\score.h (None), 0001:000423C0-000424CA, line/addr pairs = 3 + + 27 000423C0 28 000423C8 29 000424C6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.cpp (None), 0001:00042140-0004219D, line/addr pairs = 2 + + 5 00042140 7 00042175 + + C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.cpp (None), 0001:000422E0-0004232F, line/addr pairs = 2 + + 11 000422E0 13 0004230B + + C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.cpp (None), 0001:00042330-00042335, line/addr pairs = 2 + + 17 00042330 21 00042332 + + C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.h (None), 0001:000421A0-000421A6, line/addr pairs = 2 + + 17 000421A0 20 000421A5 + + C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.h (None), 0001:000421B0-000422BA, line/addr pairs = 3 + + 24 000421B0 25 000421B8 26 000422B6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000417C0-000417DD, line/addr pairs = 4 + + 17 000417C0 18 000417C7 19 000417D6 20 000417DA + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000417E0-000417FC, line/addr pairs = 4 + + 24 000417E0 25 000417E3 26 000417F1 27 000417F9 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041800-0004181D, line/addr pairs = 4 + + 31 00041800 32 00041807 33 00041813 34 0004181A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041820-0004183D, line/addr pairs = 4 + + 38 00041820 39 00041827 40 00041836 41 0004183A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041840-0004185C, line/addr pairs = 4 + + 45 00041840 46 00041847 47 00041853 48 00041859 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041860-0004187C, line/addr pairs = 4 + + 52 00041860 53 00041867 54 00041873 55 00041879 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041880-00041897, line/addr pairs = 2 + + 59 00041880 61 00041894 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000418A0-000418B4, line/addr pairs = 4 + + 65 000418A0 67 000418A7 68 000418AB 69 000418B1 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000418C0-000418C4, line/addr pairs = 2 + + 73 000418C0 75 000418C3 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000418D0-000418D4, line/addr pairs = 2 + + 79 000418D0 81 000418D3 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000418E0-000418F1, line/addr pairs = 4 + + 85 000418E0 87 000418E3 88 000418E9 89 000418F0 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041900-00041912, line/addr pairs = 2 + + 93 00041900 95 0004190F + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041920-00041938, line/addr pairs = 2 + + 99 00041920 101 00041935 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041940-00041955, line/addr pairs = 2 + + 105 00041940 107 00041952 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041960-00041975, line/addr pairs = 2 + + 111 00041960 113 00041972 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041980-000419E1, line/addr pairs = 12 + + 117 00041980 118 00041983 119 0004198F 123 00041990 + 124 00041999 125 0004199C 126 000419AD 127 000419B3 + 128 000419C4 129 000419CE 132 000419D6 133 000419DC + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000419F0-000419FC, line/addr pairs = 2 + + 137 000419F0 139 000419F9 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A00-00041A0D, line/addr pairs = 2 + + 143 00041A00 145 00041A0A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A10-00041A2D, line/addr pairs = 4 + + 149 00041A10 151 00041A1D 155 00041A20 157 00041A2A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A30-00041A4D, line/addr pairs = 4 + + 161 00041A30 163 00041A3D 167 00041A40 169 00041A4A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A50-00041A6D, line/addr pairs = 4 + + 173 00041A50 175 00041A5D 179 00041A60 181 00041A6A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A70-00041A7D, line/addr pairs = 2 + + 185 00041A70 187 00041A7A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A80-00041A8D, line/addr pairs = 2 + + 191 00041A80 193 00041A8A + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041A90-00041AE4, line/addr pairs = 7 + + 197 00041A90 199 00041A9D 203 00041AA0 204 00041AAC + 205 00041ABC 206 00041ACE 207 00041AE1 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041AF0-00041B08, line/addr pairs = 2 + + 211 00041AF0 213 00041B05 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041B10-00041B25, line/addr pairs = 2 + + 217 00041B10 219 00041B22 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041B30-00041B45, line/addr pairs = 2 + + 223 00041B30 225 00041B42 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041B50-00041B87, line/addr pairs = 6 + + 229 00041B50 230 00041B57 231 00041B66 232 00041B73 + 233 00041B80 234 00041B84 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041B90-00041BC8, line/addr pairs = 6 + + 238 00041B90 239 00041B93 240 00041BA1 241 00041BAF + 242 00041BBD 243 00041BC5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041BD0-00041C07, line/addr pairs = 6 + + 247 00041BD0 248 00041BD7 249 00041BE3 250 00041BF0 + 251 00041BFD 252 00041C04 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041C10-00041C47, line/addr pairs = 6 + + 256 00041C10 257 00041C17 258 00041C26 259 00041C33 + 260 00041C40 261 00041C44 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041C50-00041C84, line/addr pairs = 6 + + 265 00041C50 266 00041C57 267 00041C63 268 00041C6F + 269 00041C7B 270 00041C81 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041C90-00041CC4, line/addr pairs = 6 + + 274 00041C90 275 00041C97 276 00041CA3 277 00041CAF + 278 00041CBB 279 00041CC1 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041CD0-00041CF7, line/addr pairs = 2 + + 283 00041CD0 285 00041CF4 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041D00-00041DB7, line/addr pairs = 12 + + 289 00041D00 291 00041D03 292 00041D0B 293 00041D11 + 294 00041D17 295 00041D1D 299 00041D20 300 00041D25 + 301 00041D4A 302 00041D6D 303 00041D90 304 00041DB4 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041DC0-00041DD8, line/addr pairs = 2 + + 308 00041DC0 310 00041DD5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041DE0-00041DF1, line/addr pairs = 6 + + 314 00041DE0 316 00041DE3 317 00041DE7 318 00041DEA + 319 00041DED 320 00041DF0 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041E00-00041E48, line/addr pairs = 9 + + 324 00041E00 325 00041E03 326 00041E1F 330 00041E20 + 331 00041E24 332 00041E2C 333 00041E34 334 00041E3C + 335 00041E45 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041E50-00041EBE, line/addr pairs = 12 + + 341 00041E50 343 00041E56 344 00041E6A 345 00041E7B + 346 00041E84 348 00041E8B 349 00041E9B 350 00041EA3 + 351 00041EAB 352 00041EB1 354 00041EB5 355 00041EBD + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041EC0-00041F85, line/addr pairs = 10 + + 359 00041EC0 360 00041ECE 363 00041ED3 364 00041EF3 + 365 00041F06 366 00041F18 368 00041F33 369 00041F4F + 370 00041F6D 371 00041F7F + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041F90-00041FBA, line/addr pairs = 5 + + 375 00041F90 376 00041F97 377 00041FA6 378 00041FB3 + 379 00041FB7 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041FC0-00041FEA, line/addr pairs = 5 + + 383 00041FC0 384 00041FC3 385 00041FD1 386 00041FDF + 387 00041FE7 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00041FF0-0004201A, line/addr pairs = 5 + + 391 00041FF0 392 00041FF7 393 00042003 394 00042010 + 395 00042017 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00042020-0004204A, line/addr pairs = 5 + + 399 00042020 400 00042027 401 00042036 402 00042043 + 403 00042047 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00042050-00042078, line/addr pairs = 5 + + 407 00042050 408 00042057 409 00042065 410 00042071 + 411 00042075 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00042080-000420A8, line/addr pairs = 5 + + 415 00042080 416 00042087 417 00042093 418 0004209F + 419 000420A5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000420B0-000420CF, line/addr pairs = 2 + + 423 000420B0 425 000420CC + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000420D0-000420EA, line/addr pairs = 5 + + 429 000420D0 431 000420D3 432 000420DB 433 000420E1 + 434 000420E7 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:000420F0-000420FE, line/addr pairs = 5 + + 438 000420F0 440 000420F3 441 000420F7 442 000420FA + 443 000420FD + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00042100-00042118, line/addr pairs = 3 + + 447 00042100 448 00042103 449 00042117 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None), 0001:00042120-00042140, line/addr pairs = 5 + + 453 00042120 454 00042124 455 0004212C 456 00042134 + 457 0004213D + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None), 0001:00041760-0004176E, line/addr pairs = 2 + + 19 00041760 21 00041769 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None), 0001:00041770-0004177A, line/addr pairs = 2 + + 26 00041770 28 00041779 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None), 0001:00041780-00041787, line/addr pairs = 2 + + 32 00041780 35 00041786 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None), 0001:00041790-00041797, line/addr pairs = 2 + + 39 00041790 41 00041796 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None), 0001:000417A0-000417BA, line/addr pairs = 2 + + 45 000417A0 47 000417B9 + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtime.cpp (None), 0001:00041550-00041755, line/addr pairs = 15 + + 10 00041550 17 0004155B 18 00041571 21 00041590 + 23 000415BE 28 00041602 29 0004161C 32 00041638 + 37 00041678 38 00041692 41 000416B2 42 000416DB + 43 000416FF 44 00041723 45 00041751 + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:000413F0-00041401, line/addr pairs = 4 + + 9 000413F0 10 000413F6 11 000413F9 12 000413FE + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041410-00041433, line/addr pairs = 5 + + 16 00041410 17 00041419 18 00041426 19 00041429 + 20 0004142E + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041440-0004148B, line/addr pairs = 6 + + 24 00041440 25 00041451 26 0004146C 27 0004147A + 28 0004147D 29 00041482 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041490-0004150E, line/addr pairs = 11 + + 33 00041490 34 000414A1 35 000414BB 36 000414CA + 37 000414CD 40 000414D5 41 000414DC 42 000414E6 + 43 000414EE 41 000414F3 45 00041505 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041510-00041511, line/addr pairs = 1 + + 49 00041510 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041520-0004152F, line/addr pairs = 2 + + 54 00041520 55 0004152C + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041530-00041534, line/addr pairs = 2 + + 60 00041530 62 00041533 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None), 0001:00041540-00041547, line/addr pairs = 2 + + 66 00041540 68 00041546 + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041180-00041195, line/addr pairs = 3 + + 15 00041180 16 00041182 17 00041190 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000411A0-000411B8, line/addr pairs = 3 + + 21 000411A0 22 000411A6 23 000411B3 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000411C0-000411CA, line/addr pairs = 2 + + 27 000411C0 29 000411C7 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000411D0-000411DA, line/addr pairs = 2 + + 33 000411D0 35 000411D7 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000411E0-000411E4, line/addr pairs = 2 + + 39 000411E0 41 000411E3 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000411F0-000411F4, line/addr pairs = 2 + + 45 000411F0 47 000411F3 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041200-00041214, line/addr pairs = 2 + + 51 00041200 53 00041211 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041220-00041234, line/addr pairs = 2 + + 57 00041220 59 00041231 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041240-0004124F, line/addr pairs = 3 + + 63 00041240 64 00041243 65 0004124D + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041250-00041276, line/addr pairs = 7 + + 69 00041250 70 00041255 71 00041258 72 00041262 + 73 00041268 74 0004126E 75 00041275 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041280-000412A8, line/addr pairs = 5 + + 79 00041280 80 00041289 81 00041293 82 000412A2 + 83 000412A5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000412B0-000412E3, line/addr pairs = 5 + + 89 000412B0 90 000412BA 91 000412D0 92 000412DC + 93 000412E0 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000412F0-00041317, line/addr pairs = 4 + + 97 000412F0 99 000412FC 100 00041308 101 00041314 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041320-00041383, line/addr pairs = 9 + + 105 00041320 106 0004132F 107 00041336 109 0004133F + 110 00041351 111 00041354 113 00041367 107 00041370 + 116 00041379 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:00041390-000413A8, line/addr pairs = 2 + + 120 00041390 122 000413A5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000413B0-000413B3, line/addr pairs = 1 + + 129 000413B0 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000413C0-000413C8, line/addr pairs = 2 + + 172 000413C0 174 000413C5 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000413D0-000413DC, line/addr pairs = 2 + + 178 000413D0 180 000413D9 + + C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None), 0001:000413E0-000413EC, line/addr pairs = 2 + + 184 000413E0 186 000413E9 + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\radiostate.cpp (None), 0001:00040FD0-00041043, line/addr pairs = 3 + + 5 00040FD0 7 00041018 5 00041029 + + C:\Users\Christian\Downloads\isle\LEGO1\radiostate.h (None), 0001:00041050-00041056, line/addr pairs = 2 + + 14 00041050 17 00041055 + + C:\Users\Christian\Downloads\isle\LEGO1\radiostate.h (None), 0001:00041060-00041102, line/addr pairs = 3 + + 21 00041060 22 00041068 23 000410FE + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\radio.cpp (None), 0001:00040E10-00040E92, line/addr pairs = 6 + + 12 00040E10 13 00040E44 14 00040E50 16 00040E5D + 17 00040E61 18 00040E68 + + C:\Users\Christian\Downloads\isle\LEGO1\radio.cpp (None), 0001:00040F50-00040F9F, line/addr pairs = 2 + + 22 00040F50 24 00040F7B + + C:\Users\Christian\Downloads\isle\LEGO1\radio.cpp (None), 0001:00040FA0-00040FCD, line/addr pairs = 7 + + 28 00040FA0 29 00040FA4 30 00040FAD 31 00040FB7 + 32 00040FBB 35 00040FC7 36 00040FCB + + C:\Users\Christian\Downloads\isle\LEGO1\radio.h (None), 0001:00040EA0-00040EA6, line/addr pairs = 2 + + 15 00040EA0 18 00040EA5 + + C:\Users\Christian\Downloads\isle\LEGO1\radio.h (None), 0001:00040EB0-00040F22, line/addr pairs = 3 + + 22 00040EB0 23 00040EB8 24 00040F1E + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\racestate.cpp (None), 0001:00040C20-00040C93, line/addr pairs = 3 + + 10 00040C20 12 00040C68 10 00040C79 + + C:\Users\Christian\Downloads\isle\LEGO1\racestate.cpp (None), 0001:00040DD0-00040E02, line/addr pairs = 8 + + 16 00040DD0 17 00040DD4 18 00040DD8 20 00040DDE + 17 00040DEA 19 00040DEE 21 00040DF4 23 00040DFF + + C:\Users\Christian\Downloads\isle\LEGO1\racestate.h (None), 0001:00040CA0-00040CA6, line/addr pairs = 2 + + 22 00040CA0 25 00040CA5 + + C:\Users\Christian\Downloads\isle\LEGO1\racestate.h (None), 0001:00040CB0-00040D52, line/addr pairs = 3 + + 29 00040CB0 30 00040CB8 31 00040D4E + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\racecar.cpp (None), 0001:000409B0-00040A17, line/addr pairs = 3 + + 7 000409B0 8 000409E5 9 000409EF + + C:\Users\Christian\Downloads\isle\LEGO1\racecar.cpp (None), 0001:00040BD0-00040C1F, line/addr pairs = 2 + + 13 00040BD0 15 00040BFB + + C:\Users\Christian\Downloads\isle\LEGO1\racecar.h (None), 0001:00040A20-00040A26, line/addr pairs = 2 + + 16 00040A20 19 00040A25 + + C:\Users\Christian\Downloads\isle\LEGO1\racecar.h (None), 0001:00040A30-00040BA2, line/addr pairs = 3 + + 23 00040A30 24 00040A38 25 00040B9E + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\policestate.cpp (None), 0001:00040800-00040873, line/addr pairs = 3 + + 5 00040800 7 00040848 5 00040859 + + C:\Users\Christian\Downloads\isle\LEGO1\policestate.h (None), 0001:00040880-00040886, line/addr pairs = 2 + + 14 00040880 17 00040885 + + C:\Users\Christian\Downloads\isle\LEGO1\policestate.h (None), 0001:00040890-00040932, line/addr pairs = 3 + + 21 00040890 22 00040898 23 0004092E + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\police.cpp (None), 0001:00040600-0004065D, line/addr pairs = 2 + + 5 00040600 7 00040635 + + C:\Users\Christian\Downloads\isle\LEGO1\police.cpp (None), 0001:000407A0-000407EF, line/addr pairs = 2 + + 11 000407A0 13 000407CB + + C:\Users\Christian\Downloads\isle\LEGO1\police.cpp (None), 0001:000407F0-000407F5, line/addr pairs = 2 + + 17 000407F0 21 000407F2 + + C:\Users\Christian\Downloads\isle\LEGO1\police.h (None), 0001:00040660-00040666, line/addr pairs = 2 + + 18 00040660 21 00040665 + + C:\Users\Christian\Downloads\isle\LEGO1\police.h (None), 0001:00040670-0004077A, line/addr pairs = 3 + + 25 00040670 26 00040678 27 00040776 + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.cpp (None), 0001:00040450-000404C3, line/addr pairs = 3 + + 5 00040450 7 00040498 5 000404A9 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.h (None), 0001:000404D0-000404D6, line/addr pairs = 2 + + 14 000404D0 17 000404D5 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.h (None), 0001:000404E0-00040582, line/addr pairs = 3 + + 21 000404E0 22 000404E8 23 0004057E + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.cpp (None), 0001:00040420-00040450, line/addr pairs = 6 + + 8 00040420 9 00040424 10 00040428 9 00040434 + 13 0004043F 11 00040442 + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\pizza.cpp (None), 0001:00040190-0004022C, line/addr pairs = 6 + + 7 00040190 10 000401DC 12 000401E8 14 000401F4 + 15 000401FE 7 00040212 + + C:\Users\Christian\Downloads\isle\LEGO1\pizza.cpp (None), 0001:000403A0-00040406, line/addr pairs = 3 + + 19 000403A0 20 000403CB 21 000403DB + + C:\Users\Christian\Downloads\isle\LEGO1\pizza.cpp (None), 0001:00040410-00040413, line/addr pairs = 2 + + 25 00040410 28 00040412 + + C:\Users\Christian\Downloads\isle\LEGO1\pizza.h (None), 0001:00040230-00040236, line/addr pairs = 2 + + 22 00040230 25 00040235 + + C:\Users\Christian\Downloads\isle\LEGO1\pizza.h (None), 0001:00040240-0004037E, line/addr pairs = 3 + + 29 00040240 30 00040248 31 0004037A + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F7D0-0003F82D, line/addr pairs = 3 + + 16 0003F7D0 17 0003F7FD 18 0003F802 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F830-0003F838, line/addr pairs = 2 + + 22 0003F830 24 0003F837 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F840-0003F844, line/addr pairs = 2 + + 28 0003F840 30 0003F843 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F850-0003F86B, line/addr pairs = 5 + + 34 0003F850 37 0003F858 39 0003F85E 41 0003F864 + 43 0003F86A + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F870-0003F887, line/addr pairs = 5 + + 47 0003F870 48 0003F874 49 0003F87D 50 0003F882 + 51 0003F884 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F890-0003F8D4, line/addr pairs = 10 + + 55 0003F890 56 0003F898 57 0003F89A 58 0003F8A3 + 61 0003F8A9 62 0003F8B0 64 0003F8B9 66 0003F8C0 + 67 0003F8C7 68 0003F8D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F8E0-0003F913, line/addr pairs = 6 + + 72 0003F8E0 74 0003F8EE 76 0003F8F5 77 0003F900 + 79 0003F90B 80 0003F90E + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F920-0003F942, line/addr pairs = 3 + + 84 0003F920 85 0003F923 86 0003F941 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003F950-0003FA61, line/addr pairs = 19 + + 90 0003F950 98 0003F95E 99 0003F96E 101 0003F974 + 102 0003F97E 103 0003F98B 106 0003F992 107 0003F99D + 108 0003F9A6 109 0003F9AD 111 0003F9B0 112 0003F9B2 + 114 0003F9C4 117 0003F9C9 118 0003F9F0 120 0003FA09 + 121 0003FA16 124 0003FA3E 127 0003FA57 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FA70-0003FC1A, line/addr pairs = 39 + + 131 0003FA70 132 0003FA76 134 0003FA7D 135 0003FA81 + 136 0003FA90 137 0003FAA8 138 0003FAB0 139 0003FAB7 + 142 0003FACB 146 0003FAD0 147 0003FAD8 149 0003FAE1 + 150 0003FAFA 153 0003FB01 154 0003FB04 156 0003FB16 + 157 0003FB1E 158 0003FB27 159 0003FB2E 160 0003FB35 + 161 0003FB3E 163 0003FB47 164 0003FB4D 166 0003FB51 + 167 0003FB59 170 0003FB5D 171 0003FB74 173 0003FB7C + 176 0003FB86 178 0003FB8E 182 0003FB97 180 0003FB9F + 184 0003FBBB 186 0003FBC8 187 0003FBE0 189 0003FBE7 + 190 0003FBEE 191 0003FBFF 195 0003FC13 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FC20-0003FD5B, line/addr pairs = 14 + + 199 0003FC20 200 0003FC40 201 0003FC4A 202 0003FC57 + 204 0003FC5E 205 0003FC7B 207 0003FC84 208 0003FCCF + 210 0003FCE1 212 0003FD04 213 0003FD10 214 0003FD16 + 215 0003FD24 221 0003FD34 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FD60-0003FDC6, line/addr pairs = 9 + + 225 0003FD60 226 0003FD6A 228 0003FD6E 230 0003FD85 + 232 0003FD8F 233 0003FDAC 235 0003FDB3 236 0003FDB9 + 237 0003FDC0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FDD0-0003FDFE, line/addr pairs = 5 + + 241 0003FDD0 242 0003FDD8 243 0003FDE5 244 0003FDF0 + 245 0003FDF9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FE00-0003FF14, line/addr pairs = 16 + + 249 0003FE00 250 0003FE22 252 0003FE31 253 0003FE40 + 255 0003FE52 256 0003FE66 257 0003FE75 258 0003FE81 + 261 0003FE88 262 0003FE93 264 0003FE9E 269 0003FEAE + 272 0003FEB9 274 0003FEC5 275 0003FEE1 279 0003FEE5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FF20-0003FF97, line/addr pairs = 8 + + 284 0003FF20 285 0003FF3E 286 0003FF44 287 0003FF57 + 289 0003FF61 290 0003FF65 291 0003FF6B 292 0003FF77 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:0003FFA0-0003FFFB, line/addr pairs = 9 + + 296 0003FFA0 297 0003FFA8 299 0003FFAF 300 0003FFBA + 301 0003FFC1 302 0003FFDB 303 0003FFE8 306 0003FFEE + 307 0003FFF5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:00040000-0004003C, line/addr pairs = 8 + + 311 00040000 312 00040004 313 00040011 315 00040019 + 316 0004001F 319 00040025 320 00040031 322 00040037 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:00040040-000400D3, line/addr pairs = 11 + + 326 00040040 329 0004004B 330 00040053 331 0004005F + 333 00040065 335 00040074 336 00040082 339 00040091 + 340 000400A7 341 000400C0 344 000400C9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:000400E0-00040102, line/addr pairs = 6 + + 348 000400E0 349 000400E3 350 000400F2 351 000400F6 + 352 000400FC 354 00040100 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None), 0001:00040110-00040183, line/addr pairs = 14 + + 358 00040110 359 00040113 360 0004011C 361 00040126 + 375 0004013C 363 0004013E 364 0004014A 375 0004014E + 366 00040150 367 0004016B 375 0004016F 369 00040171 + 373 0004017D 375 00040181 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E8A0-0003E8A3, line/addr pairs = 1 + + 13 0003E8A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E8B0-0003E8B1, line/addr pairs = 1 + + 19 0003E8B0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E8C0-0003E8C3, line/addr pairs = 1 + + 25 0003E8C0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E8D0-0003E8D1, line/addr pairs = 1 + + 31 0003E8D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E8E0-0003E93D, line/addr pairs = 3 + + 37 0003E8E0 38 0003E90D 39 0003E912 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E940-0003E948, line/addr pairs = 2 + + 43 0003E940 45 0003E947 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E950-0003E954, line/addr pairs = 2 + + 49 0003E950 51 0003E953 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E960-0003E972, line/addr pairs = 2 + + 55 0003E960 57 0003E971 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E980-0003E998, line/addr pairs = 3 + + 61 0003E980 62 0003E983 63 0003E997 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E9A0-0003E9BE, line/addr pairs = 5 + + 67 0003E9A0 68 0003E9A3 69 0003E9AD 68 0003E9AE + 69 0003E9BD + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003E9C0-0003EB1E, line/addr pairs = 36 + + 73 0003E9C0 74 0003E9DA 76 0003E9E4 77 0003E9EA + 79 0003E9F3 80 0003EA03 81 0003EA13 83 0003EA24 + 95 0003EA27 98 0003EA2B 102 0003EA37 99 0003EA3B + 101 0003EA3D 108 0003EA3F 114 0003EA47 115 0003EA4B + 117 0003EA4D 118 0003EA4F 119 0003EA53 124 0003EA54 + 111 0003EA69 131 0003EA70 132 0003EA84 133 0003EA86 + 137 0003EA8C 140 0003EA9A 141 0003EAA0 142 0003EAAF + 145 0003EAC9 147 0003EAE1 148 0003EAE4 141 0003EAEC + 151 0003EAF6 152 0003EB02 140 0003EB0C 154 0003EB12 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EB40-0003EB9D, line/addr pairs = 7 + + 158 0003EB40 159 0003EB54 160 0003EB5F 162 0003EB65 + 163 0003EB75 164 0003EB85 165 0003EB95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EBA0-0003EBB7, line/addr pairs = 4 + + 169 0003EBA0 170 0003EBA9 171 0003EBAD 172 0003EBB6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EBC0-0003EC26, line/addr pairs = 6 + + 176 0003EBC0 177 0003EBCD 180 0003EBDF 181 0003EBE8 + 178 0003EC1E 182 0003EC21 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EC30-0003EC79, line/addr pairs = 9 + + 186 0003EC30 191 0003EC48 194 0003EC4F 195 0003EC58 + 196 0003EC62 197 0003EC65 200 0003EC6A 201 0003EC72 + 202 0003EC77 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EC80-0003ED77, line/addr pairs = 21 + + 206 0003EC80 207 0003EC88 208 0003EC91 210 0003EC9E + 211 0003ECA5 212 0003ECAB 213 0003ECB7 214 0003ECBA + 217 0003ECBF 219 0003ECD8 220 0003ECE2 221 0003ECE8 + 224 0003ECEE 225 0003ED07 226 0003ED13 229 0003ED3D + 230 0003ED4A 232 0003ED57 234 0003ED5E 235 0003ED65 + 236 0003ED6E + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003ED80-0003EDC4, line/addr pairs = 8 + + 240 0003ED80 241 0003ED84 243 0003ED8C 244 0003ED90 + 245 0003ED9A 248 0003EDAE 250 0003EDB8 252 0003EDC1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EDD0-0003EF2F, line/addr pairs = 30 + + 256 0003EDD0 259 0003EDDC 262 0003EE08 263 0003EE0C + 265 0003EE2E 267 0003EE3E 268 0003EE44 270 0003EE51 + 271 0003EE58 273 0003EE5B 278 0003EE83 287 0003EE8F + 288 0003EE91 292 0003EE9A 293 0003EE9E 295 0003EEA7 + 289 0003EEA9 295 0003EEAC 297 0003EEBE 301 0003EEC7 + 303 0003EECD 298 0003EEDC 307 0003EEDF 308 0003EEE5 + 310 0003EEF1 311 0003EEFF 313 0003EF0B 274 0003EF17 + 260 0003EF23 314 0003EF26 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003EF30-0003F416, line/addr pairs = 47 + + 353 0003EF30 354 0003EF55 355 0003EF60 356 0003EF8A + 357 0003EFA0 360 0003EFA6 361 0003EFB0 363 0003EFBB + 364 0003EFC6 365 0003EFCE 367 0003EFD4 368 0003EFE7 + 369 0003EFF5 371 0003EFFB 373 0003F0B8 374 0003F0D1 + 382 0003F0D3 383 0003F0EB 395 0003F0ED 398 0003F11A + 399 0003F11C 402 0003F12C 403 0003F145 404 0003F15C + 405 0003F160 406 0003F166 407 0003F16F 408 0003F17B + 410 0003F188 411 0003F18D 412 0003F193 413 0003F19E + 416 0003F1AB 417 0003F1B8 431 0003F1C1 434 0003F1E9 + 418 0003F1EE 419 0003F2BC 421 0003F2D2 434 0003F2D7 + 447 0003F2E0 450 0003F306 435 0003F30B 436 0003F3DB + 438 0003F3EE 451 0003F3F3 452 0003F3FF + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F420-0003F45E, line/addr pairs = 8 + + 456 0003F420 457 0003F425 459 0003F42C 460 0003F433 + 461 0003F438 462 0003F441 463 0003F446 466 0003F45A + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F460-0003F49A, line/addr pairs = 6 + + 470 0003F460 471 0003F464 473 0003F46B 474 0003F47C + 475 0003F483 478 0003F497 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F4A0-0003F5ED, line/addr pairs = 44 + + 482 0003F4A0 483 0003F4A8 484 0003F4AE 485 0003F4B4 + 487 0003F4B9 488 0003F4C0 489 0003F4C8 492 0003F4CF + 493 0003F4D3 494 0003F4E1 495 0003F4E7 497 0003F4EE + 501 0003F4F4 504 0003F504 505 0003F50C 506 0003F518 + 507 0003F51F 509 0003F523 493 0003F528 513 0003F530 + 514 0003F536 516 0003F53C 520 0003F540 521 0003F546 + 522 0003F553 523 0003F55C 524 0003F562 526 0003F569 + 527 0003F570 528 0003F578 531 0003F57F 532 0003F584 + 533 0003F592 534 0003F598 536 0003F59F 540 0003F5A5 + 543 0003F5BC 544 0003F5C4 545 0003F5CB 547 0003F5CF + 532 0003F5D4 551 0003F5DC 552 0003F5E2 555 0003F5E8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F5F0-0003F659, line/addr pairs = 12 + + 559 0003F5F0 560 0003F5F7 562 0003F5FD 563 0003F602 + 564 0003F606 565 0003F60C 567 0003F614 568 0003F62B + 569 0003F639 572 0003F640 573 0003F642 577 0003F656 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F660-0003F686, line/addr pairs = 6 + + 581 0003F660 584 0003F669 585 0003F672 586 0003F679 + 589 0003F681 590 0003F683 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F690-0003F734, line/addr pairs = 12 + + 594 0003F690 595 0003F6AE 596 0003F6B4 597 0003F6B9 + 599 0003F6CF 600 0003F6D9 601 0003F6DF 603 0003F6E5 + 605 0003F6EA 607 0003F6FC 609 0003F708 610 0003F714 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F740-0003F7BF, line/addr pairs = 5 + + 614 0003F740 615 0003F762 617 0003F771 618 0003F789 + 620 0003F790 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None), 0001:0003F7C0-0003F7C3, line/addr pairs = 2 + + 625 0003F7C0 627 0003F7C2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparamflags.cpp (None), 0001:0003E870-0003E899, line/addr pairs = 10 + + 5 0003E870 6 0003E874 7 0003E878 8 0003E87C + 9 0003E880 10 0003E884 11 0003E888 12 0003E890 + 13 0003E892 15 0003E896 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp (None), 0001:0003E6B0-0003E72F, line/addr pairs = 13 + + 12 0003E6B0 13 0003E6BB 14 0003E6C2 15 0003E6C9 + 17 0003E6D0 19 0003E6D6 21 0003E6DC 30 0003E6E0 + 31 0003E6EE 33 0003E713 34 0003E71A 36 0003E725 + 37 0003E729 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp (None), 0001:0003E730-0003E78A, line/addr pairs = 8 + + 41 0003E730 42 0003E73E 43 0003E758 44 0003E75E + 45 0003E764 46 0003E76B 48 0003E778 49 0003E783 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp (None), 0001:0003E790-0003E7A1, line/addr pairs = 4 + + 53 0003E790 54 0003E793 55 0003E797 56 0003E7A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp (None), 0001:0003E7B0-0003E868, line/addr pairs = 19 + + 60 0003E7B0 61 0003E7BA 62 0003E7BC 64 0003E7C5 + 65 0003E7CD 67 0003E7EA 68 0003E7EC 71 0003E80D + 72 0003E813 74 0003E81A 78 0003E820 79 0003E823 + 80 0003E83D 81 0003E843 82 0003E849 83 0003E851 + 84 0003E857 86 0003E862 87 0003E864 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DC50-0003DCCB, line/addr pairs = 3 + + 12 0003DC50 13 0003DC91 14 0003DC96 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DCF0-0003DCF3, line/addr pairs = 1 + + 18 0003DCF0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DD00-0003DD71, line/addr pairs = 3 + + 23 0003DD00 24 0003DD2D 25 0003DD32 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DD80-0003DD95, line/addr pairs = 4 + + 29 0003DD80 32 0003DD88 34 0003DD8E 37 0003DD94 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DDA0-0003DE3F, line/addr pairs = 22 + + 41 0003DDA0 42 0003DDA7 43 0003DDAB 44 0003DDB0 + 47 0003DDC0 49 0003DDD0 51 0003DDDA 52 0003DDDE + 54 0003DDE4 55 0003DDEB 57 0003DDF1 58 0003DDF8 + 60 0003DDFE 61 0003DE07 62 0003DE0B 63 0003DE11 + 64 0003DE18 67 0003DE1E 68 0003DE25 70 0003DE2C + 71 0003DE33 72 0003DE3A + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DE40-0003DEA1, line/addr pairs = 5 + + 76 0003DE40 77 0003DE49 79 0003DE58 82 0003DE8D + 84 0003DE9C + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003DEB0-0003E062, line/addr pairs = 20 + + 88 0003DEB0 89 0003DED3 92 0003DEDD 93 0003DF1F + 94 0003DF51 97 0003DF5C 99 0003DF62 100 0003DF68 + 103 0003DF72 106 0003DF76 107 0003DF99 109 0003DFBC + 110 0003DFCA 111 0003DFD6 112 0003DFE3 103 0003DFE5 + 115 0003DFE8 117 0003DFF3 93 0003E018 92 0003E038 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003E070-0003E287, line/addr pairs = 33 + + 130 0003E070 132 0003E094 134 0003E099 136 0003E09D + 139 0003E0AA 140 0003E0B2 142 0003E0BC 143 0003E0C2 + 145 0003E0F1 148 0003E0F7 149 0003E103 152 0003E106 + 153 0003E10A 154 0003E13A 156 0003E13F 157 0003E141 + 160 0003E153 161 0003E158 163 0003E15D 167 0003E163 + 168 0003E19A 169 0003E1BF 171 0003E1C5 172 0003E1CB + 174 0003E204 175 0003E213 178 0003E222 180 0003E233 + 184 0003E235 185 0003E239 187 0003E240 188 0003E246 + 190 0003E24E + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003E290-0003E4C8, line/addr pairs = 35 + + 195 0003E290 197 0003E2B4 199 0003E2B9 201 0003E2BD + 204 0003E2CA 205 0003E2D2 207 0003E2DC 208 0003E2E2 + 210 0003E311 213 0003E317 216 0003E336 220 0003E34B + 221 0003E34F 222 0003E37F 224 0003E384 225 0003E386 + 228 0003E398 229 0003E39D 231 0003E3A2 235 0003E3A8 + 236 0003E3DF 237 0003E3F8 239 0003E3FE 240 0003E404 + 242 0003E43D 243 0003E44C 246 0003E45B 248 0003E46C + 252 0003E46E 253 0003E472 255 0003E479 256 0003E47F + 258 0003E487 263 0003E4C0 265 0003E4C7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003E4D0-0003E4FB, line/addr pairs = 6 + + 269 0003E4D0 270 0003E4D7 272 0003E4E1 273 0003E4E5 + 275 0003E4EF 276 0003E4F6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003E500-0003E644, line/addr pairs = 13 + + 280 0003E500 281 0003E524 283 0003E533 286 0003E538 + 288 0003E56E 289 0003E596 291 0003E5A2 293 0003E5A7 + 294 0003E5CF 296 0003E5DB 297 0003E5E5 299 0003E5EA + 286 0003E612 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None), 0001:0003E650-0003E6AC, line/addr pairs = 9 + + 304 0003E650 307 0003E65D 309 0003E664 310 0003E675 + 311 0003E67F 312 0003E692 315 0003E698 316 0003E69F + 317 0003E6A2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None), 0001:0003D3D0-0003D407, line/addr pairs = 2 + + 5 0003D3D0 7 0003D3FC + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None), 0001:0003D410-0003D431, line/addr pairs = 7 + + 11 0003D410 12 0003D415 13 0003D41A 15 0003D41C + 16 0003D420 15 0003D427 20 0003D42D + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None), 0001:0003D440-0003D716, line/addr pairs = 14 + + 24 0003D440 25 0003D460 26 0003D483 28 0003D512 + 29 0003D555 30 0003D57D 31 0003D58B 33 0003D597 + 29 0003D59C 33 0003D5B2 34 0003D5B5 36 0003D6C4 + 34 0003D6E2 25 0003D6FC + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None), 0001:0003D7E0-0003D98F, line/addr pairs = 9 + + 40 0003D7E0 41 0003D800 42 0003D82A 44 0003D86C + 45 0003D872 47 0003D8CC 48 0003D951 47 0003D968 + 41 0003D975 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None), 0001:0003D990-0003DB47, line/addr pairs = 11 + + 52 0003D990 54 0003D9B7 55 0003D9DA 57 0003DA55 + 58 0003DAA1 60 0003DAC5 61 0003DACB 62 0003DAE2 + 65 0003DAE8 58 0003DB0A 54 0003DB2D + + C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None), 0001:0003DB50-0003DC13, line/addr pairs = 16 + + 173 0003DB50 179 0003DB63 181 0003DB72 184 0003DB79 + 188 0003DB96 190 0003DBAD 191 0003DBB7 193 0003DBBC + 194 0003DBC2 196 0003DBC4 197 0003DBC8 198 0003DBCE + 200 0003DBF4 193 0003DBF8 203 0003DBFE 204 0003DC0B + + C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None), 0001:0003DC20-0003DC50, line/addr pairs = 8 + + 208 0003DC20 209 0003DC23 211 0003DC2D 213 0003DC3C + 214 0003DC40 216 0003DC43 217 0003DC49 218 0003DC4D + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariable.cpp (None), 0001:0003D330-0003D334, line/addr pairs = 2 + + 10 0003D330 12 0003D333 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariable.cpp (None), 0001:0003D340-0003D3C4, line/addr pairs = 4 + + 16 0003D340 18 0003D34D 22 0003D350 23 0003D370 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d7c88.cpp (None), 0001:0003D2C0-0003D312, line/addr pairs = 2 + + 5 0003D2C0 6 0003D2EB + + C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d7c88.cpp (None), 0001:0003D320-0003D324, line/addr pairs = 2 + + 10 0003D320 12 0003D323 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C470-0003C4E6, line/addr pairs = 7 + + 18 0003C470 20 0003C4A5 22 0003C4AB 24 0003C4B1 + 25 0003C4B5 26 0003C4B9 27 0003C4C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C5A0-0003C639, line/addr pairs = 7 + + 31 0003C5A0 32 0003C5CE 34 0003C5DD 35 0003C5E1 + 36 0003C5EE 39 0003C5FE 40 0003C60E + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C640-0003C655, line/addr pairs = 4 + + 44 0003C640 45 0003C643 46 0003C648 48 0003C653 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C660-0003C704, line/addr pairs = 23 + + 52 0003C660 53 0003C665 54 0003C67D 57 0003C683 + 59 0003C68B 61 0003C69B 79 0003C6A2 80 0003C6A5 + 64 0003C6A8 79 0003C6AF 80 0003C6B2 67 0003C6B5 + 79 0003C6BC 80 0003C6BF 70 0003C6C2 79 0003C6C9 + 80 0003C6CC 73 0003C6CF 79 0003C6D6 80 0003C6D9 + 76 0003C6DC 79 0003C6E3 80 0003C6E6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C710-0003C7CC, line/addr pairs = 26 + + 89 0003C710 90 0003C718 91 0003C71E 92 0003C725 + 93 0003C72A 96 0003C731 98 0003C745 100 0003C74A + 101 0003C753 103 0003C75A 104 0003C760 105 0003C767 + 108 0003C76E 109 0003C774 111 0003C77E 113 0003C784 + 114 0003C78C 116 0003C792 117 0003C797 118 0003C79E + 120 0003C7A5 121 0003C7AA 123 0003C7B1 124 0003C7BD + 126 0003C7C2 127 0003C7C8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C7D0-0003C886, line/addr pairs = 11 + + 131 0003C7D0 132 0003C7EE 133 0003C7F4 135 0003C7FB + 137 0003C7FF 139 0003C80C 140 0003C812 142 0003C819 + 143 0003C81D 147 0003C85C 143 0003C86C + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C890-0003C8AB, line/addr pairs = 5 + + 151 0003C890 152 0003C893 153 0003C898 154 0003C8A0 + 155 0003C8A9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003C8B0-0003CA64, line/addr pairs = 42 + + 159 0003C8B0 161 0003C8C1 162 0003C8C3 163 0003C8C9 + 164 0003C8D0 168 0003C8D8 171 0003C8DD 172 0003C8DF + 171 0003C8E4 173 0003C8EC 177 0003C8F4 178 0003C908 + 179 0003C90D 180 0003C914 181 0003C919 185 0003C924 + 191 0003C93B 192 0003C94A 194 0003C95C 195 0003C964 + 196 0003C96E 197 0003C979 200 0003C988 201 0003C990 + 203 0003C99E 205 0003C9AE 208 0003C9B2 211 0003C9B9 + 215 0003C9C0 218 0003C9D4 219 0003C9DA 221 0003C9E9 + 222 0003C9EB 211 0003C9FE 203 0003CA07 227 0003CA10 + 228 0003CA23 230 0003CA32 231 0003CA3D 232 0003CA4E + 235 0003CA58 237 0003CA5C + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003CA70-0003CD06, line/addr pairs = 57 + + 241 0003CA70 242 0003CA83 243 0003CA85 244 0003CA8B + 245 0003CA92 248 0003CA9A 252 0003CA9F 253 0003CAA1 + 252 0003CAAA 254 0003CAB0 257 0003CAB8 258 0003CAD0 + 259 0003CAD9 260 0003CAE0 261 0003CAE5 265 0003CAF0 + 271 0003CB0B 272 0003CB1A 274 0003CB2F 275 0003CB38 + 276 0003CB46 277 0003CB5C 280 0003CB64 281 0003CB6C + 283 0003CB7A 285 0003CB9A 288 0003CBA2 291 0003CBAD + 292 0003CBC4 305 0003CBF4 307 0003CC08 309 0003CC18 + 310 0003CC1F 313 0003CC2A 314 0003CC37 317 0003CC3E + 320 0003CC49 321 0003CC4B 323 0003CC4E 325 0003CC52 + 326 0003CC57 332 0003CC5E 334 0003CC6A 335 0003CC6C + 336 0003CC6F 337 0003CC72 338 0003CC75 309 0003CC78 + 291 0003CC7D 283 0003CC95 344 0003CCA4 345 0003CCBE + 347 0003CCCC 348 0003CCD7 349 0003CCE8 352 0003CCF6 + 354 0003CCFE + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003CD10-0003CF77, line/addr pairs = 48 + + 358 0003CD10 360 0003CD18 361 0003CD20 362 0003CD26 + 363 0003CD2D 367 0003CD34 368 0003CD43 370 0003CD55 + 371 0003CD5D 372 0003CD67 373 0003CD72 376 0003CD81 + 377 0003CD89 382 0003CD97 383 0003CDB0 385 0003CDC5 + 386 0003CDCD 388 0003CDE8 389 0003CDFB 391 0003CE05 + 393 0003CE09 397 0003CE10 398 0003CE1F 399 0003CE21 + 400 0003CE27 401 0003CE2E 405 0003CE36 406 0003CE45 + 408 0003CE57 409 0003CE5F 410 0003CE69 411 0003CE74 + 414 0003CE83 415 0003CE8B 417 0003CE97 420 0003CEB3 + 422 0003CEC0 424 0003CED4 425 0003CEDD 427 0003CEE3 + 428 0003CEFE 424 0003CF25 431 0003CF34 432 0003CF3C + 434 0003CF4E 435 0003CF61 437 0003CF6B 439 0003CF6F + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003CF80-0003D007, line/addr pairs = 12 + + 443 0003CF80 450 0003CF8D 451 0003CF96 453 0003CFA8 + 454 0003CFB0 455 0003CFBA 456 0003CFC5 459 0003CFD4 + 460 0003CFD8 461 0003CFE4 462 0003CFF7 464 0003D001 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003D010-0003D068, line/addr pairs = 14 + + 468 0003D010 470 0003D018 471 0003D01D 472 0003D027 + 473 0003D02C 477 0003D033 479 0003D03B 481 0003D03E + 482 0003D043 484 0003D051 485 0003D057 488 0003D05C + 490 0003D060 492 0003D064 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003D070-0003D111, line/addr pairs = 11 + + 496 0003D070 498 0003D079 505 0003D090 510 0003D0A2 + 513 0003D0B1 515 0003D0C3 516 0003D0C8 518 0003D0DC + 515 0003D0EE 522 0003D0F4 524 0003D107 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None), 0001:0003D120-0003D2B2, line/addr pairs = 24 + + 528 0003D120 530 0003D129 535 0003D13E 538 0003D146 + 541 0003D167 545 0003D171 547 0003D174 548 0003D183 + 550 0003D191 551 0003D198 555 0003D1AE 557 0003D1BA + 558 0003D1C9 564 0003D1CF 565 0003D1E6 566 0003D1F8 + 564 0003D20D 572 0003D214 573 0003D225 585 0003D22B + 587 0003D25F 588 0003D26E 598 0003D274 600 0003D2A8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.h (None), 0001:0003C4F0-0003C4F6, line/addr pairs = 2 + + 22 0003C4F0 24 0003C4F5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.h (None), 0001:0003C500-0003C572, line/addr pairs = 3 + + 28 0003C500 29 0003C508 30 0003C56E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp (None), 0001:0003C330-0003C39C, line/addr pairs = 4 + + 13 0003C330 15 0003C364 17 0003C377 18 0003C383 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp (None), 0001:0003C410-0003C423, line/addr pairs = 4 + + 22 0003C410 23 0003C413 24 0003C41E 25 0003C421 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp (None), 0001:0003C430-0003C443, line/addr pairs = 4 + + 29 0003C430 30 0003C433 31 0003C43D 32 0003C441 + + C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp (None), 0001:0003C450-0003C46A, line/addr pairs = 6 + + 36 0003C450 37 0003C453 38 0003C458 39 0003C45E + 41 0003C462 42 0003C468 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003BFD0-0003BFED, line/addr pairs = 5 + + 15 0003BFD0 17 0003BFD6 18 0003BFDC 19 0003BFE3 + 20 0003BFE8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003BFF0-0003C09D, line/addr pairs = 7 + + 24 0003BFF0 25 0003C01C 26 0003C02A 27 0003C030 + 28 0003C053 29 0003C05B 30 0003C05D + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003C0A0-0003C157, line/addr pairs = 16 + + 34 0003C0A0 35 0003C0AE 37 0003C0C5 38 0003C0D7 + 41 0003C0DE 42 0003C0E3 43 0003C10D 45 0003C116 + 46 0003C118 48 0003C125 49 0003C127 51 0003C12F + 52 0003C139 53 0003C141 58 0003C14D 59 0003C150 + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003C160-0003C234, line/addr pairs = 6 + + 63 0003C160 64 0003C185 65 0003C189 66 0003C190 + 67 0003C1C9 68 0003C1CF + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003C240-0003C27D, line/addr pairs = 8 + + 74 0003C240 75 0003C246 76 0003C24E 77 0003C254 + 78 0003C25B 83 0003C25F 79 0003C273 85 0003C277 + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003C280-0003C2D1, line/addr pairs = 7 + + 89 0003C280 90 0003C288 91 0003C29B 92 0003C2A2 + 90 0003C2AC 93 0003C2C2 97 0003C2C9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None), 0001:0003C2E0-0003C32F, line/addr pairs = 9 + + 101 0003C2E0 102 0003C2E9 103 0003C2EF 104 0003C2FA + 105 0003C301 108 0003C30B 111 0003C319 112 0003C31F + 106 0003C325 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BCF0-0003BD5B, line/addr pairs = 3 + + 15 0003BCF0 17 0003BD2C 18 0003BD31 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BDD0-0003BE39, line/addr pairs = 15 + + 23 0003BDD0 24 0003BDD6 25 0003BDDD 26 0003BDE2 + 27 0003BDE8 29 0003BDFF 30 0003BE03 33 0003BE08 + 34 0003BE0F 35 0003BE18 36 0003BE1D 39 0003BE1F + 40 0003BE27 41 0003BE2D 42 0003BE34 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BE40-0003BEAB, line/addr pairs = 4 + + 46 0003BE40 48 0003BE77 49 0003BE7B 50 0003BE88 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BED0-0003BF37, line/addr pairs = 4 + + 54 0003BED0 55 0003BEFE 56 0003BF02 57 0003BF09 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BF40-0003BF89, line/addr pairs = 7 + + 63 0003BF40 64 0003BF49 65 0003BF50 67 0003BF58 + 68 0003BF80 70 0003BF82 71 0003BF84 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BF90-0003BF9E, line/addr pairs = 2 + + 75 0003BF90 77 0003BF9B + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BFA0-0003BFAF, line/addr pairs = 3 + + 81 0003BFA0 83 0003BFA9 84 0003BFAE + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BFB0-0003BFB8, line/addr pairs = 1 + + 88 0003BFB0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None), 0001:0003BFC0-0003BFCD, line/addr pairs = 3 + + 94 0003BFC0 96 0003BFCA 97 0003BFCC + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003B7B0-0003B823, line/addr pairs = 5 + + 12 0003B7B0 14 0003B7E5 15 0003B7F0 16 0003B7FD + 17 0003B80C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003B850-0003B8F1, line/addr pairs = 5 + + 21 0003B850 22 0003B88C 23 0003B890 24 0003B8A5 + 25 0003B8C3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003B900-0003B9C8, line/addr pairs = 10 + + 29 0003B900 30 0003B938 31 0003B93C 32 0003B956 + 33 0003B967 35 0003B982 36 0003B984 37 0003B991 + 38 0003B994 40 0003B99A + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003B9D0-0003BA32, line/addr pairs = 3 + + 44 0003B9D0 45 0003B9FE 46 0003BA0E + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BA40-0003BA4D, line/addr pairs = 2 + + 50 0003BA40 52 0003BA4C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BA50-0003BA5D, line/addr pairs = 2 + + 56 0003BA50 58 0003BA5C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BA60-0003BABD, line/addr pairs = 8 + + 62 0003BA60 63 0003BA6C 64 0003BA71 65 0003BA7E + 66 0003BA82 67 0003BA97 70 0003BAB5 71 0003BAB8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BAC0-0003BB27, line/addr pairs = 8 + + 75 0003BAC0 76 0003BACC 77 0003BAD0 78 0003BAE0 + 79 0003BAF3 80 0003BB04 83 0003BB1F 84 0003BB22 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BB30-0003BC3D, line/addr pairs = 8 + + 90 0003BB30 92 0003BB57 93 0003BB66 95 0003BB75 + 96 0003BB8C 98 0003BBA9 99 0003BBC4 101 0003BBED + + C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None), 0001:0003BC40-0003BCE6, line/addr pairs = 9 + + 106 0003BC40 107 0003BC4D 109 0003BC62 110 0003BC72 + 111 0003BC96 113 0003BCC3 114 0003BCCF 115 0003BCD7 + 118 0003BCDE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.cpp (None), 0001:0003B790-0003B79C, line/addr pairs = 3 + + 9 0003B790 11 0003B797 12 0003B799 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.cpp (None), 0001:0003B7A0-0003B7A3, line/addr pairs = 1 + + 16 0003B7A0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp (None), 0001:0003B590-0003B5F5, line/addr pairs = 8 + + 10 0003B590 11 0003B59B 12 0003B5AA 13 0003B5BB + 11 0003B5D2 19 0003B5DE 14 0003B5E7 20 0003B5EF + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp (None), 0001:0003B600-0003B6A4, line/addr pairs = 12 + + 24 0003B600 27 0003B60C 33 0003B610 35 0003B61F + 37 0003B630 38 0003B64D 39 0003B658 33 0003B65A + 45 0003B668 46 0003B67B 49 0003B698 50 0003B69B + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp (None), 0001:0003B6B0-0003B701, line/addr pairs = 7 + + 54 0003B6B0 55 0003B6B9 56 0003B6D1 55 0003B6DC + 60 0003B6EA 61 0003B6ED 57 0003B6F3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp (None), 0001:0003B710-0003B78F, line/addr pairs = 10 + + 65 0003B710 68 0003B71D 69 0003B737 68 0003B748 + 76 0003B756 77 0003B758 70 0003B761 71 0003B76B + 76 0003B784 77 0003B786 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003A7F0-0003A8FB, line/addr pairs = 4 + + 14 0003A7F0 15 0003A882 16 0003A88E 14 0003A8A7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003AB20-0003AC48, line/addr pairs = 15 + + 20 0003AB20 21 0003AB26 23 0003AB3B 24 0003AB3F + 26 0003AB51 27 0003AB55 31 0003AB59 32 0003AB5F + 36 0003AB60 37 0003AB8C 38 0003AB9A 39 0003ABA0 + 40 0003ABC2 43 0003ABD0 44 0003ABE0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003AC50-0003AD88, line/addr pairs = 12 + + 48 0003AC50 51 0003AC73 52 0003AC80 61 0003AC8F + 62 0003ACAC 63 0003ACB6 67 0003ACB8 68 0003ACBD + 54 0003ACCD 55 0003ACFF 57 0003AD0E 58 0003AD6C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003AED0-0003B05B, line/addr pairs = 15 + + 72 0003AED0 73 0003AEF3 76 0003AF05 77 0003AF1D + 79 0003AF25 76 0003AF55 91 0003AF62 79 0003AF86 + 80 0003AF8C 82 0003AFB7 83 0003AFC1 85 0003AFCF + 87 0003B01B 85 0003B02E 89 0003B046 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B120-0003B1CC, line/addr pairs = 2 + + 96 0003B120 97 0003B142 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B1D0-0003B249, line/addr pairs = 9 + + 102 0003B1D0 103 0003B1DE 105 0003B1E6 106 0003B1F0 + 107 0003B1F4 103 0003B221 113 0003B230 114 0003B233 + 108 0003B23A + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B250-0003B2CF, line/addr pairs = 6 + + 118 0003B250 119 0003B25F 120 0003B27A 121 0003B2B9 + 124 0003B2C1 125 0003B2C7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B2D0-0003B30E, line/addr pairs = 8 + + 129 0003B2D0 131 0003B2D1 132 0003B2E6 133 0003B2EE + 134 0003B2F2 136 0003B2FB 138 0003B305 139 0003B30B + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B310-0003B474, line/addr pairs = 23 + + 143 0003B310 144 0003B331 146 0003B343 147 0003B349 + 150 0003B354 151 0003B370 152 0003B382 155 0003B390 + 156 0003B39D 157 0003B3A6 158 0003B3AC 159 0003B3BB + 160 0003B3E8 156 0003B3FC 164 0003B40C 159 0003B42B + 151 0003B433 169 0003B450 170 0003B451 171 0003B45E + 172 0003B462 173 0003B46E 174 0003B471 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None), 0001:0003B480-0003B588, line/addr pairs = 10 + + 178 0003B480 179 0003B4A3 180 0003B4B0 182 0003B4C2 + 186 0003B4D7 187 0003B4E0 189 0003B4EE 190 0003B53A + 193 0003B54B 189 0003B55B + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h (None), 0001:0003A900-0003A90C, line/addr pairs = 1 + + 19 0003A900 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h (None), 0001:0003A910-0003A916, line/addr pairs = 2 + + 80 0003A910 83 0003A915 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h (None), 0001:0003A920-0003A992, line/addr pairs = 3 + + 87 0003A920 88 0003A928 89 0003A98E + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h (None), 0001:0003B060-0003B0AF, line/addr pairs = 1 + + 51 0003B060 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0003A9A0-0003AA04, line/addr pairs = 3 + + 140 0003A9A0 141 0003A9E4 142 0003A9FE + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.h (None), 0001:0003AD90-0003AD96, line/addr pairs = 2 + + 16 0003AD90 19 0003AD95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.h (None), 0001:0003ADA0-0003AE42, line/addr pairs = 3 + + 23 0003ADA0 25 0003ADA8 26 0003AE3E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039360-00039368, line/addr pairs = 2 + + 18 00039360 20 00039365 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039370-00039378, line/addr pairs = 2 + + 24 00039370 26 00039375 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039380-00039383, line/addr pairs = 2 + + 30 00039380 32 00039382 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039390-0003955C, line/addr pairs = 5 + + 36 00039390 38 00039464 39 00039469 40 00039476 + 36 00039484 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039900-00039B4A, line/addr pairs = 16 + + 44 00039900 45 00039935 48 00039941 49 00039979 + 52 0003998E 53 000399D1 55 000399EA 56 000399EE + 57 000399F1 58 000399F4 59 00039A25 63 00039A3F + 64 00039A4B 67 00039A54 68 00039A77 69 00039A95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039B70-00039C17, line/addr pairs = 5 + + 73 00039B70 75 00039B95 77 00039BAD 78 00039BBD + 79 00039BDE + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039C20-00039CDB, line/addr pairs = 6 + + 84 00039C20 85 00039C29 86 00039C68 90 00039C70 + 91 00039C7D 92 00039CD4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039CE0-00039D85, line/addr pairs = 11 + + 96 00039CE0 97 00039D04 102 00039D14 103 00039D1A + 105 00039D22 106 00039D29 108 00039D35 109 00039D39 + 110 00039D48 111 00039D4A 113 00039D51 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039D90-00039E44, line/addr pairs = 9 + + 118 00039D90 119 00039DB2 120 00039DC7 121 00039DCD + 122 00039DDD 123 00039DDF 126 00039E02 127 00039E0A + 128 00039E13 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:00039E50-00039F42, line/addr pairs = 6 + + 134 00039E50 136 00039E71 137 00039ECC 138 00039ED0 + 141 00039EE8 142 00039F27 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A050-0003A2E1, line/addr pairs = 39 + + 147 0003A050 148 0003A073 149 0003A07E 152 0003A085 + 153 0003A091 155 0003A097 156 0003A09C 152 0003A0AB + 159 0003A0B7 160 0003A0C0 161 0003A0CC 163 0003A0D2 + 164 0003A0D7 160 0003A0E6 167 0003A0F2 168 0003A0FB + 169 0003A102 170 0003A107 172 0003A10D 173 0003A112 + 169 0003A121 178 0003A12D 185 0003A133 181 0003A15F + 182 0003A16E 185 0003A186 187 0003A18F 190 0003A193 + 191 0003A19F 192 0003A1AD 194 0003A1B8 195 0003A1CF + 197 0003A1D7 198 0003A204 203 0003A220 204 0003A244 + 205 0003A259 206 0003A266 208 0003A28A + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A2F0-0003A3A2, line/addr pairs = 10 + + 213 0003A2F0 214 0003A312 215 0003A32B 216 0003A332 + 217 0003A339 218 0003A33D 219 0003A352 220 0003A35C + 221 0003A368 223 0003A36F + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A3B0-0003A474, line/addr pairs = 7 + + 228 0003A3B0 229 0003A3D4 230 0003A3DC 232 0003A3F0 + 233 0003A3F2 236 0003A416 237 0003A459 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A480-0003A508, line/addr pairs = 7 + + 243 0003A480 244 0003A4A2 246 0003A4B1 247 0003A4C1 + 248 0003A4CC 249 0003A4D0 253 0003A4D6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A510-0003A6BA, line/addr pairs = 18 + + 258 0003A510 259 0003A534 261 0003A546 262 0003A54C + 264 0003A58C 265 0003A590 267 0003A5B4 268 0003A5BA + 270 0003A5C3 271 0003A5D6 273 0003A5E2 275 0003A5F2 + 278 0003A622 279 0003A64A 280 0003A659 282 0003A667 + 275 0003A683 284 0003A69B + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A6C0-0003A6D8, line/addr pairs = 2 + + 289 0003A6C0 291 0003A6D5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None), 0001:0003A6E0-0003A7EF, line/addr pairs = 11 + + 295 0003A6E0 296 0003A700 297 0003A710 299 0003A717 + 301 0003A72B 304 0003A765 305 0003A78D 306 0003A79C + 308 0003A7AC 311 0003A7BA 301 0003A7CD + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00039560-000395C4, line/addr pairs = 3 + + 140 00039560 141 000395A4 142 000395BE + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:000395D0-00039634, line/addr pairs = 3 + + 140 000395D0 141 00039614 142 0003962E + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00039640-00039666, line/addr pairs = 6 + + 375 00039640 376 0003964E 377 00039652 380 0003965B + 379 0003965E 380 00039663 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00039B50-00039B67, line/addr pairs = 3 + + 69 00039B50 70 00039B55 71 00039B59 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.h (None), 0001:00039670-00039676, line/addr pairs = 2 + + 26 00039670 29 00039675 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.h (None), 0001:00039680-000396F2, line/addr pairs = 3 + + 33 00039680 34 00039688 35 000396EE + + C:\Users\Christian\Downloads\isle\LEGO1\mxnextactiondatastart.h (None), 0001:00039F50-00039F56, line/addr pairs = 2 + + 20 00039F50 23 00039F55 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnextactiondatastart.h (None), 0001:00039F60-00039FD2, line/addr pairs = 3 + + 27 00039F60 28 00039F68 29 00039FCE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039180-000391E6, line/addr pairs = 4 + + 9 00039180 10 000391AE 11 000391B2 13 000391BB + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:000391F0-00039237, line/addr pairs = 9 + + 17 000391F0 20 000391FF 21 00039209 22 00039216 + 23 0003921E 24 00039226 26 0003922E 30 00039230 + 31 00039233 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039240-0003927D, line/addr pairs = 9 + + 35 00039240 37 00039243 38 0003924B 41 00039250 + 42 00039257 43 00039266 44 0003926C 46 00039275 + 50 00039279 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039280-00039303, line/addr pairs = 11 + + 54 00039280 55 0003928E 56 000392A7 55 000392B2 + 68 000392C0 69 000392C6 57 000392CD 58 000392DA + 59 000392E0 62 000392E7 64 000392F9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039310-0003931A, line/addr pairs = 2 + + 73 00039310 75 00039317 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039320-00039328, line/addr pairs = 2 + + 79 00039320 81 00039327 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039330-00039338, line/addr pairs = 2 + + 85 00039330 87 00039337 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039340-00039348, line/addr pairs = 2 + + 91 00039340 93 00039347 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None), 0001:00039350-00039358, line/addr pairs = 2 + + 97 00039350 99 00039357 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038B20-00038B28, line/addr pairs = 2 + + 18 00038B20 20 00038B27 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038B30-00038B71, line/addr pairs = 9 + + 24 00038B30 25 00038B37 27 00038B41 28 00038B45 + 29 00038B4E 31 00038B55 33 00038B5C 34 00038B63 + 35 00038B6C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038B80-00038BC4, line/addr pairs = 6 + + 39 00038B80 40 00038B8A 41 00038B8C 43 00038B95 + 45 00038BAD 46 00038BBE + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038BD0-00038C8F, line/addr pairs = 13 + + 50 00038BD0 51 00038BF2 52 00038BF6 54 00038BFC + 55 00038C31 57 00038C37 58 00038C46 59 00038C4D + 63 00038C70 64 00038C74 65 00038C7C 66 00038C83 + 67 00038C8C + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038C90-00038DE1, line/addr pairs = 19 + + 71 00038C90 72 00038CB3 75 00038CD1 76 00038CDC + 77 00038CE2 80 00038CE8 81 00038CFE 83 00038D0A + 84 00038D14 90 00038D20 92 00038D50 93 00038D5A + 95 00038D91 96 00038D9B 98 00038DA2 99 00038DAE + 100 00038DB2 101 00038DC4 103 00038DC8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038DF0-00038E16, line/addr pairs = 5 + + 107 00038DF0 108 00038DF4 109 00038DFB 110 00038E08 + 111 00038E14 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038E20-00038E43, line/addr pairs = 5 + + 115 00038E20 116 00038E23 118 00038E28 119 00038E3A + 120 00038E41 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038E50-00038EAA, line/addr pairs = 10 + + 124 00038E50 125 00038E54 127 00038E5B 128 00038E6C + 129 00038E74 130 00038E79 131 00038E89 133 00038E90 + 134 00038EA1 136 00038EA7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038EB0-00038EF4, line/addr pairs = 5 + + 140 00038EB0 141 00038EB9 142 00038ECA 143 00038EDB + 147 00038EEF + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00038F00-00038FF2, line/addr pairs = 13 + + 151 00038F00 153 00038F0C 155 00038F1A 157 00038F1D + 159 00038F2C 160 00038F3B 162 00038F48 163 00038F60 + 165 00038F77 166 00038F83 168 00038FAD 169 00038FBE + 171 00038FE8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00039000-00039099, line/addr pairs = 10 + + 175 00039000 176 0003900D 178 00039012 180 0003902B + 181 00039035 182 0003903B 185 00039041 186 0003905A + 187 00039066 189 00039090 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:000390A0-0003916C, line/addr pairs = 17 + + 193 000390A0 194 000390AB 196 000390B3 197 000390B9 + 199 000390BD 201 000390C6 204 000390CE 207 000390D8 + 208 000390E9 211 000390F8 212 0003910E 213 00039127 + 217 00039130 218 00039155 219 0003915A 220 0003915D + 222 00039162 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None), 0001:00039170-00039173, line/addr pairs = 2 + + 226 00039170 229 00039172 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp (None), 0001:00038A30-00038A8D, line/addr pairs = 3 + + 10 00038A30 11 00038A5D 12 00038A62 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp (None), 0001:00038A90-00038A98, line/addr pairs = 2 + + 16 00038A90 18 00038A97 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp (None), 0001:00038AA0-00038AE7, line/addr pairs = 9 + + 22 00038AA0 23 00038AA4 24 00038AAD 26 00038ABA + 27 00038AC4 28 00038ACB 30 00038AD2 31 00038AD9 + 32 00038AE2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp (None), 0001:00038AF0-00038B16, line/addr pairs = 6 + + 36 00038AF0 39 00038AF9 40 00038B02 41 00038B09 + 44 00038B11 45 00038B13 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038260-000382C4, line/addr pairs = 3 + + 14 00038260 15 00038295 16 0003829A + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:000382F0-0003834D, line/addr pairs = 3 + + 20 000382F0 21 0003831D 22 00038322 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038350-00038359, line/addr pairs = 2 + + 26 00038350 29 00038358 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038360-000383C5, line/addr pairs = 14 + + 33 00038360 34 00038367 35 0003836B 36 00038370 + 39 00038380 40 0003838D 42 00038390 44 0003839A + 45 0003839E 48 000383A4 49 000383AB 51 000383B2 + 52 000383B9 54 000383C0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:000383D0-000385C9, line/addr pairs = 38 + + 58 000383D0 59 000383F0 60 000383F7 62 000383FA + 65 00038407 66 0003840F 68 00038417 71 00038430 + 75 00038442 76 00038453 78 0003845A 81 0003846A + 83 00038477 84 00038488 87 00038495 88 000384A2 + 90 000384A9 96 000384BE 98 000384C4 101 000384D3 + 103 000384D9 104 000384E0 105 000384E6 106 000384F1 + 107 00038517 109 00038519 111 00038525 112 00038527 + 114 0003855E 115 0003856F 118 00038588 120 00038599 + 123 0003859B 124 0003859F 126 000385A6 127 000385AC + 128 000385B4 129 000385B9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:000385D0-000385D8, line/addr pairs = 2 + + 133 000385D0 135 000385D7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:000385E0-000386E2, line/addr pairs = 9 + + 139 000385E0 140 00038607 142 0003860C 145 00038613 + 147 00038658 148 00038687 150 00038693 151 0003869A + 145 000386B8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:000386F0-0003880B, line/addr pairs = 8 + + 155 000386F0 156 00038712 159 00038723 161 0003875C + 163 0003878C 164 00038796 167 000387C0 159 000387D9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038810-0003882A, line/addr pairs = 4 + + 172 00038810 174 00038818 175 00038820 176 00038827 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038830-0003892F, line/addr pairs = 8 + + 180 00038830 181 00038852 184 00038863 186 00038896 + 187 000388CA 188 000388D1 189 000388D7 184 000388FD + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None), 0001:00038930-00038A2F, line/addr pairs = 8 + + 193 00038930 194 00038952 197 00038963 199 00038996 + 200 000389CA 201 000389D1 202 000389D7 197 000389FD + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:000376B0-00037782, line/addr pairs = 4 + + 11 000376B0 12 00037733 13 00037738 11 0003774D + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:000377C0-0003781D, line/addr pairs = 3 + + 17 000377C0 18 000377ED 19 000377F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00037820-00037848, line/addr pairs = 6 + + 23 00037820 24 00037823 25 00037834 26 0003783F + 27 00037842 28 00037847 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00037850-0003788D, line/addr pairs = 8 + + 32 00037850 33 00037857 35 0003785E 36 0003786C + 38 00037871 40 00037878 41 0003787F 43 00037888 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00037890-000378A7, line/addr pairs = 2 + + 47 00037890 49 000378A4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:000378B0-00037945, line/addr pairs = 6 + + 53 000378B0 54 000378D2 55 000378D6 57 000378DC + 58 00037919 59 0003791F + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00037950-00037B41, line/addr pairs = 19 + + 63 00037950 64 00037973 65 0003797C 66 00037985 + 68 00037988 70 0003799F 72 000379A9 73 00037A05 + 75 00037A19 76 00037A26 79 00037A2D 82 00037A6A + 83 00037A92 84 00037AB5 85 00037AC2 86 00037ACE + 87 00037AD0 79 00037AF7 72 00037B17 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00038120-00038173, line/addr pairs = 10 + + 91 00038120 92 00038126 93 00038130 94 00038135 + 95 0003813F 97 00038149 98 0003814C 99 00038157 + 101 00038169 104 00038170 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:00038180-000381A6, line/addr pairs = 5 + + 108 00038180 109 00038184 110 0003818B 111 00038198 + 112 000381A4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:000381B0-000381B5, line/addr pairs = 1 + + 116 000381B0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None), 0001:000381C0-000381C8, line/addr pairs = 2 + + 122 000381C0 124 000381C7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.h (None), 0001:00037790-00037796, line/addr pairs = 2 + + 17 00037790 20 00037795 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00037B50-00037BB5, line/addr pairs = 3 + + 10 00037B50 12 00037B84 13 00037B8B + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00037BC0-00037BC1, line/addr pairs = 1 + + 15 00037BC0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00037BD0-00037C1F, line/addr pairs = 1 + + 19 00037BD0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00037C20-00037C25, line/addr pairs = 1 + + 20 00037C20 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00037C30-00037C3E, line/addr pairs = 1 + + 77 00037C30 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:000381D0-0003825B, line/addr pairs = 3 + + 139 000381D0 140 000381FD 141 00038235 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp (None), 0001:00037040-000372D6, line/addr pairs = 59 + + 10 00037040 14 00037047 15 00037049 18 00037051 + 22 00037067 23 0003706F 25 00037084 27 0003708A + 28 0003708C 30 0003709D 32 000370AD 33 000370B1 + 35 000370B6 36 000370BB 38 000370ED 42 00037103 + 43 0003710D 44 00037115 42 0003711B 47 00037121 + 49 0003712E 50 00037132 52 00037137 53 0003713C + 54 0003715B 56 00037168 57 00037170 58 00037177 + 60 0003717C 62 00037189 63 0003718D 65 00037192 + 66 00037197 70 000371B6 72 000371DC 73 000371DE + 75 000371E3 83 000371E8 85 00037209 86 00037219 + 87 0003722C 89 0003723A 92 00037243 94 00037250 + 96 00037256 98 00037269 100 00037278 102 0003727E + 104 00037284 106 0003728E 109 00037294 111 00037299 + 117 0003729F 118 000372B1 119 000372B9 125 000372C0 + 19 000372C7 122 000372CC 125 000372CE + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp (None), 0001:000372E0-00037346, line/addr pairs = 12 + + 129 000372E0 130 000372EB 131 000372EF 132 000372F8 + 133 00037302 134 0003730B 135 00037315 136 0003731E + 137 00037328 138 00037331 139 0003733B 140 00037344 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp (None), 0001:00037350-000375EA, line/addr pairs = 34 + + 157 00037350 158 00037379 159 00037380 162 00037393 + 165 00037399 167 000373A6 169 000373AC 171 000373AF + 172 000373B1 173 000373B5 174 000373DE 176 000373EE + 179 000373F6 180 000373F8 181 000373FC 182 00037423 + 184 00037433 187 0003743B 188 0003743D 191 00037448 + 194 0003744B 197 00037463 199 0003747C 200 00037491 + 201 00037494 204 0003749E 207 000374AB 209 000374CB + 213 000374D1 214 000374F4 215 0003753D 218 000375B3 + 219 000375B8 215 000375C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp (None), 0001:000375F0-000376B0, line/addr pairs = 18 + + 223 000375F0 226 00037601 227 00037603 229 0003760D + 230 00037615 231 00037629 232 00037633 236 00037641 + 240 00037655 241 00037663 242 00037667 243 00037669 + 244 00037670 246 00037672 247 0003767D 249 0003768A + 250 0003769B 252 000376A9 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.cpp (None), 0001:00036FC0-00036FFD, line/addr pairs = 9 + + 10 00036FC0 11 00036FC8 12 00036FCF 16 00036FD0 + 17 00036FD8 18 00036FDF 19 00036FF4 20 00036FF6 + 21 00036FF8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.cpp (None), 0001:00037000-00037012, line/addr pairs = 2 + + 25 00037000 27 0003700F + + C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.cpp (None), 0001:00037020-00037034, line/addr pairs = 2 + + 31 00037020 33 00037031 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxscheduler.cpp (None), 0001:00036FA0-00036FA3, line/addr pairs = 2 + + 5 00036FA0 8 00036FA2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxscheduler.cpp (None), 0001:00036FB0-00036FB3, line/addr pairs = 1 + + 12 00036FB0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036460-00036556, line/addr pairs = 4 + + 7 00036460 9 0003649D 10 000364A4 12 0003651C + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:000365A0-00036626, line/addr pairs = 8 + + 16 000365A0 17 000365CE 18 000365D2 20 000365DB + 21 000365E5 23 000365EB 24 000365F5 25 000365FB + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036630-000366B7, line/addr pairs = 11 + + 29 00036630 30 00036639 33 00036648 34 00036656 + 37 0003666E 39 0003667B 44 000366A0 45 000366A3 + 42 000366A8 44 000366AF 45 000366B2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:000366C0-00036747, line/addr pairs = 11 + + 49 000366C0 50 000366C9 53 000366D8 54 000366E6 + 57 000366FE 59 0003670B 64 00036730 65 00036733 + 62 00036738 64 0003673F 65 00036742 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036750-00036A72, line/addr pairs = 45 + + 69 00036750 73 00036759 74 0003678C 76 00036796 + 77 000367BB 80 000367C3 81 000367EF 82 00036807 + 84 00036814 85 00036839 88 00036841 89 00036848 + 90 0003684B 94 00036850 98 00036859 99 0003688C + 101 00036896 102 000368BB 105 000368C3 106 000368EF + 107 00036907 109 00036914 110 00036939 113 00036941 + 114 00036948 115 0003694B 119 00036950 120 00036956 + 121 00036961 122 00036969 123 0003696C 127 00036970 + 128 00036976 129 00036981 130 00036989 131 0003698C + 135 00036990 138 0003699C 141 000369DB 143 000369E5 + 144 00036A10 145 00036A20 151 00036A59 153 00036A65 + 154 00036A69 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036A80-00036B62, line/addr pairs = 9 + + 158 00036A80 161 00036A8C 164 00036ACB 166 00036AD5 + 167 00036B00 168 00036B10 174 00036B49 176 00036B55 + 177 00036B59 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036B70-00036BAA, line/addr pairs = 8 + + 181 00036B70 182 00036B78 183 00036B7A 187 00036B8A + 189 00036B97 190 00036B9B 191 00036BA1 193 00036BA8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036BB0-00036C77, line/addr pairs = 5 + + 197 00036BB0 198 00036BD3 199 00036BD7 201 00036BDD + 202 00036C4E + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036C80-00036D1D, line/addr pairs = 7 + + 206 00036C80 207 00036CA3 208 00036CA5 211 00036CDD + 212 00036CE6 213 00036CF0 214 00036D00 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036D20-00036E53, line/addr pairs = 14 + + 218 00036D20 220 00036D2C 221 00036D60 226 00036D72 + 227 00036D79 230 00036D88 231 00036DB8 234 00036DC7 + 240 00036DCE 241 00036DF3 222 00036E33 223 00036E3A + 248 00036E43 249 00036E4A + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None), 0001:00036E60-00036F94, line/addr pairs = 14 + + 253 00036E60 255 00036E6C 256 00036EA4 261 00036EB3 + 262 00036EBE 265 00036EC9 266 00036EF9 269 00036F08 + 275 00036F0F 276 00036F34 257 00036F74 258 00036F7B + 283 00036F84 284 00036F8B + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.h (None), 0001:00036560-00036564, line/addr pairs = 1 + + 23 00036560 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.h (None), 0001:00036570-00036579, line/addr pairs = 1 + + 26 00036570 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:000346C0-000347DD, line/addr pairs = 4 + + 11 000346C0 12 000346FC 13 00034792 14 000347A9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00034AF0-00034AFC, line/addr pairs = 2 + + 18 00034AF0 20 00034AFB + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00034B00-00034B63, line/addr pairs = 4 + + 24 00034B00 25 00034B2E 26 00034B32 27 00034B38 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00034B70-00034BBF, line/addr pairs = 4 + + 31 00034B70 32 00034B79 33 00034BA4 34 00034BBC + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00034BC0-00035045, line/addr pairs = 38 + + 38 00034BC0 39 00034BEC 41 00034BFB 44 00034C49 + 45 00034C99 46 00034CA2 47 00034CD4 48 00034D33 + 50 00034D3E 51 00034D52 52 00034D5A 53 00034D74 + 54 00034D79 55 00034DA9 56 00034E08 58 00034E15 + 59 00034E1A 60 00034E28 61 00034E31 62 00034E36 + 65 00034E95 66 00034E9F 67 00034EAC 68 00034EB2 + 69 00034EB7 70 00034EC6 71 00034EDD 74 00034EE5 + 75 00034EF5 80 00034F09 81 00034F1D 47 00034F41 + 55 00034F5B 62 00034F75 81 00034F82 82 00034F90 + 86 00034FF7 41 0003501B + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:000352B0-000353F6, line/addr pairs = 12 + + 90 000352B0 91 000352D1 94 00035300 97 00035345 + 98 0003536D 100 00035377 101 0003538B 99 0003539B + 104 000353A9 94 000353B7 92 000353E1 105 000353E3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00035400-000354E8, line/addr pairs = 4 + + 109 00035400 111 00035427 112 0003542F 113 000354C7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:000357C0-00035951, line/addr pairs = 8 + + 117 000357C0 118 000357E1 119 000357EB 120 000357F3 + 122 00035885 123 000358C0 124 00035918 123 00035920 + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00035960-00035BD0, line/addr pairs = 25 + + 128 00035960 129 00035987 130 000359BB 133 000359E0 + 136 00035A10 137 00035A16 141 00035A4D 142 00035A56 + 144 00035A58 145 00035A67 146 00035A6B 148 00035A6D + 149 00035A79 150 00035A92 152 00035AB2 155 00035AC4 + 158 00035ADD 159 00035AE1 160 00035B0A 162 00035B2B + 163 00035B45 164 00035B58 167 00035B62 130 00035B96 + 129 00035BAE + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00035EA0-00036074, line/addr pairs = 7 + + 171 00035EA0 172 00035EC2 174 00035EFF 177 00035F42 + 178 00035F75 180 0003601D 174 0003603D + + C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None), 0001:00036080-00036186, line/addr pairs = 9 + + 185 00036080 186 0003609C 189 000360E4 190 0003610C + 192 00036116 193 0003611D 191 0003613C 196 0003614C + 186 0003615C + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000347E0-000347E1, line/addr pairs = 1 + + 15 000347E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000347F0-0003483F, line/addr pairs = 1 + + 19 000347F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00034840-00034845, line/addr pairs = 1 + + 20 00034840 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000354F0-000354F1, line/addr pairs = 1 + + 15 000354F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00035500-0003554F, line/addr pairs = 1 + + 19 00035500 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00035550-00035555, line/addr pairs = 1 + + 20 00035550 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00034850-00034871, line/addr pairs = 1 + + 77 00034850 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00035050-00035069, line/addr pairs = 3 + + 24 00035050 27 0003505D 28 00035064 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00035560-0003556E, line/addr pairs = 1 + + 77 00035560 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00035BD0-00035C36, line/addr pairs = 3 + + 89 00035BD0 91 00035C07 92 00035C0C + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00036190-0003621B, line/addr pairs = 3 + + 139 00036190 140 000361BD 141 000361F5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00036220-000362C1, line/addr pairs = 10 + + 166 00036220 167 00036241 169 0003627D 170 00036281 + 172 00036286 174 00036289 175 0003628D 179 00036290 + 180 00036296 177 000362A5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:000362D0-0003635B, line/addr pairs = 3 + + 139 000362D0 140 000362FD 141 00036335 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00036360-00036401, line/addr pairs = 10 + + 166 00036360 167 00036381 169 000363BD 170 000363C1 + 172 000363C6 174 000363C9 175 000363CD 179 000363D0 + 180 000363D6 177 000363E5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00036410-00036453, line/addr pairs = 9 + + 185 00036410 186 0003641E 187 00036422 189 00036429 + 191 0003642E 192 00036434 194 0003643C 196 00036442 + 198 0003644E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:000341E0-00034266, line/addr pairs = 5 + + 11 000341E0 14 0003422F 16 00034235 17 0003423B + 11 0003424C + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034350-00034354, line/addr pairs = 2 + + 21 00034350 23 00034353 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034360-00034366, line/addr pairs = 2 + + 27 00034360 29 00034365 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034370-00034374, line/addr pairs = 2 + + 33 00034370 35 00034373 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034380-00034384, line/addr pairs = 2 + + 39 00034380 41 00034383 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034390-00034413, line/addr pairs = 9 + + 45 00034390 46 000343BA 47 000343C0 49 000343C4 + 50 000343CF 52 000343D5 54 000343D9 55 000343E4 + 56 000343EE + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None), 0001:00034420-000346BF, line/addr pairs = 24 + + 60 00034420 62 0003444B 63 00034465 65 00034468 + 67 000344C3 68 000344F8 69 000344FE 70 0003450F + 71 00034572 73 0003458C 74 00034595 77 000345B2 + 78 000345CC 79 000345D1 80 000345DC 82 000345F0 + 83 0003460B 84 00034616 86 0003462A 87 00034634 + 88 00034645 95 0003464C 96 0003465C 97 0003466D + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.h (None), 0001:00034270-00034276, line/addr pairs = 2 + + 15 00034270 18 00034275 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.h (None), 0001:00034280-00034322, line/addr pairs = 3 + + 22 00034280 23 00034288 24 0003431E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp (None), 0001:00033E70-00033F6E, line/addr pairs = 10 + + 13 00033E70 14 00033E92 15 00033EA7 16 00033EB1 + 19 00033ED4 20 00033F00 21 00033F02 28 00033F0E + 32 00033F28 33 00033F3C + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp (None), 0001:00033F70-00034078, line/addr pairs = 18 + + 41 00033F70 42 00033F97 44 00033FA7 46 00033FAE + 47 00033FB9 48 00033FC3 49 00033FC9 50 00033FCD + 52 00033FD2 60 00033FD6 61 00033FE2 62 00033FED + 63 00034005 64 00034012 55 00034039 56 00034048 + 58 0003405B 65 00034066 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp (None), 0001:00034080-000341C4, line/addr pairs = 17 + + 70 00034080 71 000340A2 72 000340B7 73 000340BA + 74 000340BE 75 000340C4 77 000340CB 78 000340D7 + 79 000340E5 80 000340EB 85 00034120 86 00034144 + 88 00034157 91 0003415A 93 00034168 94 0003417E + 96 00034187 + + C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp (None), 0001:000341D0-000341D3, line/addr pairs = 2 + + 101 000341D0 103 000341D2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033540-00033541, line/addr pairs = 1 + + 23 00033540 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033550-0003356E, line/addr pairs = 4 + + 28 00033550 29 00033555 31 00033558 33 0003356C + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033570-00033587, line/addr pairs = 3 + + 37 00033570 38 00033577 40 00033586 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033590-000335A7, line/addr pairs = 3 + + 44 00033590 45 00033597 47 000335A6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000335B0-000335C7, line/addr pairs = 3 + + 51 000335B0 52 000335B7 54 000335C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000335D0-000335E7, line/addr pairs = 3 + + 58 000335D0 59 000335D7 61 000335E6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000335F0-00033607, line/addr pairs = 3 + + 65 000335F0 66 000335F7 68 00033606 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033610-00033677, line/addr pairs = 2 + + 72 00033610 73 00033639 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033680-00033683, line/addr pairs = 2 + + 77 00033680 79 00033682 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033690-00033695, line/addr pairs = 1 + + 83 00033690 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000336A0-000336B9, line/addr pairs = 4 + + 89 000336A0 90 000336A7 91 000336B3 92 000336B6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000336C0-000336D3, line/addr pairs = 4 + + 96 000336C0 98 000336CD 102 000336D0 104 000336D2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000336E0-000336E5, line/addr pairs = 2 + + 108 000336E0 110 000336E2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000336F0-00033714, line/addr pairs = 3 + + 114 000336F0 117 00033703 121 0003370E + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033720-000337D4, line/addr pairs = 8 + + 125 00033720 126 00033744 128 00033753 130 00033759 + 133 0003375C 134 0003377F 135 00033790 138 000337A8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:000337E0-00033956, line/addr pairs = 9 + + 143 000337E0 144 00033805 147 0003380B 149 00033817 + 152 0003382B 157 000338E9 159 00033902 152 00033917 + 155 00033944 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033960-00033AAC, line/addr pairs = 16 + + 163 00033960 164 00033987 165 00033999 168 000339A3 + 171 000339AF 172 000339C3 175 000339D7 176 000339F0 + 178 00033A07 180 00033A2A 181 00033A3F 182 00033A4E + 184 00033A66 186 00033A6D 187 00033A71 190 00033A7E + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033AB0-00033B8B, line/addr pairs = 9 + + 194 00033AB0 195 00033AD2 196 00033AD8 198 00033AEB + 200 00033B2F 201 00033B4E 202 00033B55 203 00033B5A + 198 00033B69 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033B90-00033C95, line/addr pairs = 24 + + 207 00033B90 208 00033BB2 210 00033BC1 240 00033BC4 + 212 00033BD1 214 00033BD8 217 00033BDE 219 00033BE5 + 222 00033BEB 224 00033BF2 227 00033BF8 229 00033BFF + 232 00033C05 234 00033C0C 237 00033C12 242 00033C19 + 243 00033C48 247 00033C60 248 00033C63 249 00033C79 + 251 00033C81 252 00033C83 254 00033C8C 256 00033C91 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033CA0-00033D94, line/addr pairs = 26 + + 260 00033CA0 261 00033CA6 264 00033CA9 265 00033CC1 + 268 00033CDA 307 00033CF1 270 00033CF3 307 00033D06 + 273 00033D08 307 00033D1B 280 00033D1D 307 00033D34 + 282 00033D36 307 00033D49 285 00033D4B 286 00033D51 + 307 00033D53 293 00033D55 294 00033D5B 307 00033D5D + 297 00033D5F 298 00033D65 307 00033D67 301 00033D69 + 306 00033D6E 307 00033D71 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033DA0-00033E44, line/addr pairs = 11 + + 311 00033DA0 314 00033DB1 316 00033DD5 318 00033DDC + 319 00033DE3 320 00033DE7 322 00033DF6 323 00033E04 + 324 00033E19 327 00033E28 328 00033E39 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None), 0001:00033E50-00033E63, line/addr pairs = 3 + + 332 00033E50 333 00033E53 334 00033E62 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00032E90-00032F0B, line/addr pairs = 5 + + 76 00032E90 77 00032EC7 79 00032ED0 80 00032ED5 + 81 00032EEA + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00032F30-00032FE7, line/addr pairs = 12 + + 85 00032F30 86 00032F6A 87 00032F71 88 00032F78 + 90 00032F7D 91 00032F8B 92 00032F9C 93 00032FA2 + 94 00032FA8 90 00032FAC 97 00032FAE 98 00032FCB + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00032FF0-00033053, line/addr pairs = 4 + + 102 00032FF0 103 0003301E 104 00033022 106 00033028 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033060-0003310C, line/addr pairs = 13 + + 110 00033060 112 00033067 114 00033078 116 00033089 + 118 0003309D 119 000330A6 120 000330B8 122 000330BF + 124 000330D3 126 000330DC 127 000330F8 131 00033107 + 132 0003310A + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033110-000331A3, line/addr pairs = 5 + + 136 00033110 137 00033130 138 00033167 139 0003316D + 140 00033185 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:000331B0-000331C7, line/addr pairs = 4 + + 145 000331B0 146 000331B2 147 000331C0 148 000331C3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:000331D0-00033316, line/addr pairs = 32 + + 152 000331D0 154 000331D4 156 000331D6 158 000331E7 + 160 000331FF 161 00033205 162 0003320F 163 00033215 + 164 0003321D 166 0003322E 167 00033234 168 0003323E + 169 00033244 171 0003324C 172 00033255 173 0003325C + 174 00033268 175 00033274 177 00033287 178 00033293 + 179 0003329F 182 000332AB 183 000332BC 184 000332C2 + 185 000332CC 186 000332D2 187 000332DA 190 000332E5 + 192 000332F4 193 00033308 196 0003330D 197 0003330F + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033320-00033376, line/addr pairs = 11 + + 201 00033320 202 00033322 203 00033327 204 0003332B + 205 00033337 206 00033340 207 0003334F 208 0003335A + 209 0003336A 212 0003336F 213 00033372 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033380-00033388, line/addr pairs = 2 + + 217 00033380 219 00033387 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033390-000333DA, line/addr pairs = 11 + + 223 00033390 224 00033393 225 0003339D 227 000333A3 + 229 000333AB 224 000333B9 232 000333C2 233 000333C5 + 226 000333C8 228 000333CE 230 000333D4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:000333E0-00033463, line/addr pairs = 10 + + 237 000333E0 240 000333E4 241 000333F0 242 0003340A + 243 00033422 245 0003342D 246 0003342F 247 00033441 + 249 00033453 250 0003345C + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:00033470-000334DA, line/addr pairs = 8 + + 254 00033470 257 00033473 258 0003347F 259 00033499 + 260 000334B4 263 000334BB 266 000334CB 267 000334D4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None), 0001:000334E0-00033532, line/addr pairs = 8 + + 271 000334E0 272 000334EB 273 000334F0 274 000334F6 + 275 00033503 277 0003350F 278 0003351B 280 0003352A + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateparam.cpp (None), 0001:00032D30-00032DF2, line/addr pairs = 6 + + 10 00032D30 11 00032D90 12 00032D95 13 00032D9F + 14 00032DA6 15 00032DB1 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateflags.cpp (None), 0001:00032CF0-00032D22, line/addr pairs = 12 + + 5 00032CF0 6 00032CF4 7 00032CF8 8 00032CFC + 9 00032D00 10 00032D04 11 00032D08 12 00032D0C + 13 00032D0E 15 00032D17 16 00032D1A 17 00032D1F + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031290-00031348, line/addr pairs = 10 + + 32 00031290 33 000312B6 35 000312CE 36 000312E6 + 38 000312F2 39 000312F6 40 00031302 38 0003130C + 42 00031310 35 0003132B + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031350-00031354, line/addr pairs = 2 + + 46 00031350 48 00031353 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031360-00031369, line/addr pairs = 3 + + 52 00031360 53 00031365 54 00031368 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031370-00031379, line/addr pairs = 3 + + 58 00031370 59 00031375 60 00031378 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031380-00031389, line/addr pairs = 3 + + 64 00031380 65 00031385 66 00031388 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031390-00031399, line/addr pairs = 3 + + 70 00031390 71 00031395 72 00031398 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313A0-000313A9, line/addr pairs = 3 + + 76 000313A0 77 000313A5 78 000313A8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313B0-000313B9, line/addr pairs = 3 + + 82 000313B0 83 000313B5 84 000313B8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313C0-000313C9, line/addr pairs = 3 + + 88 000313C0 89 000313C5 90 000313C8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313D0-000313D9, line/addr pairs = 3 + + 94 000313D0 95 000313D5 96 000313D8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313E0-000313E9, line/addr pairs = 3 + + 100 000313E0 101 000313E5 102 000313E8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000313F0-000313F9, line/addr pairs = 3 + + 106 000313F0 107 000313F5 108 000313F8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031400-00031409, line/addr pairs = 3 + + 112 00031400 113 00031405 114 00031408 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031410-00031422, line/addr pairs = 2 + + 118 00031410 120 00031421 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031430-000314C2, line/addr pairs = 3 + + 124 00031430 125 0003147D 126 00031482 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000314F0-000314F5, line/addr pairs = 2 + + 130 000314F0 132 000314F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031500-00031503, line/addr pairs = 1 + + 136 00031500 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00031510-00031593, line/addr pairs = 3 + + 141 00031510 142 0003153B 143 00031540 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000315A0-000315CA, line/addr pairs = 8 + + 147 000315A0 150 000315A8 152 000315AE 154 000315B4 + 156 000315BA 158 000315C0 160 000315C6 161 000315C9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000315D0-000315DA, line/addr pairs = 2 + + 165 000315D0 167 000315D9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000315E0-00031BE4, line/addr pairs = 47 + + 171 000315E0 174 00031608 177 000316DC 178 000316EB + 180 000316F4 181 000316FA 182 00031731 185 00031743 + 186 0003174D 187 00031801 190 00031813 191 00031819 + 192 00031850 195 00031862 196 0003186C 197 000318F3 + 200 00031905 201 0003190B 202 00031946 203 00031955 + 209 00031967 210 0003196D 211 000319C1 214 000319D3 + 215 000319D9 216 00031A10 217 00031A23 218 00031A33 + 223 00031A3D 224 00031A43 225 00031A88 226 00031A95 + 227 00031AA5 232 00031AAF 233 00031AB5 234 00031AFA + 235 00031B07 236 00031B17 241 00031B21 242 00031B27 + 243 00031B6C 244 00031B79 245 00031B89 252 00031B9A + 253 00031BA0 255 00031BAA 250 00031BCD + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032490-0003268D, line/addr pairs = 33 + + 260 00032490 262 000324B2 263 000324D2 264 000324D9 + 265 000324E7 266 000324EF 269 000324FD 270 00032501 + 271 0003250F 273 00032517 274 0003251C 276 00032527 + 279 00032531 280 00032541 281 00032551 282 00032561 + 283 00032571 284 00032581 285 00032591 286 000325A1 + 287 000325B1 288 000325C1 291 000325D7 292 000325DB + 294 000325E7 295 000325EC 296 000325F3 297 000325FC + 299 0003262C 302 0003265A 297 00032668 299 00032670 + 301 00032678 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032690-000326B4, line/addr pairs = 4 + + 306 00032690 308 00032699 309 000326AB 313 000326B1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000326C0-000326D4, line/addr pairs = 4 + + 317 000326C0 318 000326C3 319 000326C7 321 000326D1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000326E0-000328F3, line/addr pairs = 23 + + 325 000326E0 327 00032708 328 00032714 330 0003271F + 331 0003272A 332 0003273A 333 00032740 334 00032744 + 336 0003274F 337 00032753 338 0003275F 341 00032764 + 342 00032770 343 00032776 346 00032780 347 00032799 + 348 0003279F 351 0003280D 355 00032819 362 00032894 + 363 00032899 348 000328A9 355 000328C9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000329A0-000329A6, line/addr pairs = 2 + + 367 000329A0 369 000329A5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000329B0-000329D3, line/addr pairs = 6 + + 373 000329B0 375 000329B9 376 000329C5 378 000329CF + 382 000329D0 385 000329D2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:000329E0-00032A67, line/addr pairs = 5 + + 389 000329E0 390 00032A02 392 00032A0A 393 00032A1A + 395 00032A39 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032A70-00032AEE, line/addr pairs = 14 + + 400 00032A70 401 00032A77 402 00032A7A 404 00032A8A + 405 00032A93 406 00032A9D 407 00032AA1 408 00032AB3 + 413 00032AC9 414 00032AD0 417 00032AD6 418 00032ADD + 421 00032AE3 422 00032AE9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032AF0-00032AF6, line/addr pairs = 2 + + 426 00032AF0 428 00032AF5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B00-00032B2B, line/addr pairs = 3 + + 432 00032B00 433 00032B09 434 00032B28 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B30-00032B36, line/addr pairs = 2 + + 438 00032B30 440 00032B35 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B40-00032B6B, line/addr pairs = 3 + + 444 00032B40 445 00032B49 446 00032B68 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B70-00032B76, line/addr pairs = 2 + + 450 00032B70 452 00032B75 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B80-00032B8A, line/addr pairs = 2 + + 456 00032B80 458 00032B89 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032B90-00032BE9, line/addr pairs = 13 + + 462 00032B90 463 00032B98 464 00032BA4 466 00032BAA + 467 00032BB4 469 00032BBA 470 00032BBD 474 00032BC0 + 475 00032BC3 476 00032BD6 477 00032BDE 478 00032BE3 + 480 00032BE7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None), 0001:00032BF0-00032C19, line/addr pairs = 6 + + 484 00032BF0 485 00032BF3 486 00032C06 487 00032C0E + 488 00032C13 490 00032C17 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xstddef (None), 0001:00031BF0-00031BF1, line/addr pairs = 1 + + 36 00031BF0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00031C00-00031CC4, line/addr pairs = 3 + + 167 00031C00 168 00031CA3 169 00031CBD + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00031CD0-00031D0C, line/addr pairs = 7 + + 97 00031CD0 98 00031CDD 99 00031CED 101 00031CEE + 102 00031CFA 103 00031D02 104 00031D09 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00031D10-00032158, line/addr pairs = 80 + + 247 00031D10 248 00031D21 250 00031D69 252 00031D76 + 255 00031D7E 253 00031D93 254 00031D95 251 00031D9B + 256 00031DA1 276 00031DAB 277 00031DBB 279 00031DC2 + 282 00031DC6 283 00031DC9 278 00031DCB 283 00031DCD + 285 00031DD8 288 00031DE1 289 00031DF3 286 00031DF5 + 289 00031DFE 291 00031E10 294 00031E1C 292 00031E2F + 293 00031E38 257 00031E3A 258 00031E41 259 00031E45 + 260 00031E49 261 00031E4C 262 00031E4E 263 00031E54 + 264 00031E59 265 00031E5E 266 00031E63 268 00031E74 + 271 00031E78 267 00031E7D 272 00031E7F 273 00031E8C + 295 00031E98 296 00031EA2 297 00031EBF 298 00031EC3 + 299 00031EC6 300 00031ECC 301 00031ED3 302 00031EDE + 303 00031F19 305 00031F1E 321 00031F39 322 00031F3F + 323 00031F46 324 00031F51 325 00031F8B 327 00031F8F + 328 00031FA8 329 00031FAF 330 00031FB4 309 00031FC2 + 310 00031FCB 311 00031FD4 312 00031FDB 313 00032017 + 314 0003201D 315 00032026 316 00032031 317 0003203A + 331 00032082 332 0003208A 333 00032094 334 0003209B + 335 000320D3 336 000320D8 337 000320E1 338 000320EC + 339 000320F4 341 00032131 343 00032138 345 0003214C + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:00032160-00032199, line/addr pairs = 6 + + 433 00032160 434 00032173 435 0003217E 437 00032181 + 433 0003218B 437 00032193 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.h (None), 0001:000321F0-000321F9, line/addr pairs = 1 + + 17 000321F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00032200-00032201, line/addr pairs = 1 + + 15 00032200 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00032210-0003225F, line/addr pairs = 1 + + 19 00032210 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00032260-00032265, line/addr pairs = 1 + + 20 00032260 + + C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None), 0001:00032270-00032275, line/addr pairs = 1 + + 55 00032270 + + C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None), 0001:00032C20-00032CE7, line/addr pairs = 3 + + 147 00032C20 148 00032C4F 149 00032CC0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.cpp (None), 0001:00030420-000307FF, line/addr pairs = 3 + + 21 00030420 23 0003053F 25 000306F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.cpp (None), 0001:00030960-00030EC4, line/addr pairs = 4 + + 29 00030960 31 0003098C 40 0003099B 42 00030EB2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.cpp (None), 0001:00031270-00031281, line/addr pairs = 2 + + 47 00031270 49 0003127E + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.h (None), 0001:00030ED0-00030ED6, line/addr pairs = 2 + + 12 00030ED0 15 00030ED5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.h (None), 0001:00030EE0-00031052, line/addr pairs = 3 + + 19 00030EE0 20 00030EE8 21 0003104E + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.h (None), 0001:00031060-00031066, line/addr pairs = 2 + + 17 00031060 20 00031065 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.h (None), 0001:00031070-0003117A, line/addr pairs = 3 + + 24 00031070 25 00031078 26 00031176 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.cpp (None), 0001:00030380-00030412, line/addr pairs = 2 + + 9 00030380 10 000303A1 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002F700-0002F71B, line/addr pairs = 3 + + 16 0002F700 18 0002F709 19 0002F715 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002F720-0002F72E, line/addr pairs = 2 + + 23 0002F720 25 0002F72D + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002F730-0002F7F6, line/addr pairs = 5 + + 29 0002F730 31 0002F795 32 0002F79A 34 0002F7A0 + 29 0002F7B8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002F930-0002FA1B, line/addr pairs = 8 + + 38 0002F930 39 0002F95B 40 0002F96B 41 0002F973 + 42 0002F995 44 0002F99F 45 0002F9AF 41 0002F9E3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002FAE0-0002FB9B, line/addr pairs = 6 + + 49 0002FAE0 51 0002FB04 53 0002FB57 54 0002FB59 + 60 0002FB5E 57 0002FB73 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002FBA0-0002FCD5, line/addr pairs = 10 + + 65 0002FBA0 66 0002FBC4 68 0002FBD3 69 0002FBD9 + 72 0002FBFD 73 0002FC23 77 0002FC27 78 0002FC5A + 79 0002FC69 80 0002FCAA + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002FCE0-0002FE6F, line/addr pairs = 18 + + 90 0002FCE0 91 0002FD01 92 0002FD5B 93 0002FD5D + 97 0002FD73 98 0002FD89 100 0002FD99 101 0002FD9C + 102 0002FDA2 104 0002FDA7 105 0002FDC0 106 0002FDC6 + 107 0002FDE8 108 0002FDF3 111 0002FE12 112 0002FE37 + 113 0002FE43 111 0002FE48 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:0002FE70-000300C7, line/addr pairs = 26 + + 119 0002FE70 120 0002FE96 124 0002FEBD 127 0002FECA + 128 0002FED5 129 0002FEDC 130 0002FEE5 133 0002FEF1 + 138 0002FF0A 134 0002FF14 135 0002FF54 143 0002FF76 + 144 0002FF83 145 0002FF89 147 0002FF95 152 0002FFAE + 148 0002FFB8 149 0002FFF8 155 00030015 158 0003001E + 159 00030026 160 0003003E 161 00030055 162 00030063 + 164 0003007F 120 000300A5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:00030200-000302C2, line/addr pairs = 6 + + 168 00030200 169 00030224 171 0003023F 172 00030257 + 173 0003025B 175 00030279 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None), 0001:000302D0-0003037E, line/addr pairs = 7 + + 180 000302D0 181 000302F2 183 000302FB 185 00030328 + 186 0003032C 187 00030349 189 0003034F + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0002F800-0002F864, line/addr pairs = 3 + + 140 0002F800 141 0002F844 142 0002F85E + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0002FA70-0002FAD4, line/addr pairs = 3 + + 140 0002FA70 141 0002FAB4 142 0002FACE + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:000300D0-000300DE, line/addr pairs = 1 + + 155 000300D0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:000300E0-0003012E, line/addr pairs = 6 + + 207 000300E0 208 000300EE 210 0003010C 211 00030113 + 212 0003011D 213 00030124 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00030130-00030175, line/addr pairs = 5 + + 224 00030130 225 00030149 226 0003014D 228 00030159 + 230 0003016C + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00030180-000301A6, line/addr pairs = 6 + + 375 00030180 376 0003018E 377 00030192 380 0003019B + 379 0003019E 380 000301A3 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F3E0-0002F4B2, line/addr pairs = 4 + + 11 0002F3E0 12 0002F463 13 0002F468 11 0002F47D + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F600-0002F65D, line/addr pairs = 3 + + 17 0002F600 18 0002F62D 19 0002F632 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F660-0002F661, line/addr pairs = 1 + + 23 0002F660 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F670-0002F6B7, line/addr pairs = 9 + + 28 0002F670 29 0002F674 30 0002F67D 33 0002F68A + 34 0002F694 35 0002F69B 37 0002F6A2 38 0002F6A9 + 40 0002F6B2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F6C0-0002F6E6, line/addr pairs = 6 + + 44 0002F6C0 47 0002F6C9 48 0002F6D2 49 0002F6D9 + 52 0002F6E1 53 0002F6E3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None), 0001:0002F6F0-0002F6F8, line/addr pairs = 2 + + 57 0002F6F0 59 0002F6F7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.h (None), 0001:0002F4C0-0002F4C6, line/addr pairs = 2 + + 15 0002F4C0 18 0002F4C5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.h (None), 0001:0002F4D0-0002F5DA, line/addr pairs = 3 + + 22 0002F4D0 23 0002F4D8 24 0002F5D6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F030-0002F094, line/addr pairs = 3 + + 12 0002F030 13 0002F065 14 0002F06A + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F0C0-0002F11D, line/addr pairs = 3 + + 18 0002F0C0 19 0002F0ED 20 0002F0F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F120-0002F12C, line/addr pairs = 2 + + 24 0002F120 26 0002F127 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F130-0002F14B, line/addr pairs = 5 + + 31 0002F130 34 0002F138 36 0002F13E 38 0002F144 + 40 0002F14A + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F150-0002F1AF, line/addr pairs = 14 + + 44 0002F150 45 0002F157 46 0002F15B 47 0002F163 + 48 0002F167 52 0002F170 53 0002F17D 55 0002F180 + 56 0002F187 57 0002F18E 58 0002F195 60 0002F19C + 61 0002F1A3 63 0002F1AA + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F1B0-0002F1D7, line/addr pairs = 7 + + 67 0002F1B0 68 0002F1B4 69 0002F1C0 71 0002F1C3 + 72 0002F1C7 73 0002F1CD 75 0002F1D5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F1E0-0002F2C2, line/addr pairs = 17 + + 79 0002F1E0 80 0002F200 81 0002F20A 83 0002F20C + 84 0002F214 85 0002F219 87 0002F223 89 0002F259 + 90 0002F26A 93 0002F283 95 0002F294 99 0002F296 + 100 0002F29A 102 0002F2A1 103 0002F2A5 105 0002F2AD + 106 0002F2B2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F2D0-0002F2D8, line/addr pairs = 2 + + 110 0002F2D0 112 0002F2D7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F2E0-0002F30B, line/addr pairs = 6 + + 116 0002F2E0 117 0002F2EC 118 0002F2F1 119 0002F2F8 + 120 0002F2FF 121 0002F306 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F310-0002F338, line/addr pairs = 6 + + 125 0002F310 126 0002F317 127 0002F31E 128 0002F327 + 129 0002F32C 130 0002F333 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F340-0002F35D, line/addr pairs = 3 + + 134 0002F340 136 0002F355 137 0002F35A + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F360-0002F365, line/addr pairs = 2 + + 141 0002F360 144 0002F362 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None), 0001:0002F370-0002F3D7, line/addr pairs = 12 + + 148 0002F370 149 0002F377 151 0002F37E 152 0002F384 + 153 0002F388 154 0002F392 155 0002F3A2 156 0002F3B0 + 157 0002F3BA 158 0002F3C8 161 0002F3CD 162 0002F3D4 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EB90-0002EBF4, line/addr pairs = 3 + + 13 0002EB90 14 0002EBC5 15 0002EBCA + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002ED70-0002EDCD, line/addr pairs = 3 + + 19 0002ED70 20 0002ED9D 21 0002EDA2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EDD0-0002EDD8, line/addr pairs = 2 + + 25 0002EDD0 27 0002EDD7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EDE0-0002EE38, line/addr pairs = 11 + + 31 0002EDE0 32 0002EDE4 33 0002EDED 36 0002EDF9 + 38 0002EE06 39 0002EE11 40 0002EE17 42 0002EE1E + 44 0002EE25 45 0002EE2C 46 0002EE33 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EE40-0002EE72, line/addr pairs = 7 + + 50 0002EE40 51 0002EE43 53 0002EE48 54 0002EE4C + 55 0002EE55 56 0002EE5C 59 0002EE70 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EE80-0002EEB3, line/addr pairs = 5 + + 63 0002EE80 64 0002EE84 66 0002EE8B 67 0002EE9C + 70 0002EEB0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EEC0-0002EEEB, line/addr pairs = 6 + + 74 0002EEC0 75 0002EEC3 76 0002EEC9 79 0002EEDD + 80 0002EEDF 81 0002EEE9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EEF0-0002EF07, line/addr pairs = 4 + + 85 0002EEF0 86 0002EEF8 87 0002EEFE 88 0002EF05 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EF10-0002EF18, line/addr pairs = 2 + + 92 0002EF10 94 0002EF17 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EF20-0002EF82, line/addr pairs = 9 + + 98 0002EF20 99 0002EF28 101 0002EF2F 102 0002EF4B + 104 0002EF57 105 0002EF70 108 0002EF75 109 0002EF7C + 110 0002EF7F + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002EF90-0002F006, line/addr pairs = 7 + + 114 0002EF90 115 0002EFAE 116 0002EFB4 118 0002EFC7 + 119 0002EFCE 120 0002EFDA 121 0002EFE6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None), 0001:0002F010-0002F027, line/addr pairs = 3 + + 125 0002F010 127 0002F018 128 0002F024 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.h (None), 0001:0002EC00-0002EC06, line/addr pairs = 2 + + 16 0002EC00 19 0002EC05 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.h (None), 0001:0002EC10-0002ED4E, line/addr pairs = 3 + + 23 0002EC10 24 0002EC18 25 0002ED4A + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E210-0002E26D, line/addr pairs = 3 + + 16 0002E210 17 0002E23D 18 0002E242 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E270-0002E278, line/addr pairs = 2 + + 22 0002E270 24 0002E277 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E280-0002E28F, line/addr pairs = 3 + + 28 0002E280 31 0002E288 33 0002E28E + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E290-0002E3E1, line/addr pairs = 20 + + 37 0002E290 39 0002E2B6 41 0002E2C9 42 0002E2D4 + 44 0002E2DA 45 0002E2E4 47 0002E2EA 48 0002E2F4 + 50 0002E2FA 51 0002E306 54 0002E32E 55 0002E35C + 57 0002E36B 58 0002E37B 61 0002E38C 63 0002E398 + 64 0002E39E 65 0002E3A6 51 0002E3B7 60 0002E3CF + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E3F0-0002E441, line/addr pairs = 11 + + 69 0002E3F0 70 0002E3F6 72 0002E3F9 73 0002E3FD + 75 0002E404 76 0002E411 77 0002E415 78 0002E41D + 80 0002E428 85 0002E43C 86 0002E43E + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E450-0002E493, line/addr pairs = 10 + + 90 0002E450 91 0002E455 93 0002E458 94 0002E45C + 96 0002E461 97 0002E46F 98 0002E473 99 0002E47B + 100 0002E482 106 0002E491 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E4A0-0002E69D, line/addr pairs = 14 + + 110 0002E4A0 112 0002E4CC 114 0002E4DF 115 0002E4EF + 116 0002E4FC 117 0002E57A 119 0002E5DC 120 0002E5E2 + 123 0002E601 124 0002E607 127 0002E633 128 0002E653 + 131 0002E662 135 0002E669 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E6A0-0002E7EA, line/addr pairs = 16 + + 140 0002E6A0 141 0002E6C4 143 0002E6D6 144 0002E6DA + 146 0002E6F6 149 0002E6FD 150 0002E715 151 0002E71E + 154 0002E729 155 0002E72E 157 0002E736 158 0002E73A + 159 0002E740 162 0002E747 166 0002E755 168 0002E7D8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E7F0-0002E862, line/addr pairs = 4 + + 173 0002E7F0 174 0002E812 176 0002E821 178 0002E828 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E870-0002E8E2, line/addr pairs = 14 + + 183 0002E870 184 0002E873 185 0002E879 187 0002E883 + 188 0002E885 189 0002E88B 190 0002E894 191 0002E8A5 + 194 0002E8AF 195 0002E8BA 197 0002E8C2 198 0002E8CD + 199 0002E8D9 204 0002E8E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E8F0-0002E9CB, line/addr pairs = 14 + + 208 0002E8F0 209 0002E8F6 210 0002E910 211 0002E917 + 212 0002E944 214 0002E965 215 0002E96C 216 0002E972 + 217 0002E981 218 0002E98F 221 0002E996 222 0002E99A + 223 0002E9B2 228 0002E9C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E9D0-0002E9ED, line/addr pairs = 4 + + 232 0002E9D0 233 0002E9D7 234 0002E9E1 235 0002E9E8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002E9F0-0002EB07, line/addr pairs = 7 + + 240 0002E9F0 241 0002EA11 243 0002EA4E 244 0002EA5B + 246 0002EA6A 248 0002EA70 249 0002EA8F + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None), 0001:0002EB10-0002EB83, line/addr pairs = 13 + + 254 0002EB10 255 0002EB14 256 0002EB21 258 0002EB29 + 259 0002EB32 260 0002EB4D 261 0002EB52 263 0002EB5B + 264 0002EB63 265 0002EB67 266 0002EB6E 267 0002EB75 + 270 0002EB7E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DB20-0002DB9B, line/addr pairs = 3 + + 15 0002DB20 16 0002DB61 17 0002DB66 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DBC0-0002DC2F, line/addr pairs = 3 + + 21 0002DBC0 22 0002DBEB 23 0002DBF0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DC30-0002DC39, line/addr pairs = 2 + + 27 0002DC30 31 0002DC38 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DC40-0002DD6C, line/addr pairs = 7 + + 35 0002DC40 36 0002DC64 38 0002DC7A 40 0002DD12 + 41 0002DD14 42 0002DD1B 45 0002DD3D + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DD70-0002DDE1, line/addr pairs = 6 + + 50 0002DD70 51 0002DD92 53 0002DDA4 54 0002DDA8 + 56 0002DDAE 57 0002DDB5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DDF0-0002DF1C, line/addr pairs = 10 + + 61 0002DDF0 62 0002DE12 64 0002DE23 66 0002DE56 + 67 0002DE7E 69 0002DE8A 71 0002DE8F 72 0002DEB7 + 74 0002DEC3 64 0002DEEA + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DF20-0002DFD9, line/addr pairs = 5 + + 79 0002DF20 80 0002DF44 82 0002DF58 83 0002DFA3 + 82 0002DFBA + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002DFE0-0002E11B, line/addr pairs = 7 + + 87 0002DFE0 88 0002E004 89 0002E014 91 0002E043 + 92 0002E07F 93 0002E0C2 89 0002E0E9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None), 0001:0002E120-0002E210, line/addr pairs = 7 + + 97 0002E120 98 0002E142 100 0002E153 102 0002E186 + 103 0002E1AE 104 0002E1BA 100 0002E1DE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D520-0002D584, line/addr pairs = 3 + + 10 0002D520 11 0002D555 12 0002D55A + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D6D0-0002D72D, line/addr pairs = 3 + + 16 0002D6D0 17 0002D6FD 18 0002D702 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D730-0002D748, line/addr pairs = 4 + + 22 0002D730 24 0002D73F 25 0002D742 26 0002D747 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D750-0002D77F, line/addr pairs = 7 + + 30 0002D750 31 0002D757 32 0002D75E 33 0002D765 + 35 0002D76C 36 0002D773 37 0002D77A + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D780-0002D7A7, line/addr pairs = 5 + + 41 0002D780 42 0002D787 43 0002D78C 45 0002D79E + 47 0002D7A5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D7B0-0002D808, line/addr pairs = 10 + + 51 0002D7B0 52 0002D7B5 54 0002D7C0 55 0002D7C2 + 58 0002D7D6 59 0002D7DB 60 0002D7E0 61 0002D7E6 + 64 0002D7FB 65 0002D804 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D810-0002D875, line/addr pairs = 8 + + 69 0002D810 70 0002D819 71 0002D826 74 0002D83A + 76 0002D845 77 0002D84F 78 0002D85B 80 0002D870 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002D880-0002DA46, line/addr pairs = 22 + + 84 0002D880 85 0002D8A5 86 0002D8B0 88 0002D8C0 + 90 0002D8F1 91 0002D90A 93 0002D913 95 0002D922 + 96 0002D92E 98 0002D93E 99 0002D945 100 0002D970 + 102 0002D97E 103 0002D993 105 0002D99F 106 0002D9A8 + 108 0002D9B1 111 0002D9C4 113 0002D9DA 115 0002D9FB + 85 0002DA04 88 0002DA24 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002DAA0-0002DB0B, line/addr pairs = 3 + + 122 0002DAA0 123 0002DAC2 124 0002DAD1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None), 0001:0002DB10-0002DB18, line/addr pairs = 2 + + 129 0002DB10 131 0002DB17 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.h (None), 0001:0002D590-0002D69A, line/addr pairs = 3 + + 24 0002D590 25 0002D598 26 0002D696 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.h (None), 0001:0002D6A0-0002D6A6, line/addr pairs = 2 + + 16 0002D6A0 19 0002D6A5 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.cpp (None), 0001:0002D430-0002D48E, line/addr pairs = 10 + + 12 0002D430 13 0002D439 14 0002D43F 15 0002D444 + 18 0002D449 19 0002D450 20 0002D45B 23 0002D45F + 24 0002D475 27 0002D489 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.cpp (None), 0001:0002D490-0002D4A3, line/addr pairs = 3 + + 31 0002D490 33 0002D499 35 0002D49E + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.cpp (None), 0001:0002D4B0-0002D517, line/addr pairs = 8 + + 40 0002D4B0 41 0002D4B7 43 0002D4BE 44 0002D4D5 + 45 0002D4EC 48 0002D50B 49 0002D512 50 0002D515 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None), 0001:0002D280-0002D2E4, line/addr pairs = 3 + + 9 0002D280 10 0002D2B5 11 0002D2BA + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None), 0001:0002D320-0002D37D, line/addr pairs = 3 + + 15 0002D320 16 0002D34D 17 0002D352 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None), 0001:0002D380-0002D395, line/addr pairs = 4 + + 21 0002D380 23 0002D38C 24 0002D38F 25 0002D394 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None), 0001:0002D3A0-0002D3D1, line/addr pairs = 7 + + 29 0002D3A0 30 0002D3A7 31 0002D3AE 32 0002D3B5 + 34 0002D3BC 35 0002D3C3 36 0002D3CC + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None), 0001:0002D3E0-0002D42C, line/addr pairs = 10 + + 40 0002D3E0 41 0002D3E5 43 0002D3F0 44 0002D3F2 + 47 0002D406 48 0002D40B 49 0002D410 50 0002D416 + 53 0002D41F 54 0002D428 + + C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.h (None), 0001:0002D2F0-0002D2F6, line/addr pairs = 2 + + 16 0002D2F0 19 0002D2F5 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CA70-0002CA82, line/addr pairs = 3 + + 12 0002CA70 13 0002CA73 14 0002CA7E + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CA90-0002CA98, line/addr pairs = 2 + + 18 0002CA90 20 0002CA97 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CAA0-0002CB45, line/addr pairs = 22 + + 24 0002CAA0 26 0002CAAB 28 0002CAB4 32 0002CAC5 + 34 0002CAD7 35 0002CAD9 36 0002CAE1 39 0002CAE6 + 40 0002CAEF 42 0002CAF8 43 0002CAFC 44 0002CB03 + 45 0002CB0A 48 0002CB16 49 0002CB1E 51 0002CB20 + 53 0002CB22 54 0002CB2A 58 0002CB30 59 0002CB32 + 62 0002CB36 63 0002CB39 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CB50-0002CB9F, line/addr pairs = 11 + + 67 0002CB50 70 0002CB57 71 0002CB5D 72 0002CB67 + 73 0002CB71 75 0002CB78 76 0002CB7E 78 0002CB8A + 80 0002CB92 84 0002CB97 85 0002CB9A + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CBA0-0002CC68, line/addr pairs = 22 + + 89 0002CBA0 92 0002CBB1 94 0002CBB7 95 0002CBC1 + 97 0002CBC9 98 0002CBCD 99 0002CBD1 101 0002CBD3 + 104 0002CBEA 108 0002CBF1 111 0002CC03 112 0002CC09 + 113 0002CC0D 116 0002CC0F 117 0002CC1E 119 0002CC34 + 120 0002CC36 121 0002CC4B 123 0002CC51 124 0002CC53 + 128 0002CC5A 129 0002CC5E + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CC70-0002CE2C, line/addr pairs = 49 + + 133 0002CC70 134 0002CC7B 137 0002CC7E 138 0002CC86 + 139 0002CC8F 141 0002CC98 143 0002CCA6 150 0002CCAF + 152 0002CCB6 159 0002CCC6 160 0002CCD6 236 0002CCE2 + 237 0002CCE4 165 0002CCEA 166 0002CD06 168 0002CD1A + 169 0002CD1C 236 0002CD2A 237 0002CD2D 174 0002CD32 + 175 0002CD3C 179 0002CD41 180 0002CD43 182 0002CD52 + 183 0002CD54 187 0002CD61 189 0002CD72 191 0002CD79 + 236 0002CD86 237 0002CD88 197 0002CD8E 199 0002CDA0 + 200 0002CDA5 236 0002CDB3 237 0002CDB6 203 0002CDBB + 204 0002CDCA 207 0002CDD0 208 0002CDD4 237 0002CDD8 + 217 0002CDDF 219 0002CDE2 221 0002CDE6 222 0002CDF7 + 225 0002CE01 229 0002CE14 230 0002CE16 236 0002CE23 + 237 0002CE26 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CE30-0002CE78, line/addr pairs = 9 + + 241 0002CE30 242 0002CE36 244 0002CE40 245 0002CE47 + 246 0002CE52 249 0002CE5A 251 0002CE68 254 0002CE70 + 255 0002CE73 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CE80-0002CF68, line/addr pairs = 29 + + 259 0002CE80 263 0002CE90 265 0002CE96 267 0002CEA3 + 269 0002CEB3 270 0002CEB6 271 0002CEC1 272 0002CEC6 + 276 0002CEDD 277 0002CEE5 278 0002CEEB 280 0002CEF7 + 305 0002CEFA 281 0002CF00 283 0002CF0F 284 0002CF18 + 285 0002CF1C 288 0002CF28 305 0002CF2B 289 0002CF31 + 290 0002CF37 295 0002CF43 305 0002CF46 296 0002CF4C + 299 0002CF51 305 0002CF54 300 0002CF5A 304 0002CF5E + 305 0002CF62 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002CF70-0002D0C7, line/addr pairs = 39 + + 309 0002CF70 311 0002CF7D 313 0002CF80 314 0002CF8A + 320 0002CF90 322 0002CFB1 323 0002CFB6 326 0002CFC6 + 327 0002CFCE 329 0002CFD2 330 0002CFD4 332 0002CFE3 + 333 0002CFEC 334 0002CFF8 338 0002CFFE 339 0002D000 + 343 0002D004 346 0002D015 347 0002D01F 348 0002D032 + 349 0002D037 353 0002D047 354 0002D04F 355 0002D055 + 376 0002D065 377 0002D068 358 0002D06E 360 0002D07D + 361 0002D082 362 0002D088 376 0002D098 377 0002D09B + 365 0002D0A1 367 0002D0AB 376 0002D0B0 377 0002D0B3 + 373 0002D0B9 376 0002D0BD 377 0002D0C1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None), 0001:0002D0D0-0002D27F, line/addr pairs = 43 + + 381 0002D0D0 384 0002D0DC 385 0002D0E4 387 0002D0F2 + 388 0002D0FA 389 0002D105 390 0002D110 392 0002D114 + 393 0002D11C 394 0002D120 396 0002D12B 397 0002D12D + 398 0002D133 401 0002D135 402 0002D15D 406 0002D161 + 407 0002D166 409 0002D16E 410 0002D176 412 0002D180 + 413 0002D187 418 0002D18F 420 0002D1A2 424 0002D1B6 + 425 0002D1C1 426 0002D1C5 428 0002D1D1 429 0002D1D3 + 432 0002D1DA 433 0002D1E4 436 0002D1EA 437 0002D20E + 438 0002D221 441 0002D227 445 0002D232 448 0002D23A + 449 0002D254 450 0002D258 453 0002D25A 455 0002D262 + 456 0002D267 459 0002D272 460 0002D276 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None), 0001:0002C7E0-0002C8BF, line/addr pairs = 4 + + 13 0002C7E0 14 0002C864 17 0002C883 13 0002C88A + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None), 0001:0002C8F0-0002C956, line/addr pairs = 4 + + 21 0002C8F0 22 0002C91E 23 0002C922 25 0002C92B + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None), 0001:0002C960-0002C993, line/addr pairs = 4 + + 29 0002C960 30 0002C968 31 0002C977 32 0002C98E + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None), 0001:0002C9A0-0002CA3E, line/addr pairs = 6 + + 36 0002C9A0 37 0002C9C2 38 0002C9C6 40 0002C9CC + 41 0002CA07 42 0002CA18 + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None), 0001:0002CA40-0002CA66, line/addr pairs = 5 + + 46 0002CA40 47 0002CA44 48 0002CA4B 49 0002CA58 + 50 0002CA64 + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.h (None), 0001:0002C8C0-0002C8C6, line/addr pairs = 2 + + 24 0002C8C0 27 0002C8C5 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C380-0002C433, line/addr pairs = 4 + + 13 0002C380 14 0002C3E9 15 0002C3EE 13 0002C406 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C550-0002C5AB, line/addr pairs = 3 + + 19 0002C550 20 0002C57B 21 0002C580 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C5B0-0002C5B8, line/addr pairs = 2 + + 25 0002C5B0 27 0002C5B7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C5C0-0002C5E6, line/addr pairs = 6 + + 31 0002C5C0 34 0002C5C9 35 0002C5D2 36 0002C5D9 + 39 0002C5E1 40 0002C5E3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C5F0-0002C635, line/addr pairs = 9 + + 44 0002C5F0 45 0002C5F4 46 0002C5FD 48 0002C60A + 50 0002C617 51 0002C61B 53 0002C624 55 0002C62B + 56 0002C632 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C640-0002C673, line/addr pairs = 4 + + 60 0002C640 61 0002C648 62 0002C657 63 0002C66E + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C680-0002C6BE, line/addr pairs = 8 + + 67 0002C680 68 0002C685 70 0002C68C 71 0002C693 + 72 0002C698 73 0002C6A1 74 0002C6A6 77 0002C6BA + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C6C0-0002C6F3, line/addr pairs = 5 + + 81 0002C6C0 82 0002C6C4 84 0002C6CB 85 0002C6DC + 88 0002C6F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None), 0001:0002C700-0002C7E0, line/addr pairs = 15 + + 92 0002C700 93 0002C724 95 0002C733 97 0002C741 + 98 0002C753 99 0002C75D 100 0002C766 101 0002C769 + 104 0002C778 105 0002C783 106 0002C78C 109 0002C796 + 110 0002C79C 111 0002C7A8 116 0002C7AF + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.h (None), 0001:0002C440-0002C446, line/addr pairs = 2 + + 16 0002C440 19 0002C445 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.h (None), 0001:0002C450-0002C526, line/addr pairs = 3 + + 23 0002C450 24 0002C458 25 0002C522 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C140-0002C1A4, line/addr pairs = 3 + + 10 0002C140 11 0002C175 12 0002C17A + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C1D0-0002C22D, line/addr pairs = 3 + + 16 0002C1D0 17 0002C1FD 18 0002C202 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C230-0002C231, line/addr pairs = 1 + + 22 0002C230 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C240-0002C27E, line/addr pairs = 8 + + 28 0002C240 29 0002C246 30 0002C24A 31 0002C24F + 34 0002C25F 36 0002C26C 37 0002C273 38 0002C27A + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C280-0002C362, line/addr pairs = 17 + + 42 0002C280 43 0002C2A0 44 0002C2AA 47 0002C2AC + 48 0002C2B4 49 0002C2B9 51 0002C2C3 53 0002C2F9 + 54 0002C30A 57 0002C323 59 0002C334 63 0002C336 + 64 0002C33A 66 0002C341 67 0002C345 69 0002C34D + 70 0002C352 + + C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None), 0001:0002C370-0002C378, line/addr pairs = 2 + + 74 0002C370 76 0002C377 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxentity.cpp (None), 0001:0002BF80-0002BF99, line/addr pairs = 4 + + 7 0002BF80 9 0002BF8C 10 0002BF94 11 0002BF96 + + C:\Users\Christian\Downloads\isle\LEGO1\mxentity.cpp (None), 0001:0002BFA0-0002C007, line/addr pairs = 2 + + 15 0002BFA0 16 0002BFC9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxentity.cpp (None), 0001:0002C0C0-0002C137, line/addr pairs = 3 + + 20 0002C0C0 21 0002C103 22 0002C109 + + C:\Users\Christian\Downloads\isle\LEGO1\mxentity.h (None), 0001:0002C010-0002C016, line/addr pairs = 2 + + 19 0002C010 22 0002C015 + + C:\Users\Christian\Downloads\isle\LEGO1\mxentity.h (None), 0001:0002C020-0002C092, line/addr pairs = 3 + + 26 0002C020 27 0002C028 28 0002C08E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002B2F0-0002B43C, line/addr pairs = 5 + + 9 0002B2F0 11 0002B3B3 13 0002B3B9 14 0002B3BD + 9 0002B3D2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002B770-0002B837, line/addr pairs = 11 + + 18 0002B770 19 0002B79E 20 0002B7A2 22 0002B7AB + 24 0002B7B9 25 0002B7BD 26 0002B7C3 28 0002B7D0 + 29 0002B7D4 30 0002B7DA 31 0002B7E8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002B840-0002B995, line/addr pairs = 11 + + 35 0002B840 37 0002B869 39 0002B873 40 0002B875 + 41 0002B88D 43 0002B894 44 0002B8F1 47 0002B8F3 + 48 0002B95B 51 0002B961 52 0002B96A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002BAD0-0002BBE1, line/addr pairs = 11 + + 57 0002BAD0 58 0002BADB 59 0002BAE4 61 0002BAE8 + 62 0002BB10 63 0002BB4E 67 0002BB62 68 0002BB8E + 66 0002BBB1 67 0002BBC1 71 0002BBD9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002BBF0-0002BCE7, line/addr pairs = 7 + + 75 0002BBF0 76 0002BC10 77 0002BC16 78 0002BC1C + 84 0002BC68 78 0002BC78 80 0002BC8A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002BCF0-0002BDF1, line/addr pairs = 9 + + 88 0002BCF0 89 0002BD17 91 0002BD1A 92 0002BD24 + 94 0002BD30 95 0002BD40 96 0002BD81 100 0002BDC7 + 96 0002BDD5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002BE00-0002BE2D, line/addr pairs = 6 + + 104 0002BE00 105 0002BE06 107 0002BE10 108 0002BE18 + 110 0002BE25 111 0002BE29 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None), 0001:0002BE30-0002BEEE, line/addr pairs = 9 + + 115 0002BE30 116 0002BE3A 117 0002BE4B 118 0002BE7E + 119 0002BEC2 120 0002BEC6 122 0002BED5 123 0002BEDF + 125 0002BEE7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunklist.h (None), 0001:0002B440-0002B45A, line/addr pairs = 4 + + 23 0002B440 25 0002B44E 24 0002B451 25 0002B457 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunklist.h (None), 0001:0002B460-0002B46F, line/addr pairs = 1 + + 28 0002B460 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:0002B470-0002B471, line/addr pairs = 1 + + 15 0002B470 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:0002B480-0002B4CF, line/addr pairs = 1 + + 19 0002B480 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:0002B4D0-0002B4D5, line/addr pairs = 1 + + 20 0002B4D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.h (None), 0001:0002B6C0-0002B6C6, line/addr pairs = 2 + + 21 0002B6C0 24 0002B6C5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.h (None), 0001:0002B6D0-0002B742, line/addr pairs = 3 + + 28 0002B6D0 29 0002B6D8 30 0002B73E + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:0002BEF0-0002BF7B, line/addr pairs = 3 + + 139 0002BEF0 140 0002BF1D 141 0002BF55 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B000-0002B080, line/addr pairs = 6 + + 9 0002B000 10 0002B035 12 0002B03A 13 0002B045 + 14 0002B05F 15 0002B065 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B0A0-0002B0BC, line/addr pairs = 5 + + 19 0002B0A0 20 0002B0A6 21 0002B0AA 22 0002B0B7 + 23 0002B0B9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B0C0-0002B131, line/addr pairs = 4 + + 27 0002B0C0 28 0002B0F5 29 0002B0FA 30 0002B105 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B140-0002B1CC, line/addr pairs = 8 + + 34 0002B140 35 0002B171 36 0002B175 37 0002B17B + 38 0002B188 39 0002B18E 40 0002B19B 41 0002B1A1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B1D0-0002B206, line/addr pairs = 6 + + 45 0002B1D0 48 0002B1DE 50 0002B1EA 52 0002B1F6 + 53 0002B1FF 55 0002B205 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B210-0002B28D, line/addr pairs = 11 + + 59 0002B210 60 0002B218 61 0002B21E 62 0002B22A + 63 0002B236 64 0002B242 66 0002B250 67 0002B25E + 68 0002B275 70 0002B286 71 0002B289 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B290-0002B2B1, line/addr pairs = 5 + + 75 0002B290 76 0002B299 77 0002B29D 78 0002B2A3 + 79 0002B2AD + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None), 0001:0002B2C0-0002B2E4, line/addr pairs = 6 + + 83 0002B2C0 84 0002B2C5 87 0002B2CF 88 0002B2D2 + 91 0002B2DB 92 0002B2E1 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None), 0001:0002AD30-0002AD93, line/addr pairs = 3 + + 7 0002AD30 8 0002AD65 9 0002AD72 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None), 0001:0002AEE0-0002AF2F, line/addr pairs = 2 + + 13 0002AEE0 14 0002AF0B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None), 0001:0002AF30-0002AF33, line/addr pairs = 1 + + 18 0002AF30 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None), 0001:0002AF40-0002AF6A, line/addr pairs = 7 + + 23 0002AF40 24 0002AF48 25 0002AF4C 27 0002AF53 + 28 0002AF5B 29 0002AF63 30 0002AF65 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None), 0001:0002AF70-0002AFF8, line/addr pairs = 5 + + 34 0002AF70 35 0002AF90 37 0002AFC2 38 0002AFC6 + 40 0002AFCE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.h (None), 0001:0002ADA0-0002ADA6, line/addr pairs = 2 + + 18 0002ADA0 21 0002ADA5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.h (None), 0001:0002ADB0-0002AEBA, line/addr pairs = 3 + + 25 0002ADB0 26 0002ADB8 27 0002AEB6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.cpp (None), 0001:0002ACF0-0002AD04, line/addr pairs = 2 + + 9 0002ACF0 11 0002AD01 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.cpp (None), 0001:0002AD10-0002AD14, line/addr pairs = 2 + + 15 0002AD10 17 0002AD13 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.cpp (None), 0001:0002AD20-0002AD24, line/addr pairs = 2 + + 21 0002AD20 23 0002AD23 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002A9C0-0002AA2D, line/addr pairs = 4 + + 9 0002A9C0 10 0002A9F5 11 0002A9FF 12 0002AA0C + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002AB70-0002ABBF, line/addr pairs = 2 + + 16 0002AB70 17 0002AB9B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002ABC0-0002ABDB, line/addr pairs = 3 + + 21 0002ABC0 23 0002ABCC 24 0002ABD8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002ABE0-0002AC0A, line/addr pairs = 7 + + 28 0002ABE0 29 0002ABE8 30 0002ABEC 32 0002ABF3 + 33 0002ABFB 34 0002AC03 35 0002AC05 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002AC10-0002AC98, line/addr pairs = 5 + + 39 0002AC10 40 0002AC30 42 0002AC62 43 0002AC66 + 45 0002AC6E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002ACA0-0002ACC5, line/addr pairs = 4 + + 50 0002ACA0 51 0002ACA8 53 0002ACB3 54 0002ACC0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None), 0001:0002ACD0-0002ACE7, line/addr pairs = 5 + + 58 0002ACD0 59 0002ACD3 61 0002ACD8 62 0002ACE2 + 63 0002ACE6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.h (None), 0001:0002AA30-0002AA36, line/addr pairs = 2 + + 18 0002AA30 21 0002AA35 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.h (None), 0001:0002AA40-0002AB4A, line/addr pairs = 3 + + 25 0002AA40 26 0002AA48 27 0002AB46 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A510-0002A5F1, line/addr pairs = 4 + + 9 0002A510 10 0002A547 11 0002A54D 13 0002A5B8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A740-0002A74A, line/addr pairs = 2 + + 17 0002A740 19 0002A747 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A750-0002A7C3, line/addr pairs = 5 + + 23 0002A750 24 0002A781 25 0002A785 27 0002A78B + 28 0002A79F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A7D0-0002A7D3, line/addr pairs = 1 + + 32 0002A7D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A7E0-0002A80A, line/addr pairs = 7 + + 37 0002A7E0 38 0002A7E8 39 0002A7EC 41 0002A7F3 + 42 0002A7FB 43 0002A803 44 0002A805 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A810-0002A898, line/addr pairs = 5 + + 48 0002A810 49 0002A830 51 0002A862 52 0002A866 + 54 0002A86E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None), 0001:0002A8A0-0002A9B5, line/addr pairs = 13 + + 59 0002A8A0 60 0002A8C5 63 0002A8CB 66 0002A905 + 67 0002A92D 70 0002A939 72 0002A94C 73 0002A956 + 75 0002A95F 76 0002A968 78 0002A96B 80 0002A96D + 63 0002A993 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.h (None), 0001:0002A600-0002A606, line/addr pairs = 2 + + 19 0002A600 22 0002A605 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.h (None), 0001:0002A610-0002A71A, line/addr pairs = 3 + + 26 0002A610 27 0002A618 28 0002A716 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029310-00029417, line/addr pairs = 4 + + 12 00029310 13 00029354 14 0002935A 15 000293DA + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:000298C0-0002993D, line/addr pairs = 4 + + 19 000298C0 20 000298F1 21 000298F5 22 000298FB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029940-00029B29, line/addr pairs = 11 + + 26 00029940 27 00029967 29 0002997F 31 000299FF + 32 00029A3F 33 00029A4B 34 00029A90 33 00029ABA + 35 00029ACA 31 00029AF7 29 00029B0F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029D40-00029D61, line/addr pairs = 6 + + 39 00029D40 40 00029D48 41 00029D4C 42 00029D52 + 44 00029D5A 45 00029D5C + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029D70-00029DF8, line/addr pairs = 5 + + 49 00029D70 50 00029D90 52 00029DC2 53 00029DC6 + 55 00029DCE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029E00-00029F45, line/addr pairs = 11 + + 60 00029E00 61 00029E1F 63 00029E2A 65 00029E3E + 66 00029E7F 67 00029E88 68 00029ECD 67 00029EE0 + 72 00029EE8 74 00029EF8 65 00029F23 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None), 0001:00029F50-0002A2B1, line/addr pairs = 35 + + 79 00029F50 80 00029F74 81 00029F86 83 00029F95 + 86 00029FA9 88 00029FB7 97 00029FDF 90 00029FF3 + 92 0002A021 93 0002A041 94 0002A04C 97 0002A067 + 99 0002A06E 101 0002A083 104 0002A08D 105 0002A095 + 106 0002A0A8 109 0002A110 110 0002A119 111 0002A14A + 113 0002A14D 114 0002A17E 109 0002A194 117 0002A199 + 118 0002A1AF 121 0002A1BD 123 0002A1D3 124 0002A1E0 + 126 0002A22C 128 0002A23D 117 0002A248 133 0002A263 + 124 0002A27A 106 0002A28F 132 0002A29F + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00029420-00029463, line/addr pairs = 1 + + 15 00029420 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00029470-000294BF, line/addr pairs = 1 + + 19 00029470 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000294C0-0002951D, line/addr pairs = 1 + + 20 000294C0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00029680-000296DE, line/addr pairs = 1 + + 30 00029680 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00029B30-00029BB2, line/addr pairs = 1 + + 56 00029B30 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:0002A2C0-0002A38D, line/addr pairs = 4 + + 139 0002A2C0 140 0002A2EE 141 0002A359 140 0002A36B + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:0002A390-0002A476, line/addr pairs = 9 + + 166 0002A390 167 0002A3B7 170 0002A419 171 0002A420 + 174 0002A423 175 0002A428 176 0002A42F 179 0002A432 + 180 0002A43C + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:0002A480-0002A502, line/addr pairs = 5 + + 24 0002A480 25 0002A4B4 26 0002A4BA 27 0002A4CD + 28 0002A4D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.h (None), 0001:000296E0-000296E6, line/addr pairs = 2 + + 20 000296E0 23 000296E5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.h (None), 0001:000296F0-0002982E, line/addr pairs = 3 + + 27 000296F0 28 000296F8 29 0002982A + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:00028EF0-00028F53, line/addr pairs = 3 + + 9 00028EF0 10 00028F25 11 00028F32 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:000290A0-000290EF, line/addr pairs = 2 + + 15 000290A0 16 000290CB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:000290F0-000290F3, line/addr pairs = 1 + + 20 000290F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:00029100-0002912A, line/addr pairs = 7 + + 25 00029100 26 00029108 27 0002910C 29 00029113 + 30 0002911B 31 00029123 32 00029125 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:00029130-000291B8, line/addr pairs = 5 + + 36 00029130 37 00029150 39 00029182 40 00029186 + 42 0002918E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None), 0001:000291C0-0002930D, line/addr pairs = 23 + + 47 000291C0 48 000291E5 51 000291EB 54 0002922B + 55 00029256 58 00029263 59 0002926B 64 0002926D + 65 0002927A 66 00029281 68 0002928A 69 0002928F + 70 00029294 71 0002929A 74 0002929C 79 000292A1 + 80 000292A6 81 000292A9 75 000292AE 83 000292B5 + 84 000292BB 86 000292C5 51 000292EB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.h (None), 0001:00028F60-00028F66, line/addr pairs = 2 + + 18 00028F60 21 00028F65 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.h (None), 0001:00028F70-0002907A, line/addr pairs = 3 + + 25 00028F70 26 00028F78 27 00029076 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None), 0001:00028C20-00028C83, line/addr pairs = 3 + + 7 00028C20 8 00028C55 9 00028C62 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None), 0001:00028DD0-00028E1F, line/addr pairs = 2 + + 13 00028DD0 14 00028DFB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None), 0001:00028E20-00028E23, line/addr pairs = 1 + + 18 00028E20 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None), 0001:00028E30-00028E5A, line/addr pairs = 7 + + 23 00028E30 24 00028E38 25 00028E3C 27 00028E43 + 28 00028E4B 29 00028E53 30 00028E55 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None), 0001:00028E60-00028EE8, line/addr pairs = 5 + + 34 00028E60 35 00028E80 37 00028EB2 38 00028EB6 + 40 00028EBE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.h (None), 0001:00028C90-00028C96, line/addr pairs = 2 + + 17 00028C90 20 00028C95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.h (None), 0001:00028CA0-00028DAA, line/addr pairs = 3 + + 24 00028CA0 25 00028CA8 26 00028DA6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:000284A0-00028525, line/addr pairs = 5 + + 24 000284A0 26 000284E1 27 000284E8 30 000284EE + 32 000284F4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:000285E0-00028665, line/addr pairs = 4 + + 36 000285E0 37 0002860E 38 0002861A 39 0002862A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:00028670-000286B7, line/addr pairs = 9 + + 43 00028670 44 00028678 45 00028681 46 00028687 + 47 00028692 48 0002869C 49 000286A7 50 000286AC + 51 000286B3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:000286C0-000286DF, line/addr pairs = 6 + + 55 000286C0 56 000286C9 57 000286CB 59 000286D1 + 60 000286D9 61 000286DB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:000286E0-000287C6, line/addr pairs = 22 + + 65 000286E0 66 000286EC 67 000286F0 69 000286F9 + 70 000286FD 72 0002871A 73 0002871C 76 0002873D + 77 00028743 80 0002874A 84 00028750 85 0002875C + 86 00028760 88 00028769 89 0002876D 91 0002878A + 92 0002878C 95 000287AD 96 000287B3 99 000287BA + 103 000287C0 105 000287C5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:000287D0-0002881E, line/addr pairs = 15 + + 109 000287D0 112 000287D7 113 000287DB 114 000287E9 + 115 000287EB 117 000287F0 119 000287F6 120 000287FA + 124 00028808 125 0002880B 127 00028810 122 00028812 + 124 00028814 125 00028817 127 0002881C + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None), 0001:00028820-00028C20, line/addr pairs = 34 + + 131 00028820 132 00028825 133 00028841 134 00028852 + 135 0002886D 137 00028877 138 0002887B 142 00028880 + 143 000288A3 144 000288A9 148 000288B1 150 000288BA + 152 000288CD 153 000288FC 155 0002890E 156 00028940 + 158 00028952 159 00028984 161 00028996 162 000289C8 + 164 000289DA 165 00028A0C 167 00028A1E 168 00028A50 + 170 00028A62 173 00028AA1 176 00028AE0 179 00028B1F + 182 00028B57 185 00028B8F 189 00028BC1 190 00028BC5 + 193 00028BD1 194 00028BF0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h (None), 0001:00028530-00028536, line/addr pairs = 1 + + 25 00028530 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h (None), 0001:00028540-000285B2, line/addr pairs = 3 + + 29 00028540 30 00028548 31 000285AE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027660-00027754, line/addr pairs = 4 + + 9 00027660 11 0002769B 12 0002771E 13 00027725 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027AA0-00027B06, line/addr pairs = 4 + + 17 00027AA0 18 00027AD1 19 00027AD5 20 00027ADB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027B10-00027C95, line/addr pairs = 7 + + 24 00027B10 25 00027B37 27 00027B72 29 00027BAF + 30 00027BF6 31 00027C55 27 00027C73 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027CA0-00027CCA, line/addr pairs = 7 + + 35 00027CA0 36 00027CA8 37 00027CAC 39 00027CB3 + 40 00027CBB 41 00027CC3 42 00027CC5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027CD0-00027DA6, line/addr pairs = 7 + + 46 00027CD0 47 00027CF1 49 00027CFF 51 00027D31 + 52 00027D59 53 00027D66 49 00027D84 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027DB0-00027E88, line/addr pairs = 7 + + 57 00027DB0 58 00027DD4 60 00027DD9 62 00027E13 + 63 00027E3B 64 00027E48 60 00027E66 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027E90-00027F82, line/addr pairs = 9 + + 68 00027E90 69 00027EB1 70 00027EB6 72 00027ECB + 74 00027F05 75 00027F2D 76 00027F3C 79 00027F4D + 72 00027F60 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00027F90-00028018, line/addr pairs = 5 + + 84 00027F90 85 00027FB0 87 00027FE2 88 00027FE6 + 90 00027FEE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00028020-000280F9, line/addr pairs = 7 + + 95 00028020 96 0002803F 98 0002804A 100 00028081 + 101 000280A9 103 000280B8 98 000280D7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00028100-000282F4, line/addr pairs = 20 + + 108 00028100 109 00028120 111 00028136 113 00028165 + 114 0002818D 116 0002819C 118 000281B5 111 000281CE + 123 000281F0 124 00028217 126 00028220 129 0002822E + 132 00028238 133 00028240 134 0002824C 137 00028259 + 138 00028269 140 00028271 145 000282CC 140 000282E7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None), 0001:00028300-0002840D, line/addr pairs = 8 + + 149 00028300 150 00028330 152 00028348 154 0002837D + 155 000283A8 156 000283B6 152 000283DB 150 000283F3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsactionlist.h (None), 0001:00027760-0002777A, line/addr pairs = 4 + + 23 00027760 25 0002776E 24 00027771 25 00027777 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsactionlist.h (None), 0001:00027780-0002778F, line/addr pairs = 1 + + 28 00027780 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00027790-00027791, line/addr pairs = 1 + + 15 00027790 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000277A0-000277EF, line/addr pairs = 1 + + 19 000277A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000277F0-000277F5, line/addr pairs = 1 + + 20 000277F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.h (None), 0001:00027990-00027996, line/addr pairs = 2 + + 19 00027990 22 00027995 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.h (None), 0001:000279A0-00027A76, line/addr pairs = 3 + + 26 000279A0 27 000279A8 28 00027A72 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00028410-0002849B, line/addr pairs = 3 + + 139 00028410 140 0002843D 141 00028475 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:00027250-000272E6, line/addr pairs = 7 + + 9 00027250 11 00027287 13 00027293 14 0002729E + 15 000272AA 18 000272C2 19 000272C8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:00027400-00027465, line/addr pairs = 3 + + 23 00027400 24 00027431 25 00027441 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:00027470-000274CF, line/addr pairs = 8 + + 29 00027470 30 00027478 32 00027484 33 0002749A + 34 000274A6 35 000274B2 36 000274BE 37 000274CB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:000274D0-000274FA, line/addr pairs = 7 + + 41 000274D0 42 000274D8 43 000274DC 45 000274E3 + 46 000274EB 47 000274F3 48 000274F5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:00027500-00027579, line/addr pairs = 10 + + 52 00027500 53 0002750F 56 00027513 58 0002751C + 59 00027520 60 00027540 61 00027542 63 00027563 + 64 00027569 65 00027573 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:00027580-000275C2, line/addr pairs = 9 + + 69 00027580 70 00027586 72 00027593 73 00027597 + 74 000275A4 75 000275A6 77 000275A7 78 000275AC + 80 000275BE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None), 0001:000275D0-0002765F, line/addr pairs = 10 + + 84 000275D0 85 000275DD 87 000275E4 88 00027601 + 89 00027612 90 00027621 91 00027630 92 0002763F + 93 0002764F 94 0002765B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.h (None), 0001:000272F0-000272F6, line/addr pairs = 2 + + 20 000272F0 23 000272F5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.h (None), 0001:00027300-000273D6, line/addr pairs = 3 + + 27 00027300 28 00027308 29 000273D2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00026C40-00026CC3, line/addr pairs = 3 + + 10 00026C40 11 00026C6B 12 00026C70 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00026E00-00026ED3, line/addr pairs = 5 + + 16 00026E00 17 00026E7C 18 00026E81 19 00026E92 + 16 00026EB9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00026FE0-00027067, line/addr pairs = 15 + + 23 00026FE0 26 00026FF0 28 00026FF9 29 0002700E + 32 0002701A 33 00027027 35 0002702E 36 00027034 + 39 0002703D 40 00027041 46 00027049 47 0002704C + 43 00027052 46 0002705E 47 00027061 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00027070-00027181, line/addr pairs = 20 + + 51 00027070 57 00027087 58 00027098 60 000270A4 + 61 000270B7 62 000270C4 65 000270D0 66 000270DD + 67 000270EA 68 000270FD 69 0002710A 71 00027116 + 72 0002711B 73 00027123 74 00027134 75 00027145 + 78 0002714E 79 00027168 80 00027175 82 0002717B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00027190-000271CD, line/addr pairs = 8 + + 86 00027190 87 00027196 89 0002719F 90 000271B1 + 91 000271B6 92 000271BC 95 000271C8 96 000271CB + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:000271D0-000271FE, line/addr pairs = 5 + + 100 000271D0 101 000271DD 102 000271EA 104 000271F4 + 106 000271F9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00027200-00027222, line/addr pairs = 3 + + 110 00027200 111 00027208 112 0002721F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00027230-00027234, line/addr pairs = 2 + + 116 00027230 118 00027233 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None), 0001:00027240-00027245, line/addr pairs = 2 + + 122 00027240 124 00027244 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.h (None), 0001:00026D20-00026D26, line/addr pairs = 2 + + 19 00026D20 22 00026D25 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.h (None), 0001:00026D30-00026DD2, line/addr pairs = 3 + + 26 00026D30 27 00026D38 28 00026DCE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.h (None), 0001:00026EE0-00026EE6, line/addr pairs = 2 + + 16 00026EE0 19 00026EE5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.h (None), 0001:00026EF0-00026F62, line/addr pairs = 3 + + 23 00026EF0 24 00026EF8 25 00026F5E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None), 0001:00026970-000269D3, line/addr pairs = 3 + + 7 00026970 8 000269A5 9 000269B2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None), 0001:00026B20-00026B6F, line/addr pairs = 2 + + 13 00026B20 14 00026B4B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None), 0001:00026B70-00026B73, line/addr pairs = 1 + + 18 00026B70 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None), 0001:00026B80-00026BAA, line/addr pairs = 7 + + 23 00026B80 24 00026B88 25 00026B8C 27 00026B93 + 28 00026B9B 29 00026BA3 30 00026BA5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None), 0001:00026BB0-00026C38, line/addr pairs = 5 + + 34 00026BB0 35 00026BD0 37 00026C02 38 00026C06 + 40 00026C0E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.h (None), 0001:000269E0-000269E6, line/addr pairs = 2 + + 16 000269E0 19 000269E5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.h (None), 0001:000269F0-00026AFA, line/addr pairs = 3 + + 23 000269F0 24 000269F8 25 00026AF6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.cpp (None), 0001:000267D0-0002683C, line/addr pairs = 4 + + 7 000267D0 9 0002680A 11 00026810 13 00026816 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.cpp (None), 0001:000268F0-00026958, line/addr pairs = 4 + + 17 000268F0 18 0002691F 19 00026921 20 0002692D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.cpp (None), 0001:00026960-00026966, line/addr pairs = 2 + + 24 00026960 26 00026965 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.h (None), 0001:00026840-00026846, line/addr pairs = 2 + + 25 00026840 28 00026845 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.h (None), 0001:00026850-000268C2, line/addr pairs = 3 + + 32 00026850 33 00026858 34 000268BE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025B80-00025C01, line/addr pairs = 8 + + 15 00025B80 17 00025BB5 19 00025BBB 21 00025BC1 + 23 00025BC7 25 00025BCD 26 00025BD4 27 00025BE1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025C40-00025D63, line/addr pairs = 20 + + 31 00025C40 32 00025C72 33 00025C78 40 00025C99 + 43 00025CA9 46 00025CB8 48 00025CCB 49 00025CD8 + 51 00025CE3 53 00025CE7 55 00025CEB 59 00025CED + 61 00025D00 62 00025D0D 64 00025D18 66 00025D1C + 68 00025D20 36 00025D22 75 00025D2B 77 00025D3D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025D70-00025EA7, line/addr pairs = 33 + + 81 00025D70 84 00025D85 90 00025D97 92 00025D9C + 126 00025DB0 127 00025DB7 94 00025DBC 95 00025DBE + 94 00025DD8 106 00025DDE 107 00025DE5 96 00025DEA + 98 00025DFC 101 00025E02 102 00025E11 110 00025E13 + 111 00025E15 110 00025E2F 122 00025E35 123 00025E3C + 112 00025E3E 114 00025E50 117 00025E56 118 00025E65 + 86 00025E67 131 00025E77 132 00025E7A 135 00025E80 + 136 00025E84 137 00025E8B 139 00025E91 142 00025E99 + 143 00025E9D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025EB0-00025ED3, line/addr pairs = 5 + + 147 00025EB0 150 00025EBA 151 00025EC4 154 00025ECE + 155 00025ED0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025EE0-00025FE8, line/addr pairs = 26 + + 163 00025EE0 166 00025EF8 167 00025F0C 168 00025F0E + 171 00025F1E 172 00025F2D 173 00025F31 175 00025F47 + 178 00025F49 208 00025F4E 209 00025F51 182 00025F5A + 184 00025F61 188 00025F6C 189 00025F72 191 00025F82 + 192 00025F90 196 00025F94 198 00025F9B 199 00025FA3 + 202 00025FAF 203 00025FB9 206 00025FBF 176 00025FC4 + 185 00025FD0 193 00025FDC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00025FF0-000260AC, line/addr pairs = 16 + + 218 00025FF0 219 00025FFA 220 00025FFE 223 0002600A + 225 0002601F 226 00026023 229 0002602F 230 00026038 + 231 0002604D 233 0002605A 234 00026064 235 00026070 + 238 00026079 241 00026094 242 000260A0 243 000260A6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:000260B0-00026191, line/addr pairs = 20 + + 251 000260B0 252 000260BD 276 000260C4 277 000260CA + 281 000260D5 253 000260E1 254 000260EA 255 000260F0 + 256 000260FC 257 0002610A 258 00026115 260 0002611B + 262 00026129 264 00026135 265 00026147 268 00026153 + 269 0002615C 270 0002616A 272 00026175 273 00026185 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:000261A0-00026448, line/addr pairs = 40 + + 291 000261A0 294 000261CA 295 000261E2 296 000261EE + 301 00026218 326 00026220 327 0002622E 329 00026241 + 331 00026257 332 00026261 334 00026275 335 00026280 + 338 0002628E 340 0002629A 341 0002629E 343 000262AA + 346 000262B2 347 000262BE 349 000262C0 351 000262C2 + 352 000262DB 353 000262E7 359 000262F3 360 000262FB + 361 00026318 367 00026328 302 00026330 303 00026343 + 306 00026369 307 00026392 309 000263CA 310 000263CC + 311 000263DB 313 000263E6 314 000263F2 367 000263FA + 319 0002640F 320 00026413 322 0002641B 323 00026427 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00026450-00026532, line/addr pairs = 11 + + 372 00026450 376 00026473 378 00026479 392 0002648B + 380 0002649C 381 000264AC 383 000264AE 384 000264F2 + 385 00026506 386 00026512 388 00026514 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00026620-000266EB, line/addr pairs = 22 + + 396 00026620 399 00026627 401 0002662D 402 00026630 + 426 00026644 427 0002664E 428 00026655 405 00026685 + 406 0002668B 420 0002668D 421 00026693 423 00026695 + 430 000266A0 433 000266B2 435 000266B6 409 000266B8 + 410 000266C8 411 000266D7 412 000266DC 413 000266DE + 414 000266E2 415 000266E9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:000266F0-00026704, line/addr pairs = 5 + + 439 000266F0 440 000266F4 441 000266F9 443 000266FF + 444 00026701 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00026710-0002671E, line/addr pairs = 3 + + 448 00026710 450 00026717 452 0002671B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:00026720-000267AD, line/addr pairs = 15 + + 456 00026720 459 0002672B 463 00026738 464 0002673D + 467 00026749 468 0002674B 469 0002675B 470 00026762 + 472 00026765 473 00026769 475 0002677F 476 0002678A + 478 0002679F 483 000267A4 484 000267A7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None), 0001:000267B0-000267C5, line/addr pairs = 3 + + 488 000267B0 490 000267BC 493 000267C2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.h (None), 0001:00025C10-00025C16, line/addr pairs = 2 + + 29 00025C10 32 00025C15 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.h (None), 0001:00026540-00026546, line/addr pairs = 2 + + 19 00026540 22 00026545 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.h (None), 0001:00026550-000265F2, line/addr pairs = 3 + + 26 00026550 27 00026558 28 000265EE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None), 0001:000258B0-00025913, line/addr pairs = 3 + + 7 000258B0 8 000258E5 9 000258F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None), 0001:00025A60-00025AAF, line/addr pairs = 2 + + 13 00025A60 14 00025A8B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None), 0001:00025AB0-00025AB3, line/addr pairs = 1 + + 18 00025AB0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None), 0001:00025AC0-00025AEA, line/addr pairs = 7 + + 23 00025AC0 24 00025AC8 25 00025ACC 27 00025AD3 + 28 00025ADB 29 00025AE3 30 00025AE5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None), 0001:00025AF0-00025B78, line/addr pairs = 5 + + 34 00025AF0 35 00025B10 37 00025B42 38 00025B46 + 40 00025B4E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.h (None), 0001:00025920-00025926, line/addr pairs = 2 + + 18 00025920 21 00025925 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.h (None), 0001:00025930-00025A3A, line/addr pairs = 3 + + 25 00025930 26 00025938 27 00025A36 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025010-00025133, line/addr pairs = 13 + + 17 00025010 18 0002508A 19 00025091 22 00025098 + 23 0002509F 25 000250A6 26 000250B3 27 000250CA + 28 000250E1 29 000250EB 31 000250F7 32 000250FF + 33 00025109 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025280-00025284, line/addr pairs = 2 + + 37 00025280 39 00025283 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025290-0002529A, line/addr pairs = 2 + + 43 00025290 45 00025297 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000252A0-000252B3, line/addr pairs = 2 + + 49 000252A0 51 000252B0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000252C0-000252CD, line/addr pairs = 2 + + 55 000252C0 57 000252CA + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000252D0-000252D7, line/addr pairs = 2 + + 61 000252D0 63 000252D6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000252E0-00025342, line/addr pairs = 3 + + 67 000252E0 68 0002530E 69 0002531E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025350-0002542C, line/addr pairs = 15 + + 73 00025350 74 00025355 75 0002535F 76 00025365 + 77 0002536B 78 00025371 80 0002537A 81 000253A1 + 82 000253C5 84 000253E3 85 000253F6 86 00025402 + 87 0002540E 88 0002541A 89 00025427 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025430-0002545B, line/addr pairs = 4 + + 93 00025430 96 00025435 97 00025447 100 00025457 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025460-0002548A, line/addr pairs = 7 + + 104 00025460 105 00025468 106 0002546C 108 00025473 + 109 0002547B 110 00025483 111 00025485 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025490-00025518, line/addr pairs = 5 + + 115 00025490 116 000254B0 118 000254E2 119 000254E6 + 121 000254EE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025520-0002554E, line/addr pairs = 3 + + 126 00025520 127 00025528 128 0002554D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:00025550-000256AD, line/addr pairs = 31 + + 132 00025550 133 0002555F 134 00025566 136 00025569 + 137 00025579 139 00025580 140 00025588 142 0002558B + 143 00025596 144 0002559D 145 000255AB 146 000255B3 + 147 000255C1 149 000255C9 150 000255D4 151 000255DB + 152 000255E9 153 000255F1 154 000255FD 156 00025609 + 157 00025614 158 0002561B 159 00025629 160 00025631 + 161 0002563F 163 00025647 170 0002565A 171 00025666 + 172 0002567E 174 0002569B 177 000256A4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000256B0-000257BE, line/addr pairs = 16 + + 181 000256B0 182 000256C0 185 000256D9 186 000256EB + 187 000256FD 189 0002571B 190 00025736 192 00025751 + 193 00025765 194 00025771 196 00025774 197 00025784 + 200 00025792 201 00025796 202 000257A8 205 000257B4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None), 0001:000257C0-000258AC, line/addr pairs = 20 + + 209 000257C0 210 000257CA 212 000257D4 213 000257E2 + 214 000257EE 215 000257FA 216 00025806 217 00025814 + 218 00025823 219 00025832 220 00025840 221 0002584F + 222 0002585E 223 0002586C 224 0002587B 226 0002588A + 227 00025896 228 00025898 229 000258A1 231 000258A6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h (None), 0001:00025140-00025198, line/addr pairs = 1 + + 36 00025140 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.h (None), 0001:000251A0-000251A6, line/addr pairs = 2 + + 35 000251A0 38 000251A5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.h (None), 0001:000251B0-00025252, line/addr pairs = 3 + + 42 000251B0 43 000251B8 44 0002524E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:000240B0-0002412B, line/addr pairs = 3 + + 14 000240B0 15 000240F1 16 000240F6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024150-000241BF, line/addr pairs = 3 + + 20 00024150 21 0002417B 22 00024180 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:000241C0-000241E1, line/addr pairs = 6 + + 26 000241C0 27 000241C3 29 000241C9 30 000241CF + 32 000241D8 33 000241DF + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:000241F0-000242F1, line/addr pairs = 24 + + 37 000241F0 42 000241F9 43 000241FF 45 00024207 + 46 00024209 49 00024211 50 00024224 52 00024233 + 53 00024245 54 0002424D 55 00024257 56 00024262 + 59 00024271 63 00024275 64 0002427C 66 00024280 + 67 00024287 68 000242A8 69 000242AE 71 000242BA + 72 000242C4 73 000242CF 49 000242D7 76 000242E9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024300-0002431B, line/addr pairs = 5 + + 80 00024300 83 00024306 84 0002430A 83 00024314 + 87 00024318 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024320-00024338, line/addr pairs = 5 + + 91 00024320 94 00024326 95 0002432B 94 00024330 + 98 00024335 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024340-0002439B, line/addr pairs = 12 + + 107 00024340 110 0002434B 111 00024354 112 00024363 + 113 00024368 114 00024370 116 00024376 117 0002437B + 119 00024384 120 0002438E 122 00024393 123 00024396 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:000243A0-00024634, line/addr pairs = 56 + + 127 000243A0 129 000243B1 130 000243B6 131 000243BE + 133 000243CD 134 000243D1 136 000243DC 137 000243E0 + 139 000243E5 140 000243ED 143 000243F6 145 000243F9 + 146 000243FE 147 00024407 148 0002440C 150 00024413 + 153 00024419 154 00024423 155 00024431 157 0002443C + 160 0002444A 161 00024457 163 0002445F 166 00024472 + 168 00024481 169 00024497 174 000244AC 175 000244B0 + 176 000244BF 178 000244D8 179 000244E0 181 000244EB + 184 000244FA 186 00024513 187 00024522 189 00024527 + 191 00024530 192 00024538 193 00024540 195 00024559 + 198 00024566 199 00024573 200 0002457B 201 00024583 + 202 00024599 205 000245A8 206 000245AA 208 000245B5 + 210 000245C7 212 000245CC 213 000245D5 215 000245E0 + 217 000245EE 218 0002461E 222 00024626 223 0002462A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024640-0002468C, line/addr pairs = 12 + + 227 00024640 228 00024643 229 0002464C 230 00024650 + 232 00024656 233 0002465D 235 00024663 236 0002466A + 239 00024670 240 0002467A 242 00024683 243 0002468A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024690-0002488A, line/addr pairs = 27 + + 247 00024690 248 0002469C 249 000246B3 250 000246C6 + 252 000246D2 259 000246D8 260 000246E5 262 000246EC + 263 000246F3 265 000246FF 266 00024710 267 0002471A + 268 00024722 269 00024729 270 00024732 274 00024742 + 275 0002474F 276 00024758 279 0002476B 281 00024777 + 282 00024789 283 0002479B 284 000247AD 285 000247BF + 286 000247D1 291 00024822 294 0002487D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024890-00024D8E, line/addr pairs = 89 + + 306 00024890 318 000248AB 320 0002490E 321 0002491D + 323 00024932 324 0002493B 325 00024949 326 0002495F + 329 00024967 332 00024977 347 00024980 348 00024987 + 349 00024989 350 0002498B 351 00024990 353 0002499F + 335 000249A1 336 000249A8 337 000249AF 338 000249B1 + 339 000249BD 340 000249D3 343 000249D5 355 000249D8 + 356 000249E6 357 000249EE 359 000249F6 361 00024A0F + 362 00024A26 364 00024A47 365 00024A52 366 00024A71 + 367 00024A77 369 00024A7B 371 00024A84 373 00024A8D + 369 00024A93 376 00024A9C 379 00024AA2 380 00024ABB + 381 00024AC6 385 00024AD6 386 00024AF0 389 00024B15 + 391 00024B37 394 00024B45 396 00024B54 417 00024B5D + 418 00024B77 420 00024B7D 421 00024B81 422 00024B91 + 424 00024B96 420 00024B9A 428 00024B9C 429 00024BAC + 430 00024BB4 397 00024BC1 398 00024BD1 400 00024BD7 + 401 00024BDB 402 00024BEB 404 00024BF0 400 00024BF4 + 408 00024BF6 412 00024BFE 413 00024C0F 414 00024C17 + 436 00024C24 438 00024C41 439 00024C58 441 00024C79 + 442 00024C8F 443 00024C97 445 00024CB2 446 00024CBD + 450 00024CCD 451 00024CE7 453 00024D08 454 00024D13 + 455 00024D2B 456 00024D2D 457 00024D38 456 00024D53 + 461 00024D5C 455 00024D62 466 00024D6C 468 00024D78 + 471 00024D81 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024D90-00024D95, line/addr pairs = 2 + + 484 00024D90 486 00024D92 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024DA0-00024DA5, line/addr pairs = 2 + + 490 00024DA0 492 00024DA2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024DB0-00024F74, line/addr pairs = 34 + + 496 00024DB0 497 00024DBC 498 00024DC6 499 00024DD0 + 500 00024DDD 503 00024DF2 504 00024DF4 505 00024E03 + 506 00024E10 509 00024E16 510 00024E1C 511 00024E3E + 509 00024E42 512 00024E48 514 00024E4F 516 00024E59 + 517 00024E5B 520 00024E66 522 00024E73 523 00024E78 + 524 00024E87 528 00024E98 530 00024EB5 531 00024ED2 + 533 00024EDF 534 00024EEC 535 00024EFF 538 00024F09 + 539 00024F0D 540 00024F2A 542 00024F32 543 00024F44 + 544 00024F51 548 00024F67 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024F80-00024FAB, line/addr pairs = 3 + + 552 00024F80 553 00024F84 557 00024F9D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024FB0-00024FC9, line/addr pairs = 4 + + 561 00024FB0 562 00024FB3 563 00024FBF 564 00024FC6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024FD0-00024FD5, line/addr pairs = 2 + + 568 00024FD0 570 00024FD2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024FE0-00024FE3, line/addr pairs = 2 + + 574 00024FE0 576 00024FE2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00024FF0-00024FF3, line/addr pairs = 1 + + 589 00024FF0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None), 0001:00025000-00025005, line/addr pairs = 2 + + 604 00025000 606 00025002 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:000232E0-000232FA, line/addr pairs = 6 + + 20 000232E0 21 000232E6 22 000232EA 23 000232EF + 25 000232F6 26 000232F9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023300-00023316, line/addr pairs = 3 + + 30 00023300 32 0002330E 33 00023313 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023320-0002344A, line/addr pairs = 5 + + 37 00023320 39 000233B9 40 000233BE 41 000233CB + 37 000233D8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023760-000238E4, line/addr pairs = 19 + + 45 00023760 47 00023791 50 00023795 53 000237A2 + 54 000237A8 55 000237E5 57 000237EE 60 000237F4 + 61 00023806 63 0002380C 64 0002381B 66 00023825 + 67 0002382E 68 00023837 69 0002383C 72 00023847 + 73 00023851 75 00023857 76 00023865 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:000238F0-00023B01, line/addr pairs = 17 + + 80 000238F0 81 0002390F 82 00023916 83 00023926 + 85 00023933 87 0002398E 88 000239C3 89 000239C9 + 90 000239DA 91 00023A3A 93 00023A54 94 00023A5D + 97 00023A77 98 00023A85 100 00023A8D 101 00023AA3 + 106 00023AAA + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023B10-00023C81, line/addr pairs = 22 + + 111 00023B10 114 00023B31 115 00023B3B 118 00023B45 + 121 00023B52 122 00023B58 123 00023B9B 125 00023BA7 + 128 00023BAD 129 00023BBF 131 00023BC5 132 00023BD4 + 134 00023BDE 137 00023C07 138 00023C1F 139 00023C32 + 141 00023C37 144 00023C3D 145 00023C4F 147 00023C55 + 148 00023C64 150 00023C6A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023C90-00023CBE, line/addr pairs = 8 + + 154 00023C90 155 00023C98 156 00023C9D 157 00023CA6 + 158 00023CAC 159 00023CB3 161 00023CB9 162 00023CBC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023CC0-00023E29, line/addr pairs = 16 + + 166 00023CC0 167 00023CE5 168 00023CE7 170 00023CFF + 171 00023D14 173 00023D43 176 00023D47 177 00023D5F + 181 00023D70 185 00023D85 189 00023D8B 190 00023DA0 + 191 00023DFA 193 00023DFF 194 00023E08 195 00023E10 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00023E30-00024023, line/addr pairs = 32 + + 200 00023E30 205 00023E5B 206 00023E64 207 00023E74 + 209 00023E81 210 00023E90 211 00023EA0 212 00023EAD + 215 00023EC7 218 00023ED3 220 00023EDF 221 00023EEF + 220 00023EFD 222 00023F31 224 00023F36 225 00023F4D + 228 00023F53 231 00023F64 232 00023F75 234 00023F85 + 235 00023F8E 237 00023F9D 238 00023FA6 240 00023FAF + 241 00023FB7 245 00023FC4 242 00023FD2 249 00023FDE + 253 00023FE5 254 00023FEB 257 00023FF7 258 00024004 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00024030-00024052, line/addr pairs = 4 + + 262 00024030 264 00024043 267 0002404F 268 00024051 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00024060-00024068, line/addr pairs = 2 + + 272 00024060 274 00024065 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00024070-00024078, line/addr pairs = 2 + + 278 00024070 279 00024073 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00024080-00024088, line/addr pairs = 2 + + 284 00024080 285 00024083 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:00024090-00024098, line/addr pairs = 2 + + 290 00024090 291 00024093 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None), 0001:000240A0-000240A8, line/addr pairs = 2 + + 296 000240A0 297 000240A3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.h (None), 0001:00023450-00023456, line/addr pairs = 2 + + 19 00023450 21 00023455 + + C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.h (None), 0001:00023460-000234D2, line/addr pairs = 3 + + 25 00023460 26 00023468 27 000234CE + + C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.h (None), 0001:000235A0-000235B1, line/addr pairs = 1 + + 14 000235A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.h (None), 0001:00023680-00023686, line/addr pairs = 2 + + 34 00023680 37 00023685 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.h (None), 0001:00023690-00023732, line/addr pairs = 3 + + 41 00023690 42 00023698 43 0002372E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00021A90-00021CA0, line/addr pairs = 3 + + 14 00021A90 16 00021B7F 14 00021B96 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022000-0002225B, line/addr pairs = 23 + + 20 00022000 21 00022036 23 0002203C 24 0002204A + 26 00022051 27 00022055 30 00022075 31 0002209A + 33 000220BD 34 000220C1 35 000220C7 38 000220D1 + 40 000220D9 41 00022106 43 00022114 44 00022138 + 46 00022146 47 00022154 48 0002215A 49 00022182 + 50 00022187 52 00022189 53 00022199 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000222B0-0002239F, line/addr pairs = 15 + + 57 000222B0 58 000222D2 59 000222E7 61 000222F2 + 62 000222F4 63 00022320 64 00022322 66 00022329 + 67 0002234A 68 00022357 69 00022359 70 00022366 + 72 0002236D 73 0002236F 78 0002238D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000223A0-000223A5, line/addr pairs = 2 + + 83 000223A0 85 000223A2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000223B0-0002247C, line/addr pairs = 7 + + 89 000223B0 90 000223D4 91 000223E3 92 000223EA + 95 0002240E 96 00022455 97 0002245A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022480-00022488, line/addr pairs = 2 + + 102 00022480 104 00022485 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022490-00022491, line/addr pairs = 1 + + 108 00022490 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000224A0-000225D1, line/addr pairs = 18 + + 114 000224A0 116 000224C8 119 000224CC 121 000224D7 + 122 000224FC 124 0002252D 125 0002253E 126 00022542 + 127 0002254A 130 00022565 131 00022574 132 00022576 + 137 0002257C 138 00022588 142 0002259B 143 000225A1 + 145 000225B0 140 000225BF + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000225E0-00022725, line/addr pairs = 12 + + 149 000225E0 150 00022604 152 0002260C 153 0002261D + 155 00022628 156 0002265E 157 00022691 158 00022693 + 159 0002269E 160 000226A6 161 000226AC 165 000226E6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022730-000227DE, line/addr pairs = 12 + + 170 00022730 171 00022754 172 0002276F 176 00022777 + 177 00022781 180 00022785 181 0002278D 184 00022792 + 185 0002279C 188 000227A0 189 000227A8 191 000227AA + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:000227E0-0002280F, line/addr pairs = 6 + + 196 000227E0 197 000227EB 198 000227EF 200 000227F5 + 201 000227FF 202 0002280B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022810-0002283E, line/addr pairs = 4 + + 206 00022810 209 00022828 212 0002282F 215 0002283B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022840-00022A3F, line/addr pairs = 26 + + 219 00022840 220 00022862 221 00022872 223 0002287B + 224 0002287F 226 000228A0 227 000228AC 228 000228B4 + 232 000228BE 237 000228E0 238 00022904 240 0002290C + 241 0002291D 242 00022922 243 0002292B 244 00022937 + 247 00022940 243 00022963 241 0002296F 258 0002297B + 248 0002299A 250 000229C6 251 000229C9 253 00022A00 + 254 00022A19 257 00022A2D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022A70-00022B19, line/addr pairs = 5 + + 263 00022A70 264 00022A94 265 00022AA3 266 00022AAA + 268 00022AE9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022B20-00022C4A, line/addr pairs = 15 + + 272 00022B20 273 00022B44 275 00022B5F 276 00022B66 + 277 00022B6E 278 00022B98 279 00022B9E 280 00022BAB + 281 00022BB7 283 00022BC5 285 00022BCA 286 00022BDD + 288 00022C0E 291 00022C1A 293 00022C2F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022C50-00022E4F, line/addr pairs = 19 + + 298 00022C50 299 00022C7A 300 00022C90 301 00022CA0 + 304 00022CB6 309 00022D7D 310 00022D81 313 00022D8A + 314 00022D90 315 00022D94 316 00022D9A 319 00022DA4 + 320 00022DB3 321 00022DC2 323 00022DCB 324 00022DD2 + 328 00022DDB 304 00022E05 308 00022E32 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022E50-00022F8E, line/addr pairs = 18 + + 333 00022E50 334 00022E74 335 00022E8F 336 00022E95 + 337 00022E9F 338 00022EB1 340 00022EBE 341 00022EC5 + 342 00022ED2 345 00022ED7 346 00022EDD 347 00022EE9 + 349 00022EF1 350 00022EF3 351 00022EFE 354 00022F03 + 358 00022F53 359 00022F5B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00022F90-0002302F, line/addr pairs = 4 + + 364 00022F90 365 00022FB4 366 00022FBC 367 00023006 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00023030-00023125, line/addr pairs = 16 + + 371 00023030 372 00023054 373 0002305E 374 0002306D + 375 00023073 376 00023079 377 000230AE 379 000230B4 + 380 000230B6 383 000230C6 384 000230CC 385 000230DD + 386 000230E4 387 000230E9 388 000230F1 390 000230F7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00023130-0002320E, line/addr pairs = 13 + + 394 00023130 395 00023133 396 0002313C 399 00023141 + 400 00023148 402 0002314F 403 00023155 406 0002315C + 407 0002315F 411 00023160 412 00023187 413 00023196 + 414 000231E5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None), 0001:00023210-000232B5, line/addr pairs = 8 + + 418 00023210 419 00023235 422 00023245 423 00023256 + 424 0002325C 426 00023280 427 00023286 428 00023288 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00021CA0-00021D04, line/addr pairs = 3 + + 140 00021CA0 141 00021CE4 142 00021CFE + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00021D10-00021D36, line/addr pairs = 6 + + 375 00021D10 376 00021D1E 377 00021D22 380 00021D2B + 379 00021D2E 380 00021D33 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00021E00-00021E64, line/addr pairs = 3 + + 140 00021E00 141 00021E44 142 00021E5E + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00021E70-00021E96, line/addr pairs = 6 + + 375 00021E70 376 00021E7E 377 00021E82 380 00021E8B + 379 00021E8E 380 00021E93 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00022260-000222A5, line/addr pairs = 5 + + 224 00022260 225 00022279 226 0002227D 228 00022289 + 230 0002229C + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:00022A40-00022A66, line/addr pairs = 6 + + 375 00022A40 376 00022A4E 377 00022A52 380 00022A5B + 379 00022A5E 380 00022A63 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.h (None), 0001:00021D40-00021D46, line/addr pairs = 2 + + 24 00021D40 27 00021D45 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.h (None), 0001:00021D50-00021DF2, line/addr pairs = 3 + + 31 00021D50 32 00021D58 33 00021DEE + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xmemory (None), 0001:000232C0-000232D1, line/addr pairs = 1 + + 38 000232C0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:0001FF20-0001FF98, line/addr pairs = 14 + + 17 0001FF20 18 0001FF28 20 0001FF2E 22 0001FF34 + 24 0001FF3A 26 0001FF40 28 0001FF4C 30 0001FF58 + 32 0001FF61 34 0001FF6D 36 0001FF79 38 0001FF85 + 39 0001FF8F 40 0001FF95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:0001FFC0-0001FFF6, line/addr pairs = 5 + + 44 0001FFC0 45 0001FFCA 47 0001FFD5 48 0001FFD9 + 51 0001FFF3 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020000-00020065, line/addr pairs = 11 + + 55 00020000 60 0002000E 62 00020018 63 0002001C + 64 00020029 66 00020039 67 00020040 68 00020048 + 69 00020058 72 0002005D 73 00020060 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020070-0002011E, line/addr pairs = 15 + + 87 00020070 90 0002007E 92 00020083 93 00020095 + 96 0002009C 97 000200AD 98 000200BF 101 000200C7 + 102 000200C9 105 000200CD 106 000200E3 109 000200EA + 110 000200F6 113 000200FD 118 0002011B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020120-0002018D, line/addr pairs = 13 + + 122 00020120 123 00020126 124 0002012A 125 00020130 + 128 00020136 129 0002014D 133 00020150 136 0002015B + 137 0002015D 138 0002016E 139 0002017C 141 00020185 + 142 0002018B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020190-00020289, line/addr pairs = 26 + + 146 00020190 153 0002019C 154 0002019E 155 000201A8 + 156 000201BA 159 000201C3 160 000201CB 161 000201D4 + 164 000201DC 165 000201E5 168 000201F0 169 000201F9 + 172 00020204 175 0002020D 176 00020215 177 00020230 + 178 0002023A 179 00020243 176 00020249 183 0002024B + 185 00020252 186 00020265 187 00020269 188 00020276 + 192 0002027E 193 00020284 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020290-000202E5, line/addr pairs = 10 + + 197 00020290 198 00020296 200 00020299 202 000202A3 + 203 000202A7 204 000202AD 207 000202B4 209 000202C4 + 210 000202C8 213 000202E2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:000202F0-000203E8, line/addr pairs = 37 + + 217 000202F0 218 000202F3 219 000202F8 220 00020304 + 221 00020308 222 00020312 223 00020318 227 00020322 + 228 00020329 229 0002032F 232 00020336 233 0002033D + 234 00020343 237 0002034A 238 00020351 239 00020357 + 242 0002035E 243 00020365 244 0002036B 247 00020372 + 248 00020379 249 0002037F 252 00020386 253 0002038D + 254 00020393 257 0002039A 258 000203A1 259 000203A7 + 261 000203AE 265 000203B0 266 000203B3 267 000203BB + 268 000203BF 269 000203C9 270 000203D4 271 000203DC + 273 000203E6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:000203F0-0002045E, line/addr pairs = 12 + + 277 000203F0 280 000203F8 281 000203FC 282 0002040B + 283 00020418 285 00020422 286 00020429 289 00020436 + 290 0002043A 291 00020447 294 0002044E 297 00020459 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020460-000204AA, line/addr pairs = 7 + + 301 00020460 304 00020469 305 00020481 304 0002048F + 310 00020497 311 0002049A 306 0002049F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:000204B0-00020501, line/addr pairs = 8 + + 315 000204B0 318 000204B7 319 000204B9 320 000204D2 + 321 000204D4 324 000204E8 325 000204EB 327 000204FE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020510-0002082B, line/addr pairs = 57 + + 331 00020510 334 00020519 337 00020526 339 00020537 + 340 00020540 341 0002054E 342 00020556 343 0002055A + 344 0002056D 345 00020571 350 0002059D 351 000205BB + 353 000205C0 356 000205C3 357 000205D1 358 000205D9 + 359 000205E3 360 000205EB 361 000205F8 368 00020604 + 369 0002060D 370 0002061E 373 0002062A 374 0002063C + 375 00020643 376 0002064E 377 00020653 379 0002065D + 385 0002068C 394 000206B9 395 000206E4 396 000206F9 + 399 0002070A 400 00020712 403 0002071E 404 00020727 + 409 00020733 411 0002073A 412 0002074E 415 0002075A + 416 00020767 418 0002076D 422 00020775 428 00020780 + 429 0002078F 430 00020793 431 000207A0 433 000207AC + 434 000207BD 435 000207C4 436 000207C8 437 000207D5 + 442 000207E1 443 00020807 447 00020810 448 00020817 + 449 00020828 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020830-00020873, line/addr pairs = 8 + + 453 00020830 456 00020838 457 00020844 458 0002084E + 459 00020856 460 0002085A 463 00020867 464 00020870 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020880-00020AA1, line/addr pairs = 53 + + 468 00020880 473 00020888 474 00020890 475 0002089F + 476 000208A7 477 000208AF 478 000208B7 480 000208BF + 482 000208C7 483 000208DC 484 000208E1 485 000208E5 + 486 000208F2 489 000208FB 490 0002090C 491 00020914 + 492 00020918 493 00020925 495 0002092E 496 00020945 + 499 0002094E 501 00020957 502 0002095F 503 00020973 + 504 0002097E 505 00020983 506 00020987 507 00020994 + 509 0002099D 511 000209B1 512 000209B9 513 000209C1 + 514 000209CA 515 000209D2 516 000209E4 517 000209E8 + 518 000209F5 521 000209FE 522 00020A11 525 00020A1A + 526 00020A2B 527 00020A2F 528 00020A3C 530 00020A45 + 531 00020A56 532 00020A5A 533 00020A67 535 00020A70 + 536 00020A7B 537 00020A7F 538 00020A8C 542 00020A95 + 543 00020A9B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020AB0-00020B95, line/addr pairs = 20 + + 547 00020AB0 552 00020AC7 554 00020AD0 555 00020AD6 + 556 00020AE5 558 00020AF7 559 00020AFF 560 00020B09 + 561 00020B14 564 00020B23 570 00020B27 571 00020B2F + 572 00020B36 573 00020B4C 574 00020B52 576 00020B5E + 578 00020B68 579 00020B73 554 00020B7B 582 00020B8D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020BA0-00020C91, line/addr pairs = 18 + + 586 00020BA0 592 00020BAD 593 00020BB1 596 00020BBD + 597 00020BC8 598 00020BCC 599 00020BD9 602 00020BE5 + 604 00020BFF 605 00020C0B 606 00020C1B 607 00020C28 + 608 00020C35 609 00020C47 610 00020C5D 611 00020C77 + 613 00020C82 614 00020C88 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020CA0-00020CB8, line/addr pairs = 2 + + 618 00020CA0 620 00020CB5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020CC0-00020CD8, line/addr pairs = 2 + + 624 00020CC0 626 00020CD5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020CE0-00020F56, line/addr pairs = 43 + + 630 00020CE0 635 00020CF1 636 00020CFF 638 00020D1B + 639 00020D1F 657 00020D26 659 00020D6C 660 00020D7A + 661 00020D84 662 00020DB0 663 00020DD0 665 00020DDB + 666 00020DE8 667 00020DF0 668 00020DF8 669 00020E03 + 670 00020E0B 671 00020E16 672 00020E2C 674 00020E34 + 675 00020E3C 676 00020E40 677 00020E4D 680 00020E5A + 681 00020E74 682 00020E7A 683 00020E8D 686 00020E9A + 687 00020EA7 688 00020EAF 689 00020EB7 690 00020EC2 + 691 00020ECA 692 00020ED5 693 00020EEB 695 00020EF3 + 696 00020EFB 697 00020EFF 698 00020F0C 701 00020F19 + 702 00020F33 703 00020F39 708 00020F4E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00020F60-00021064, line/addr pairs = 33 + + 712 00020F60 715 00020F68 716 00020F6A 717 00020F7A + 718 00020F80 719 00020F84 720 00020F91 725 00020F95 + 726 00020F9C 727 00020FAC 728 00020FB2 729 00020FB6 + 730 00020FC3 735 00020FC7 736 00020FCE 737 00020FDE + 738 00020FE4 739 00020FE8 740 00020FF5 745 00020FF9 + 746 00021000 747 00021010 748 00021016 749 0002101A + 750 00021027 755 0002102B 756 00021032 757 00021042 + 758 00021048 759 0002104C 760 00021059 765 0002105D + 766 00021063 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021070-0002112E, line/addr pairs = 19 + + 770 00021070 775 0002107D 776 00021084 777 0002108C + 778 000210A3 779 000210B2 780 000210BA 781 000210CA + 783 000210D1 784 000210D6 785 000210DA 786 000210E7 + 789 000210F1 790 000210FF 791 00021103 792 00021110 + 795 0002111A 796 00021122 797 00021127 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021130-000211DD, line/addr pairs = 22 + + 801 00021130 802 0002113E 803 00021141 805 0002114A + 806 0002114C 809 00021155 810 00021160 813 00021166 + 814 0002116F 815 0002117A 818 00021180 819 0002118D + 836 000211A3 837 000211A9 822 000211AC 823 000211AD + 824 000211B5 825 000211B7 827 000211C0 828 000211C2 + 831 000211CC 832 000211D7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:000211E0-0002122B, line/addr pairs = 9 + + 841 000211E0 844 000211E3 845 000211F8 846 000211FC + 847 0002120F 848 00021213 849 00021220 854 00021224 + 855 0002122A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021230-00021275, line/addr pairs = 9 + + 859 00021230 862 00021233 863 0002123F 864 00021243 + 865 00021259 866 0002125D 867 0002126A 872 0002126E + 873 00021274 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021280-000212B6, line/addr pairs = 8 + + 877 00021280 880 00021287 881 0002128B 882 00021293 + 883 00021297 885 000212A4 888 000212AE 889 000212B4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:000212C0-00021309, line/addr pairs = 8 + + 893 000212C0 896 000212CA 897 000212CC 898 000212D6 + 899 000212E1 900 000212E5 902 000212FB 904 00021305 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021310-00021A52, line/addr pairs = 97 + + 908 00021310 1112 0002132C 1097 000216D7 937 000216DF + 1062 000216E7 961 000216EF 913 000216F7 917 000216FF + 919 00021707 929 0002170F 933 00021717 939 0002171F + 949 00021727 951 0002172F 953 00021737 957 0002173F + 959 00021747 963 0002174F 968 00021757 970 0002175F + 972 00021767 975 0002176F 979 00021777 984 0002177F + 991 00021787 986 0002178F 989 00021797 1003 0002179F + 1005 000217A7 1007 000217AF 1012 000217B7 1045 000217BF + 1017 000217C7 1024 000217CF 1026 000217D7 1028 000217DF + 1031 000217E7 1034 000217EF 1036 000217F7 1041 000217FF + 1053 00021807 1055 0002180F 1058 00021817 1060 0002181F + 1064 00021827 1066 0002182F 1068 00021837 1072 0002183F + 927 00021847 1078 0002184F 1080 00021857 1082 0002185F + 1084 00021867 1087 0002186F 1089 00021877 1091 0002187F + 1093 00021887 1095 0002188F 1099 00021897 1101 0002189F + 1103 000218A7 1106 000218AF 1110 000218B7 955 000218BF + 931 000218C7 998 000218CF 1074 000218D7 1000 000218DF + 1076 000218E7 925 000218EF 981 000218F7 1010 000218FF + 945 00021907 942 0002190F 1019 00021917 1021 0002191F + 915 00021927 977 0002192F 995 00021937 1070 0002193F + 1015 00021947 966 0002194F 1038 00021957 935 0002195F + 1043 00021967 923 0002196F 1048 00021977 921 0002197F + 993 00021987 1108 0002198F 947 00021997 1050 0002199F + 911 000219A7 1114 000219AC 1118 00021A40 1119 00021A43 + 1120 00021A4E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None), 0001:00021A60-00021A84, line/addr pairs = 6 + + 1124 00021A60 1125 00021A67 1126 00021A69 1129 00021A72 + 1130 00021A79 1132 00021A82 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E3D0-0001E443, line/addr pairs = 4 + + 14 0001E3D0 16 0001E407 18 0001E413 19 0001E423 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E470-0001E4CB, line/addr pairs = 3 + + 23 0001E470 24 0001E49B 25 0001E4A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E4D0-0001E539, line/addr pairs = 9 + + 39 0001E4D0 40 0001E4D8 52 0001E4DB 54 0001E508 + 55 0001E522 57 0001E527 58 0001E52B 60 0001E532 + 61 0001E534 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E540-0001E5B9, line/addr pairs = 13 + + 65 0001E540 66 0001E54A 67 0001E54E 68 0001E554 + 71 0001E55E 72 0001E568 73 0001E56E 76 0001E578 + 77 0001E582 81 0001E59C 82 0001E5A5 84 0001E5AF + 85 0001E5B6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E5C0-0001E633, line/addr pairs = 16 + + 89 0001E5C0 90 0001E5CB 91 0001E5CD 92 0001E5D3 + 94 0001E5DD 95 0001E5E7 96 0001E5ED 98 0001E5F7 + 99 0001E5FE 103 0001E600 104 0001E606 106 0001E617 + 107 0001E61B 108 0001E628 111 0001E62C 112 0001E632 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E640-0001E8C6, line/addr pairs = 51 + + 116 0001E640 117 0001E652 118 0001E658 119 0001E65E + 120 0001E66D 123 0001E67A 126 0001E68D 128 0001E697 + 129 0001E69F 130 0001E6B0 133 0001E6BD 136 0001E6D0 + 138 0001E6DA 139 0001E6E2 140 0001E6F3 141 0001E700 + 143 0001E70C 145 0001E71E 146 0001E722 147 0001E72F + 150 0001E73C 152 0001E760 153 0001E77C 154 0001E78D + 157 0001E79A 158 0001E7A8 161 0001E7AE 162 0001E7B5 + 164 0001E7D2 165 0001E7DA 167 0001E7E2 168 0001E7E6 + 169 0001E807 167 0001E80B 172 0001E811 174 0001E825 + 175 0001E827 178 0001E832 179 0001E83B 180 0001E84A + 182 0001E85E 183 0001E869 185 0001E86F 186 0001E871 + 187 0001E892 185 0001E896 190 0001E899 192 0001E8A9 + 193 0001E8AB 197 0001E8B6 198 0001E8BC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E8D0-0001E91E, line/addr pairs = 12 + + 202 0001E8D0 206 0001E8DA 207 0001E8E0 208 0001E8E2 + 210 0001E8E4 211 0001E8E9 212 0001E8F1 213 0001E8F6 + 214 0001E8FE 215 0001E903 216 0001E90B 220 0001E91B + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001E920-0001EBD8, line/addr pairs = 44 + + 224 0001E920 225 0001E947 226 0001E94B 227 0001E95E + 228 0001E968 231 0001E972 234 0001E99D 235 0001E9C5 + 237 0001E9CE 238 0001E9D4 240 0001EA0F 241 0001EA14 + 242 0001EA23 245 0001EA43 247 0001EA5E 249 0001EA62 + 252 0001EA7D 254 0001EA84 255 0001EA88 256 0001EAA1 + 257 0001EAB1 254 0001EAC1 266 0001EAD1 268 0001EAE7 + 269 0001EAED 271 0001EAF1 272 0001EB03 273 0001EB09 + 271 0001EB0E 276 0001EB1C 279 0001EB34 280 0001EB3A + 281 0001EB3E 283 0001EB41 284 0001EB43 286 0001EB49 + 287 0001EB53 288 0001EB5C 293 0001EB68 234 0001EB6E + 296 0001EB78 297 0001EB84 298 0001EB98 301 0001EBAD + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001EBE0-0001EBF2, line/addr pairs = 3 + + 306 0001EBE0 307 0001EBE3 308 0001EBEE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001EC00-0001EC2B, line/addr pairs = 4 + + 312 0001EC00 313 0001EC0A 314 0001EC0E 317 0001EC28 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001EC30-0001ED2E, line/addr pairs = 8 + + 321 0001EC30 322 0001ECB1 323 0001ECB3 324 0001ECB6 + 325 0001ECB9 327 0001ECBE 328 0001ECD1 321 0001ECEC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001EEB0-0001EF52, line/addr pairs = 8 + + 332 0001EEB0 333 0001EED7 334 0001EEDB 335 0001EEE4 + 336 0001EEEE 337 0001EEF7 338 0001EF01 339 0001EF0A + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001EF60-0001F04B, line/addr pairs = 15 + + 343 0001EF60 344 0001EF6A 345 0001EF6C 349 0001EF7C + 350 0001EF83 354 0001EF93 355 0001EF9B 356 0001EFA9 + 359 0001EFBF 360 0001EFC7 361 0001EFE7 364 0001F002 + 365 0001F00A 366 0001F02A 368 0001F045 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F050-0001F086, line/addr pairs = 4 + + 378 0001F050 379 0001F056 381 0001F05F 382 0001F07F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F090-0001F0C4, line/addr pairs = 8 + + 386 0001F090 387 0001F097 388 0001F099 389 0001F0A2 + 390 0001F0A9 391 0001F0B2 392 0001F0B9 393 0001F0C2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F0D0-0001F1E2, line/addr pairs = 19 + + 403 0001F0D0 404 0001F0DA 405 0001F0DC 409 0001F0EC + 410 0001F0F3 414 0001F103 415 0001F10B 416 0001F119 + 419 0001F12F 420 0001F137 421 0001F157 424 0001F172 + 425 0001F17A 426 0001F19A 429 0001F1B5 430 0001F1BD + 432 0001F1C7 433 0001F1CF 434 0001F1DC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F1F0-0001F27D, line/addr pairs = 4 + + 438 0001F1F0 439 0001F246 440 0001F24C 438 0001F25D + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F280-0001F498, line/addr pairs = 33 + + 444 0001F280 445 0001F2A6 446 0001F2BA 450 0001F313 + 451 0001F31E 453 0001F32A 456 0001F32C 457 0001F336 + 458 0001F33C 460 0001F349 461 0001F34D 462 0001F363 + 463 0001F368 464 0001F380 465 0001F387 467 0001F390 + 468 0001F394 469 0001F3AA 470 0001F3AF 472 0001F3C0 + 473 0001F3C4 474 0001F3DA 475 0001F3DC 477 0001F3EB + 478 0001F3EF 479 0001F405 480 0001F407 481 0001F410 + 488 0001F441 489 0001F447 491 0001F450 492 0001F456 + 494 0001F45F + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F6D0-0001F6FF, line/addr pairs = 4 + + 499 0001F6D0 504 0001F6DE 507 0001F6F1 508 0001F6F8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F700-0001F711, line/addr pairs = 2 + + 512 0001F700 515 0001F70E + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F720-0001F745, line/addr pairs = 2 + + 526 0001F720 529 0001F742 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F750-0001F7DA, line/addr pairs = 5 + + 533 0001F750 535 0001F763 537 0001F76B 539 0001F777 + 541 0001F7D2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F7E0-0001F8C9, line/addr pairs = 5 + + 551 0001F7E0 552 0001F806 553 0001F822 554 0001F88E + 555 0001F890 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F8D0-0001F914, line/addr pairs = 10 + + 560 0001F8D0 561 0001F8D3 562 0001F8D9 564 0001F8E0 + 565 0001F8EB 566 0001F8EF 567 0001F90A 570 0001F90C + 571 0001F910 572 0001F913 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F920-0001F93B, line/addr pairs = 2 + + 577 0001F920 580 0001F938 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F940-0001F948, line/addr pairs = 2 + + 584 0001F940 589 0001F945 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001F950-0001FA03, line/addr pairs = 16 + + 593 0001F950 594 0001F956 595 0001F95C 614 0001F962 + 597 0001F968 600 0001F98C 601 0001F9A0 614 0001F9A6 + 603 0001F9AC 604 0001F9B3 614 0001F9B9 607 0001F9BF + 609 0001F9E3 611 0001F9EA 612 0001F9EE 614 0001F9FC + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FA10-0001FB1B, line/addr pairs = 17 + + 618 0001FA10 619 0001FA1B 620 0001FA1D 635 0001FA2C + 637 0001FA51 638 0001FA5F 642 0001FA70 643 0001FA7D + 644 0001FA87 648 0001FAA8 651 0001FAD6 643 0001FADB + 654 0001FAE9 637 0001FAEE 657 0001FAFD 658 0001FB02 + 639 0001FB0C + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FB20-0001FBB6, line/addr pairs = 15 + + 662 0001FB20 663 0001FB2A 664 0001FB34 666 0001FB39 + 667 0001FB4E 669 0001FB56 670 0001FB60 674 0001FB64 + 669 0001FB69 666 0001FB73 678 0001FB82 671 0001FB90 + 672 0001FB9F 681 0001FBA8 682 0001FBAE + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FBC0-0001FC7F, line/addr pairs = 20 + + 686 0001FBC0 687 0001FBC9 688 0001FBCF 690 0001FBDC + 691 0001FBE2 693 0001FBEF 694 0001FBF6 698 0001FBFD + 699 0001FC09 702 0001FC19 703 0001FC23 707 0001FC2D + 708 0001FC53 710 0001FC55 702 0001FC5A 713 0001FC64 + 698 0001FC69 700 0001FC6B 704 0001FC75 717 0001FC78 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FC80-0001FC86, line/addr pairs = 2 + + 721 0001FC80 723 0001FC85 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FC90-0001FC96, line/addr pairs = 2 + + 727 0001FC90 729 0001FC95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FCA0-0001FDF4, line/addr pairs = 16 + + 733 0001FCA0 734 0001FCA8 735 0001FCAE 737 0001FCBA + 738 0001FCD2 740 0001FCD7 741 0001FCE1 743 0001FD1E + 744 0001FD36 746 0001FD3B 747 0001FD43 752 0001FD89 + 753 0001FD93 754 0001FDCF 759 0001FDDA 760 0001FDF0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FE00-0001FE5D, line/addr pairs = 9 + + 764 0001FE00 765 0001FE0E 766 0001FE16 767 0001FE22 + 768 0001FE33 766 0001FE3D 773 0001FE4B 774 0001FE4E + 769 0001FE54 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None), 0001:0001FE60-0001FEDB, line/addr pairs = 11 + + 778 0001FE60 779 0001FE63 780 0001FE69 782 0001FE71 + 783 0001FE7B 785 0001FE9D 786 0001FEB2 785 0001FEBD + 790 0001FECB 791 0001FED0 787 0001FED3 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0001ED30-0001EE04, line/addr pairs = 6 + + 140 0001ED30 141 0001ED80 142 0001ED9A 140 0001EDA0 + 141 0001EDE4 142 0001EDFE + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0001F610-0001F664, line/addr pairs = 6 + + 207 0001F610 208 0001F621 210 0001F63F 211 0001F646 + 212 0001F653 213 0001F65A + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0001F670-0001F6CA, line/addr pairs = 6 + + 207 0001F670 208 0001F67E 210 0001F699 211 0001F6A3 + 212 0001F6B9 213 0001F6C0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None), 0001:0001E2E0-0001E311, line/addr pairs = 9 + + 14 0001E2E0 17 0001E2EA 18 0001E2EC 19 0001E2F8 + 20 0001E2FB 25 0001E2FD 23 0001E2FF 24 0001E306 + 25 0001E30D + + C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None), 0001:0001E320-0001E337, line/addr pairs = 6 + + 29 0001E320 30 0001E323 31 0001E327 32 0001E32E + 35 0001E32F 36 0001E336 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None), 0001:0001E340-0001E398, line/addr pairs = 12 + + 40 0001E340 44 0001E344 45 0001E348 46 0001E354 + 47 0001E359 48 0001E36D 49 0001E371 50 0001E37F + 53 0001E388 56 0001E38D 57 0001E38F 59 0001E396 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None), 0001:0001E3A0-0001E3B7, line/addr pairs = 6 + + 63 0001E3A0 64 0001E3A3 65 0001E3A7 66 0001E3AE + 69 0001E3AF 70 0001E3B6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None), 0001:0001E3C0-0001E3CB, line/addr pairs = 2 + + 74 0001E3C0 76 0001E3CA + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp (None), 0001:0001E270-0001E273, line/addr pairs = 2 + + 7 0001E270 9 0001E272 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp (None), 0001:0001E280-0001E297, line/addr pairs = 4 + + 13 0001E280 14 0001E286 15 0001E28E 16 0001E296 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp (None), 0001:0001E2C0-0001E2C7, line/addr pairs = 2 + + 20 0001E2C0 21 0001E2C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp (None), 0001:0001E2D0-0001E2D5, line/addr pairs = 2 + + 25 0001E2D0 27 0001E2D2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001DF80-0001DFF2, line/addr pairs = 5 + + 10 0001DF80 12 0001DFBA 14 0001DFC1 16 0001DFC8 + 17 0001DFCF + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E110-0001E111, line/addr pairs = 1 + + 21 0001E110 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E120-0001E126, line/addr pairs = 2 + + 27 0001E120 29 0001E123 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E130-0001E13A, line/addr pairs = 2 + + 33 0001E130 35 0001E137 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E140-0001E1A6, line/addr pairs = 4 + + 39 0001E140 40 0001E16E 41 0001E172 42 0001E17B + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E1B0-0001E1B9, line/addr pairs = 3 + + 46 0001E1B0 48 0001E1B6 49 0001E1B8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E1C0-0001E1C5, line/addr pairs = 2 + + 53 0001E1C0 56 0001E1C2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E1D0-0001E1E5, line/addr pairs = 6 + + 60 0001E1D0 62 0001E1D6 63 0001E1DA 65 0001E1DF + 69 0001E1E0 72 0001E1E2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E1F0-0001E1F5, line/addr pairs = 2 + + 76 0001E1F0 79 0001E1F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E200-0001E203, line/addr pairs = 1 + + 83 0001E200 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E210-0001E23B, line/addr pairs = 5 + + 89 0001E210 90 0001E213 91 0001E218 93 0001E225 + 95 0001E239 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E240-0001E241, line/addr pairs = 1 + + 99 0001E240 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E250-0001E253, line/addr pairs = 1 + + 105 0001E250 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None), 0001:0001E260-0001E265, line/addr pairs = 2 + + 111 0001E260 114 0001E262 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.h (None), 0001:0001E000-0001E006, line/addr pairs = 2 + + 16 0001E000 19 0001E005 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.h (None), 0001:0001E010-0001E0E6, line/addr pairs = 3 + + 23 0001E010 24 0001E018 25 0001E0E2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D2A0-0001D2B9, line/addr pairs = 5 + + 13 0001D2A0 14 0001D2A3 15 0001D2A7 16 0001D2B4 + 17 0001D2B6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D2C0-0001D3A1, line/addr pairs = 4 + + 21 0001D2C0 22 0001D337 23 0001D343 21 0001D35B + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D5A0-0001D617, line/addr pairs = 3 + + 27 0001D5A0 28 0001D5CC 29 0001D5D8 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D620-0001D7E9, line/addr pairs = 26 + + 33 0001D620 34 0001D644 36 0001D654 37 0001D65B + 38 0001D661 39 0001D66C 42 0001D699 48 0001D6A8 + 49 0001D6B1 50 0001D6CB 52 0001D6DA 54 0001D6DD + 56 0001D6F5 57 0001D701 59 0001D711 60 0001D71E + 61 0001D72E 62 0001D735 65 0001D739 66 0001D73E + 67 0001D747 69 0001D774 70 0001D77D 73 0001D78D + 76 0001D794 39 0001D7BF + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D7F0-0001D961, line/addr pairs = 16 + + 81 0001D7F0 82 0001D814 84 0001D826 85 0001D82A + 87 0001D846 89 0001D86E 90 0001D878 91 0001D87E + 92 0001D89D 93 0001D8A0 94 0001D8AA 96 0001D8AC + 97 0001D8B1 99 0001D8B8 103 0001D8CC 105 0001D94F + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001D9C0-0001DA46, line/addr pairs = 7 + + 109 0001D9C0 110 0001D9E2 112 0001D9EA 114 0001DA03 + 115 0001DA0B 117 0001DA0D 120 0001DA15 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DA50-0001DC0D, line/addr pairs = 25 + + 125 0001DA50 126 0001DA7C 130 0001DA82 131 0001DA8B + 132 0001DA94 131 0001DA9F 133 0001DAAA 139 0001DADA + 141 0001DAEA 143 0001DB1B 144 0001DB5A 145 0001DB6D + 148 0001DB7F 150 0001DB88 151 0001DB8E 153 0001DB99 + 154 0001DBA2 156 0001DBA9 141 0001DBAB 156 0001DBCD + 157 0001DBD8 158 0001DBEC 159 0001DBEF 160 0001DBF5 + 163 0001DBFC + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DC10-0001DD9E, line/addr pairs = 23 + + 167 0001DC10 168 0001DC30 169 0001DC36 171 0001DC41 + 172 0001DC48 171 0001DC50 199 0001DC59 201 0001DC67 + 173 0001DC79 175 0001DC9B 176 0001DCA1 179 0001DCAA + 181 0001DCF3 182 0001DD25 184 0001DD38 185 0001DD3E + 187 0001DD45 188 0001DD4F 189 0001DD58 190 0001DD5E + 191 0001DD64 195 0001DD6B 179 0001DD7C + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DDA0-0001DE1F, line/addr pairs = 12 + + 205 0001DDA0 206 0001DDA9 207 0001DDB5 206 0001DDBE + 208 0001DDCF 209 0001DDE0 210 0001DDE4 212 0001DDEC + 213 0001DE04 214 0001DE0B 215 0001DE11 220 0001DE18 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DE20-0001DE82, line/addr pairs = 9 + + 224 0001DE20 225 0001DE30 226 0001DE3B 228 0001DE3E + 229 0001DE48 230 0001DE50 232 0001DE5D 228 0001DE6B + 235 0001DE7A + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DE90-0001DED2, line/addr pairs = 7 + + 239 0001DE90 240 0001DE9B 242 0001DEA4 243 0001DEAE + 244 0001DEB6 242 0001DEBB 246 0001DECA + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None), 0001:0001DEE0-0001DF2C, line/addr pairs = 8 + + 250 0001DEE0 251 0001DEEA 252 0001DEF8 253 0001DF00 + 251 0001DF09 257 0001DF18 258 0001DF1B 254 0001DF22 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0001D3B0-0001D414, line/addr pairs = 3 + + 140 0001D3B0 141 0001D3F4 142 0001D40E + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.h (None), 0001:0001D420-0001D426, line/addr pairs = 2 + + 21 0001D420 24 0001D425 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.h (None), 0001:0001D430-0001D4D2, line/addr pairs = 3 + + 28 0001D430 29 0001D438 30 0001D4CE + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:0001DF30-0001DF73, line/addr pairs = 9 + + 185 0001DF30 186 0001DF3E 187 0001DF42 189 0001DF49 + 191 0001DF4E 192 0001DF54 194 0001DF5C 196 0001DF62 + 198 0001DF6E + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001CB60-0001CBCF, line/addr pairs = 4 + + 16 0001CB60 18 0001CB95 19 0001CB98 20 0001CBA5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001CCE0-0001CD46, line/addr pairs = 3 + + 24 0001CCE0 25 0001CD0B 26 0001CD1B + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001CD50-0001CF95, line/addr pairs = 30 + + 30 0001CD50 31 0001CD74 35 0001CD8E 38 0001CDC1 + 47 0001CDD0 48 0001CE00 50 0001CE09 52 0001CE21 + 53 0001CE2F 55 0001CE41 56 0001CE4E 57 0001CE5E + 58 0001CE65 60 0001CE74 61 0001CE7D 62 0001CE8D + 63 0001CE9D 65 0001CEAD 69 0001CEB1 70 0001CEB6 + 71 0001CEBF 73 0001CEEC 74 0001CEF5 77 0001CF05 + 78 0001CF0B 79 0001CF19 80 0001CF34 83 0001CF39 + 86 0001CF40 35 0001CF6B + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001CFA0-0001D127, line/addr pairs = 28 + + 91 0001CFA0 92 0001CFC4 94 0001CFCE 116 0001CFD7 + 118 0001CFEF 119 0001D00B 120 0001D015 121 0001D01C + 116 0001D020 125 0001D02D 126 0001D038 127 0001D04C + 128 0001D051 129 0001D06C 95 0001D082 96 0001D08B + 97 0001D090 100 0001D097 101 0001D0A9 95 0001D0AD + 105 0001D0BA 106 0001D0C3 107 0001D0C7 109 0001D0D0 + 110 0001D0DB 111 0001D0E9 109 0001D0ED 132 0001D0F9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001D130-0001D1F8, line/addr pairs = 12 + + 136 0001D130 137 0001D152 139 0001D164 156 0001D166 + 141 0001D173 144 0001D184 158 0001D18B 150 0001D1A8 + 151 0001D1B4 150 0001D1BF 143 0001D1CE 159 0001D1E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None), 0001:0001D200-0001D291, line/addr pairs = 7 + + 163 0001D200 164 0001D222 166 0001D234 167 0001D241 + 168 0001D24A 167 0001D255 171 0001D262 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.h (None), 0001:0001CBD0-0001CBD6, line/addr pairs = 2 + + 17 0001CBD0 20 0001CBD5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.h (None), 0001:0001CBE0-0001CCB6, line/addr pairs = 3 + + 24 0001CBE0 25 0001CBE8 26 0001CCB2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C2D0-0001C2D8, line/addr pairs = 2 + + 15 0001C2D0 17 0001C2D5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C2E0-0001C34D, line/addr pairs = 5 + + 21 0001C2E0 23 0001C314 25 0001C31A 27 0001C320 + 28 0001C32D + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C370-0001C3F9, line/addr pairs = 8 + + 32 0001C370 33 0001C39E 34 0001C3A2 35 0001C3AB + 36 0001C3B5 37 0001C3BE 38 0001C3C8 39 0001C3CE + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C400-0001C4F7, line/addr pairs = 26 + + 43 0001C400 45 0001C40B 47 0001C41F 48 0001C42A + 49 0001C432 50 0001C43E 51 0001C44A 52 0001C44D + 53 0001C453 55 0001C457 56 0001C468 57 0001C46E + 58 0001C474 59 0001C47D 60 0001C48A 61 0001C495 + 63 0001C49B 64 0001C4AA 65 0001C4BA 71 0001C4BC + 72 0001C4C3 73 0001C4C7 77 0001C4D7 78 0001C4DE + 83 0001C4EE 84 0001C4F1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C500-0001C593, line/addr pairs = 16 + + 88 0001C500 92 0001C50B 94 0001C521 95 0001C52C + 96 0001C530 97 0001C53C 98 0001C540 99 0001C54F + 100 0001C552 105 0001C558 106 0001C55F 107 0001C563 + 111 0001C573 112 0001C57A 117 0001C58A 118 0001C58D + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C5A0-0001C66D, line/addr pairs = 16 + + 122 0001C5A0 125 0001C5AB 126 0001C5BB 127 0001C5C9 + 128 0001C5E7 129 0001C5EB 130 0001C5FE 132 0001C629 + 133 0001C62C 138 0001C632 139 0001C639 140 0001C63D + 144 0001C64D 145 0001C654 150 0001C664 151 0001C667 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C670-0001C6BE, line/addr pairs = 8 + + 155 0001C670 158 0001C67C 160 0001C69B 161 0001C6A9 + 163 0001C6AB 164 0001C6AF 166 0001C6B6 167 0001C6B9 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C6C0-0001C7CF, line/addr pairs = 25 + + 171 0001C6C0 176 0001C6CE 177 0001C6E7 178 0001C701 + 179 0001C711 180 0001C715 181 0001C729 182 0001C737 + 183 0001C741 184 0001C74D 185 0001C751 186 0001C761 + 187 0001C768 188 0001C76B 189 0001C771 190 0001C77A + 192 0001C780 194 0001C78F 201 0001C791 202 0001C798 + 203 0001C79C 207 0001C7AC 208 0001C7B3 213 0001C7C3 + 214 0001C7C6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C7D0-0001C7D3, line/addr pairs = 1 + + 218 0001C7D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C7E0-0001C7E3, line/addr pairs = 1 + + 223 0001C7E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C7F0-0001C8A6, line/addr pairs = 12 + + 228 0001C7F0 232 0001C814 234 0001C824 236 0001C858 + 237 0001C85C 241 0001C875 243 0001C87D 251 0001C881 + 254 0001C883 255 0001C88B 256 0001C893 260 0001C895 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C8B0-0001C8F6, line/addr pairs = 9 + + 264 0001C8B0 266 0001C8B8 268 0001C8C5 269 0001C8D5 + 271 0001C8D9 272 0001C8DC 273 0001C8E0 275 0001C8E6 + 278 0001C8F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001C900-0001CA03, line/addr pairs = 20 + + 282 0001C900 284 0001C928 286 0001C92A 288 0001C92F + 326 0001C931 327 0001C939 329 0001C941 330 0001C946 + 292 0001C956 294 0001C966 295 0001C978 296 0001C97C + 298 0001C982 299 0001C989 302 0001C98B 304 0001C9C0 + 307 0001C9C8 312 0001C9D1 311 0001C9D8 320 0001C9E1 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001CA10-0001CA71, line/addr pairs = 5 + + 342 0001CA10 344 0001CA14 345 0001CA21 362 0001CA37 + 363 0001CA6D + + C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None), 0001:0001CA80-0001CB5F, line/addr pairs = 12 + + 367 0001CA80 371 0001CAAB 372 0001CAAD 392 0001CABD + 376 0001CAD1 377 0001CAEF 379 0001CAFE 383 0001CB13 + 384 0001CB1E 385 0001CB24 386 0001CB2A 389 0001CB34 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001B750-0001B82E, line/addr pairs = 7 + + 15 0001B750 16 0001B7A8 17 0001B7B4 19 0001B7C0 + 20 0001B7CD 21 0001B7D5 24 0001B7DE + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001B8E0-0001B9D1, line/addr pairs = 12 + + 28 0001B8E0 29 0001B90B 30 0001B91B 31 0001B92B + 32 0001B933 36 0001B9A0 37 0001B9A8 39 0001B9B0 + 40 0001B9B4 41 0001B9C6 44 0001B9CA 45 0001B9CC + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001B9E0-0001BA23, line/addr pairs = 7 + + 49 0001B9E0 50 0001B9E9 51 0001B9EE 55 0001B9F3 + 56 0001BA11 60 0001BA1B 61 0001BA1D + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BA30-0001BAFF, line/addr pairs = 11 + + 65 0001BA30 66 0001BA58 67 0001BA5A 68 0001BA7C + 69 0001BA94 70 0001BA9D 71 0001BAAF 72 0001BAC2 + 73 0001BAD0 74 0001BAD5 68 0001BAE2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BB00-0001BBFE, line/addr pairs = 20 + + 78 0001BB00 90 0001BB15 81 0001BB18 82 0001BB1D + 84 0001BB20 85 0001BB25 87 0001BB28 88 0001BB2D + 92 0001BB2F 96 0001BB30 97 0001BB58 98 0001BB60 + 101 0001BB72 102 0001BB7F 103 0001BB8B 104 0001BB94 + 105 0001BBAF 106 0001BBB9 107 0001BBD0 109 0001BBDD + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BC00-0001BD88, line/addr pairs = 26 + + 113 0001BC00 116 0001BC26 117 0001BC37 118 0001BC3F + 119 0001BC4B 120 0001BC50 122 0001BC53 123 0001BC58 + 124 0001BC65 125 0001BC79 127 0001BC7F 129 0001BC8E + 131 0001BC99 132 0001BCAF 133 0001BCB7 134 0001BCD4 + 135 0001BCDE 136 0001BCF3 140 0001BD00 141 0001BD1A + 145 0001BD2C 146 0001BD36 147 0001BD3E 148 0001BD4F + 150 0001BD56 153 0001BD65 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BD90-0001BE15, line/addr pairs = 22 + + 157 0001BD90 159 0001BD99 160 0001BD9D 161 0001BDA2 + 162 0001BDAF 163 0001BDB1 166 0001BDB7 167 0001BDBB + 168 0001BDC1 169 0001BDC5 171 0001BDC7 173 0001BDD3 + 174 0001BDD7 175 0001BDDD 176 0001BDE1 178 0001BDE3 + 180 0001BDEF 181 0001BDF8 182 0001BDFD 185 0001BE07 + 186 0001BE09 188 0001BE13 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BE20-0001BE52, line/addr pairs = 7 + + 192 0001BE20 201 0001BE31 195 0001BE36 196 0001BE3C + 198 0001BE44 199 0001BE4A 202 0001BE4F + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BE60-0001BEAE, line/addr pairs = 7 + + 206 0001BE60 208 0001BE6A 209 0001BE76 210 0001BE88 + 211 0001BE96 212 0001BEA5 213 0001BEAA + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BEB0-0001BF98, line/addr pairs = 10 + + 217 0001BEB0 218 0001BED7 219 0001BEDF 220 0001BEF0 + 221 0001BF08 230 0001BF22 223 0001BF39 224 0001BF44 + 225 0001BF4E 226 0001BF77 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001BFA0-0001C117, line/addr pairs = 23 + + 234 0001BFA0 235 0001BFC6 236 0001BFC8 238 0001BFCF + 239 0001BFEE 240 0001C005 241 0001C02C 242 0001C03A + 244 0001C04E 245 0001C05C 246 0001C06E 247 0001C074 + 249 0001C07C 251 0001C087 252 0001C0A5 253 0001C0B4 + 255 0001C0B8 256 0001C0BE 257 0001C0CD 259 0001C0D3 + 240 0001C0E4 261 0001C101 262 0001C106 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001C120-0001C218, line/addr pairs = 14 + + 266 0001C120 267 0001C145 268 0001C14D 270 0001C156 + 271 0001C16A 272 0001C182 274 0001C18F 275 0001C198 + 277 0001C1A1 278 0001C1B5 279 0001C1D4 280 0001C1E3 + 281 0001C1EA 282 0001C1F4 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001C220-0001C253, line/addr pairs = 7 + + 286 0001C220 287 0001C227 288 0001C22C 289 0001C235 + 291 0001C23F 293 0001C249 294 0001C252 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001C260-0001C295, line/addr pairs = 8 + + 298 0001C260 299 0001C267 300 0001C26E 301 0001C275 + 302 0001C277 303 0001C280 305 0001C28A 308 0001C294 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001C2A0-0001C2B8, line/addr pairs = 5 + + 312 0001C2A0 314 0001C2A9 315 0001C2AE 316 0001C2B0 + 319 0001C2B5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None), 0001:0001C2C0-0001C2CF, line/addr pairs = 2 + + 323 0001C2C0 326 0001C2CE + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.h (None), 0001:0001B830-0001B836, line/addr pairs = 2 + + 23 0001B830 26 0001B835 + + C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.h (None), 0001:0001B840-0001B8B2, line/addr pairs = 3 + + 30 0001B840 31 0001B848 32 0001B8AE + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxautolocker.cpp (None), 0001:0001B720-0001B738, line/addr pairs = 5 + + 5 0001B720 6 0001B723 7 0001B72B 8 0001B72D + 9 0001B732 + + C:\Users\Christian\Downloads\isle\LEGO1\mxautolocker.cpp (None), 0001:0001B740-0001B74C, line/addr pairs = 4 + + 13 0001B740 14 0001B742 15 0001B746 16 0001B74B + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.cpp (None), 0001:0001B700-0001B704, line/addr pairs = 2 + + 9 0001B700 11 0001B703 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.cpp (None), 0001:0001B710-0001B71A, line/addr pairs = 2 + + 15 0001B710 17 0001B717 + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B520-0001B524, line/addr pairs = 2 + + 10 0001B520 12 0001B523 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B530-0001B594, line/addr pairs = 3 + + 16 0001B530 17 0001B565 18 0001B56A + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B5C0-0001B61D, line/addr pairs = 3 + + 22 0001B5C0 23 0001B5ED 24 0001B5F2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B620-0001B628, line/addr pairs = 2 + + 28 0001B620 30 0001B627 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B630-0001B665, line/addr pairs = 8 + + 34 0001B630 35 0001B637 36 0001B63E 37 0001B646 + 38 0001B64B 40 0001B652 41 0001B659 42 0001B660 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B670-0001B6B4, line/addr pairs = 12 + + 46 0001B670 47 0001B675 48 0001B67F 50 0001B681 + 51 0001B685 54 0001B691 57 0001B697 58 0001B69B + 60 0001B6A2 61 0001B6A6 63 0001B6AE 64 0001B6B0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B6C0-0001B6C8, line/addr pairs = 2 + + 68 0001B6C0 70 0001B6C7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None), 0001:0001B6D0-0001B6F1, line/addr pairs = 5 + + 74 0001B6D0 75 0001B6D7 76 0001B6DE 77 0001B6E7 + 78 0001B6EC + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.cpp (None), 0001:0001B500-0001B505, line/addr pairs = 2 + + 10 0001B500 12 0001B504 + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.cpp (None), 0001:0001B510-0001B520, line/addr pairs = 4 + + 16 0001B510 17 0001B514 18 0001B519 19 0001B51F + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001ACA0-0001ACD8, line/addr pairs = 7 + + 7 0001ACA0 8 0001ACA3 11 0001ACAC 14 0001ACB5 + 15 0001ACC6 16 0001ACCB 17 0001ACD2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001ACE0-0001ACE5, line/addr pairs = 1 + + 21 0001ACE0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001ACF0-0001AE2B, line/addr pairs = 9 + + 27 0001ACF0 28 0001AD10 31 0001AD1A 34 0001AD27 + 39 0001AD34 41 0001ADF6 42 0001ADF9 43 0001AE01 + 39 0001AE11 + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001AED0-0001AF17, line/addr pairs = 9 + + 47 0001AED0 48 0001AED7 49 0001AED9 51 0001AEDE + 52 0001AEF9 53 0001AF05 56 0001AF0C 58 0001AF10 + 59 0001AF12 + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001AF20-0001B182, line/addr pairs = 16 + + 63 0001AF20 64 0001AF3E 65 0001AF4D 75 0001AF96 + 70 0001AFA5 71 0001AFAA 73 0001AFAC 75 0001AFB1 + 77 0001AFBA 78 0001B016 80 0001B01E 83 0001B048 + 80 0001B04D 83 0001B055 85 0001B05F 88 0001B13B + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None), 0001:0001B4F0-0001B500, line/addr pairs = 4 + + 93 0001B4F0 95 0001B4F3 96 0001B4F8 97 0001B4FE + + C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.h (None), 0001:0001AE30-0001AE75, line/addr pairs = 2 + + 39 0001AE30 41 0001AE72 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:0001B190-0001B1DB, line/addr pairs = 9 + + 86 0001B190 87 0001B193 88 0001B1A1 89 0001B1A7 + 90 0001B1B2 91 0001B1C4 93 0001B1C5 94 0001B1D0 + 95 0001B1D7 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:0001B1E0-0001B48A, line/addr pairs = 40 + + 448 0001B1E0 449 0001B205 450 0001B21E 451 0001B224 + 453 0001B227 461 0001B26C 462 0001B279 463 0001B27D + 454 0001B281 455 0001B28A 458 0001B28E 459 0001B292 + 460 0001B294 456 0001B296 457 0001B29D 464 0001B2A3 + 465 0001B2AA 466 0001B2CC 467 0001B2D4 468 0001B2D9 + 474 0001B2E8 475 0001B2EC 476 0001B2EE 477 0001B31F + 478 0001B329 479 0001B33C 482 0001B392 488 0001B39E + 489 0001B3A2 490 0001B3A4 491 0001B3DA 492 0001B3E4 + 493 0001B3F7 483 0001B43F 484 0001B445 485 0001B44C + 486 0001B458 487 0001B45D 494 0001B469 495 0001B480 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None), 0001:0001B490-0001B4F0, line/addr pairs = 7 + + 497 0001B490 499 0001B499 500 0001B4A5 503 0001B4D9 + 501 0001B4DF 502 0001B4E2 504 0001B4EA + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp (None), 0001:0001A600-0001A71E, line/addr pairs = 2 + + 8 0001A600 9 0001A622 + + C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp (None), 0001:0001A7B0-0001A8DC, line/addr pairs = 2 + + 14 0001A7B0 15 0001A7D2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp (None), 0001:0001A9C0-0001AAEC, line/addr pairs = 2 + + 20 0001A9C0 26 0001A9E2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp (None), 0001:0001AB60-0001AC28, line/addr pairs = 2 + + 31 0001AB60 32 0001AB82 + + C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.h (None), 0001:0001A8E0-0001A949, line/addr pairs = 5 + + 38 0001A8E0 39 0001A90F 42 0001A914 43 0001A918 + 44 0001A91E + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.cpp (None), 0001:0001A370-0001A3F2, line/addr pairs = 4 + + 7 0001A370 10 0001A3B9 11 0001A3C0 12 0001A3CA + + C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.h (None), 0001:0001A400-0001A406, line/addr pairs = 2 + + 15 0001A400 18 0001A405 + + C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.h (None), 0001:0001A410-0001A582, line/addr pairs = 3 + + 22 0001A410 23 0001A418 24 0001A57E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:00019CC0-00019CCA, line/addr pairs = 2 + + 19 00019CC0 21 00019CC9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:00019CD0-00019D34, line/addr pairs = 3 + + 25 00019CD0 26 00019D05 27 00019D0C + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:00019E80-00019ECF, line/addr pairs = 2 + + 31 00019E80 33 00019EAB + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:00019ED0-0001A0AD, line/addr pairs = 28 + + 37 00019ED0 38 00019EF4 40 00019F04 41 00019F0B + 42 00019F11 43 00019F1C 46 00019F49 52 00019F58 + 53 00019F61 54 00019F7B 56 00019F8A 58 00019F8D + 60 00019FA5 61 00019FB1 63 00019FC1 64 00019FCE + 65 00019FDE 66 00019FE5 67 00019FEC 71 00019FF0 + 72 00019FF5 73 00019FFE 75 0001A02B 76 0001A034 + 79 0001A044 81 0001A051 84 0001A058 43 0001A083 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:0001A260-0001A2C2, line/addr pairs = 9 + + 89 0001A260 90 0001A268 91 0001A272 92 0001A276 + 93 0001A27F 94 0001A292 97 0001A2A5 98 0001A2AC + 100 0001A2C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:0001A2D0-0001A347, line/addr pairs = 11 + + 104 0001A2D0 105 0001A2DF 112 0001A2EB 113 0001A2FE + 114 0001A303 112 0001A30A 107 0001A320 108 0001A326 + 119 0001A32D 120 0001A33B 121 0001A342 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:0001A350-0001A353, line/addr pairs = 1 + + 125 0001A350 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None), 0001:0001A360-0001A361, line/addr pairs = 1 + + 130 0001A360 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.h (None), 0001:00019D40-00019D46, line/addr pairs = 2 + + 17 00019D40 20 00019D45 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.h (None), 0001:00019D50-00019E5A, line/addr pairs = 3 + + 24 00019D50 25 00019D58 26 00019E56 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:0001A0B0-0001A0D6, line/addr pairs = 6 + + 375 0001A0B0 376 0001A0BE 377 0001A0C2 380 0001A0CB + 379 0001A0CE 380 0001A0D3 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00018FC0-00019248, line/addr pairs = 5 + + 16 00018FC0 18 00019148 20 00019157 21 00019163 + 16 00019179 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019950-00019953, line/addr pairs = 2 + + 25 00019950 27 00019952 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019960-00019963, line/addr pairs = 2 + + 31 00019960 33 00019962 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019970-00019A0C, line/addr pairs = 2 + + 37 00019970 39 000199A3 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019A10-00019A15, line/addr pairs = 2 + + 43 00019A10 46 00019A12 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019A20-00019A6B, line/addr pairs = 10 + + 50 00019A20 52 00019A26 63 00019A37 64 00019A39 + 55 00019A3E 63 00019A4E 64 00019A50 60 00019A55 + 63 00019A64 64 00019A66 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019A70-00019A71, line/addr pairs = 1 + + 68 00019A70 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019A80-00019A83, line/addr pairs = 1 + + 74 00019A80 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019A90-00019A95, line/addr pairs = 2 + + 79 00019A90 82 00019A92 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019AA0-00019AA3, line/addr pairs = 1 + + 86 00019AA0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019AB0-00019AB3, line/addr pairs = 1 + + 92 00019AB0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019AC0-00019AC3, line/addr pairs = 1 + + 97 00019AC0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019AD0-00019B26, line/addr pairs = 11 + + 103 00019AD0 104 00019AD3 105 00019ADC 107 00019AEE + 108 00019AF5 109 00019B01 110 00019B06 112 00019B0D + 115 00019B18 118 00019B1F 119 00019B25 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B30-00019B33, line/addr pairs = 2 + + 123 00019B30 125 00019B32 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B40-00019B52, line/addr pairs = 3 + + 129 00019B40 130 00019B43 131 00019B50 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B60-00019B65, line/addr pairs = 2 + + 135 00019B60 137 00019B62 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B70-00019B75, line/addr pairs = 2 + + 141 00019B70 143 00019B72 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B80-00019B81, line/addr pairs = 1 + + 147 00019B80 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None), 0001:00019B90-00019B91, line/addr pairs = 1 + + 152 00019B90 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontrollerlist.h (None), 0001:00019250-0001926A, line/addr pairs = 4 + + 19 00019250 21 0001925E 20 00019261 21 00019267 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00019270-00019271, line/addr pairs = 1 + + 15 00019270 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00019280-000192CF, line/addr pairs = 1 + + 19 00019280 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000192D0-000192D5, line/addr pairs = 1 + + 20 000192D0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000195B0-00019615, line/addr pairs = 3 + + 10 000195B0 12 000195E4 13 000195EB + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00019620-00019621, line/addr pairs = 1 + + 15 00019620 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00019630-0001967F, line/addr pairs = 1 + + 19 00019630 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00019680-00019685, line/addr pairs = 1 + + 20 00019680 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:000192E0-000192EF, line/addr pairs = 1 + + 77 000192E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00019BA0-00019C2B, line/addr pairs = 3 + + 139 00019BA0 140 00019BCD 141 00019C05 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00019C30-00019CBB, line/addr pairs = 3 + + 139 00019C30 140 00019C5D 141 00019C95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenterlist.h (None), 0001:00019590-000195AA, line/addr pairs = 4 + + 18 00019590 20 0001959E 19 000195A1 20 000195A7 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00017900-000179EB, line/addr pairs = 16 + + 16 00017900 18 00017936 19 0001793C 20 00017948 + 22 00017951 23 00017953 24 00017959 25 0001795F + 26 0001796B 28 00017977 30 00017983 32 0001798F + 34 0001799B 36 000179A7 38 000179B3 40 000179C2 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00017A20-00017A8E, line/addr pairs = 4 + + 44 00017A20 45 00017A4B 46 00017A50 47 00017A63 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00017A90-00017B15, line/addr pairs = 4 + + 51 00017A90 52 00017AB3 53 00017AB5 56 00017AFC + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00017B20-000180EB, line/addr pairs = 64 + + 60 00017B20 64 00017B55 66 00017B60 67 00017B82 + 68 00017BA5 70 00017BEC 71 00017BF1 72 00017BFA + 75 00017C10 76 00017C12 77 00017C3F 79 00017C42 + 81 00017C48 87 00017C5A 90 00017C69 93 00017C7C + 94 00017C80 95 00017C8B 96 00017C8F 97 00017CA6 + 101 00017CAB 102 00017CAF 103 00017CB7 104 00017CBF + 107 00017CD0 109 00017CE4 110 00017CF9 112 00017D0B + 114 00017D11 126 00017D2C 138 00017D86 141 00017DB2 + 143 00017DBC 146 00017DC2 148 00017DEE 152 00017DF4 + 153 00017E08 154 00017E1A 155 00017E1D 156 00017E26 + 157 00017E2F 158 00017E3F 159 00017E49 160 00017E5C + 161 00017E68 163 00017E78 168 00017E88 171 00017E97 + 172 00017EB6 173 00017F02 175 00017F10 176 00017F31 + 178 00017F3A 179 00017F49 181 00017F58 182 00017FE5 + 183 00017FEC 184 00018054 186 0001805A 189 00018061 + 190 00018067 191 00018074 194 0001807B 66 000180D1 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018490-000184D7, line/addr pairs = 8 + + 199 00018490 202 0001849B 203 0001849D 204 000184A4 + 209 000184AE 210 000184BB 211 000184C2 212 000184D5 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:000184E0-00018521, line/addr pairs = 7 + + 216 000184E0 219 000184F4 221 000184FB 222 00018502 + 224 0001850C 225 00018514 226 0001851E + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018530-00018971, line/addr pairs = 43 + + 230 00018530 232 00018558 233 0001856B 235 00018573 + 236 000185D3 237 000185E1 238 000185ED 240 000185F6 + 242 00018601 245 00018609 247 0001863C 248 00018664 + 250 00018670 251 00018685 253 00018693 254 000186B6 + 256 000186BB 257 000186DE 259 000186E3 260 00018713 + 262 0001871C 263 00018728 264 00018736 267 00018747 + 269 00018760 270 00018788 272 00018794 273 000187AA + 275 0001884E 276 0001885A 278 00018861 287 0001886D + 290 0001887C 293 0001889E 296 000188A6 297 000188B1 + 278 000188D0 280 000188DC 282 00018903 283 0001891F + 284 00018929 280 00018937 245 0001894F + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018C30-00018C31, line/addr pairs = 1 + + 327 00018C30 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018C40-00018C43, line/addr pairs = 1 + + 333 00018C40 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018C50-00018C8A, line/addr pairs = 7 + + 339 00018C50 340 00018C54 341 00018C68 342 00018C6E + 343 00018C7D 346 00018C83 347 00018C86 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018C90-00018C9F, line/addr pairs = 2 + + 351 00018C90 353 00018C9C + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018CA0-00018DC8, line/addr pairs = 24 + + 357 00018CA0 358 00018CA8 359 00018CB8 361 00018CC0 + 371 00018CC6 372 00018CD1 375 00018CD5 376 00018CE3 + 377 00018CF3 385 00018CFD 387 00018D28 388 00018D2D + 389 00018D34 391 00018D3D 392 00018D44 362 00018D4D + 363 00018D5F 365 00018D78 367 00018D81 368 00018D88 + 396 00018D95 397 00018DA2 400 00018DBB 402 00018DBF + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018DD0-00018E4F, line/addr pairs = 9 + + 406 00018DD0 409 00018DE0 410 00018DF3 411 00018E06 + 412 00018E12 413 00018E17 414 00018E21 415 00018E2B + 416 00018E48 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018E50-00018EA6, line/addr pairs = 10 + + 420 00018E50 422 00018E5D 426 00018E60 427 00018E65 + 428 00018E69 430 00018E70 431 00018E78 434 00018E7F + 435 00018E88 437 00018EA2 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018EB0-00018EB3, line/addr pairs = 2 + + 441 00018EB0 444 00018EB2 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018EC0-00018EC3, line/addr pairs = 2 + + 448 00018EC0 451 00018EC2 + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None), 0001:00018ED0-00018F30, line/addr pairs = 13 + + 455 00018ED0 457 00018ED6 459 00018EDF 460 00018EE3 + 462 00018EEC 464 00018EF5 465 00018EFF 466 00018F08 + 468 00018F10 470 00018F18 471 00018F21 474 00018F2A + 475 00018F2D + + C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.h (None), 0001:000179F0-000179F7, line/addr pairs = 1 + + 34 000179F0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.h (None), 0001:000180F0-00018142, line/addr pairs = 1 + + 179 000180F0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:000181A0-00018210, line/addr pairs = 3 + + 140 000181A0 141 000181F0 142 0001820A + + C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d9d00.h (None), 0001:00018210-00018215, line/addr pairs = 1 + + 21 00018210 + + C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d9d00.h (None), 0001:00018220-0001823B, line/addr pairs = 1 + + 24 00018220 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00018240-00018241, line/addr pairs = 1 + + 15 00018240 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00018250-0001829F, line/addr pairs = 1 + + 19 00018250 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:000182A0-000182A5, line/addr pairs = 1 + + 20 000182A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00018980-000189E6, line/addr pairs = 3 + + 89 00018980 91 000189B7 92 000189BC + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00018F30-00018FBB, line/addr pairs = 3 + + 139 00018F30 140 00018F5D 141 00018F95 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.cpp (None), 0001:000176C0-000176D3, line/addr pairs = 4 + + 10 000176C0 13 000176C8 14 000176CC 15 000176D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.cpp (None), 0001:000176E0-0001779F, line/addr pairs = 7 + + 19 000176E0 20 0001774B 21 00017750 22 00017766 + 23 0001776A 25 00017770 19 00017785 + + C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.h (None), 0001:000177A0-000177A4, line/addr pairs = 2 + + 16 000177A0 18 000177A3 + + C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.h (None), 0001:000177B0-00017850, line/addr pairs = 3 + + 22 000177B0 23 000177B9 24 0001784C + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legounksavedatawriter.cpp (None), 0001:000175E0-000176B8, line/addr pairs = 16 + + 14 000175E0 19 000175EE 23 000175F7 25 00017609 + 27 0001761B 29 0001762D 31 0001763B 33 00017649 + 35 00017657 37 00017668 39 00017679 41 0001768A + 43 0001769B 44 000176AD 48 000176AF 49 000176B2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:00016FA0-000170C3, line/addr pairs = 42 + + 15 00016FA0 16 00016FA2 18 00016FAB 19 00016FBD + 20 00016FC2 40 00016FC4 20 00016FC7 21 00016FD9 + 22 00016FDE 40 00016FE0 22 00016FE3 23 00016FF5 + 24 00016FFA 40 00016FFC 24 00016FFF 25 00017011 + 26 00017016 40 00017018 26 0001701B 27 0001702D + 28 00017032 40 00017034 28 00017037 29 00017049 + 30 0001704E 40 00017050 30 00017053 31 00017065 + 32 0001706A 40 0001706C 32 0001706F 33 00017081 + 34 00017086 40 00017088 34 0001708B 35 0001709D + 36 000170A2 40 000170A4 36 000170A7 37 000170B9 + 39 000170BE 40 000170C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000170D0-00017304, line/addr pairs = 34 + + 47 000170D0 48 000170EE 49 0001710C 50 00017124 + 52 00017131 54 00017141 55 0001715A 56 0001716E + 58 0001717D 60 00017182 61 0001719B 62 000171AF + 64 000171BE 66 000171C3 67 000171C9 68 000171DB + 69 000171EA 71 000171EF 72 00017208 74 00017217 + 76 0001721C 77 00017226 78 00017233 80 00017242 + 82 00017244 83 00017263 84 00017265 85 0001726A + 88 00017273 91 00017283 94 00017293 97 000172A6 + 49 000172BF 97 000172DC + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:00017310-00017394, line/addr pairs = 6 + + 101 00017310 103 00017331 104 0001735C 105 00017362 + 106 0001736E 109 0001737E + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000173A0-000173A1, line/addr pairs = 1 + + 115 000173A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000173B0-00017584, line/addr pairs = 44 + + 120 000173B0 128 000173B7 130 000173BB 131 000173C5 + 133 000173D9 134 000173E7 135 000173F4 136 00017406 + 137 0001740C 138 00017412 140 00017416 141 00017432 + 142 00017439 143 00017458 144 00017462 145 0001746A + 147 00017477 148 00017489 149 0001748F 150 00017495 + 152 00017499 153 000174AB 154 000174B1 155 000174B7 + 157 000174BB 158 000174CD 159 000174D3 160 000174D9 + 162 000174DD 163 000174EF 164 000174F5 165 000174FB + 167 000174FF 168 00017511 169 00017517 170 0001751D + 172 00017521 173 00017533 174 00017539 175 0001753F + 177 00017543 178 00017555 179 0001755B 184 00017561 + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:00017590-00017593, line/addr pairs = 2 + + 188 00017590 190 00017592 + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000175A0-000175A1, line/addr pairs = 1 + + 194 000175A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000175B0-000175CC, line/addr pairs = 3 + + 200 000175B0 201 000175B5 202 000175CB + + C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None), 0001:000175D0-000175D3, line/addr pairs = 2 + + 206 000175D0 208 000175D2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp (None), 0001:00016ED0-00016F36, line/addr pairs = 3 + + 9 00016ED0 10 00016EFB 11 00016F0B + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp (None), 0001:00016F40-00016F54, line/addr pairs = 4 + + 15 00016F40 16 00016F43 17 00016F50 18 00016F53 + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp (None), 0001:00016F60-00016F66, line/addr pairs = 2 + + 22 00016F60 25 00016F65 + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp (None), 0001:00016F70-00016F99, line/addr pairs = 6 + + 29 00016F70 30 00016F76 31 00016F85 32 00016F8E + 35 00016F90 36 00016F97 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016790-00016832, line/addr pairs = 11 + + 24 00016790 26 000167A7 28 000167AF 29 000167B3 + 30 000167D9 31 000167DF 32 000167F3 33 00016807 + 34 00016814 38 00016824 39 00016828 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016840-00016925, line/addr pairs = 15 + + 45 00016840 46 0001684E 49 00016860 51 0001686C + 52 00016884 53 00016899 55 000168C2 56 000168C7 + 57 000168C9 59 000168D8 60 000168EF 61 000168F3 + 62 00016912 68 00016917 69 0001691A + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016930-0001693C, line/addr pairs = 2 + + 73 00016930 75 0001693B + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016940-0001694C, line/addr pairs = 2 + + 79 00016940 81 0001694B + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016950-000169BA, line/addr pairs = 3 + + 85 00016950 87 0001698B 88 00016990 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:000169C0-000169EA, line/addr pairs = 5 + + 92 000169C0 93 000169C8 94 000169E0 95 000169E4 + 96 000169E7 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:000169F0-00016A1A, line/addr pairs = 5 + + 100 000169F0 101 000169F8 102 00016A10 103 00016A14 + 104 00016A17 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016A20-00016A82, line/addr pairs = 2 + + 108 00016A20 110 00016A5A + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016AB0-00016B16, line/addr pairs = 4 + + 114 00016AB0 115 00016ADE 116 00016AE2 117 00016AEB + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016B20-00016B57, line/addr pairs = 5 + + 121 00016B20 122 00016B24 123 00016B28 125 00016B31 + 126 00016B54 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016B60-00016B97, line/addr pairs = 5 + + 130 00016B60 131 00016B64 132 00016B68 134 00016B71 + 135 00016B94 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016BA0-00016BFD, line/addr pairs = 14 + + 139 00016BA0 140 00016BA3 141 00016BA7 143 00016BAF + 144 00016BB8 145 00016BBD 147 00016BC5 148 00016BCB + 149 00016BCD 153 00016BD0 154 00016BD3 155 00016BD7 + 157 00016BDF 158 00016BFA + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016C00-00016D0E, line/addr pairs = 19 + + 162 00016C00 165 00016C0C 166 00016C10 168 00016C19 + 169 00016C1E 170 00016C27 171 00016C35 174 00016C5D + 175 00016C62 176 00016C68 177 00016C6C 180 00016C9E + 181 00016CA3 183 00016CAA 185 00016CDC 186 00016CF8 + 190 00016D00 192 00016D09 193 00016D0B + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None), 0001:00016D10-00016D1C, line/addr pairs = 3 + + 197 00016D10 199 00016D17 200 00016D19 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016DD0-00016DDE, line/addr pairs = 1 + + 373 00016DD0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016DF0-00016DFE, line/addr pairs = 1 + + 373 00016DF0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016E10-00016E1E, line/addr pairs = 1 + + 71 00016E10 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016E20-00016E2E, line/addr pairs = 1 + + 578 00016E20 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016E30-00016E3E, line/addr pairs = 1 + + 71 00016E30 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None), 0001:00016E40-00016E4E, line/addr pairs = 1 + + 578 00016E40 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocale (None), 0001:00016DE0-00016DEE, line/addr pairs = 1 + + 511 00016DE0 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocale (None), 0001:00016E00-00016E0E, line/addr pairs = 1 + + 511 00016E00 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None), 0001:00016600-0001664F, line/addr pairs = 2 + + 7 00016600 8 0001662B + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None), 0001:00016650-00016653, line/addr pairs = 2 + + 12 00016650 14 00016652 + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None), 0001:00016660-00016663, line/addr pairs = 2 + + 18 00016660 20 00016662 + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None), 0001:00016670-000166EE, line/addr pairs = 4 + + 24 00016670 25 00016692 26 0001669D 29 000166CD + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None), 0001:000166F0-00016781, line/addr pairs = 6 + + 33 000166F0 35 00016720 37 00016735 38 0001673D + 39 00016743 41 0001674D + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:00016460-000164C4, line/addr pairs = 3 + + 7 00016460 8 00016495 9 0001649A + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:000164F0-0001654D, line/addr pairs = 3 + + 13 000164F0 14 0001651D 15 00016522 + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:00016550-00016559, line/addr pairs = 2 + + 19 00016550 22 00016558 + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:00016560-00016563, line/addr pairs = 1 + + 26 00016560 + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:00016570-00016582, line/addr pairs = 2 + + 31 00016570 33 0001657F + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:00016590-00016598, line/addr pairs = 2 + + 37 00016590 39 00016597 + + C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None), 0001:000165A0-000165FE, line/addr pairs = 4 + + 43 000165A0 44 000165BE 45 000165C6 47 000165CF + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00015DD0-00015DDD, line/addr pairs = 2 + + 42 00015DD0 44 00015DDA + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00015DE0-00015DE3, line/addr pairs = 1 + + 48 00015DE0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00015DF0-00015DF3, line/addr pairs = 1 + + 53 00015DF0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00015E00-00015E0A, line/addr pairs = 2 + + 58 00015E00 60 00015E09 + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00015E10-00015FDC, line/addr pairs = 4 + + 64 00015E10 65 00015F9D 66 00015FA4 64 00015FBA + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00016330-00016383, line/addr pairs = 8 + + 76 00016330 78 00016334 79 0001633C 81 00016343 + 83 0001634C 84 0001635D 87 00016361 88 0001637E + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00016390-00016423, line/addr pairs = 11 + + 92 00016390 95 00016398 97 000163A1 105 000163B5 + 107 000163BD 108 000163C0 98 000163D4 99 000163E6 + 100 000163F4 101 00016402 102 0001641F + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00016430-0001643A, line/addr pairs = 2 + + 112 00016430 114 00016439 + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00016440-00016443, line/addr pairs = 1 + + 118 00016440 + + C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None), 0001:00016450-00016451, line/addr pairs = 1 + + 125 00016450 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None), 0001:00015FE0-00015FF5, line/addr pairs = 1 + + 190 00015FE0 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/matrix.h (None), 0001:00016000-0001600F, line/addr pairs = 1 + + 79 00016000 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/roi.h (None), 0001:00016010-00016021, line/addr pairs = 3 + + 81 00016010 82 00016018 84 0001601E + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/roi.h (None), 0001:00016030-00016037, line/addr pairs = 2 + + 86 00016030 90 00016036 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/orientableroi.h (None), 0001:00016060-00016065, line/addr pairs = 1 + + 26 00016060 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/viewroi.h (None), 0001:00016190-00016215, line/addr pairs = 4 + + 25 00016190 27 000161BE 28 000161DA 29 000161EA + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015AE0-00015AE5, line/addr pairs = 2 + + 9 00015AE0 11 00015AE2 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015AF0-00015AF3, line/addr pairs = 1 + + 15 00015AF0 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015B00-00015B03, line/addr pairs = 2 + + 21 00015B00 23 00015B02 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015B10-00015BD2, line/addr pairs = 11 + + 27 00015B10 29 00015B47 31 00015B53 33 00015B5F + 35 00015B6B 37 00015B77 39 00015B83 40 00015B8A + 42 00015B96 43 00015B9C 44 00015BA8 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015D20-00015D25, line/addr pairs = 2 + + 48 00015D20 50 00015D22 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015D30-00015D35, line/addr pairs = 2 + + 54 00015D30 56 00015D32 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015D40-00015D43, line/addr pairs = 2 + + 60 00015D40 62 00015D42 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015D50-00015D55, line/addr pairs = 2 + + 66 00015D50 69 00015D52 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015D60-00015DAF, line/addr pairs = 2 + + 73 00015D60 75 00015D8B + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015DB0-00015DB5, line/addr pairs = 2 + + 79 00015DB0 82 00015DB2 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None), 0001:00015DC0-00015DC3, line/addr pairs = 1 + + 86 00015DC0 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.h (None), 0001:00015BE0-00015BE6, line/addr pairs = 2 + + 20 00015BE0 23 00015BE5 + + C:\Users\Christian\Downloads\isle\LEGO1\legorace.h (None), 0001:00015BF0-00015CFA, line/addr pairs = 3 + + 27 00015BF0 28 00015BF8 29 00015CF6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp (None), 0001:000159D0-00015A34, line/addr pairs = 3 + + 5 000159D0 6 00015A05 7 00015A0A + + C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp (None), 0001:00015A70-00015ABF, line/addr pairs = 2 + + 11 00015A70 13 00015A9B + + C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp (None), 0001:00015AC0-00015AC1, line/addr pairs = 1 + + 17 00015AC0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp (None), 0001:00015AD0-00015AD3, line/addr pairs = 2 + + 23 00015AD0 27 00015AD2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.h (None), 0001:00015A40-00015A46, line/addr pairs = 2 + + 17 00015A40 20 00015A45 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.cpp (None), 0001:00015890-0001590B, line/addr pairs = 3 + + 7 00015890 8 000158D1 9 000158D6 + + C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.cpp (None), 0001:00015940-000159A7, line/addr pairs = 2 + + 13 00015940 14 00015969 + + C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.cpp (None), 0001:000159B0-000159C2, line/addr pairs = 3 + + 18 000159B0 21 000159B8 23 000159C1 + + C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.h (None), 0001:00015910-00015916, line/addr pairs = 2 + + 18 00015910 21 00015915 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015530-000155F9, line/addr pairs = 4 + + 11 00015530 12 000155A4 13 000155A9 11 000155CC + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015770-00015771, line/addr pairs = 1 + + 17 00015770 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015780-000157A6, line/addr pairs = 5 + + 22 00015780 25 00015789 26 00015792 30 000157A1 + 31 000157A3 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:000157B0-00015842, line/addr pairs = 9 + + 35 000157B0 36 000157CE 37 000157D7 40 000157E7 + 41 000157FD 42 00015805 44 00015811 45 00015817 + 46 00015821 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015850-00015858, line/addr pairs = 2 + + 50 00015850 52 00015857 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015860-00015879, line/addr pairs = 4 + + 56 00015860 57 00015866 60 00015870 61 00015877 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None), 0001:00015880-00015881, line/addr pairs = 1 + + 65 00015880 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.h (None), 0001:00015600-00015606, line/addr pairs = 2 + + 14 00015600 17 00015605 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.h (None), 0001:00015610-000156E6, line/addr pairs = 3 + + 21 00015610 22 00015618 23 000156E2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.cpp (None), 0001:000153C0-0001541D, line/addr pairs = 2 + + 5 000153C0 7 000153F5 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.cpp (None), 0001:000154D0-0001551F, line/addr pairs = 2 + + 11 000154D0 13 000154FB + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.cpp (None), 0001:00015520-00015523, line/addr pairs = 2 + + 17 00015520 20 00015522 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.h (None), 0001:00015420-00015426, line/addr pairs = 2 + + 17 00015420 20 00015425 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.h (None), 0001:00015430-000154A2, line/addr pairs = 3 + + 24 00015430 25 00015438 26 0001549E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015230-0001528D, line/addr pairs = 2 + + 7 00015230 9 00015265 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:000152B0-000152FF, line/addr pairs = 2 + + 13 000152B0 15 000152DB + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015300-00015301, line/addr pairs = 1 + + 19 00015300 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015310-00015311, line/addr pairs = 1 + + 25 00015310 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015320-00015321, line/addr pairs = 1 + + 31 00015320 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015330-00015331, line/addr pairs = 1 + + 37 00015330 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015340-00015343, line/addr pairs = 1 + + 43 00015340 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015350-00015353, line/addr pairs = 1 + + 49 00015350 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015360-00015361, line/addr pairs = 1 + + 55 00015360 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015370-00015371, line/addr pairs = 1 + + 61 00015370 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015380-00015381, line/addr pairs = 1 + + 67 00015380 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:00015390-00015391, line/addr pairs = 1 + + 73 00015390 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:000153A0-000153A1, line/addr pairs = 1 + + 79 000153A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None), 0001:000153B0-000153B1, line/addr pairs = 1 + + 85 000153B0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.cpp (None), 0001:00015210-00015224, line/addr pairs = 2 + + 11 00015210 14 00015223 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014CC0-00014D92, line/addr pairs = 4 + + 12 00014CC0 13 00014D43 14 00014D48 12 00014D5D + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014EE0-00014F3D, line/addr pairs = 3 + + 18 00014EE0 19 00014F0D 20 00014F12 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014F40-00014F48, line/addr pairs = 2 + + 24 00014F40 26 00014F47 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014F50-00014F8E, line/addr pairs = 9 + + 30 00014F50 31 00014F57 32 00014F61 33 00014F65 + 35 00014F6B 36 00014F72 37 00014F79 38 00014F80 + 40 00014F89 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014F90-00014F98, line/addr pairs = 2 + + 44 00014F90 46 00014F97 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00014FA0-0001509F, line/addr pairs = 12 + + 50 00014FA0 54 00014FCC 55 00014FE4 56 00014FF1 + 57 00015009 58 00015040 59 00015042 64 0001504E + 65 00015052 66 00015058 69 0001505F 64 0001508D + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None), 0001:00015190-00015207, line/addr pairs = 14 + + 74 00015190 75 00015196 76 000151A0 77 000151A7 + 78 000151B5 79 000151B8 80 000151C8 81 000151CF + 82 000151D7 83 000151E1 85 000151E9 86 000151ED + 88 000151FD 91 00015202 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.h (None), 0001:00014DA0-00014DA6, line/addr pairs = 2 + + 17 00014DA0 20 00014DA5 + + C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.h (None), 0001:00014DB0-00014EBA, line/addr pairs = 3 + + 24 00014DB0 25 00014DB8 26 00014EB6 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.h (None), 0001:000150A0-000150EF, line/addr pairs = 1 + + 67 000150A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legostream.h (None), 0001:000150F0-000150F7, line/addr pairs = 1 + + 21 000150F0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000128F0-000128F5, line/addr pairs = 1 + + 122 000128F0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012900-00012909, line/addr pairs = 3 + + 128 00012900 129 00012905 130 00012908 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012910-00012919, line/addr pairs = 3 + + 134 00012910 135 00012915 136 00012918 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012920-0001292C, line/addr pairs = 3 + + 140 00012920 141 00012925 142 0001292B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012930-00012939, line/addr pairs = 3 + + 146 00012930 147 00012935 148 00012938 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012940-0001294F, line/addr pairs = 3 + + 152 00012940 153 00012945 154 0001294E + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012950-0001295C, line/addr pairs = 3 + + 158 00012950 159 00012955 160 0001295B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012960-0001296C, line/addr pairs = 3 + + 164 00012960 165 00012965 166 0001296B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012970-0001297C, line/addr pairs = 3 + + 170 00012970 171 00012975 172 0001297B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012980-0001298C, line/addr pairs = 3 + + 176 00012980 177 00012985 178 0001298B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012990-00012999, line/addr pairs = 3 + + 182 00012990 183 00012995 184 00012998 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000129A0-000129AC, line/addr pairs = 3 + + 188 000129A0 189 000129A5 190 000129AB + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000129B0-000129BC, line/addr pairs = 3 + + 194 000129B0 195 000129B5 196 000129BB + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000129C0-000129C9, line/addr pairs = 3 + + 200 000129C0 201 000129C5 202 000129C8 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000129D0-000129D1, line/addr pairs = 1 + + 206 000129D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000129E0-000129F7, line/addr pairs = 2 + + 212 000129E0 214 000129F6 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012A00-00012A0B, line/addr pairs = 3 + + 218 00012A00 219 00012A05 220 00012A0A + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012A10-00012A1C, line/addr pairs = 3 + + 224 00012A10 225 00012A15 226 00012A1B + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012A20-00012AF1, line/addr pairs = 13 + + 230 00012A20 232 00012A3E 233 00012A5E 234 00012A76 + 236 00012A84 237 00012A9A 233 00012AB3 241 00012AD0 + 242 00012AD1 243 00012ADE 244 00012AE8 245 00012AEE + 249 00012AF0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012B00-00012B1B, line/addr pairs = 3 + + 257 00012B00 258 00012B05 259 00012B1A + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012B20-00012B23, line/addr pairs = 2 + + 263 00012B20 266 00012B22 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00012B30-0001330E, line/addr pairs = 30 + + 270 00012B30 271 00012B4D 272 00012B88 273 00012BC1 + 274 00012BFA 275 00012C33 276 00012C6C 277 00012CA5 + 278 00012CDE 279 00012D17 280 00012D50 281 00012D89 + 282 00012DC2 283 00012DFB 284 00012E34 285 00012E6D + 286 00012EA6 287 00012EDF 288 00012F18 289 00012F51 + 290 00012F8A 291 00012FC3 292 00012FFC 293 00013035 + 294 0001306E 295 000130A7 296 000130E0 297 00013119 + 298 00013152 299 0001318A + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00013310-00013679, line/addr pairs = 45 + + 303 00013310 304 00013311 305 0001332B 306 00013345 + 307 0001335F 308 00013379 309 00013393 310 000133AD + 311 000133C7 312 000133E1 313 000133FB 314 00013415 + 315 0001342F 316 00013449 317 00013463 318 0001347D + 319 00013497 320 000134B1 321 000134CB 322 000134E5 + 323 000134FF 324 00013519 325 00013533 326 0001354D + 327 00013567 328 00013581 329 0001359B 330 000135B5 + 331 000135CF 333 000135E9 335 000135F5 337 000135FF + 339 00013609 341 00013613 343 0001361D 345 00013627 + 347 00013631 349 0001363B 351 00013645 353 0001364F + 355 00013659 358 00013663 359 00013669 361 00013673 + 362 00013678 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00013680-00013688, line/addr pairs = 2 + + 366 00013680 368 00013687 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00013690-00013711, line/addr pairs = 3 + + 372 00013690 373 000136D4 374 000136D9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000137D0-00013842, line/addr pairs = 3 + + 378 000137D0 379 000137FB 380 00013800 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00013850-000138AB, line/addr pairs = 12 + + 384 00013850 385 00013853 386 00013858 388 00013860 + 390 00013866 392 0001386C 394 00013878 396 00013884 + 398 00013890 400 0001389C 401 000138A3 402 000138A9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000138B0-00013A71, line/addr pairs = 43 + + 406 000138B0 407 000138D2 409 000138E2 411 000138EE + 412 000138F2 413 000138F8 416 000138FF 417 00013909 + 421 00013923 422 0001392D 423 00013933 426 0001393D + 427 00013947 431 0001395A 432 00013964 433 0001396A + 436 00013974 437 0001397E 438 00013984 441 0001398E + 442 00013995 443 0001399B 446 000139A2 447 000139A9 + 448 000139AF 451 000139B6 452 000139BD 453 000139C3 + 456 000139CA 457 000139D1 458 000139D7 463 000139DE + 464 000139E8 466 000139ED 467 000139FD 470 00013A07 + 471 00013A11 472 00013A17 475 00013A21 476 00013A2C + 478 00013A31 480 00013A3F 481 00013A44 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00013A80-00014033, line/addr pairs = 42 + + 485 00013A80 487 00013AA4 489 00013AAC 490 00013AC0 + 491 00013AC7 492 00013ACA 494 00013ACF 495 00013B4B + 497 00013B6F 500 00013B7B 501 00013BAA 504 00013BAC + 505 00013BDA 506 00013BE9 507 00013BF6 512 00013C02 + 513 00013C33 514 00013C46 515 00013C53 519 00013C5A + 520 00013C8D 521 00013C9A 522 00013CA7 526 00013CAE + 527 00013CDA 529 00013D1D 530 00013D4A 531 00013D77 + 532 00013DA7 533 00013DD4 536 00013E70 538 00013EAF + 539 00013EB4 541 00013EB9 542 00013EEB 543 00013EF1 + 544 00013F25 545 00013F2B 546 00013F38 547 00013F41 + 548 00013F51 549 00013F58 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000144B0-0001452F, line/addr pairs = 4 + + 560 000144B0 561 000144CC 562 000144D1 563 0001450D + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014530-00014535, line/addr pairs = 1 + + 567 00014530 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014540-000145D3, line/addr pairs = 3 + + 573 00014540 574 00014561 579 000145D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000145E0-000145E5, line/addr pairs = 2 + + 585 000145E0 588 000145E2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000145F0-000145F3, line/addr pairs = 1 + + 592 000145F0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014600-000146A3, line/addr pairs = 9 + + 598 00014600 600 00014625 601 00014635 603 00014662 + 604 00014676 607 0001467C 608 00014682 611 0001468E + 612 00014694 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000146B0-000146CC, line/addr pairs = 4 + + 616 000146B0 617 000146B3 618 000146B7 619 000146C9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000146D0-00014703, line/addr pairs = 6 + + 623 000146D0 624 000146D8 625 000146E2 626 000146F5 + 629 000146FC 630 000146FF + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014710-00014736, line/addr pairs = 4 + + 634 00014710 636 00014719 639 0001471F 640 00014735 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014740-00014758, line/addr pairs = 4 + + 644 00014740 645 00014746 646 0001474A 647 00014757 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014760-0001479C, line/addr pairs = 6 + + 651 00014760 652 00014765 653 00014777 654 00014780 + 655 0001478C 657 00014797 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000147A0-000147E8, line/addr pairs = 8 + + 661 000147A0 665 000147A7 666 000147C0 669 000147C2 + 670 000147CE 672 000147D0 675 000147E0 676 000147E3 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000147F0-00014822, line/addr pairs = 8 + + 680 000147F0 682 000147F5 683 000147FF 687 00014800 + 689 00014805 690 0001480F 694 00014810 696 00014821 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014830-00014985, line/addr pairs = 23 + + 712 00014830 713 00014841 714 00014847 716 00014870 + 717 00014882 720 00014897 722 0001489F 725 000148C7 + 726 000148DB 727 000148DF 729 00014900 732 00014914 + 733 00014934 735 0001493C 736 0001494D 737 00014957 + 738 00014959 739 0001495F 740 00014961 741 0001496A + 730 00014971 723 0001497B 742 0001497E + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:000149C0-00014A1E, line/addr pairs = 10 + + 746 000149C0 747 000149C3 748 000149D2 749 000149D6 + 752 000149D9 754 000149FD 756 00014A05 757 00014A13 + 758 00014A17 760 00014A1A + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014A20-00014B32, line/addr pairs = 21 + + 764 00014A20 767 00014A39 768 00014A41 769 00014A54 + 771 00014A7A 772 00014A89 773 00014A95 775 00014AA7 + 791 00014AB3 792 00014AC4 776 00014ACA 777 00014AD7 + 778 00014AE8 779 00014AE9 780 00014AF0 782 00014B08 + 783 00014B0C 784 00014B11 787 00014B14 794 00014B19 + 796 00014B2A + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014B40-00014B4A, line/addr pairs = 2 + + 800 00014B40 802 00014B49 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None), 0001:00014B50-00014C22, line/addr pairs = 17 + + 806 00014B50 810 00014B5F 811 00014B74 814 00014B7C + 815 00014B9C 817 00014BB5 818 00014BC6 819 00014BCA + 822 00014BD2 823 00014BE4 828 00014BEC 829 00014BF2 + 830 00014C01 831 00014C0C 833 00014C12 836 00014C1A + 837 00014C1D + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.h (None), 0001:00013720-00013726, line/addr pairs = 2 + + 78 00013720 81 00013725 + + C:\Users\Christian\Downloads\isle\LEGO1\legoomni.h (None), 0001:00013730-000137A2, line/addr pairs = 3 + + 85 00013730 86 00013738 87 0001379E + + C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.h (None), 0001:00014040-00014047, line/addr pairs = 1 + + 49 00014040 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworldlist.h (None), 0001:000140E0-000140FA, line/addr pairs = 4 + + 26 000140E0 28 000140EE 27 000140F1 28 000140F7 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00014100-00014101, line/addr pairs = 1 + + 15 00014100 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00014110-0001415F, line/addr pairs = 1 + + 19 00014110 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00014160-00014165, line/addr pairs = 1 + + 20 00014160 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00014170-0001417F, line/addr pairs = 1 + + 77 00014170 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00014C30-00014CBB, line/addr pairs = 3 + + 139 00014C30 140 00014C5D 141 00014C95 + + C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None), 0001:000143D0-00014434, line/addr pairs = 3 + + 140 000143D0 141 00014414 142 0001442E + + C:\Users\Christian\Downloads\isle\LEGO1\mxrect32.h (None), 0001:00014990-000149BB, line/addr pairs = 7 + + 109 00014990 110 00014991 111 00014999 112 000149A3 + 113 000149AB 114 000149B6 115 000149B8 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoobjectfactory.cpp (None), 0001:0000A7A0-0000C537, line/addr pairs = 3 + + 108 0000A7A0 110 0000AF77 112 0000BD30 + + C:\Users\Christian\Downloads\isle\LEGO1\legoobjectfactory.cpp (None), 0001:0000CF20-0000F4A3, line/addr pairs = 4 + + 116 0000CF20 117 0000CF40 124 0000CF55 127 0000F472 + + C:\Users\Christian\Downloads\isle\LEGO1\legoobjectfactory.cpp (None), 0001:000128D0-000128E1, line/addr pairs = 2 + + 133 000128D0 135 000128DE + + C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.h (None), 0001:0000C540-0000C546, line/addr pairs = 2 + + 28 0000C540 31 0000C545 + + C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.h (None), 0001:0000C550-0000C5C2, line/addr pairs = 3 + + 35 0000C550 36 0000C558 37 0000C5BE + + C:\Users\Christian\Downloads\isle\LEGO1\realtime/vector.h (None), 0001:0000F4B0-0000F4C2, line/addr pairs = 1 + + 64 0000F4B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h (None), 0001:0000F4D0-0000F4D6, line/addr pairs = 2 + + 25 0000F4D0 28 0000F4D5 + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h (None), 0001:0000F4E0-0000F5B6, line/addr pairs = 3 + + 32 0000F4E0 33 0000F4E8 34 0000F5B2 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:0000F5C0-0000F5C6, line/addr pairs = 2 + + 17 0000F5C0 20 0000F5C5 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:0000F5D0-0000F6DA, line/addr pairs = 3 + + 24 0000F5D0 25 0000F5D8 26 0000F6D6 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopterstate.h (None), 0001:0000F6E0-0000F6E6, line/addr pairs = 2 + + 13 0000F6E0 16 0000F6E5 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopterstate.h (None), 0001:0000F6F0-0000F792, line/addr pairs = 3 + + 20 0000F6F0 21 0000F6F8 22 0000F78E + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dwavepresenter.h (None), 0001:0000F7A0-0000F7A6, line/addr pairs = 2 + + 12 0000F7A0 15 0000F7A5 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dwavepresenter.h (None), 0001:0000F7B0-0000F922, line/addr pairs = 3 + + 19 0000F7B0 20 0000F7B8 21 0000F91E + + C:\Users\Christian\Downloads\isle\LEGO1\legoraceactor.h (None), 0001:0000F930-0000F936, line/addr pairs = 2 + + 11 0000F930 14 0000F935 + + C:\Users\Christian\Downloads\isle\LEGO1\legoraceactor.h (None), 0001:0000F940-0000FA7E, line/addr pairs = 3 + + 18 0000F940 19 0000F948 20 0000FA7A + + C:\Users\Christian\Downloads\isle\LEGO1\legocarraceactor.h (None), 0001:0000FA80-0000FA86, line/addr pairs = 2 + + 11 0000FA80 14 0000FA85 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarraceactor.h (None), 0001:0000FA90-0000FC02, line/addr pairs = 3 + + 18 0000FA90 19 0000FA98 20 0000FBFE + + C:\Users\Christian\Downloads\isle\LEGO1\legoact2state.h (None), 0001:0000FC10-0000FC16, line/addr pairs = 2 + + 12 0000FC10 15 0000FC15 + + C:\Users\Christian\Downloads\isle\LEGO1\legoact2state.h (None), 0001:0000FC20-0000FCC2, line/addr pairs = 3 + + 19 0000FC20 20 0000FC28 21 0000FCBE + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.h (None), 0001:0000FCD0-0000FCD6, line/addr pairs = 2 + + 17 0000FCD0 20 0000FCD5 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.h (None), 0001:0000FCE0-0000FDB6, line/addr pairs = 3 + + 24 0000FCE0 25 0000FCE8 26 0000FDB2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactorpresenter.h (None), 0001:0000FE50-0000FE56, line/addr pairs = 2 + + 12 0000FE50 15 0000FE55 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactorpresenter.h (None), 0001:0000FE60-0000FF6A, line/addr pairs = 3 + + 19 0000FE60 20 0000FE68 21 0000FF66 + + C:\Users\Christian\Downloads\isle\LEGO1\legojetskiraceactor.h (None), 0001:0000FF70-0000FF76, line/addr pairs = 2 + + 11 0000FF70 14 0000FF75 + + C:\Users\Christian\Downloads\isle\LEGO1\legojetskiraceactor.h (None), 0001:0000FF80-00010126, line/addr pairs = 3 + + 18 0000FF80 19 0000FF88 20 00010122 + + C:\Users\Christian\Downloads\isle\LEGO1\legojetski.h (None), 0001:00010130-00010136, line/addr pairs = 2 + + 11 00010130 14 00010135 + + C:\Users\Christian\Downloads\isle\LEGO1\legojetski.h (None), 0001:00010140-0001031A, line/addr pairs = 3 + + 18 00010140 19 00010142 20 00010316 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.h (None), 0001:00010320-00010326, line/addr pairs = 2 + + 14 00010320 17 00010325 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.h (None), 0001:00010330-0001043A, line/addr pairs = 3 + + 21 00010330 22 00010338 23 00010436 + + C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.h (None), 0001:00010440-00010446, line/addr pairs = 2 + + 12 00010440 15 00010445 + + C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.h (None), 0001:00010450-00010526, line/addr pairs = 3 + + 19 00010450 20 00010458 21 00010522 + + C:\Users\Christian\Downloads\isle\LEGO1\legoracecar.h (None), 0001:00010530-00010536, line/addr pairs = 2 + + 13 00010530 16 00010535 + + C:\Users\Christian\Downloads\isle\LEGO1\legoracecar.h (None), 0001:00010540-000106E6, line/addr pairs = 3 + + 20 00010540 21 00010548 22 000106E2 + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.h (None), 0001:000106F0-000106F6, line/addr pairs = 2 + + 14 000106F0 17 000106F5 + + C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.h (None), 0001:00010700-000107D6, line/addr pairs = 3 + + 21 00010700 22 00010708 23 000107D2 + + C:\Users\Christian\Downloads\isle\LEGO1\isleactor.h (None), 0001:000107E0-000107E6, line/addr pairs = 2 + + 11 000107E0 14 000107E5 + + C:\Users\Christian\Downloads\isle\LEGO1\isleactor.h (None), 0001:000107F0-000108FA, line/addr pairs = 3 + + 18 000107F0 19 000107F8 20 000108F6 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.h (None), 0001:00010900-00010906, line/addr pairs = 2 + + 20 00010900 23 00010905 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.h (None), 0001:00010910-000109B2, line/addr pairs = 3 + + 27 00010910 28 00010918 29 000109AE + + C:\Users\Christian\Downloads\isle\LEGO1\scorestate.h (None), 0001:000109C0-000109C6, line/addr pairs = 2 + + 12 000109C0 15 000109C5 + + C:\Users\Christian\Downloads\isle\LEGO1\scorestate.h (None), 0001:000109D0-00010A72, line/addr pairs = 3 + + 19 000109D0 20 000109D8 21 00010A6E + + C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.h (None), 0001:00010A80-00010A86, line/addr pairs = 2 + + 14 00010A80 17 00010A85 + + C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.h (None), 0001:00010A90-00010B66, line/addr pairs = 3 + + 21 00010A90 22 00010A98 23 00010B62 + + C:\Users\Christian\Downloads\isle\LEGO1\act3state.h (None), 0001:00010B70-00010B76, line/addr pairs = 2 + + 14 00010B70 17 00010B75 + + C:\Users\Christian\Downloads\isle\LEGO1\act3state.h (None), 0001:00010B80-00010C22, line/addr pairs = 3 + + 21 00010B80 22 00010B88 23 00010C1E + + C:\Users\Christian\Downloads\isle\LEGO1\doors.h (None), 0001:00010CA0-00010CA6, line/addr pairs = 2 + + 12 00010CA0 15 00010CA5 + + C:\Users\Christian\Downloads\isle\LEGO1\doors.h (None), 0001:00010CB0-00010DEE, line/addr pairs = 3 + + 19 00010CB0 20 00010CB8 21 00010DEA + + C:\Users\Christian\Downloads\isle\LEGO1\act3actor.h (None), 0001:00010DF0-00010DF6, line/addr pairs = 2 + + 12 00010DF0 15 00010DF5 + + C:\Users\Christian\Downloads\isle\LEGO1\act3shark.h (None), 0001:00010E00-00010E06, line/addr pairs = 2 + + 11 00010E00 14 00010E05 + + C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.h (None), 0001:00010E10-00010E16, line/addr pairs = 2 + + 14 00010E10 17 00010E15 + + C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.h (None), 0001:00010E20-00010F2A, line/addr pairs = 3 + + 21 00010E20 22 00010E28 23 00010F26 + + C:\Users\Christian\Downloads\isle\LEGO1\bumpbouy.h (None), 0001:00010F30-00010F36, line/addr pairs = 2 + + 12 00010F30 15 00010F35 + + C:\Users\Christian\Downloads\isle\LEGO1\bumpbouy.h (None), 0001:00010F40-0001107E, line/addr pairs = 3 + + 19 00010F40 20 00010F48 21 0001107A + + C:\Users\Christian\Downloads\isle\LEGO1\carracestate.h (None), 0001:00011080-00011086, line/addr pairs = 2 + + 12 00011080 15 00011085 + + C:\Users\Christian\Downloads\isle\LEGO1\carracestate.h (None), 0001:00011090-00011166, line/addr pairs = 3 + + 19 00011090 20 00011098 21 00011162 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstationentity.h (None), 0001:00011170-00011176, line/addr pairs = 2 + + 12 00011170 15 00011175 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstationentity.h (None), 0001:00011180-0001128A, line/addr pairs = 3 + + 19 00011180 20 00011188 21 00011286 + + C:\Users\Christian\Downloads\isle\LEGO1\hospitalentity.h (None), 0001:00011290-00011296, line/addr pairs = 2 + + 12 00011290 15 00011295 + + C:\Users\Christian\Downloads\isle\LEGO1\hospitalentity.h (None), 0001:000112A0-000113AA, line/addr pairs = 3 + + 19 000112A0 20 000112A8 21 000113A6 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterentity.h (None), 0001:000113B0-000113B6, line/addr pairs = 2 + + 12 000113B0 15 000113B5 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterentity.h (None), 0001:000113C0-000114CA, line/addr pairs = 3 + + 19 000113C0 20 000113C8 21 000114C6 + + C:\Users\Christian\Downloads\isle\LEGO1\jetskiracestate.h (None), 0001:000114D0-000114D6, line/addr pairs = 2 + + 12 000114D0 15 000114D5 + + C:\Users\Christian\Downloads\isle\LEGO1\jetskiracestate.h (None), 0001:000114E0-000115B6, line/addr pairs = 3 + + 19 000114E0 20 000114E8 21 000115B2 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzeria.h (None), 0001:000115C0-000115C6, line/addr pairs = 2 + + 12 000115C0 15 000115C5 + + C:\Users\Christian\Downloads\isle\LEGO1\pizzeria.h (None), 0001:000115D0-0001170E, line/addr pairs = 3 + + 19 000115D0 20 000115D8 21 0001170A + + C:\Users\Christian\Downloads\isle\LEGO1\policeentity.h (None), 0001:00011710-00011716, line/addr pairs = 2 + + 12 00011710 15 00011715 + + C:\Users\Christian\Downloads\isle\LEGO1\policeentity.h (None), 0001:00011720-0001182A, line/addr pairs = 3 + + 19 00011720 20 00011728 21 00011826 + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.h (None), 0001:00011830-00011836, line/addr pairs = 2 + + 12 00011830 15 00011835 + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.h (None), 0001:00011840-000118E2, line/addr pairs = 3 + + 19 00011840 20 00011848 21 000118DE + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A1E0-0000A295, line/addr pairs = 12 + + 35 0000A1E0 36 0000A214 38 0000A219 40 0000A21F + 42 0000A225 44 0000A22B 46 0000A231 48 0000A237 + 51 0000A23D 52 0000A242 54 0000A25D 55 0000A26A + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A350-0000A3B3, line/addr pairs = 3 + + 59 0000A350 60 0000A37C 61 0000A388 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A3C0-0000A3EE, line/addr pairs = 6 + + 65 0000A3C0 67 0000A3CA 69 0000A3D6 70 0000A3DC + 71 0000A3E3 73 0000A3EA + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A3F0-0000A457, line/addr pairs = 13 + + 77 0000A3F0 79 0000A3F8 80 0000A401 81 0000A409 + 82 0000A412 83 0000A41A 84 0000A423 85 0000A42B + 86 0000A434 87 0000A43C 88 0000A445 89 0000A44D + 90 0000A456 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A460-0000A4E3, line/addr pairs = 12 + + 106 0000A460 108 0000A470 109 0000A47C 110 0000A484 + 111 0000A494 112 0000A49B 113 0000A4AB 114 0000A4B3 + 115 0000A4C3 116 0000A4CA 117 0000A4DA 118 0000A4E2 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A4F0-0000A55B, line/addr pairs = 11 + + 134 0000A4F0 136 0000A501 137 0000A50B 138 0000A515 + 139 0000A51E 140 0000A528 141 0000A532 142 0000A53B + 143 0000A545 144 0000A54F 146 0000A55A + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A560-0000A621, line/addr pairs = 12 + + 150 0000A560 151 0000A565 152 0000A56B 154 0000A570 + 155 0000A57B 157 0000A59E 159 0000A5B9 165 0000A5E1 + 167 0000A601 168 0000A607 170 0000A616 173 0000A61C + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A630-0000A6AE, line/addr pairs = 13 + + 177 0000A630 179 0000A63B 181 0000A641 182 0000A645 + 188 0000A661 189 0000A665 183 0000A66C 184 0000A674 + 188 0000A690 189 0000A694 186 0000A69B 188 0000A6A3 + 189 0000A6A7 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A6B0-0000A6F9, line/addr pairs = 6 + + 193 0000A6B0 197 0000A6B7 199 0000A6D8 200 0000A6E7 + 202 0000A6EF 203 0000A6F3 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None), 0001:0000A700-0000A796, line/addr pairs = 10 + + 207 0000A700 208 0000A70F 211 0000A718 213 0000A72E + 215 0000A740 218 0000A75A 224 0000A779 219 0000A77F + 223 0000A78C 224 0000A790 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.h (None), 0001:0000A2A0-0000A2A6, line/addr pairs = 2 + + 44 0000A2A0 47 0000A2A5 + + C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.h (None), 0001:0000A2B0-0000A322, line/addr pairs = 3 + + 51 0000A2B0 52 0000A2B8 53 0000A31E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None), 0001:0000A190-0000A198, line/addr pairs = 2 + + 8 0000A190 10 0000A197 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None), 0001:0000A1A0-0000A1AA, line/addr pairs = 2 + + 14 0000A1A0 16 0000A1A9 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None), 0001:0000A1B0-0000A1B3, line/addr pairs = 1 + + 20 0000A1B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None), 0001:0000A1C0-0000A1C1, line/addr pairs = 1 + + 26 0000A1C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None), 0001:0000A1D0-0000A1D1, line/addr pairs = 1 + + 32 0000A1D0 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.cpp (None), 0001:00009F00-00009F79, line/addr pairs = 4 + + 5 00009F00 6 00009F42 7 00009F47 5 00009F5F + + C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.cpp (None), 0001:0000A180-0000A181, line/addr pairs = 1 + + 11 0000A180 + + C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.h (None), 0001:00009F80-00009F86, line/addr pairs = 2 + + 13 00009F80 16 00009F85 + + C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.h (None), 0001:00009F90-0000A10C, line/addr pairs = 3 + + 20 00009F90 21 00009F9F 22 0000A106 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp (None), 0001:000098D0-000099D3, line/addr pairs = 4 + + 7 000098D0 8 00009974 9 00009979 7 0000998E + + C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp (None), 0001:00009E70-00009ECD, line/addr pairs = 3 + + 13 00009E70 14 00009E9D 15 00009EA2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp (None), 0001:00009ED0-00009EDC, line/addr pairs = 3 + + 19 00009ED0 22 00009ED8 23 00009EDB + + C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp (None), 0001:00009EE0-00009EFF, line/addr pairs = 4 + + 27 00009EE0 28 00009EE7 29 00009EF3 30 00009EFB + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.h (None), 0001:000099E0-000099E6, line/addr pairs = 2 + + 15 000099E0 18 000099E5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.h (None), 0001:000099F0-00009AC6, line/addr pairs = 3 + + 22 000099F0 23 000099F8 24 00009AC2 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.h (None), 0001:00009B90-00009B96, line/addr pairs = 2 + + 15 00009B90 18 00009B95 + + C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.h (None), 0001:00009BA0-00009CAA, line/addr pairs = 3 + + 22 00009BA0 23 00009BA8 24 00009CA6 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.h (None), 0001:00009CB0-00009CB6, line/addr pairs = 2 + + 18 00009CB0 21 00009CB5 + + C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.h (None), 0001:00009CC0-00009DFE, line/addr pairs = 3 + + 25 00009CC0 26 00009CC8 27 00009DFA + + C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.h (None), 0001:00009E40-00009E46, line/addr pairs = 2 + + 16 00009E40 19 00009E45 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000088E0-000089FB, line/addr pairs = 15 + + 12 000088E0 14 00008947 16 0000894D 18 00008956 + 20 0000895C 22 00008965 24 00008971 26 0000897D + 28 00008989 30 00008995 32 000089A1 33 000089A9 + 34 000089B0 35 000089B7 12 000089D6 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00008A20-00008A28, line/addr pairs = 3 + + 39 00008A20 41 00008A25 42 00008A27 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00008A30-00008A9F, line/addr pairs = 3 + + 46 00008A30 47 00008A5B 48 00008A60 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00008AA0-00008B7F, line/addr pairs = 4 + + 52 00008AA0 54 00008AC5 55 00008ACB 57 00008B58 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009190-000091D2, line/addr pairs = 11 + + 61 00009190 62 00009193 64 0000919B 65 0000919F + 66 000091A5 68 000091AF 69 000091B3 70 000091B9 + 72 000091C6 73 000091CA 74 000091D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000091E0-0000924A, line/addr pairs = 10 + + 78 000091E0 79 000091ED 80 000091F8 82 00009206 + 83 00009212 84 00009220 85 00009228 86 00009236 + 87 0000923E 90 00009244 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009250-00009295, line/addr pairs = 9 + + 94 00009250 95 0000925B 96 0000925D 97 00009269 + 98 0000926F 101 00009279 102 00009283 103 00009289 + 105 00009293 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000092A0-00009373, line/addr pairs = 17 + + 109 000092A0 112 000092A9 113 000092B6 114 000092BC + 115 000092C0 116 000092D2 119 000092DA 120 000092FB + 121 00009304 125 0000931F 126 00009321 127 00009329 + 129 00009331 125 00009350 137 0000935C 130 00009363 + 131 0000936C + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009380-000094C8, line/addr pairs = 29 + + 146 00009380 147 00009388 148 00009395 149 000093A8 + 150 000093B5 154 000093BD 155 000093C5 156 000093CD + 158 000093D3 159 000093D7 161 000093DF 162 000093E3 + 165 000093EB 167 000093FD 168 00009405 169 0000940F + 172 00009415 173 00009427 174 00009442 175 0000945F + 176 00009468 177 00009472 178 00009481 180 00009487 + 181 0000949D 184 000094A5 185 000094B4 189 000094BA + 190 000094C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000094D0-000094D3, line/addr pairs = 1 + + 194 000094D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000094E0-000094E3, line/addr pairs = 1 + + 200 000094E0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000094F0-000094FA, line/addr pairs = 2 + + 206 000094F0 208 000094F7 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009500-00009508, line/addr pairs = 2 + + 212 00009500 214 00009507 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009510-0000951A, line/addr pairs = 2 + + 218 00009510 220 00009517 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009520-00009528, line/addr pairs = 2 + + 224 00009520 226 00009527 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009530-00009602, line/addr pairs = 6 + + 230 00009530 231 0000955B 234 0000959E 235 000095BB + 237 000095C4 231 000095E0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:00009610-000097A2, line/addr pairs = 8 + + 241 00009610 242 00009631 244 0000963F 245 00009666 + 246 00009732 249 00009746 245 00009768 244 00009778 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000097B0-000097B5, line/addr pairs = 2 + + 253 000097B0 256 000097B2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000097C0-000097DF, line/addr pairs = 5 + + 260 000097C0 261 000097C3 262 000097C8 263 000097DA + 264 000097DD + + C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None), 0001:000097E0-000097FE, line/addr pairs = 5 + + 268 000097E0 269 000097E3 270 000097E9 271 000097EE + 273 000097FC + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.h (None), 0001:00008B80-00008B86, line/addr pairs = 2 + + 22 00008B80 25 00008B85 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00008B90-00008BD3, line/addr pairs = 1 + + 15 00008B90 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00008D90-00008DDF, line/addr pairs = 1 + + 19 00008D90 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None), 0001:00008DE0-00008E3D, line/addr pairs = 1 + + 20 00008DE0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoeventnotificationparam.h (None), 0001:00008BE0-00008C2F, line/addr pairs = 1 + + 25 00008BE0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.h (None), 0001:00008C30-00008C7F, line/addr pairs = 1 + + 43 00008C30 + + C:\Users\Christian\Downloads\isle\LEGO1\mxparam.h (None), 0001:00008C80-00008C87, line/addr pairs = 1 + + 6 00008C80 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00008FA0-00009051, line/addr pairs = 1 + + 30 00008FA0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None), 0001:00009800-000098CD, line/addr pairs = 4 + + 139 00009800 140 0000982E 141 00009899 140 000098AB + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.cpp (None), 0001:00008480-000084F9, line/addr pairs = 4 + + 5 00008480 6 000084C2 7 000084C7 5 000084DF + + C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.cpp (None), 0001:000088D0-000088D1, line/addr pairs = 1 + + 11 000088D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoloopinganimpresenter.h (None), 0001:00008500-00008506, line/addr pairs = 2 + + 12 00008500 15 00008505 + + C:\Users\Christian\Downloads\isle\LEGO1\legoloopinganimpresenter.h (None), 0001:00008510-0000864E, line/addr pairs = 3 + + 19 00008510 20 00008518 21 0000864A + + C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.h (None), 0001:00008650-00008656, line/addr pairs = 2 + + 14 00008650 17 00008655 + + C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.h (None), 0001:00008660-0000879E, line/addr pairs = 3 + + 21 00008660 22 00008668 23 0000879A + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007AD0-00007C2F, line/addr pairs = 12 + + 52 00007AD0 54 00007AF0 56 00007AF7 57 00007AFD + 58 00007B32 60 00007B3E 61 00007B79 63 00007B85 + 64 00007BC0 66 00007BCC 67 00007BE2 68 00007BEB + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007C30-00007C82, line/addr pairs = 11 + + 72 00007C30 73 00007C36 75 00007C42 76 00007C47 + 77 00007C4D 78 00007C56 79 00007C5A 76 00007C60 + 82 00007C68 85 00007C74 86 00007C7F + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007C90-00007E39, line/addr pairs = 24 + + 90 00007C90 92 00007CB0 93 00007CC1 96 00007CD3 + 97 00007CDA 98 00007CE4 99 00007CF6 100 00007CFF + 101 00007D10 102 00007D22 103 00007D32 104 00007D37 + 105 00007D45 106 00007D58 109 00007D66 113 00007D83 + 114 00007D97 115 00007DAB 118 00007DB6 110 00007DCF + 122 00007DEB 94 00007E1C 123 00007E23 124 00007E26 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007E40-00007E45, line/addr pairs = 2 + + 128 00007E40 131 00007E42 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007E50-00007EB7, line/addr pairs = 9 + + 135 00007E50 136 00007E59 137 00007E5B 139 00007E64 + 140 00007E6C 141 00007E8B 143 00007EA5 144 00007EAB + 145 00007EB2 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007EC0-00007F1A, line/addr pairs = 6 + + 149 00007EC0 150 00007ECC 151 00007EED 152 00007EF3 + 153 00007F0D 154 00007F13 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00007F20-00008082, line/addr pairs = 10 + + 158 00007F20 160 00007F58 163 00007F6C 164 00007F70 + 167 00007F93 168 00007FC7 169 00007FD5 172 00007FFF + 173 00008034 174 0000805F + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008090-00008093, line/addr pairs = 1 + + 178 00008090 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:000080A0-000080A3, line/addr pairs = 1 + + 184 000080A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:000080B0-000080B3, line/addr pairs = 1 + + 190 000080B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:000080C0-000080CE, line/addr pairs = 2 + + 196 000080C0 198 000080CD + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:000080D0-000081AD, line/addr pairs = 10 + + 202 000080D0 205 000080E3 208 00008147 210 00008172 + 211 0000817F 212 00008183 213 00008190 214 00008195 + 218 000081A0 219 000081A3 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:000081B0-000081F6, line/addr pairs = 6 + + 223 000081B0 224 000081B8 225 000081CB 224 000081D8 + 228 000081E3 226 000081E9 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008200-00008226, line/addr pairs = 5 + + 232 00008200 233 00008204 234 00008218 236 0000821F + 237 00008222 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008230-00008301, line/addr pairs = 15 + + 241 00008230 243 0000823B 244 0000825A 243 0000826F + 247 00008277 248 0000827F 250 00008295 251 0000829A + 252 000082AE 255 000082BA 257 000082CD 260 000082D7 + 261 000082E0 262 000082ED 263 000082F9 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008310-00008311, line/addr pairs = 1 + + 267 00008310 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008320-00008323, line/addr pairs = 1 + + 273 00008320 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008330-0000840A, line/addr pairs = 12 + + 279 00008330 280 0000834F 281 0000835E 282 00008375 + 283 0000837A 285 00008388 286 00008392 289 0000839D + 290 000083B1 292 000083C0 296 00008400 298 00008407 + + C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None), 0001:00008410-00008473, line/addr pairs = 10 + + 302 00008410 303 0000841A 304 00008427 306 0000842E + 307 00008444 309 0000844B 310 00008461 312 00008468 + 313 0000846A 315 00008471 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legofullscreenmovie.cpp (None), 0001:00007960-00007A12, line/addr pairs = 6 + + 18 00007960 19 000079B8 20 000079BD 21 000079C4 + 22 000079CF 18 000079EA + + C:\Users\Christian\Downloads\isle\LEGO1\legofullscreenmovie.cpp (None), 0001:00007A20-00007AC4, line/addr pairs = 11 + + 26 00007A20 27 00007A2C 28 00007A34 30 00007A3B + 31 00007A42 33 00007A46 34 00007A78 35 00007A7F + 38 00007A85 39 00007AB7 43 00007ABE + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.cpp (None), 0001:00007750-000077B4, line/addr pairs = 3 + + 7 00007750 8 00007785 9 0000778A + + C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.cpp (None), 0001:00007950-00007959, line/addr pairs = 2 + + 13 00007950 16 00007958 + + C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.h (None), 0001:000077C0-000078CA, line/addr pairs = 3 + + 18 000077C0 19 000077C8 20 000078C6 + + C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.h (None), 0001:000078D0-000078D6, line/addr pairs = 2 + + 15 000078D0 18 000078D5 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:000073F0-00007454, line/addr pairs = 3 + + 11 000073F0 12 00007425 13 0000742A + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:00007570-00007578, line/addr pairs = 2 + + 17 00007570 19 00007577 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:00007580-000075DD, line/addr pairs = 3 + + 23 00007580 24 000075AD 25 000075B2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:000075E0-000075EC, line/addr pairs = 3 + + 29 000075E0 31 000075E7 32 000075E9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:000075F0-00007614, line/addr pairs = 5 + + 36 000075F0 37 000075F3 38 000075FC 41 00007609 + 42 00007610 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:00007620-00007628, line/addr pairs = 2 + + 46 00007620 48 00007627 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:00007630-00007662, line/addr pairs = 6 + + 52 00007630 53 0000763D 55 00007645 56 0000764E + 59 0000765B 60 0000765E + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:00007670-000076DC, line/addr pairs = 12 + + 64 00007670 65 00007673 66 0000767C 67 0000768D + 68 00007691 69 0000769F 70 000076B3 72 000076BA + 75 000076CE 79 000076D0 81 000076D6 83 000076DB + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None), 0001:000076E0-0000774C, line/addr pairs = 10 + + 87 000076E0 88 000076E3 89 000076E7 91 000076FD + 95 00007700 98 00007714 99 00007723 100 00007731 + 103 00007739 105 00007743 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.h (None), 0001:00007460-00007466, line/addr pairs = 2 + + 17 00007460 20 00007465 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.h (None), 0001:00007470-00007546, line/addr pairs = 3 + + 24 00007470 25 00007478 26 00007542 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000070F0-0000714D, line/addr pairs = 3 + + 12 000070F0 13 0000711D 14 00007122 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007150-000071AB, line/addr pairs = 10 + + 18 00007150 19 00007165 20 00007179 21 00007181 + 23 00007187 25 0000718D 27 00007193 28 0000719A + 29 000071A1 30 000071A5 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000071B0-000071B3, line/addr pairs = 1 + + 34 000071B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000071C0-000071C3, line/addr pairs = 1 + + 40 000071C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000071D0-000071F6, line/addr pairs = 6 + + 46 000071D0 47 000071DA 48 000071E1 49 000071E9 + 50 000071F0 51 000071F3 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007200-0000721A, line/addr pairs = 4 + + 55 00007200 60 00007207 61 00007211 62 00007216 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007220-0000723A, line/addr pairs = 5 + + 66 00007220 67 00007223 68 00007228 69 00007230 + 71 00007238 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007240-00007243, line/addr pairs = 1 + + 75 00007240 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007250-00007253, line/addr pairs = 1 + + 81 00007250 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007260-00007261, line/addr pairs = 1 + + 87 00007260 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007270-00007368, line/addr pairs = 11 + + 92 00007270 95 0000727D 97 000072A3 98 000072C6 + 100 000072E8 101 000072ED 103 00007306 104 0000731F + 106 0000733A 107 00007340 111 0000735C + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007370-00007371, line/addr pairs = 1 + + 115 00007370 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007380-00007381, line/addr pairs = 1 + + 121 00007380 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:00007390-00007391, line/addr pairs = 1 + + 127 00007390 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000073A0-000073A1, line/addr pairs = 1 + + 133 000073A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000073B0-000073B1, line/addr pairs = 1 + + 139 000073B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000073C0-000073C1, line/addr pairs = 1 + + 145 000073C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000073D0-000073D1, line/addr pairs = 1 + + 151 000073D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None), 0001:000073E0-000073E5, line/addr pairs = 2 + + 157 000073E0 161 000073E2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None), 0001:00006F60-00006FBD, line/addr pairs = 2 + + 5 00006F60 7 00006F95 + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None), 0001:00007070-000070BF, line/addr pairs = 2 + + 11 00007070 13 0000709B + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None), 0001:000070C0-000070C3, line/addr pairs = 1 + + 17 000070C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None), 0001:000070D0-000070D3, line/addr pairs = 1 + + 23 000070D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None), 0001:000070E0-000070E3, line/addr pairs = 2 + + 29 000070E0 33 000070E2 + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.h (None), 0001:00006FC0-00006FC6, line/addr pairs = 2 + + 16 00006FC0 19 00006FC5 + + C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.h (None), 0001:00006FD0-00007042, line/addr pairs = 3 + + 23 00006FD0 24 00006FD8 25 0000703E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.cpp (None), 0001:00006CF0-00006D4D, line/addr pairs = 2 + + 5 00006CF0 7 00006D25 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.cpp (None), 0001:00006F10-00006F5F, line/addr pairs = 2 + + 11 00006F10 13 00006F3B + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.h (None), 0001:00006D50-00006D56, line/addr pairs = 2 + + 15 00006D50 18 00006D55 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.h (None), 0001:00006D60-00006E9E, line/addr pairs = 3 + + 22 00006D60 23 00006D68 24 00006E9A + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp (None), 0001:00006AE0-00006B3D, line/addr pairs = 2 + + 5 00006AE0 7 00006B15 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp (None), 0001:00006C80-00006CCF, line/addr pairs = 2 + + 11 00006C80 13 00006CAB + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp (None), 0001:00006CD0-00006CD3, line/addr pairs = 2 + + 17 00006CD0 21 00006CD2 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp (None), 0001:00006CE0-00006CE5, line/addr pairs = 2 + + 25 00006CE0 29 00006CE2 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.h (None), 0001:00006B40-00006B46, line/addr pairs = 2 + + 18 00006B40 21 00006B45 + + C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.h (None), 0001:00006B50-00006C5A, line/addr pairs = 3 + + 25 00006B50 26 00006B58 27 00006C56 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:00006870-000068CD, line/addr pairs = 2 + + 5 00006870 7 000068A5 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:00006980-000069CF, line/addr pairs = 2 + + 11 00006980 13 000069AB + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:000069D0-000069D3, line/addr pairs = 1 + + 17 000069D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:000069E0-000069E3, line/addr pairs = 1 + + 22 000069E0 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:000069F0-00006A27, line/addr pairs = 3 + + 27 000069F0 30 00006A21 31 00006A26 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:00006A40-00006A77, line/addr pairs = 3 + + 35 00006A40 38 00006A71 39 00006A76 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None), 0001:00006A90-00006AC7, line/addr pairs = 3 + + 43 00006A90 46 00006AC1 47 00006AC6 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.h (None), 0001:000068D0-000068D6, line/addr pairs = 2 + + 17 000068D0 20 000068D5 + + C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.h (None), 0001:000068E0-00006952, line/addr pairs = 3 + + 24 000068E0 25 000068E8 26 0000694E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.cpp (None), 0001:000066F0-00006754, line/addr pairs = 3 + + 5 000066F0 6 00006725 7 0000672A + + C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.cpp (None), 0001:00006810-0000685F, line/addr pairs = 2 + + 11 00006810 13 0000683B + + C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.cpp (None), 0001:00006860-00006861, line/addr pairs = 1 + + 17 00006860 + + C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.h (None), 0001:00006760-00006766, line/addr pairs = 2 + + 15 00006760 18 00006765 + + C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.h (None), 0001:00006770-000067E2, line/addr pairs = 3 + + 22 00006770 23 00006778 24 000067DE + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp (None), 0001:000065A0-000065AA, line/addr pairs = 2 + + 8 000065A0 10 000065A9 + + C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp (None), 0001:000065B0-00006614, line/addr pairs = 3 + + 14 000065B0 15 000065E5 16 000065EA + + C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp (None), 0001:00006690-000066DF, line/addr pairs = 2 + + 20 00006690 22 000066BB + + C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp (None), 0001:000066E0-000066E1, line/addr pairs = 1 + + 26 000066E0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxcore.h (None), 0001:00006620-0000665F, line/addr pairs = 3 + + 29 00006620 30 00006625 31 0000664E + + C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.h (None), 0001:00006660-00006666, line/addr pairs = 2 + + 15 00006660 18 00006665 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legobackgroundcolor.cpp (None), 0001:000062B0-00006362, line/addr pairs = 6 + + 16 000062B0 17 00006308 18 0000630D 19 00006314 + 20 0000631F 16 0000633A + + C:\Users\Christian\Downloads\isle\LEGO1\legobackgroundcolor.cpp (None), 0001:000063E0-0000659F, line/addr pairs = 22 + + 24 000063E0 25 000063F1 26 000063F8 28 000063FF + 29 0000640A 33 00006418 34 00006451 36 00006463 + 37 00006496 38 000064A6 39 000064AA 40 000064C4 + 41 000064D4 42 000064D8 43 000064F2 44 00006502 + 45 00006506 50 00006522 51 00006551 52 00006580 + 55 0000658C 56 00006595 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.cpp (None), 0001:00005DA0-00005E6B, line/addr pairs = 3 + + 5 00005DA0 7 00005E23 5 00005E36 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.cpp (None), 0001:000062A0-000062A1, line/addr pairs = 1 + + 11 000062A0 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.h (None), 0001:00005E70-00005E76, line/addr pairs = 2 + + 36 00005E70 39 00005E75 + + C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.h (None), 0001:00005E80-00005EF2, line/addr pairs = 3 + + 43 00005E80 44 00005E88 45 00005EEE + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.h (None), 0001:00005F20-00005F26, line/addr pairs = 2 + + 20 00005F20 23 00005F25 + + C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.h (None), 0001:00005F30-00005FD2, line/addr pairs = 3 + + 27 00005F30 28 00005F38 29 00005FCE + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.h (None), 0001:00006000-00006006, line/addr pairs = 2 + + 26 00006000 29 00006005 + + C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.h (None), 0001:00006010-000060E6, line/addr pairs = 3 + + 33 00006010 34 00006018 35 000060E2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.h (None), 0001:00006110-00006116, line/addr pairs = 2 + + 13 00006110 16 00006115 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.h (None), 0001:00006120-0000622A, line/addr pairs = 3 + + 20 00006120 21 00006128 22 00006226 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.cpp (None), 0001:00005BE0-00005C3D, line/addr pairs = 2 + + 5 00005BE0 7 00005C15 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.h (None), 0001:00005C40-00005C46, line/addr pairs = 2 + + 14 00005C40 17 00005C45 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.h (None), 0001:00005C50-00005D26, line/addr pairs = 3 + + 21 00005C50 22 00005C58 23 00005D22 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005A20-00005A2A, line/addr pairs = 2 + + 8 00005A20 10 00005A29 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005A30-00005A8D, line/addr pairs = 2 + + 14 00005A30 16 00005A65 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005B40-00005B8F, line/addr pairs = 2 + + 20 00005B40 22 00005B6B + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005B90-00005B91, line/addr pairs = 1 + + 26 00005B90 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005BA0-00005BA3, line/addr pairs = 1 + + 32 00005BA0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005BB0-00005BB5, line/addr pairs = 2 + + 38 00005BB0 42 00005BB2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005BC0-00005BC3, line/addr pairs = 2 + + 46 00005BC0 50 00005BC2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None), 0001:00005BD0-00005BD3, line/addr pairs = 1 + + 54 00005BD0 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.h (None), 0001:00005A90-00005A96, line/addr pairs = 2 + + 18 00005A90 21 00005A95 + + C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.h (None), 0001:00005AA0-00005B12, line/addr pairs = 3 + + 25 00005AA0 26 00005AA8 27 00005B0E + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.cpp (None), 0001:000057F0-000058B5, line/addr pairs = 6 + + 7 000057F0 8 00005877 10 0000587D 12 00005883 + 13 00005889 7 0000589B + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:000058C0-000058C6, line/addr pairs = 2 + + 15 000058C0 18 000058C5 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:000058D0-000059A6, line/addr pairs = 3 + + 22 000058D0 23 000058D8 24 000059A2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None), 0001:00005680-00005681, line/addr pairs = 1 + + 15 00005680 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None), 0001:00005690-00005691, line/addr pairs = 1 + + 21 00005690 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None), 0001:000056A0-000056C8, line/addr pairs = 6 + + 27 000056A0 30 000056A9 31 000056B2 32 000056B9 + 35 000056C3 36 000056C5 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None), 0001:000056D0-000056FD, line/addr pairs = 6 + + 40 000056D0 41 000056D3 42 000056DC 45 000056E9 + 46 000056F0 48 000056F9 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None), 0001:00005700-000057E6, line/addr pairs = 14 + + 52 00005700 55 00005717 58 0000571F 61 00005729 + 62 0000573A 65 00005749 66 0000575F 67 00005781 + 68 00005786 69 000057AB 70 000057B3 71 000057BA + 72 000057C0 76 000057DC + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:000055C0-000055C9, line/addr pairs = 2 + + 10 000055C0 11 000055C8 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:000055F0-000055F7, line/addr pairs = 2 + + 15 000055F0 16 000055F6 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:00005600-00005649, line/addr pairs = 8 + + 20 00005600 22 00005606 24 00005617 25 00005624 + 27 0000562C 29 00005631 30 0000563D 31 00005642 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:00005650-00005653, line/addr pairs = 1 + + 35 00005650 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:00005660-00005663, line/addr pairs = 1 + + 41 00005660 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None), 0001:00005670-00005675, line/addr pairs = 2 + + 47 00005670 50 00005672 + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:000053D0-00005418, line/addr pairs = 11 + + 11 000053D0 13 000053DC 14 000053E2 15 000053E8 + 16 000053EE 17 000053F4 18 000053FA 19 00005400 + 20 00005406 21 0000540C 23 00005417 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:00005420-00005434, line/addr pairs = 4 + + 27 00005420 28 00005428 30 0000542E 31 00005431 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:00005460-0000546B, line/addr pairs = 2 + + 35 00005460 36 00005466 + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:00005470-00005552, line/addr pairs = 6 + + 41 00005470 44 00005490 45 000054C0 46 000054CD + 48 000054FE 50 0000550E + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:00005560-000055A1, line/addr pairs = 8 + + 55 00005560 56 00005563 57 00005570 59 00005577 + 60 00005584 62 0000558B 63 00005598 64 0000559F + + C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None), 0001:000055B0-000055B9, line/addr pairs = 2 + + 68 000055B0 71 000055B6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.cpp (None), 0001:000053C0-000053C3, line/addr pairs = 2 + + 5 000053C0 7 000053C2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.cpp (None), 0001:000051A0-00005256, line/addr pairs = 3 + + 5 000051A0 7 00005228 5 0000523C + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.cpp (None), 0001:00005370-000053BF, line/addr pairs = 2 + + 11 00005370 13 0000539B + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.h (None), 0001:00005260-00005266, line/addr pairs = 2 + + 15 00005260 18 00005265 + + C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.h (None), 0001:00005270-00005346, line/addr pairs = 3 + + 22 00005270 23 00005278 24 00005342 + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\jukebox.cpp (None), 0001:00004F90-00005005, line/addr pairs = 4 + + 10 00004F90 12 00004FC9 13 00004FCF 14 00004FDB + + C:\Users\Christian\Downloads\isle\LEGO1\jukebox.h (None), 0001:00005010-00005016, line/addr pairs = 2 + + 15 00005010 18 00005015 + + C:\Users\Christian\Downloads\isle\LEGO1\jukebox.h (None), 0001:00005020-0000512A, line/addr pairs = 3 + + 22 00005020 23 00005028 24 00005126 + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\jetski.cpp (None), 0001:00004D10-00004D88, line/addr pairs = 5 + + 7 00004D10 8 00004D45 9 00004D4F 10 00004D59 + 11 00004D60 + + C:\Users\Christian\Downloads\isle\LEGO1\jetski.h (None), 0001:00004D90-00004D96, line/addr pairs = 2 + + 15 00004D90 18 00004D95 + + C:\Users\Christian\Downloads\isle\LEGO1\jetski.h (None), 0001:00004DA0-00004F12, line/addr pairs = 3 + + 22 00004DA0 23 00004DA8 24 00004F0E + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004C30-00004CAB, line/addr pairs = 5 + + 7 00004C30 9 00004C67 10 00004C71 11 00004C7B + 12 00004C8B + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004CB0-00004CCB, line/addr pairs = 2 + + 16 00004CB0 18 00004CC8 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004CD0-00004CD1, line/addr pairs = 1 + + 22 00004CD0 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004CE0-00004CE1, line/addr pairs = 1 + + 28 00004CE0 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004CF0-00004CF3, line/addr pairs = 1 + + 34 00004CF0 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None), 0001:00004D00-00004D01, line/addr pairs = 1 + + 40 00004D00 + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004470-0000454B, line/addr pairs = 10 + + 20 00004470 22 000044B7 24 000044C3 26 000044CF + 28 000044DB 30 000044E7 32 000044F3 33 000044FA + 36 00004506 37 00004512 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:000046B0-0000477B, line/addr pairs = 9 + + 41 000046B0 42 000046DD 43 000046E9 45 000046FE + 46 00004706 49 00004712 50 0000471B 53 00004729 + 54 00004739 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004780-00004866, line/addr pairs = 23 + + 58 00004780 59 00004785 61 00004791 62 0000479F + 63 000047A7 64 000047B4 65 000047C1 67 000047D4 + 75 000047E8 76 000047F2 72 000047F4 76 00004802 + 78 00004807 79 00004815 82 0000481F 83 00004828 + 84 00004832 85 00004836 87 00004842 89 0000484A + 90 00004857 93 0000485E 94 00004861 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004870-000049E7, line/addr pairs = 42 + + 98 00004870 100 0000487B 102 00004881 103 0000488D + 105 000048AB 106 000048B6 147 000048B9 109 000048BD + 147 000048D3 110 000048D8 111 000048DF 112 000048E7 + 147 000048EA 113 000048EE 114 000048F5 115 000048FD + 147 00004900 119 00004904 120 0000490F 147 00004912 + 122 00004916 147 00004931 124 00004936 125 00004946 + 147 00004949 126 0000494D 127 00004954 128 0000495C + 147 0000495F 129 00004963 130 0000496A 131 00004972 + 147 00004975 135 00004979 136 00004984 147 00004987 + 138 0000498B 139 00004994 147 00004997 141 0000499C + 146 000049A5 147 000049A8 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:000049F0-000049F5, line/addr pairs = 2 + + 151 000049F0 153 000049F2 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A00-00004A01, line/addr pairs = 1 + + 157 00004A00 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A10-00004A15, line/addr pairs = 2 + + 163 00004A10 165 00004A12 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A20-00004A25, line/addr pairs = 2 + + 169 00004A20 171 00004A22 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A30-00004A33, line/addr pairs = 1 + + 175 00004A30 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A40-00004A43, line/addr pairs = 2 + + 181 00004A40 183 00004A42 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004A50-00004C18, line/addr pairs = 38 + + 187 00004A50 188 00004A55 190 00004A6B 191 00004A71 + 193 00004A77 194 00004A8A 196 00004A90 197 00004AA3 + 199 00004AA9 200 00004ABC 202 00004AC2 203 00004AD5 + 205 00004ADB 206 00004AEE 208 00004AF4 209 00004B07 + 211 00004B0D 212 00004B20 214 00004B26 215 00004B39 + 217 00004B3F 218 00004B52 220 00004B58 221 00004B6B + 223 00004B71 224 00004B84 226 00004B8A 230 00004B90 + 231 00004B95 233 00004BAB 234 00004BB1 236 00004BBB + 237 00004BCE 239 00004BD8 240 00004BEB 242 00004BF5 + 243 00004C08 245 00004C12 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None), 0001:00004C20-00004C23, line/addr pairs = 2 + + 249 00004C20 252 00004C22 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.h (None), 0001:00004550-00004556, line/addr pairs = 2 + + 32 00004550 35 00004555 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.h (None), 0001:00004560-0000466A, line/addr pairs = 3 + + 39 00004560 40 00004568 41 00004666 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.h (None), 0001:00004670-00004673, line/addr pairs = 1 + + 47 00004670 + + C:\Users\Christian\Downloads\isle\LEGO1\isle.h (None), 0001:00004680-00004681, line/addr pairs = 1 + + 49 00004680 + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.cpp (None), 0001:000042C0-00004333, line/addr pairs = 3 + + 7 000042C0 9 00004308 7 00004319 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.cpp (None), 0001:00004420-0000446F, line/addr pairs = 2 + + 13 00004420 15 0000444B + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.h (None), 0001:00004340-00004346, line/addr pairs = 2 + + 16 00004340 19 00004345 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.h (None), 0001:00004350-000043F2, line/addr pairs = 3 + + 23 00004350 24 00004358 25 000043EE + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.cpp (None), 0001:000040C0-0000411D, line/addr pairs = 2 + + 5 000040C0 7 000040F5 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.cpp (None), 0001:00004260-000042AF, line/addr pairs = 2 + + 11 00004260 13 0000428B + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.cpp (None), 0001:000042B0-000042B5, line/addr pairs = 2 + + 17 000042B0 21 000042B2 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.h (None), 0001:00004120-00004126, line/addr pairs = 2 + + 17 00004120 20 00004125 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.h (None), 0001:00004130-0000423A, line/addr pairs = 3 + + 24 00004130 25 00004138 26 00004236 + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00003E60-00003EBD, line/addr pairs = 2 + + 5 00003E60 7 00003E95 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004000-0000404F, line/addr pairs = 2 + + 11 00004000 13 0000402B + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004050-00004058, line/addr pairs = 2 + + 17 00004050 19 00004055 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004060-00004065, line/addr pairs = 2 + + 23 00004060 26 00004062 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004070-00004071, line/addr pairs = 1 + + 30 00004070 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004080-00004083, line/addr pairs = 1 + + 36 00004080 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:00004090-00004093, line/addr pairs = 2 + + 42 00004090 45 00004092 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:000040A0-000040A3, line/addr pairs = 2 + + 49 000040A0 51 000040A2 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None), 0001:000040B0-000040B3, line/addr pairs = 2 + + 55 000040B0 57 000040B2 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.h (None), 0001:00003EC0-00003EC6, line/addr pairs = 2 + + 18 00003EC0 21 00003EC5 + + C:\Users\Christian\Downloads\isle\LEGO1\infocenter.h (None), 0001:00003ED0-00003FDA, line/addr pairs = 3 + + 25 00003ED0 26 00003ED8 27 00003FD6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.cpp (None), 0001:00003CA0-00003D29, line/addr pairs = 7 + + 7 00003CA0 10 00003CEB 11 00003CF2 12 00003CF9 + 13 00003CFD 14 00003D01 7 00003D0F + + C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.h (None), 0001:00003D30-00003D36, line/addr pairs = 2 + + 15 00003D30 18 00003D35 + + C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.h (None), 0001:00003D40-00003DE2, line/addr pairs = 3 + + 22 00003D40 23 00003D48 24 00003DDE + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\hospital.cpp (None), 0001:00003A40-00003AF3, line/addr pairs = 9 + + 10 00003A40 12 00003A78 14 00003A85 16 00003A92 + 18 00003A9E 20 00003AAA 21 00003AB1 23 00003ABD + 24 00003AC9 + + C:\Users\Christian\Downloads\isle\LEGO1\hospital.cpp (None), 0001:00003C40-00003C8F, line/addr pairs = 2 + + 28 00003C40 30 00003C6B + + C:\Users\Christian\Downloads\isle\LEGO1\hospital.cpp (None), 0001:00003C90-00003C95, line/addr pairs = 2 + + 34 00003C90 38 00003C92 + + C:\Users\Christian\Downloads\isle\LEGO1\hospital.h (None), 0001:00003B00-00003B06, line/addr pairs = 2 + + 18 00003B00 21 00003B05 + + C:\Users\Christian\Downloads\isle\LEGO1\hospital.h (None), 0001:00003B10-00003C1A, line/addr pairs = 3 + + 25 00003B10 26 00003B18 27 00003C16 + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\historybook.cpp (None), 0001:00003840-0000389D, line/addr pairs = 2 + + 5 00003840 7 00003875 + + C:\Users\Christian\Downloads\isle\LEGO1\historybook.cpp (None), 0001:000039E0-00003A2F, line/addr pairs = 2 + + 11 000039E0 13 00003A0B + + C:\Users\Christian\Downloads\isle\LEGO1\historybook.cpp (None), 0001:00003A30-00003A35, line/addr pairs = 2 + + 17 00003A30 21 00003A32 + + C:\Users\Christian\Downloads\isle\LEGO1\historybook.h (None), 0001:000038A0-000038A6, line/addr pairs = 2 + + 17 000038A0 20 000038A5 + + C:\Users\Christian\Downloads\isle\LEGO1\historybook.h (None), 0001:000038B0-000039BA, line/addr pairs = 3 + + 24 000038B0 25 000038B8 26 000039B6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002770-00002865, line/addr pairs = 2 + + 18 00002770 20 00002838 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002A40-00002AC4, line/addr pairs = 4 + + 24 00002A40 25 00002A6C 26 00002A78 27 00002A82 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002AD0-00002B25, line/addr pairs = 12 + + 31 00002AD0 32 00002AD8 33 00002AE0 34 00002AE5 + 35 00002AEB 36 00002AFB 38 00002B07 39 00002B0D + 40 00002B11 41 00002B17 42 00002B1E 43 00002B20 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002B30-00002B67, line/addr pairs = 5 + + 47 00002B30 48 00002B38 49 00002B4C 50 00002B4E + 51 00002B65 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002B70-00002C82, line/addr pairs = 23 + + 55 00002B70 56 00002B79 57 00002B7F 59 00002B8F + 60 00002B9B 61 00002BA6 62 00002BB0 63 00002BB9 + 64 00002BCE 68 00002BE3 69 00002BF9 70 00002C01 + 71 00002C0C 72 00002C17 73 00002C22 74 00002C2D + 75 00002C38 76 00002C43 77 00002C4E 78 00002C59 + 79 00002C64 80 00002C72 81 00002C7F + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002C90-00002DEE, line/addr pairs = 27 + + 85 00002C90 86 00002C96 87 00002C9F 88 00002CA9 + 89 00002CB2 90 00002CBD 91 00002CCB 92 00002CD4 + 93 00002CEE 96 00002CFD 98 00002D20 99 00002D31 + 100 00002D3F 101 00002D54 102 00002D5E 103 00002D6A + 104 00002D7E 105 00002D88 106 00002D92 108 00002D94 + 111 00002D9B 114 00002DAC 115 00002DB6 116 00002DD0 + 117 00002DD7 118 00002DE4 119 00002DEA + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00002DF0-00003238, line/addr pairs = 55 + + 123 00002DF0 124 00002E14 125 00002E1A 126 00002E22 + 128 00002E35 131 00002E3C 134 00002E43 137 00002E51 + 138 00002E5F 140 00002E75 141 00002E86 142 00002E90 + 144 00002EA4 146 00002EB6 147 00002EC5 151 00002ED4 + 153 00002EE5 154 00002EF6 155 00002F06 156 00002F0D + 157 00002F1B 158 00002F26 159 00002F42 165 00002F47 + 167 00002F60 168 00002F69 169 00002F70 170 00002F7B + 171 00002F97 176 00002F9C 178 00002FAC 181 00002FB3 + 183 00002FC9 184 00002FDE 185 00003017 186 00003039 + 187 00003071 189 0000309E 190 000030A9 191 000030B8 + 192 0000310F 193 00003131 194 00003148 195 0000315C + 196 00003162 198 00003184 201 000031A6 216 000031AD + 203 000031CE 204 000031D3 205 000031DE 206 000031E8 + 207 000031FC 181 00003208 217 0000321C + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00003240-000034A2, line/addr pairs = 42 + + 221 00003240 222 00003251 261 00003262 223 00003269 + 224 0000326E 225 00003285 226 0000328C 229 00003294 + 230 000032A4 231 000032B5 232 000032C5 233 000032CA + 234 000032D9 235 000032E7 236 000032F5 237 00003306 + 238 0000331F 240 00003333 241 00003373 242 00003385 + 243 0000338C 246 00003391 247 000033A5 248 000033AA + 249 000033E6 250 000033F1 251 0000340C 252 00003423 + 253 0000342A 256 00003432 257 00003442 263 0000344F + 264 00003454 268 00003460 269 00003465 270 0000346F + 271 00003479 273 00003480 275 0000348C 276 00003491 + 277 00003497 279 0000349E + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:000034B0-00003635, line/addr pairs = 30 + + 283 000034B0 284 000034BD 285 000034C0 287 000034CA + 288 000034D9 291 000034E1 292 000034F4 293 00003509 + 294 00003519 295 0000352A 296 00003532 297 0000353D + 298 00003541 299 00003564 300 00003574 302 00003578 + 304 00003581 305 000035A1 306 000035AA 308 000035B8 + 309 000035C2 310 000035D0 311 000035DE 312 000035EC + 314 00003604 315 0000360C 316 0000360F 317 0000361C + 319 00003623 322 0000362D + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None), 0001:00003640-0000383D, line/addr pairs = 35 + + 326 00003640 328 0000364E 333 00003654 339 0000365D + 340 00003666 341 0000367A 342 00003691 343 000036A8 + 345 000036B5 346 000036C9 349 000036D5 350 000036E3 + 352 000036EB 353 000036F3 352 00003712 355 00003718 + 357 00003723 358 00003730 359 0000373C 360 0000374A + 361 00003766 362 0000376E 363 00003780 364 00003790 + 363 000037A0 366 000037A4 369 000037AF 334 000037C9 + 335 000037D2 336 000037ED 337 000037EF 329 00003808 + 330 00003811 331 0000382E 370 00003834 + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None), 0001:00002870-00002888, line/addr pairs = 1 + + 125 00002870 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.h (None), 0001:00002890-00002896, line/addr pairs = 2 + + 29 00002890 32 00002895 + + C:\Users\Christian\Downloads\isle\LEGO1\helicopter.h (None), 0001:000028A0-00002A12, line/addr pairs = 3 + + 36 000028A0 37 000028A8 38 00002A0E + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.cpp (None), 0001:00002710-0000276A, line/addr pairs = 10 + + 13 00002710 15 00002716 16 00002719 17 00002725 + 18 00002753 19 00002755 21 00002757 22 00002759 + 23 0000275C 25 00002764 + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.cpp (None), 0001:00002550-000025E0, line/addr pairs = 10 + + 7 00002550 10 0000259B 11 0000259F 12 000025A6 + 14 000025AA 15 000025AD 16 000025AF 17 000025B2 + 18 000025B5 7 000025C6 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.h (None), 0001:000025E0-000025E6, line/addr pairs = 2 + + 14 000025E0 17 000025E5 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.h (None), 0001:000025F0-00002692, line/addr pairs = 3 + + 21 000025F0 22 000025F8 23 0000268E + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp (None), 0001:00002340-0000239D, line/addr pairs = 2 + + 5 00002340 7 00002375 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp (None), 0001:000024E0-0000252F, line/addr pairs = 2 + + 11 000024E0 13 0000250B + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp (None), 0001:00002530-00002535, line/addr pairs = 2 + + 17 00002530 21 00002532 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp (None), 0001:00002540-00002543, line/addr pairs = 2 + + 25 00002540 29 00002542 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.h (None), 0001:000023A0-000023A6, line/addr pairs = 2 + + 19 000023A0 22 000023A5 + + C:\Users\Christian\Downloads\isle\LEGO1\gasstation.h (None), 0001:000023B0-000024BA, line/addr pairs = 3 + + 26 000023B0 27 000023B8 28 000024B6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.cpp (None), 0001:00002140-0000219D, line/addr pairs = 2 + + 5 00002140 7 00002175 + + C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.cpp (None), 0001:000022E0-0000232F, line/addr pairs = 2 + + 11 000022E0 13 0000230B + + C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.cpp (None), 0001:00002330-00002335, line/addr pairs = 2 + + 17 00002330 21 00002332 + + C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.h (None), 0001:000021A0-000021A6, line/addr pairs = 2 + + 16 000021A0 19 000021A5 + + C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.h (None), 0001:000021B0-000022BA, line/addr pairs = 3 + + 23 000021B0 24 000021B8 25 000022B6 + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.cpp (None), 0001:00001EC0-00001F31, line/addr pairs = 4 + + 9 00001EC0 10 00001EF5 11 00001EFF 12 00001F09 + + C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.h (None), 0001:00001F40-00001F46, line/addr pairs = 2 + + 15 00001F40 18 00001F45 + + C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.h (None), 0001:00001F50-000020C2, line/addr pairs = 3 + + 22 00001F50 23 00001F58 24 000020BE + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\dllmain.cpp (None), 0001:00001EB0-00001EB8, line/addr pairs = 2 + + 5 00001EB0 7 00001EB5 + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\carrace.cpp (None), 0001:00001C60-00001CE9, line/addr pairs = 3 + + 7 00001C60 9 00001C97 10 00001CBF + + C:\Users\Christian\Downloads\isle\LEGO1\carrace.h (None), 0001:00001CF0-00001CF6, line/addr pairs = 2 + + 15 00001CF0 18 00001CF5 + + C:\Users\Christian\Downloads\isle\LEGO1\carrace.h (None), 0001:00001D00-00001E3E, line/addr pairs = 3 + + 22 00001D00 23 00001D08 24 00001E3A + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.cpp (None), 0001:00001950-00001A06, line/addr pairs = 3 + + 5 00001950 7 000019D8 5 000019EC + + C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.cpp (None), 0001:00001C10-00001C5F, line/addr pairs = 2 + + 11 00001C10 13 00001C3B + + C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None), 0001:00001A10-00001A1A, line/addr pairs = 1 + + 77 00001A10 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h (None), 0001:00001A20-00001A26, line/addr pairs = 2 + + 24 00001A20 27 00001A25 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h (None), 0001:00001A30-00001AD2, line/addr pairs = 3 + + 31 00001A30 32 00001A38 33 00001ACE + + C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.h (None), 0001:00001B00-00001B06, line/addr pairs = 2 + + 15 00001B00 18 00001B05 + + C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.h (None), 0001:00001B10-00001BE6, line/addr pairs = 3 + + 22 00001B10 23 00001B18 24 00001BE2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\bike.cpp (None), 0001:000016D0-00001748, line/addr pairs = 5 + + 7 000016D0 8 00001705 9 0000170F 10 00001719 + 11 00001720 + + C:\Users\Christian\Downloads\isle\LEGO1\bike.h (None), 0001:00001750-00001756, line/addr pairs = 2 + + 15 00001750 18 00001755 + + C:\Users\Christian\Downloads\isle\LEGO1\bike.h (None), 0001:00001760-000018D2, line/addr pairs = 3 + + 22 00001760 23 00001768 24 000018CE + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.cpp (None), 0001:000016C0-000016C5, line/addr pairs = 2 + + 5 000016C0 9 000016C2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp (None), 0001:000014F0-0000156D, line/addr pairs = 4 + + 7 000014F0 10 00001539 12 0000153F 7 00001553 + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp (None), 0001:00001650-0000169F, line/addr pairs = 2 + + 16 00001650 18 0000167B + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp (None), 0001:000016A0-000016A8, line/addr pairs = 2 + + 22 000016A0 25 000016A5 + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp (None), 0001:000016B0-000016B3, line/addr pairs = 2 + + 29 000016B0 32 000016B2 + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.h (None), 0001:00001570-00001576, line/addr pairs = 2 + + 15 00001570 18 00001575 + + C:\Users\Christian\Downloads\isle\LEGO1\animstate.h (None), 0001:00001580-00001622, line/addr pairs = 3 + + 22 00001580 23 00001588 24 0000161E + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.cpp (None), 0001:00001320-000013BF, line/addr pairs = 11 + + 7 00001320 10 0000136B 12 00001372 14 00001379 + 15 0000137D 16 00001381 17 0000138B 18 0000138F + 19 00001393 20 00001397 7 000013A5 + + C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.h (None), 0001:000013C0-000013C6, line/addr pairs = 2 + + 14 000013C0 17 000013C5 + + C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.h (None), 0001:000013D0-00001472, line/addr pairs = 3 + + 21 000013D0 22 000013D8 23 0000146E + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\ambulance.cpp (None), 0001:00000DF0-00000E9C, line/addr pairs = 9 + + 9 00000DF0 11 00000E2D 13 00000E3A 15 00000E47 + 17 00000E54 18 00000E5E 19 00000E68 20 00000E7B + 21 00000E85 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00000EA0-00000EFD, line/addr pairs = 1 + + 16 00000EA0 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00000F00-00000F06, line/addr pairs = 2 + + 20 00000F00 23 00000F05 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00000F10-0000104E, line/addr pairs = 3 + + 27 00000F10 28 00000F18 29 0000104A + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00001050-00001053, line/addr pairs = 1 + + 33 00001050 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00001060-00001063, line/addr pairs = 1 + + 35 00001060 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00001070-00001075, line/addr pairs = 1 + + 37 00001070 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00001080-00001085, line/addr pairs = 1 + + 39 00001080 + + C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None), 0001:00001090-00001095, line/addr pairs = 1 + + 41 00001090 + + C:\Users\Christian\Downloads\isle\LEGO1\ambulance.h (None), 0001:00001120-00001126, line/addr pairs = 2 + + 14 00001120 17 00001125 + + C:\Users\Christian\Downloads\isle\LEGO1\ambulance.h (None), 0001:00001130-000012A2, line/addr pairs = 3 + + 21 00001130 22 00001138 23 0000129E + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\act3state.cpp (None), 0001:00000DE0-00000DE3, line/addr pairs = 2 + + 5 00000DE0 7 00000DE2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +Mod::GetEnumLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\act3.cpp (None), 0001:00000BE0-00000C3D, line/addr pairs = 2 + + 7 00000BE0 9 00000C15 + + C:\Users\Christian\Downloads\isle\LEGO1\act3.cpp (None), 0001:00000D90-00000DDF, line/addr pairs = 2 + + 13 00000D90 15 00000DBB + + C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h (None), 0001:00000C40-00000C41, line/addr pairs = 1 + + 41 00000C40 + + C:\Users\Christian\Downloads\isle\LEGO1\act3.h (None), 0001:00000C50-00000C56, line/addr pairs = 2 + + 16 00000C50 19 00000C55 + + C:\Users\Christian\Downloads\isle\LEGO1\act3.h (None), 0001:00000C60-00000D6A, line/addr pairs = 3 + + 23 00000C60 24 00000C68 25 00000D66 + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.cpp (None), 0001:00000BD0-00000BD5, line/addr pairs = 2 + + 5 00000BD0 9 00000BD2 + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp (None), 0001:000008B0-0000090D, line/addr pairs = 2 + + 5 000008B0 7 000008E5 + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp (None), 0001:00000B60-00000BAF, line/addr pairs = 2 + + 11 00000B60 13 00000B8B + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp (None), 0001:00000BB0-00000BB3, line/addr pairs = 2 + + 17 00000BB0 21 00000BB2 + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp (None), 0001:00000BC0-00000BC5, line/addr pairs = 2 + + 25 00000BC0 29 00000BC2 + + C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h (None), 0001:00000910-0000091A, line/addr pairs = 1 + + 42 00000910 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000920-00000924, line/addr pairs = 1 + + 27 00000920 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000930-0000093A, line/addr pairs = 1 + + 29 00000930 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000940-0000094A, line/addr pairs = 1 + + 31 00000940 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000950-00000954, line/addr pairs = 1 + + 33 00000950 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000960-00000964, line/addr pairs = 1 + + 35 00000960 + + C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None), 0001:00000970-0000097A, line/addr pairs = 1 + + 37 00000970 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000980-0000098D, line/addr pairs = 1 + + 33 00000980 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000990-00000997, line/addr pairs = 1 + + 35 00000990 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009A0-000009A3, line/addr pairs = 1 + + 41 000009A0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009B0-000009B3, line/addr pairs = 1 + + 43 000009B0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009C0-000009C3, line/addr pairs = 1 + + 47 000009C0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009D0-000009DD, line/addr pairs = 1 + + 51 000009D0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009E0-000009E7, line/addr pairs = 1 + + 53 000009E0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:000009F0-000009F7, line/addr pairs = 1 + + 55 000009F0 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000A00-00000A07, line/addr pairs = 1 + + 57 00000A00 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000A10-00000A1D, line/addr pairs = 1 + + 59 00000A10 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000A20-00000A2D, line/addr pairs = 1 + + 61 00000A20 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000A30-00000A31, line/addr pairs = 1 + + 63 00000A30 + + C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None), 0001:00000A40-00000A4D, line/addr pairs = 1 + + 65 00000A40 + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.h (None), 0001:00000A50-00000A56, line/addr pairs = 2 + + 18 00000A50 21 00000A55 + + C:\Users\Christian\Downloads\isle\LEGO1\act2brick.h (None), 0001:00000A60-00000B36, line/addr pairs = 3 + + 25 00000A60 26 00000A68 27 00000B32 + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\act1state.cpp (None), 0001:00000650-000006C3, line/addr pairs = 3 + + 5 00000650 7 00000698 5 000006A9 + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.h (None), 0001:000006D0-000006D6, line/addr pairs = 2 + + 16 000006D0 19 000006D5 + + C:\Users\Christian\Downloads\isle\LEGO1\legostate.h (None), 0001:000006E0-00000752, line/addr pairs = 3 + + 23 000006E0 24 000006E8 25 0000074E + + C:\Users\Christian\Downloads\isle\LEGO1\act1state.h (None), 0001:00000760-00000766, line/addr pairs = 2 + + 14 00000760 17 00000765 + + C:\Users\Christian\Downloads\isle\LEGO1\act1state.h (None), 0001:00000770-00000812, line/addr pairs = 3 + + 21 00000770 22 00000778 23 0000080E + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000000-000000FD, line/addr pairs = 8 + + 12 00000000 13 00000092 15 00000098 18 0000009E + 21 000000A4 25 000000AA 29 000000AE 12 000000C7 + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000180-000001F2, line/addr pairs = 3 + + 32 00000180 33 000001AB 34 000001B0 + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000200-00000222, line/addr pairs = 6 + + 37 00000200 38 00000205 40 00000208 41 00000215 + 44 0000021D 45 00000220 + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000230-00000261, line/addr pairs = 6 + + 49 00000230 53 0000023B 54 00000241 56 00000249 + 60 00000258 61 0000025C + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000270-00000466, line/addr pairs = 52 + + 64 00000270 72 0000027D 73 00000289 74 00000290 + 75 0000029D 79 000002A6 81 000002AA 86 000002BC + 92 000002D2 93 000002DD 95 000002E9 97 000002EB + 98 000002F5 99 000002FC 102 00000305 103 0000030A + 104 0000030F 106 00000311 107 00000318 108 00000322 + 111 0000032A 117 00000332 118 00000339 119 00000343 + 121 0000034B 123 00000353 124 0000035A 126 0000036F + 129 00000371 130 00000373 133 0000037B 134 00000380 + 137 0000038C 138 00000393 142 000003A3 144 000003B2 + 146 000003BB 148 000003C7 151 000003D0 152 000003DB + 154 000003E6 155 000003F7 156 000003F9 157 00000406 + 158 00000410 159 00000417 160 0000041E 163 00000427 + 164 0000043D 168 0000044A 170 00000450 173 0000045D + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000470-00000489, line/addr pairs = 4 + + 176 00000470 177 00000473 178 00000480 179 00000487 + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None), 0001:00000490-0000064B, line/addr pairs = 13 + + 182 00000490 183 000004B0 185 000004E3 191 000004F7 + 192 00000503 194 00000509 196 0000054C 200 00000595 + 217 000005E3 220 000005EA 221 000005FD 227 00000608 + 230 0000060E + + C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\../mxdirectx/mxstopwatch.h (None), 0001:00000100-00000101, line/addr pairs = 1 + + 21 00000100 + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumLines failed + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +Mod::GetEnumLines failed + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +Mod::GetEnumLines failed + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +Mod::GetEnumLines failed + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +Mod::GetEnumLines failed + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumLines failed + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +Mod::GetEnumLines failed + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +Mod::GetEnumLines failed + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +Mod::GetEnumLines failed + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +Mod::GetEnumLines failed + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +Mod::GetEnumLines failed + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumLines failed + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumLines failed + + +*** IL LINES + +** Module: "LEGO1.exp" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +Mod::GetEnumILLines failed + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +Mod::GetEnumILLines failed + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +Mod::GetEnumILLines failed + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +Mod::GetEnumILLines failed + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +Mod::GetEnumILLines failed + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +Mod::GetEnumILLines failed + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +Mod::GetEnumILLines failed + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +Mod::GetEnumILLines failed + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +Mod::GetEnumILLines failed + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +Mod::GetEnumILLines failed + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +Mod::GetEnumILLines failed + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +Mod::GetEnumILLines failed + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumILLines failed + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +Mod::GetEnumILLines failed + + +*** SOURCE FILES + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../tgl/tglvector.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../realtime/lodlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\towtrack.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\towtrack.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\light.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\../tgl.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\camera.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\skateboard.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\skateboard.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\scorestate.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\score.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\score.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtime.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\radiostate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\radiostate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\radio.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\radio.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\racestate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\racestate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\racecar.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\racecar.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\policestate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\policestate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\police.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\police.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\pizza.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\pizza.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparamflags.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxvariable.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d7c88.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h (None) + 2 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxnextactiondatastart.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxscheduler.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateparam.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateflags.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xstddef (None) + 2 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxentity.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxentity.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunklist.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsactionlist.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.h (None) + 3 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xmemory (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxautolocker.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.h (None) + 2 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.h (None) + 2 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontrollerlist.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxpresenterlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.h (None) + 3 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d9d00.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 6 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legounksavedatawriter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp (None) + 1 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum (None) + 2 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocale (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/matrix.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/roi.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/orientableroi.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/viewroi.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legorace.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legostream.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoomni.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\legoworldlist.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + 6 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list (None) + 7 C:\Users\Christian\Downloads\isle\LEGO1\mxrect32.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoobjectfactory.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\realtime/vector.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\helicopterstate.h (None) + 6 C:\Users\Christian\Downloads\isle\LEGO1\lego3dwavepresenter.h (None) + 7 C:\Users\Christian\Downloads\isle\LEGO1\legoraceactor.h (None) + 8 C:\Users\Christian\Downloads\isle\LEGO1\legocarraceactor.h (None) + 9 C:\Users\Christian\Downloads\isle\LEGO1\legoact2state.h (None) + 10 C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.h (None) + 11 C:\Users\Christian\Downloads\isle\LEGO1\legoactorpresenter.h (None) + 12 C:\Users\Christian\Downloads\isle\LEGO1\legojetskiraceactor.h (None) + 13 C:\Users\Christian\Downloads\isle\LEGO1\legojetski.h (None) + 14 C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.h (None) + 15 C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.h (None) + 16 C:\Users\Christian\Downloads\isle\LEGO1\legoracecar.h (None) + 17 C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.h (None) + 18 C:\Users\Christian\Downloads\isle\LEGO1\isleactor.h (None) + 19 C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.h (None) + 20 C:\Users\Christian\Downloads\isle\LEGO1\scorestate.h (None) + 21 C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.h (None) + 22 C:\Users\Christian\Downloads\isle\LEGO1\act3state.h (None) + 23 C:\Users\Christian\Downloads\isle\LEGO1\doors.h (None) + 24 C:\Users\Christian\Downloads\isle\LEGO1\act3actor.h (None) + 25 C:\Users\Christian\Downloads\isle\LEGO1\act3shark.h (None) + 26 C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.h (None) + 27 C:\Users\Christian\Downloads\isle\LEGO1\bumpbouy.h (None) + 28 C:\Users\Christian\Downloads\isle\LEGO1\carracestate.h (None) + 29 C:\Users\Christian\Downloads\isle\LEGO1\gasstationentity.h (None) + 30 C:\Users\Christian\Downloads\isle\LEGO1\hospitalentity.h (None) + 31 C:\Users\Christian\Downloads\isle\LEGO1\infocenterentity.h (None) + 32 C:\Users\Christian\Downloads\isle\LEGO1\jetskiracestate.h (None) + 33 C:\Users\Christian\Downloads\isle\LEGO1\pizzeria.h (None) + 34 C:\Users\Christian\Downloads\isle\LEGO1\policeentity.h (None) + 35 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcore.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\legoeventnotificationparam.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.h (None) + 5 C:\Users\Christian\Downloads\isle\LEGO1\mxparam.h (None) + 6 C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoloopinganimpresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legofullscreenmovie.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxcore.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legobackgroundcolor.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoactor.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\jukebox.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\jukebox.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\jetski.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\jetski.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\isle.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\infocenter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\hospital.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\hospital.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\historybook.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\historybook.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\helicopter.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\gasstation.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\dllmain.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\carrace.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\carrace.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\bike.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\bike.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\animstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\ambulance.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\ambulance.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\act3state.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\act3.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\act3.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.cpp (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h (None) + 3 C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h (None) + 4 C:\Users\Christian\Downloads\isle\LEGO1\act2brick.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\act1state.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\legostate.h (None) + 2 C:\Users\Christian\Downloads\isle\LEGO1\act1state.h (None) + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + + 0 C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp (None) + 1 C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\../mxdirectx/mxstopwatch.h (None) + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** SECTION CONTRIBUTIONS + + Imod Address Size Characteristics + 00DA 0001:00000000 000000FD 60501020 + 00DA 0001:00000100 00000001 60501020 + 00DA 0001:00000110 0000001E 60501020 + 00DA 0001:00000130 0000004C 60501020 + 00DA 0001:00000180 00000072 60501020 + 00DA 0001:00000200 00000022 60501020 + 00DA 0001:00000230 00000031 60501020 + 00DA 0001:00000270 000001F6 60501020 + 00DA 0001:00000470 00000019 60501020 + 00DA 0001:00000490 000001BB 60501020 + 00D9 0001:00000650 00000073 60501020 + 00D9 0001:000006D0 00000006 60501020 + 00D9 0001:000006E0 00000072 60501020 + 00D9 0001:00000760 00000006 60501020 + 00D9 0001:00000770 000000A2 60501020 + 00D9 0001:00000820 00000061 60501020 + 00D9 0001:00000890 0000001E 60501020 + 00D8 0001:000008B0 0000005D 60501020 + 00D8 0001:00000910 0000000A 60501020 + 00D8 0001:00000920 00000004 60501020 + 00D8 0001:00000930 0000000A 60501020 + 00D8 0001:00000940 0000000A 60501020 + 00D8 0001:00000950 00000004 60501020 + 00D8 0001:00000960 00000004 60501020 + 00D8 0001:00000970 0000000A 60501020 + 00D8 0001:00000980 0000000D 60501020 + 00D8 0001:00000990 00000007 60501020 + 00D8 0001:000009A0 00000003 60501020 + 00D8 0001:000009B0 00000003 60501020 + 00D8 0001:000009C0 00000003 60501020 + 00D8 0001:000009D0 0000000D 60501020 + 00D8 0001:000009E0 00000007 60501020 + 00D8 0001:000009F0 00000007 60501020 + 00D8 0001:00000A00 00000007 60501020 + 00D8 0001:00000A10 0000000D 60501020 + 00D8 0001:00000A20 0000000D 60501020 + 00D8 0001:00000A30 00000001 60501020 + 00D8 0001:00000A40 0000000D 60501020 + 00D8 0001:00000A50 00000006 60501020 + 00D8 0001:00000A60 000000D6 60501020 + 00D8 0001:00000B40 0000001E 60501020 + 00D8 0001:00000B60 0000004F 60501020 + 00D8 0001:00000BB0 00000003 60501020 + 00D8 0001:00000BC0 00000005 60501020 + 00D7 0001:00000BD0 00000005 60501020 + 00D6 0001:00000BE0 0000005D 60501020 + 00D6 0001:00000C40 00000001 60501020 + 00D6 0001:00000C50 00000006 60501020 + 00D6 0001:00000C60 0000010A 60501020 + 00D6 0001:00000D70 0000001E 60501020 + 00D6 0001:00000D90 0000004F 60501020 + 00D4 0001:00000DE0 00000003 60501020 + 00D3 0001:00000DF0 000000AC 60501020 + 00D3 0001:00000EA0 0000005D 60501020 + 00D3 0001:00000F00 00000006 60501020 + 00D3 0001:00000F10 0000013E 60501020 + 00D3 0001:00001050 00000003 60501020 + 00D3 0001:00001060 00000003 60501020 + 00D3 0001:00001070 00000005 60501020 + 00D3 0001:00001080 00000005 60501020 + 00D3 0001:00001090 00000005 60501020 + 00D3 0001:000010A0 00000075 60501020 + 00D3 0001:00001120 00000006 60501020 + 00D3 0001:00001130 00000172 60501020 + 00D3 0001:000012B0 00000061 60501020 + 00D2 0001:00001320 0000009F 60501020 + 00D2 0001:000013C0 00000006 60501020 + 00D2 0001:000013D0 000000A2 60501020 + 00D2 0001:00001480 00000061 60501020 + 00D1 0001:000014F0 0000007D 60501020 + 00D1 0001:00001570 00000006 60501020 + 00D1 0001:00001580 000000A2 60501020 + 00D1 0001:00001630 0000001E 60501020 + 00D1 0001:00001650 0000004F 60501020 + 00D1 0001:000016A0 00000008 60501020 + 00D1 0001:000016B0 00000003 60501020 + 00D0 0001:000016C0 00000005 60501020 + 00CF 0001:000016D0 00000078 60501020 + 00CF 0001:00001750 00000006 60501020 + 00CF 0001:00001760 00000172 60501020 + 00CF 0001:000018E0 00000061 60501020 + 00CE 0001:00001950 000000B6 60501020 + 00CE 0001:00001A10 0000000A 60501020 + 00CE 0001:00001A20 00000006 60501020 + 00CE 0001:00001A30 000000A2 60501020 + 00CE 0001:00001AE0 0000001E 60501020 + 00CE 0001:00001B00 00000006 60501020 + 00CE 0001:00001B10 000000D6 60501020 + 00CE 0001:00001BF0 0000001E 60501020 + 00CE 0001:00001C10 0000004F 60501020 + 00CC 0001:00001C60 00000089 60501020 + 00CC 0001:00001CF0 00000006 60501020 + 00CC 0001:00001D00 0000013E 60501020 + 00CC 0001:00001E40 00000061 60501020 + 00CA 0001:00001EB0 00000008 60501020 + 00C9 0001:00001EC0 00000071 60501020 + 00C9 0001:00001F40 00000006 60501020 + 00C9 0001:00001F50 00000172 60501020 + 00C9 0001:000020D0 00000061 60501020 + 00C8 0001:00002140 0000005D 60501020 + 00C8 0001:000021A0 00000006 60501020 + 00C8 0001:000021B0 0000010A 60501020 + 00C8 0001:000022C0 0000001E 60501020 + 00C8 0001:000022E0 0000004F 60501020 + 00C8 0001:00002330 00000005 60501020 + 00C7 0001:00002340 0000005D 60501020 + 00C7 0001:000023A0 00000006 60501020 + 00C7 0001:000023B0 0000010A 60501020 + 00C7 0001:000024C0 0000001E 60501020 + 00C7 0001:000024E0 0000004F 60501020 + 00C7 0001:00002530 00000005 60501020 + 00C7 0001:00002540 00000003 60501020 + 00C5 0001:00002550 00000090 60501020 + 00C5 0001:000025E0 00000006 60501020 + 00C5 0001:000025F0 000000A2 60501020 + 00C5 0001:000026A0 00000061 60501020 + 00C4 0001:00002710 0000005A 60501020 + 00C3 0001:00002770 000000F5 60501020 + 00C3 0001:00002870 00000018 60501020 + 00C3 0001:00002890 00000006 60501020 + 00C3 0001:000028A0 00000172 60501020 + 00C3 0001:00002A20 0000001E 60501020 + 00C3 0001:00002A40 00000084 60501020 + 00C3 0001:00002AD0 00000055 60501020 + 00C3 0001:00002B30 00000037 60501020 + 00C3 0001:00002B70 00000112 60501020 + 00C3 0001:00002C90 0000015E 60501020 + 00C3 0001:00002DF0 00000448 60501020 + 00C3 0001:00003240 00000220 60501020 + 00C3 0001:00003460 00000042 60501020 + 00C3 0001:000034B0 00000185 60501020 + 00C3 0001:00003640 000001FD 60501020 + 00C1 0001:00003840 0000005D 60501020 + 00C1 0001:000038A0 00000006 60501020 + 00C1 0001:000038B0 0000010A 60501020 + 00C1 0001:000039C0 0000001E 60501020 + 00C1 0001:000039E0 0000004F 60501020 + 00C1 0001:00003A30 00000005 60501020 + 00C0 0001:00003A40 000000B3 60501020 + 00C0 0001:00003B00 00000006 60501020 + 00C0 0001:00003B10 0000010A 60501020 + 00C0 0001:00003C20 0000001E 60501020 + 00C0 0001:00003C40 0000004F 60501020 + 00C0 0001:00003C90 00000005 60501020 + 00BE 0001:00003CA0 00000089 60501020 + 00BE 0001:00003D30 00000006 60501020 + 00BE 0001:00003D40 000000A2 60501020 + 00BE 0001:00003DF0 00000061 60501020 + 00BD 0001:00003E60 0000005D 60501020 + 00BD 0001:00003EC0 00000006 60501020 + 00BD 0001:00003ED0 0000010A 60501020 + 00BD 0001:00003FE0 0000001E 60501020 + 00BD 0001:00004000 0000004F 60501020 + 00BD 0001:00004050 00000008 60501020 + 00BD 0001:00004060 00000005 60501020 + 00BD 0001:00004070 00000001 60501020 + 00BD 0001:00004080 00000003 60501020 + 00BD 0001:00004090 00000003 60501020 + 00BD 0001:000040A0 00000003 60501020 + 00BD 0001:000040B0 00000003 60501020 + 00BC 0001:000040C0 0000005D 60501020 + 00BC 0001:00004120 00000006 60501020 + 00BC 0001:00004130 0000010A 60501020 + 00BC 0001:00004240 0000001E 60501020 + 00BC 0001:00004260 0000004F 60501020 + 00BC 0001:000042B0 00000005 60501020 + 00BA 0001:000042C0 00000073 60501020 + 00BA 0001:00004340 00000006 60501020 + 00BA 0001:00004350 000000A2 60501020 + 00BA 0001:00004400 0000001E 60501020 + 00BA 0001:00004420 0000004F 60501020 + 00B9 0001:00004470 000000DB 60501020 + 00B9 0001:00004550 00000006 60501020 + 00B9 0001:00004560 0000010A 60501020 + 00B9 0001:00004670 00000003 60501020 + 00B9 0001:00004680 00000001 60501020 + 00B9 0001:00004690 0000001E 60501020 + 00B9 0001:000046B0 000000CB 60501020 + 00B9 0001:00004780 000000E6 60501020 + 00B9 0001:00004870 00000177 60501020 + 00B9 0001:000049F0 00000005 60501020 + 00B9 0001:00004A00 00000001 60501020 + 00B9 0001:00004A10 00000005 60501020 + 00B9 0001:00004A20 00000005 60501020 + 00B9 0001:00004A30 00000003 60501020 + 00B9 0001:00004A40 00000003 60501020 + 00B9 0001:00004A50 00000140 60501020 + 00B9 0001:00004B90 00000088 60501020 + 00B9 0001:00004C20 00000003 60501020 + 00B7 0001:00004C30 0000007B 60501020 + 00B7 0001:00004CB0 0000001B 60501020 + 00B7 0001:00004CD0 00000001 60501020 + 00B7 0001:00004CE0 00000001 60501020 + 00B7 0001:00004CF0 00000003 60501020 + 00B7 0001:00004D00 00000001 60501020 + 00B6 0001:00004D10 00000078 60501020 + 00B6 0001:00004D90 00000006 60501020 + 00B6 0001:00004DA0 00000172 60501020 + 00B6 0001:00004F20 00000061 60501020 + 00B4 0001:00004F90 00000075 60501020 + 00B4 0001:00005010 00000006 60501020 + 00B4 0001:00005020 0000010A 60501020 + 00B4 0001:00005130 00000061 60501020 + 00B3 0001:000051A0 000000B6 60501020 + 00B3 0001:00005260 00000006 60501020 + 00B3 0001:00005270 000000D6 60501020 + 00B3 0001:00005350 0000001E 60501020 + 00B3 0001:00005370 0000004F 60501020 + 00B2 0001:000053C0 00000003 60501020 + 00B1 0001:000053D0 00000048 60501020 + 00B1 0001:00005420 00000014 60501020 + 00B1 0001:00005440 0000001E 60501020 + 00B1 0001:00005460 0000000B 60501020 + 00B1 0001:00005470 000000E2 60501020 + 00B1 0001:00005560 00000041 60501020 + 00B1 0001:000055B0 00000009 60501020 + 00B0 0001:000055C0 00000009 60501020 + 00B0 0001:000055D0 0000001E 60501020 + 00B0 0001:000055F0 00000007 60501020 + 00B0 0001:00005600 00000049 60501020 + 00B0 0001:00005650 00000003 60501020 + 00B0 0001:00005660 00000003 60501020 + 00B0 0001:00005670 00000005 60501020 + 00AE 0001:00005680 00000001 60501020 + 00AE 0001:00005690 00000001 60501020 + 00AE 0001:000056A0 00000028 60501020 + 00AE 0001:000056D0 0000002D 60501020 + 00AE 0001:00005700 000000E6 60501020 + 00AD 0001:000057F0 000000C5 60501020 + 00AD 0001:000058C0 00000006 60501020 + 00AD 0001:000058D0 000000D6 60501020 + 00AD 0001:000059B0 00000061 60501020 + 00AB 0001:00005A20 0000000A 60501020 + 00AB 0001:00005A30 0000005D 60501020 + 00AB 0001:00005A90 00000006 60501020 + 00AB 0001:00005AA0 00000072 60501020 + 00AB 0001:00005B20 0000001E 60501020 + 00AB 0001:00005B40 0000004F 60501020 + 00AB 0001:00005B90 00000001 60501020 + 00AB 0001:00005BA0 00000003 60501020 + 00AB 0001:00005BB0 00000005 60501020 + 00AB 0001:00005BC0 00000003 60501020 + 00AB 0001:00005BD0 00000003 60501020 + 00AA 0001:00005BE0 0000005D 60501020 + 00AA 0001:00005C40 00000006 60501020 + 00AA 0001:00005C50 000000D6 60501020 + 00AA 0001:00005D30 00000061 60501020 + 00A9 0001:00005DA0 000000CB 60501020 + 00A9 0001:00005E70 00000006 60501020 + 00A9 0001:00005E80 00000072 60501020 + 00A9 0001:00005F00 0000001E 60501020 + 00A9 0001:00005F20 00000006 60501020 + 00A9 0001:00005F30 000000A2 60501020 + 00A9 0001:00005FE0 0000001E 60501020 + 00A9 0001:00006000 00000006 60501020 + 00A9 0001:00006010 000000D6 60501020 + 00A9 0001:000060F0 0000001E 60501020 + 00A9 0001:00006110 00000006 60501020 + 00A9 0001:00006120 0000010A 60501020 + 00A9 0001:00006230 00000061 60501020 + 00A9 0001:000062A0 00000001 60501020 + 00A8 0001:000062B0 000000B2 60501020 + 00A8 0001:00006370 00000064 60501020 + 00A8 0001:000063E0 000001BF 60501020 + 00A7 0001:000065A0 0000000A 60501020 + 00A7 0001:000065B0 00000064 60501020 + 00A7 0001:00006620 0000003F 60501020 + 00A7 0001:00006660 00000006 60501020 + 00A7 0001:00006670 0000001E 60501020 + 00A7 0001:00006690 0000004F 60501020 + 00A7 0001:000066E0 00000001 60501020 + 00A6 0001:000066F0 00000064 60501020 + 00A6 0001:00006760 00000006 60501020 + 00A6 0001:00006770 00000072 60501020 + 00A6 0001:000067F0 0000001E 60501020 + 00A6 0001:00006810 0000004F 60501020 + 00A6 0001:00006860 00000001 60501020 + 00A5 0001:00006870 0000005D 60501020 + 00A5 0001:000068D0 00000006 60501020 + 00A5 0001:000068E0 00000072 60501020 + 00A5 0001:00006960 0000001E 60501020 + 00A5 0001:00006980 0000004F 60501020 + 00A5 0001:000069D0 00000003 60501020 + 00A5 0001:000069E0 00000003 60501020 + 00A5 0001:000069F0 00000037 60501020 + 00A5 0001:00006A30 00000001 60501020 + 00A5 0001:00006A40 00000037 60501020 + 00A5 0001:00006A80 00000001 60501020 + 00A5 0001:00006A90 00000037 60501020 + 00A5 0001:00006AD0 00000001 60501020 + 00A4 0001:00006AE0 0000005D 60501020 + 00A4 0001:00006B40 00000006 60501020 + 00A4 0001:00006B50 0000010A 60501020 + 00A4 0001:00006C60 0000001E 60501020 + 00A4 0001:00006C80 0000004F 60501020 + 00A4 0001:00006CD0 00000003 60501020 + 00A4 0001:00006CE0 00000005 60501020 + 00A3 0001:00006CF0 0000005D 60501020 + 00A3 0001:00006D50 00000006 60501020 + 00A3 0001:00006D60 0000013E 60501020 + 00A3 0001:00006EA0 0000001E 60501020 + 00A3 0001:00006EC0 00000049 60501020 + 00A3 0001:00006F10 0000004F 60501020 + 00A2 0001:00006F60 0000005D 60501020 + 00A2 0001:00006FC0 00000006 60501020 + 00A2 0001:00006FD0 00000072 60501020 + 00A2 0001:00007050 0000001E 60501020 + 00A2 0001:00007070 0000004F 60501020 + 00A2 0001:000070C0 00000003 60501020 + 00A2 0001:000070D0 00000003 60501020 + 00A2 0001:000070E0 00000003 60501020 + 00A1 0001:000070F0 0000005D 60501020 + 00A1 0001:00007150 0000005B 60501020 + 00A1 0001:000071B0 00000003 60501020 + 00A1 0001:000071C0 00000003 60501020 + 00A1 0001:000071D0 00000026 60501020 + 00A1 0001:00007200 0000001A 60501020 + 00A1 0001:00007220 0000001A 60501020 + 00A1 0001:00007240 00000003 60501020 + 00A1 0001:00007250 00000003 60501020 + 00A1 0001:00007260 00000001 60501020 + 00A1 0001:00007270 000000F8 60501020 + 00A1 0001:00007370 00000001 60501020 + 00A1 0001:00007380 00000001 60501020 + 00A1 0001:00007390 00000001 60501020 + 00A1 0001:000073A0 00000001 60501020 + 00A1 0001:000073B0 00000001 60501020 + 00A1 0001:000073C0 00000001 60501020 + 00A1 0001:000073D0 00000001 60501020 + 00A1 0001:000073E0 00000005 60501020 + 00A0 0001:000073F0 00000064 60501020 + 00A0 0001:00007460 00000006 60501020 + 00A0 0001:00007470 000000D6 60501020 + 00A0 0001:00007550 0000001E 60501020 + 00A0 0001:00007570 00000008 60501020 + 00A0 0001:00007580 0000005D 60501020 + 00A0 0001:000075E0 0000000C 60501020 + 00A0 0001:000075F0 00000024 60501020 + 00A0 0001:00007620 00000008 60501020 + 00A0 0001:00007630 00000032 60501020 + 00A0 0001:00007670 00000060 60501020 + 00A0 0001:000076D0 0000000C 60501020 + 00A0 0001:000076E0 00000020 60501020 + 00A0 0001:00007700 0000004C 60501020 + 009E 0001:00007750 00000064 60501020 + 009E 0001:000077C0 0000010A 60501020 + 009E 0001:000078D0 00000006 60501020 + 009E 0001:000078E0 00000061 60501020 + 009E 0001:00007950 00000009 60501020 + 009D 0001:00007960 000000B2 60501020 + 009D 0001:00007A20 000000A4 60501020 + 009C 0001:00007AD0 0000015F 60501020 + 009C 0001:00007C30 00000052 60501020 + 009C 0001:00007C90 000001A9 60501020 + 009C 0001:00007E40 00000005 60501020 + 009C 0001:00007E50 00000067 60501020 + 009C 0001:00007EC0 0000005A 60501020 + 009C 0001:00007F20 00000162 60501020 + 009C 0001:00008090 00000003 60501020 + 009C 0001:000080A0 00000003 60501020 + 009C 0001:000080B0 00000003 60501020 + 009C 0001:000080C0 0000000E 60501020 + 009C 0001:000080D0 000000DD 60501020 + 009C 0001:000081B0 00000046 60501020 + 009C 0001:00008200 00000026 60501020 + 009C 0001:00008230 000000D1 60501020 + 009C 0001:00008310 00000001 60501020 + 009C 0001:00008320 00000003 60501020 + 009C 0001:00008330 000000D0 60501020 + 009C 0001:00008400 0000000A 60501020 + 009C 0001:00008410 00000063 60501020 + 009B 0001:00008480 00000079 60501020 + 009B 0001:00008500 00000006 60501020 + 009B 0001:00008510 0000013E 60501020 + 009B 0001:00008650 00000006 60501020 + 009B 0001:00008660 0000013E 60501020 + 009B 0001:000087A0 00000061 60501020 + 009B 0001:00008810 00000049 60501020 + 009B 0001:00008860 00000061 60501020 + 009B 0001:000088D0 00000001 60501020 + 009A 0001:000088E0 0000011B 60501020 + 009A 0001:00008A00 0000001E 60501020 + 009A 0001:00008A20 00000008 60501020 + 009A 0001:00008A30 0000006F 60501020 + 009A 0001:00008AA0 000000DF 60501020 + 009A 0001:00008B80 00000006 60501020 + 009A 0001:00008B90 00000043 60501020 + 009A 0001:00008BE0 0000004F 60501020 + 009A 0001:00008C30 0000004F 60501020 + 009A 0001:00008C80 00000007 60501020 + 009A 0001:00008C90 0000001F 60501020 + 009A 0001:00008CB0 00000067 60501020 + 009A 0001:00008D20 00000067 60501020 + 009A 0001:00008D90 0000004F 60501020 + 009A 0001:00008DE0 0000005D 60501020 + 009A 0001:00008E40 00000067 60501020 + 009A 0001:00008EB0 000000E5 60501020 + 009A 0001:00008FA0 000000B1 60501020 + 009A 0001:00009060 00000061 60501020 + 009A 0001:000090D0 00000049 60501020 + 009A 0001:00009120 00000061 60501020 + 009A 0001:00009190 00000042 60501020 + 009A 0001:000091E0 0000006A 60501020 + 009A 0001:00009250 00000045 60501020 + 009A 0001:000092A0 000000D3 60501020 + 009A 0001:00009380 00000148 60501020 + 009A 0001:000094D0 00000003 60501020 + 009A 0001:000094E0 00000003 60501020 + 009A 0001:000094F0 0000000A 60501020 + 009A 0001:00009500 00000008 60501020 + 009A 0001:00009510 0000000A 60501020 + 009A 0001:00009520 00000008 60501020 + 009A 0001:00009530 000000D2 60501020 + 009A 0001:00009610 00000192 60501020 + 009A 0001:000097B0 00000005 60501020 + 009A 0001:000097C0 0000001F 60501020 + 009A 0001:000097E0 0000001E 60501020 + 009A 0001:00009800 000000CD 60501020 + 0098 0001:000098D0 00000103 60501020 + 0098 0001:000099E0 00000006 60501020 + 0098 0001:000099F0 000000D6 60501020 + 0098 0001:00009AD0 00000061 60501020 + 0098 0001:00009B40 00000049 60501020 + 0098 0001:00009B90 00000006 60501020 + 0098 0001:00009BA0 0000010A 60501020 + 0098 0001:00009CB0 00000006 60501020 + 0098 0001:00009CC0 0000013E 60501020 + 0098 0001:00009E00 0000001E 60501020 + 0098 0001:00009E20 0000001E 60501020 + 0098 0001:00009E40 00000006 60501020 + 0098 0001:00009E50 0000001E 60501020 + 0098 0001:00009E70 0000005D 60501020 + 0098 0001:00009ED0 0000000C 60501020 + 0098 0001:00009EE0 0000001F 60501020 + 0097 0001:00009F00 00000079 60501020 + 0097 0001:00009F80 00000006 60501020 + 0097 0001:00009F90 0000017C 60501020 + 0097 0001:0000A110 00000061 60501020 + 0097 0001:0000A180 00000001 60501020 + 0095 0001:0000A190 00000008 60501020 + 0095 0001:0000A1A0 0000000A 60501020 + 0095 0001:0000A1B0 00000003 60501020 + 0095 0001:0000A1C0 00000001 60501020 + 0095 0001:0000A1D0 00000001 60501020 + 0094 0001:0000A1E0 000000B5 60501020 + 0094 0001:0000A2A0 00000006 60501020 + 0094 0001:0000A2B0 00000072 60501020 + 0094 0001:0000A330 0000001E 60501020 + 0094 0001:0000A350 00000063 60501020 + 0094 0001:0000A3C0 0000002E 60501020 + 0094 0001:0000A3F0 00000067 60501020 + 0094 0001:0000A460 00000083 60501020 + 0094 0001:0000A4F0 0000006B 60501020 + 0094 0001:0000A560 000000C1 60501020 + 0094 0001:0000A630 0000007E 60501020 + 0094 0001:0000A6B0 00000049 60501020 + 0094 0001:0000A700 00000096 60501020 + 0093 0001:0000A7A0 00001D97 60501020 + 0093 0001:0000C540 00000006 60501020 + 0093 0001:0000C550 00000072 60501020 + 0093 0001:0000C5D0 0000001E 60501020 + 0093 0001:0000C5F0 00000144 60501020 + 0093 0001:0000C740 000007D8 60501020 + 0093 0001:0000CF20 00002583 60501020 + 0093 0001:0000F4B0 00000012 60501020 + 0093 0001:0000F4D0 00000006 60501020 + 0093 0001:0000F4E0 000000D6 60501020 + 0093 0001:0000F5C0 00000006 60501020 + 0093 0001:0000F5D0 0000010A 60501020 + 0093 0001:0000F6E0 00000006 60501020 + 0093 0001:0000F6F0 000000A2 60501020 + 0093 0001:0000F7A0 00000006 60501020 + 0093 0001:0000F7B0 00000172 60501020 + 0093 0001:0000F930 00000006 60501020 + 0093 0001:0000F940 0000013E 60501020 + 0093 0001:0000FA80 00000006 60501020 + 0093 0001:0000FA90 00000172 60501020 + 0093 0001:0000FC10 00000006 60501020 + 0093 0001:0000FC20 000000A2 60501020 + 0093 0001:0000FCD0 00000006 60501020 + 0093 0001:0000FCE0 000000D6 60501020 + 0093 0001:0000FDC0 00000089 60501020 + 0093 0001:0000FE50 00000006 60501020 + 0093 0001:0000FE60 0000010A 60501020 + 0093 0001:0000FF70 00000006 60501020 + 0093 0001:0000FF80 000001A6 60501020 + 0093 0001:00010130 00000006 60501020 + 0093 0001:00010140 000001DA 60501020 + 0093 0001:00010320 00000006 60501020 + 0093 0001:00010330 0000010A 60501020 + 0093 0001:00010440 00000006 60501020 + 0093 0001:00010450 000000D6 60501020 + 0093 0001:00010530 00000006 60501020 + 0093 0001:00010540 000001A6 60501020 + 0093 0001:000106F0 00000006 60501020 + 0093 0001:00010700 000000D6 60501020 + 0093 0001:000107E0 00000006 60501020 + 0093 0001:000107F0 0000010A 60501020 + 0093 0001:00010900 00000006 60501020 + 0093 0001:00010910 000000A2 60501020 + 0093 0001:000109C0 00000006 60501020 + 0093 0001:000109D0 000000A2 60501020 + 0093 0001:00010A80 00000006 60501020 + 0093 0001:00010A90 000000D6 60501020 + 0093 0001:00010B70 00000006 60501020 + 0093 0001:00010B80 000000A2 60501020 + 0093 0001:00010C30 00000061 60501020 + 0093 0001:00010CA0 00000006 60501020 + 0093 0001:00010CB0 0000013E 60501020 + 0093 0001:00010DF0 00000006 60501020 + 0093 0001:00010E00 00000006 60501020 + 0093 0001:00010E10 00000006 60501020 + 0093 0001:00010E20 0000010A 60501020 + 0093 0001:00010F30 00000006 60501020 + 0093 0001:00010F40 0000013E 60501020 + 0093 0001:00011080 00000006 60501020 + 0093 0001:00011090 000000D6 60501020 + 0093 0001:00011170 00000006 60501020 + 0093 0001:00011180 0000010A 60501020 + 0093 0001:00011290 00000006 60501020 + 0093 0001:000112A0 0000010A 60501020 + 0093 0001:000113B0 00000006 60501020 + 0093 0001:000113C0 0000010A 60501020 + 0093 0001:000114D0 00000006 60501020 + 0093 0001:000114E0 000000D6 60501020 + 0093 0001:000115C0 00000006 60501020 + 0093 0001:000115D0 0000013E 60501020 + 0093 0001:00011710 00000006 60501020 + 0093 0001:00011720 0000010A 60501020 + 0093 0001:00011830 00000006 60501020 + 0093 0001:00011840 000000A2 60501020 + 0093 0001:000118F0 00000061 60501020 + 0093 0001:00011960 0000001E 60501020 + 0093 0001:00011980 00000061 60501020 + 0093 0001:000119F0 00000061 60501020 + 0093 0001:00011A60 00000061 60501020 + 0093 0001:00011AD0 00000061 60501020 + 0093 0001:00011B40 00000049 60501020 + 0093 0001:00011B90 00000061 60501020 + 0093 0001:00011C00 00000049 60501020 + 0093 0001:00011C50 00000061 60501020 + 0093 0001:00011CC0 00000049 60501020 + 0093 0001:00011D10 00000061 60501020 + 0093 0001:00011D80 00000061 60501020 + 0093 0001:00011DF0 00000061 60501020 + 0093 0001:00011E60 00000061 60501020 + 0093 0001:00011ED0 00000061 60501020 + 0093 0001:00011F40 00000061 60501020 + 0093 0001:00011FB0 00000061 60501020 + 0093 0001:00012020 00000061 60501020 + 0093 0001:00012090 00000061 60501020 + 0093 0001:00012100 00000061 60501020 + 0093 0001:00012170 00000049 60501020 + 0093 0001:000121C0 00000061 60501020 + 0093 0001:00012230 00000061 60501020 + 0093 0001:000122A0 00000061 60501020 + 0093 0001:00012310 00000049 60501020 + 0093 0001:00012360 00000061 60501020 + 0093 0001:000123D0 00000061 60501020 + 0093 0001:00012440 00000049 60501020 + 0093 0001:00012490 00000061 60501020 + 0093 0001:00012500 00000061 60501020 + 0093 0001:00012570 00000061 60501020 + 0093 0001:000125E0 00000061 60501020 + 0093 0001:00012650 00000061 60501020 + 0093 0001:000126C0 00000061 60501020 + 0093 0001:00012730 00000061 60501020 + 0093 0001:000127A0 00000061 60501020 + 0093 0001:00012810 00000061 60501020 + 0093 0001:00012880 00000049 60501020 + 0093 0001:000128D0 00000011 60501020 + 0092 0001:000128F0 00000005 60501020 + 0092 0001:00012900 00000009 60501020 + 0092 0001:00012910 00000009 60501020 + 0092 0001:00012920 0000000C 60501020 + 0092 0001:00012930 00000009 60501020 + 0092 0001:00012940 0000000F 60501020 + 0092 0001:00012950 0000000C 60501020 + 0092 0001:00012960 0000000C 60501020 + 0092 0001:00012970 0000000C 60501020 + 0092 0001:00012980 0000000C 60501020 + 0092 0001:00012990 00000009 60501020 + 0092 0001:000129A0 0000000C 60501020 + 0092 0001:000129B0 0000000C 60501020 + 0092 0001:000129C0 00000009 60501020 + 0092 0001:000129D0 00000001 60501020 + 0092 0001:000129E0 00000017 60501020 + 0092 0001:00012A00 0000000B 60501020 + 0092 0001:00012A10 0000000C 60501020 + 0092 0001:00012A20 000000B0 60501020 + 0092 0001:00012AD0 00000020 60501020 + 0092 0001:00012AF0 00000001 60501020 + 0092 0001:00012B00 0000001B 60501020 + 0092 0001:00012B20 00000003 60501020 + 0092 0001:00012B30 000007DE 60501020 + 0092 0001:00013310 00000369 60501020 + 0092 0001:00013680 00000008 60501020 + 0092 0001:00013690 00000081 60501020 + 0092 0001:00013720 00000006 60501020 + 0092 0001:00013730 00000072 60501020 + 0092 0001:000137B0 0000001E 60501020 + 0092 0001:000137D0 00000072 60501020 + 0092 0001:00013850 0000005B 60501020 + 0092 0001:000138B0 000001C1 60501020 + 0092 0001:00013A80 000005B3 60501020 + 0092 0001:00014040 00000007 60501020 + 0092 0001:00014050 0000001F 60501020 + 0092 0001:00014070 00000067 60501020 + 0092 0001:000140E0 0000001A 60501020 + 0092 0001:00014100 00000001 60501020 + 0092 0001:00014110 0000004F 60501020 + 0092 0001:00014160 00000005 60501020 + 0092 0001:00014170 0000000F 60501020 + 0092 0001:00014180 00000061 60501020 + 0092 0001:000141F0 00000049 60501020 + 0092 0001:00014240 00000067 60501020 + 0092 0001:000142B0 000000A3 60501020 + 0092 0001:00014360 00000061 60501020 + 0092 0001:000143D0 00000064 60501020 + 0092 0001:00014440 0000001E 60501020 + 0092 0001:00014460 00000049 60501020 + 0092 0001:000144B0 0000007F 60501020 + 0092 0001:00014530 00000005 60501020 + 0092 0001:00014540 00000090 60501020 + 0092 0001:000145D0 00000003 60501020 + 0092 0001:000145E0 00000005 60501020 + 0092 0001:000145F0 00000003 60501020 + 0092 0001:00014600 000000A3 60501020 + 0092 0001:000146B0 0000001C 60501020 + 0092 0001:000146D0 00000033 60501020 + 0092 0001:00014710 00000026 60501020 + 0092 0001:00014740 00000018 60501020 + 0092 0001:00014760 0000003C 60501020 + 0092 0001:000147A0 00000048 60501020 + 0092 0001:000147F0 00000010 60501020 + 0092 0001:00014800 00000010 60501020 + 0092 0001:00014810 00000012 60501020 + 0092 0001:00014830 00000155 60501020 + 0092 0001:00014990 0000002B 60501020 + 0092 0001:000149C0 0000005E 60501020 + 0092 0001:00014A20 00000112 60501020 + 0092 0001:00014B40 0000000A 60501020 + 0092 0001:00014B50 000000D2 60501020 + 0092 0001:00014C30 0000008B 60501020 + 0091 0001:00014CC0 000000D2 60501020 + 0091 0001:00014DA0 00000006 60501020 + 0091 0001:00014DB0 0000010A 60501020 + 0091 0001:00014EC0 0000001E 60501020 + 0091 0001:00014EE0 0000005D 60501020 + 0091 0001:00014F40 00000008 60501020 + 0091 0001:00014F50 0000003E 60501020 + 0091 0001:00014F90 00000008 60501020 + 0091 0001:00014FA0 000000FF 60501020 + 0091 0001:000150A0 0000004F 60501020 + 0091 0001:000150F0 00000007 60501020 + 0091 0001:00015100 0000001F 60501020 + 0091 0001:00015120 00000067 60501020 + 0091 0001:00015190 00000077 60501020 + 0090 0001:00015210 00000014 60501020 + 008F 0001:00015230 0000005D 60501020 + 008F 0001:00015290 0000001E 60501020 + 008F 0001:000152B0 0000004F 60501020 + 008F 0001:00015300 00000001 60501020 + 008F 0001:00015310 00000001 60501020 + 008F 0001:00015320 00000001 60501020 + 008F 0001:00015330 00000001 60501020 + 008F 0001:00015340 00000003 60501020 + 008F 0001:00015350 00000003 60501020 + 008F 0001:00015360 00000001 60501020 + 008F 0001:00015370 00000001 60501020 + 008F 0001:00015380 00000001 60501020 + 008F 0001:00015390 00000001 60501020 + 008F 0001:000153A0 00000001 60501020 + 008F 0001:000153B0 00000001 60501020 + 008E 0001:000153C0 0000005D 60501020 + 008E 0001:00015420 00000006 60501020 + 008E 0001:00015430 00000072 60501020 + 008E 0001:000154B0 0000001E 60501020 + 008E 0001:000154D0 0000004F 60501020 + 008E 0001:00015520 00000003 60501020 + 008D 0001:00015530 000000C9 60501020 + 008D 0001:00015600 00000006 60501020 + 008D 0001:00015610 000000D6 60501020 + 008D 0001:000156F0 00000079 60501020 + 008D 0001:00015770 00000001 60501020 + 008D 0001:00015780 00000026 60501020 + 008D 0001:000157B0 00000092 60501020 + 008D 0001:00015850 00000008 60501020 + 008D 0001:00015860 00000019 60501020 + 008D 0001:00015880 00000001 60501020 + 008C 0001:00015890 0000007B 60501020 + 008C 0001:00015910 00000006 60501020 + 008C 0001:00015920 0000001E 60501020 + 008C 0001:00015940 00000067 60501020 + 008C 0001:000159B0 00000012 60501020 + 008B 0001:000159D0 00000064 60501020 + 008B 0001:00015A40 00000006 60501020 + 008B 0001:00015A50 0000001E 60501020 + 008B 0001:00015A70 0000004F 60501020 + 008B 0001:00015AC0 00000001 60501020 + 008B 0001:00015AD0 00000003 60501020 + 008A 0001:00015AE0 00000005 60501020 + 008A 0001:00015AF0 00000003 60501020 + 008A 0001:00015B00 00000003 60501020 + 008A 0001:00015B10 000000C2 60501020 + 008A 0001:00015BE0 00000006 60501020 + 008A 0001:00015BF0 0000010A 60501020 + 008A 0001:00015D00 0000001E 60501020 + 008A 0001:00015D20 00000005 60501020 + 008A 0001:00015D30 00000005 60501020 + 008A 0001:00015D40 00000003 60501020 + 008A 0001:00015D50 00000005 60501020 + 008A 0001:00015D60 0000004F 60501020 + 008A 0001:00015DB0 00000005 60501020 + 008A 0001:00015DC0 00000003 60501020 + 0089 0001:00015DD0 0000000D 60501020 + 0089 0001:00015DE0 00000003 60501020 + 0089 0001:00015DF0 00000003 60501020 + 0089 0001:00015E00 0000000A 60501020 + 0089 0001:00015E10 000001CC 60501020 + 0089 0001:00015FE0 00000015 60501020 + 0089 0001:00016000 0000000F 60501020 + 0089 0001:00016010 00000011 60501020 + 0089 0001:00016030 00000007 60501020 + 0089 0001:00016040 0000001F 60501020 + 0089 0001:00016060 00000005 60501020 + 0089 0001:00016070 00000061 60501020 + 0089 0001:000160E0 00000051 60501020 + 0089 0001:00016140 00000049 60501020 + 0089 0001:00016190 00000085 60501020 + 0089 0001:00016220 0000009D 60501020 + 0089 0001:000162C0 00000061 60501020 + 0089 0001:00016330 00000053 60501020 + 0089 0001:00016390 00000093 60501020 + 0089 0001:00016430 0000000A 60501020 + 0089 0001:00016440 00000003 60501020 + 0089 0001:00016450 00000001 60501020 + 0088 0001:00016460 00000064 60501020 + 0088 0001:000164D0 0000001E 60501020 + 0088 0001:000164F0 0000005D 60501020 + 0088 0001:00016550 00000009 60501020 + 0088 0001:00016560 00000003 60501020 + 0088 0001:00016570 00000012 60501020 + 0088 0001:00016590 00000008 60501020 + 0088 0001:000165A0 0000005E 60501020 + 0087 0001:00016600 0000004F 60501020 + 0087 0001:00016650 00000003 60501020 + 0087 0001:00016660 00000003 60501020 + 0087 0001:00016670 0000007E 60501020 + 0087 0001:000166F0 00000091 60501020 + 0086 0001:00016790 000000A2 60501020 + 0086 0001:00016840 000000E5 60501020 + 0086 0001:00016930 0000000C 60501020 + 0086 0001:00016940 0000000C 60501020 + 0086 0001:00016950 0000006A 60501020 + 0086 0001:000169C0 0000002A 60501020 + 0086 0001:000169F0 0000002A 60501020 + 0086 0001:00016A20 00000062 60501020 + 0086 0001:00016A90 0000001E 60501020 + 0086 0001:00016AB0 00000066 60501020 + 0086 0001:00016B20 00000037 60501020 + 0086 0001:00016B60 00000037 60501020 + 0086 0001:00016BA0 00000030 60501020 + 0086 0001:00016BD0 0000002D 60501020 + 0086 0001:00016C00 00000100 60501020 + 0086 0001:00016D00 0000000E 60501020 + 0086 0001:00016D10 0000000C 60501020 + 0086 0001:00016D20 000000A8 60501020 + 0086 0001:00016DD0 0000000E 60501020 + 0086 0001:00016DE0 0000000E 60501020 + 0086 0001:00016DF0 0000000E 60501020 + 0086 0001:00016E00 0000000E 60501020 + 0086 0001:00016E10 0000000E 60501020 + 0086 0001:00016E20 0000000E 60501020 + 0086 0001:00016E30 0000000E 60501020 + 0086 0001:00016E40 0000000E 60501020 + 0086 0001:00016E50 00000001 60501020 + 0086 0001:00016E60 00000001 60501020 + 0086 0001:00016E70 00000001 60501020 + 0086 0001:00016E80 00000001 60501020 + 0086 0001:00016E90 00000001 60501020 + 0086 0001:00016EA0 00000001 60501020 + 0086 0001:00016EB0 00000001 60501020 + 0086 0001:00016EC0 00000001 60501020 + 0085 0001:00016ED0 00000066 60501020 + 0085 0001:00016F40 00000014 60501020 + 0085 0001:00016F60 00000006 60501020 + 0085 0001:00016F70 00000029 60501020 + 0084 0001:00016FA0 00000123 60501020 + 0084 0001:000170D0 00000234 60501020 + 0084 0001:00017310 00000084 60501020 + 0084 0001:000173A0 00000001 60501020 + 0084 0001:000173B0 000001D4 60501020 + 0084 0001:00017590 00000003 60501020 + 0084 0001:000175A0 00000001 60501020 + 0084 0001:000175B0 0000001C 60501020 + 0084 0001:000175D0 00000003 60501020 + 0083 0001:000175E0 000000D8 60501020 + 0082 0001:000176C0 00000013 60501020 + 0082 0001:000176E0 000000BF 60501020 + 0082 0001:000177A0 00000004 60501020 + 0082 0001:000177B0 000000A0 60501020 + 0082 0001:00017850 00000079 60501020 + 0082 0001:000178D0 00000027 60501020 + 0081 0001:00017900 000000EB 60501020 + 0081 0001:000179F0 00000007 60501020 + 0081 0001:00017A00 0000001E 60501020 + 0081 0001:00017A20 0000006E 60501020 + 0081 0001:00017A90 00000085 60501020 + 0081 0001:00017B20 000005CB 60501020 + 0081 0001:000180F0 00000052 60501020 + 0081 0001:00018150 00000049 60501020 + 0081 0001:000181A0 00000070 60501020 + 0081 0001:00018210 00000005 60501020 + 0081 0001:00018220 0000001B 60501020 + 0081 0001:00018240 00000001 60501020 + 0081 0001:00018250 0000004F 60501020 + 0081 0001:000182A0 00000005 60501020 + 0081 0001:000182B0 00000061 60501020 + 0081 0001:00018320 00000067 60501020 + 0081 0001:00018390 000000A3 60501020 + 0081 0001:00018440 00000049 60501020 + 0081 0001:00018490 00000047 60501020 + 0081 0001:000184E0 00000041 60501020 + 0081 0001:00018530 00000441 60501020 + 0081 0001:00018980 00000066 60501020 + 0081 0001:000189F0 00000061 60501020 + 0081 0001:00018A60 00000049 60501020 + 0081 0001:00018AB0 00000061 60501020 + 0081 0001:00018B20 00000061 60501020 + 0081 0001:00018B90 00000049 60501020 + 0081 0001:00018BE0 00000049 60501020 + 0081 0001:00018C30 00000001 60501020 + 0081 0001:00018C40 00000003 60501020 + 0081 0001:00018C50 0000003A 60501020 + 0081 0001:00018C90 0000000F 60501020 + 0081 0001:00018CA0 00000128 60501020 + 0081 0001:00018DD0 0000007F 60501020 + 0081 0001:00018E50 00000010 60501020 + 0081 0001:00018E60 00000046 60501020 + 0081 0001:00018EB0 00000003 60501020 + 0081 0001:00018EC0 00000003 60501020 + 0081 0001:00018ED0 00000060 60501020 + 0081 0001:00018F30 0000008B 60501020 + 0080 0001:00018FC0 00000288 60501020 + 0080 0001:00019250 0000001A 60501020 + 0080 0001:00019270 00000001 60501020 + 0080 0001:00019280 0000004F 60501020 + 0080 0001:000192D0 00000005 60501020 + 0080 0001:000192E0 0000000F 60501020 + 0080 0001:000192F0 00000061 60501020 + 0080 0001:00019360 00000049 60501020 + 0080 0001:000193B0 00000067 60501020 + 0080 0001:00019420 000000A3 60501020 + 0080 0001:000194D0 00000061 60501020 + 0080 0001:00019540 00000049 60501020 + 0080 0001:00019590 0000001A 60501020 + 0080 0001:000195B0 00000065 60501020 + 0080 0001:00019620 00000001 60501020 + 0080 0001:00019630 0000004F 60501020 + 0080 0001:00019680 00000005 60501020 + 0080 0001:00019690 00000061 60501020 + 0080 0001:00019700 00000049 60501020 + 0080 0001:00019750 00000067 60501020 + 0080 0001:000197C0 000000A3 60501020 + 0080 0001:00019870 00000061 60501020 + 0080 0001:000198E0 00000049 60501020 + 0080 0001:00019930 0000001E 60501020 + 0080 0001:00019950 00000003 60501020 + 0080 0001:00019960 00000003 60501020 + 0080 0001:00019970 0000009C 60501020 + 0080 0001:00019A10 00000005 60501020 + 0080 0001:00019A20 0000004B 60501020 + 0080 0001:00019A70 00000001 60501020 + 0080 0001:00019A80 00000003 60501020 + 0080 0001:00019A90 00000005 60501020 + 0080 0001:00019AA0 00000003 60501020 + 0080 0001:00019AB0 00000003 60501020 + 0080 0001:00019AC0 00000003 60501020 + 0080 0001:00019AD0 00000056 60501020 + 0080 0001:00019B30 00000003 60501020 + 0080 0001:00019B40 00000012 60501020 + 0080 0001:00019B60 00000005 60501020 + 0080 0001:00019B70 00000005 60501020 + 0080 0001:00019B80 00000001 60501020 + 0080 0001:00019B90 00000001 60501020 + 0080 0001:00019BA0 0000008B 60501020 + 0080 0001:00019C30 0000008B 60501020 + 007F 0001:00019CC0 0000000A 60501020 + 007F 0001:00019CD0 00000064 60501020 + 007F 0001:00019D40 00000006 60501020 + 007F 0001:00019D50 0000010A 60501020 + 007F 0001:00019E60 0000001E 60501020 + 007F 0001:00019E80 0000004F 60501020 + 007F 0001:00019ED0 000001DD 60501020 + 007F 0001:0001A0B0 00000026 60501020 + 007F 0001:0001A0E0 00000061 60501020 + 007F 0001:0001A150 00000049 60501020 + 007F 0001:0001A1A0 00000061 60501020 + 007F 0001:0001A210 00000049 60501020 + 007F 0001:0001A260 00000062 60501020 + 007F 0001:0001A2D0 00000077 60501020 + 007F 0001:0001A350 00000003 60501020 + 007F 0001:0001A360 00000001 60501020 + 007E 0001:0001A370 00000082 60501020 + 007E 0001:0001A400 00000006 60501020 + 007E 0001:0001A410 00000172 60501020 + 007E 0001:0001A590 00000061 60501020 + 007D 0001:0001A600 0000011E 60501020 + 007D 0001:0001A720 00000081 60501020 + 007D 0001:0001A7B0 0000012C 60501020 + 007D 0001:0001A8E0 00000069 60501020 + 007D 0001:0001A950 00000061 60501020 + 007D 0001:0001A9C0 0000012C 60501020 + 007D 0001:0001AAF0 00000061 60501020 + 007D 0001:0001AB60 000000C8 60501020 + 007D 0001:0001AC30 00000061 60501020 + 007C 0001:0001ACA0 00000038 60501020 + 007C 0001:0001ACE0 00000005 60501020 + 007C 0001:0001ACF0 0000013B 60501020 + 007C 0001:0001AE30 00000045 60501020 + 007C 0001:0001AE80 00000049 60501020 + 007C 0001:0001AED0 00000047 60501020 + 007C 0001:0001AF20 00000262 60501020 + 007C 0001:0001B190 0000004B 60501020 + 007C 0001:0001B1E0 000002AA 60501020 + 007C 0001:0001B490 00000060 60501020 + 007C 0001:0001B4F0 00000010 60501020 + 007B 0001:0001B500 00000005 60501020 + 007B 0001:0001B510 00000010 60501020 + 007A 0001:0001B520 00000004 60501020 + 007A 0001:0001B530 00000064 60501020 + 007A 0001:0001B5A0 0000001E 60501020 + 007A 0001:0001B5C0 0000005D 60501020 + 007A 0001:0001B620 00000008 60501020 + 007A 0001:0001B630 00000035 60501020 + 007A 0001:0001B670 00000044 60501020 + 007A 0001:0001B6C0 00000008 60501020 + 007A 0001:0001B6D0 00000021 60501020 + 0079 0001:0001B700 00000004 60501020 + 0079 0001:0001B710 0000000A 60501020 + 0078 0001:0001B720 00000018 60501020 + 0078 0001:0001B740 0000000C 60501020 + 0077 0001:0001B750 000000DE 60501020 + 0077 0001:0001B830 00000006 60501020 + 0077 0001:0001B840 00000072 60501020 + 0077 0001:0001B8C0 0000001E 60501020 + 0077 0001:0001B8E0 000000C0 60501020 + 0077 0001:0001B9A0 00000031 60501020 + 0077 0001:0001B9E0 00000043 60501020 + 0077 0001:0001BA30 000000CF 60501020 + 0077 0001:0001BB00 00000030 60501020 + 0077 0001:0001BB30 000000CE 60501020 + 0077 0001:0001BC00 00000188 60501020 + 0077 0001:0001BD90 00000085 60501020 + 0077 0001:0001BE20 00000032 60501020 + 0077 0001:0001BE60 0000004E 60501020 + 0077 0001:0001BEB0 000000E8 60501020 + 0077 0001:0001BFA0 00000177 60501020 + 0077 0001:0001C120 000000F8 60501020 + 0077 0001:0001C220 00000033 60501020 + 0077 0001:0001C260 00000035 60501020 + 0077 0001:0001C2A0 00000018 60501020 + 0077 0001:0001C2C0 0000000F 60501020 + 0076 0001:0001C2D0 00000008 60501020 + 0076 0001:0001C2E0 0000006D 60501020 + 0076 0001:0001C350 0000001E 60501020 + 0076 0001:0001C370 00000089 60501020 + 0076 0001:0001C400 000000F7 60501020 + 0076 0001:0001C500 00000093 60501020 + 0076 0001:0001C5A0 000000CD 60501020 + 0076 0001:0001C670 0000004E 60501020 + 0076 0001:0001C6C0 0000010F 60501020 + 0076 0001:0001C7D0 00000003 60501020 + 0076 0001:0001C7E0 00000003 60501020 + 0076 0001:0001C7F0 000000B6 60501020 + 0076 0001:0001C8B0 00000046 60501020 + 0076 0001:0001C900 00000103 60501020 + 0076 0001:0001CA10 00000061 60501020 + 0076 0001:0001CA80 000000DF 60501020 + 0075 0001:0001CB60 0000006F 60501020 + 0075 0001:0001CBD0 00000006 60501020 + 0075 0001:0001CBE0 000000D6 60501020 + 0075 0001:0001CCC0 0000001E 60501020 + 0075 0001:0001CCE0 00000066 60501020 + 0075 0001:0001CD50 00000245 60501020 + 0075 0001:0001CFA0 00000187 60501020 + 0075 0001:0001D130 000000C8 60501020 + 0075 0001:0001D200 00000091 60501020 + 0074 0001:0001D2A0 00000019 60501020 + 0074 0001:0001D2C0 000000E1 60501020 + 0074 0001:0001D3B0 00000064 60501020 + 0074 0001:0001D420 00000006 60501020 + 0074 0001:0001D430 000000A2 60501020 + 0074 0001:0001D4E0 0000001E 60501020 + 0074 0001:0001D500 00000049 60501020 + 0074 0001:0001D550 00000049 60501020 + 0074 0001:0001D5A0 00000077 60501020 + 0074 0001:0001D620 000001C9 60501020 + 0074 0001:0001D7F0 00000171 60501020 + 0074 0001:0001D970 00000049 60501020 + 0074 0001:0001D9C0 00000086 60501020 + 0074 0001:0001DA50 000001BD 60501020 + 0074 0001:0001DC10 0000018E 60501020 + 0074 0001:0001DDA0 0000007F 60501020 + 0074 0001:0001DE20 00000062 60501020 + 0074 0001:0001DE90 00000042 60501020 + 0074 0001:0001DEE0 0000004C 60501020 + 0074 0001:0001DF30 00000043 60501020 + 0073 0001:0001DF80 00000072 60501020 + 0073 0001:0001E000 00000006 60501020 + 0073 0001:0001E010 000000D6 60501020 + 0073 0001:0001E0F0 0000001E 60501020 + 0073 0001:0001E110 00000001 60501020 + 0073 0001:0001E120 00000006 60501020 + 0073 0001:0001E130 0000000A 60501020 + 0073 0001:0001E140 00000066 60501020 + 0073 0001:0001E1B0 00000009 60501020 + 0073 0001:0001E1C0 00000005 60501020 + 0073 0001:0001E1D0 00000010 60501020 + 0073 0001:0001E1E0 00000005 60501020 + 0073 0001:0001E1F0 00000005 60501020 + 0073 0001:0001E200 00000003 60501020 + 0073 0001:0001E210 0000002B 60501020 + 0073 0001:0001E240 00000001 60501020 + 0073 0001:0001E250 00000003 60501020 + 0073 0001:0001E260 00000005 60501020 + 0072 0001:0001E270 00000003 60501020 + 0072 0001:0001E280 00000017 60501020 + 0072 0001:0001E2A0 0000001E 60501020 + 0072 0001:0001E2C0 00000007 60501020 + 0072 0001:0001E2D0 00000005 60501020 + 0071 0001:0001E2E0 00000031 60501020 + 0071 0001:0001E320 00000017 60501020 + 0071 0001:0001E340 00000058 60501020 + 0071 0001:0001E3A0 00000017 60501020 + 0071 0001:0001E3C0 0000000B 60501020 + 0070 0001:0001E3D0 00000073 60501020 + 0070 0001:0001E450 0000001E 60501020 + 0070 0001:0001E470 0000005B 60501020 + 0070 0001:0001E4D0 00000069 60501020 + 0070 0001:0001E540 00000079 60501020 + 0070 0001:0001E5C0 00000040 60501020 + 0070 0001:0001E600 00000033 60501020 + 0070 0001:0001E640 00000286 60501020 + 0070 0001:0001E8D0 0000004E 60501020 + 0070 0001:0001E920 000002B8 60501020 + 0070 0001:0001EBE0 00000012 60501020 + 0070 0001:0001EC00 0000002B 60501020 + 0070 0001:0001EC30 000000FE 60501020 + 0070 0001:0001ED30 00000070 60501020 + 0070 0001:0001EDA0 00000064 60501020 + 0070 0001:0001EE10 00000049 60501020 + 0070 0001:0001EE60 00000049 60501020 + 0070 0001:0001EEB0 000000A2 60501020 + 0070 0001:0001EF60 000000EB 60501020 + 0070 0001:0001F050 00000036 60501020 + 0070 0001:0001F090 00000034 60501020 + 0070 0001:0001F0D0 00000112 60501020 + 0070 0001:0001F1F0 0000008D 60501020 + 0070 0001:0001F280 00000218 60501020 + 0070 0001:0001F4A0 0000016F 60501020 + 0070 0001:0001F610 00000054 60501020 + 0070 0001:0001F670 0000005A 60501020 + 0070 0001:0001F6D0 0000002F 60501020 + 0070 0001:0001F700 00000011 60501020 + 0070 0001:0001F720 00000025 60501020 + 0070 0001:0001F750 0000008A 60501020 + 0070 0001:0001F7E0 000000E9 60501020 + 0070 0001:0001F8D0 00000044 60501020 + 0070 0001:0001F920 0000001B 60501020 + 0070 0001:0001F940 00000008 60501020 + 0070 0001:0001F950 000000B3 60501020 + 0070 0001:0001FA10 0000010B 60501020 + 0070 0001:0001FB20 00000096 60501020 + 0070 0001:0001FBC0 000000BF 60501020 + 0070 0001:0001FC80 00000006 60501020 + 0070 0001:0001FC90 00000006 60501020 + 0070 0001:0001FCA0 00000154 60501020 + 0070 0001:0001FE00 0000005D 60501020 + 0070 0001:0001FE60 0000007B 60501020 + 0070 0001:0001FEE0 0000001E 60501020 + 0070 0001:0001FF00 0000001E 60501020 + 006F 0001:0001FF20 00000078 60501020 + 006F 0001:0001FFA0 0000001E 60501020 + 006F 0001:0001FFC0 00000036 60501020 + 006F 0001:00020000 00000065 60501020 + 006F 0001:00020070 000000AE 60501020 + 006F 0001:00020120 00000030 60501020 + 006F 0001:00020150 0000003D 60501020 + 006F 0001:00020190 000000F9 60501020 + 006F 0001:00020290 00000055 60501020 + 006F 0001:000202F0 000000C0 60501020 + 006F 0001:000203B0 00000038 60501020 + 006F 0001:000203F0 0000006E 60501020 + 006F 0001:00020460 0000004A 60501020 + 006F 0001:000204B0 00000051 60501020 + 006F 0001:00020510 00000300 60501020 + 006F 0001:00020810 0000001B 60501020 + 006F 0001:00020830 00000043 60501020 + 006F 0001:00020880 00000221 60501020 + 006F 0001:00020AB0 000000E5 60501020 + 006F 0001:00020BA0 000000F1 60501020 + 006F 0001:00020CA0 00000018 60501020 + 006F 0001:00020CC0 00000018 60501020 + 006F 0001:00020CE0 00000276 60501020 + 006F 0001:00020F60 00000104 60501020 + 006F 0001:00021070 000000BE 60501020 + 006F 0001:00021130 000000AD 60501020 + 006F 0001:000211E0 0000004B 60501020 + 006F 0001:00021230 00000045 60501020 + 006F 0001:00021280 00000036 60501020 + 006F 0001:000212C0 00000049 60501020 + 006F 0001:00021310 00000730 60501020 + 006F 0001:00021A40 00000012 60501020 + 006F 0001:00021A60 00000024 60501020 + 006E 0001:00021A90 00000210 60501020 + 006E 0001:00021CA0 00000064 60501020 + 006E 0001:00021D10 00000026 60501020 + 006E 0001:00021D40 00000006 60501020 + 006E 0001:00021D50 000000A2 60501020 + 006E 0001:00021E00 00000064 60501020 + 006E 0001:00021E70 00000026 60501020 + 006E 0001:00021EA0 0000001E 60501020 + 006E 0001:00021EC0 00000049 60501020 + 006E 0001:00021F10 00000049 60501020 + 006E 0001:00021F60 00000049 60501020 + 006E 0001:00021FB0 00000049 60501020 + 006E 0001:00022000 0000025B 60501020 + 006E 0001:00022260 00000045 60501020 + 006E 0001:000222B0 000000EF 60501020 + 006E 0001:000223A0 00000005 60501020 + 006E 0001:000223B0 000000CC 60501020 + 006E 0001:00022480 00000008 60501020 + 006E 0001:00022490 00000001 60501020 + 006E 0001:000224A0 00000131 60501020 + 006E 0001:000225E0 00000145 60501020 + 006E 0001:00022730 000000AE 60501020 + 006E 0001:000227E0 0000002F 60501020 + 006E 0001:00022810 0000002E 60501020 + 006E 0001:00022840 000000A0 60501020 + 006E 0001:000228E0 0000015F 60501020 + 006E 0001:00022A40 00000026 60501020 + 006E 0001:00022A70 000000A9 60501020 + 006E 0001:00022B20 0000012A 60501020 + 006E 0001:00022C50 000001FF 60501020 + 006E 0001:00022E50 0000013E 60501020 + 006E 0001:00022F90 0000009F 60501020 + 006E 0001:00023030 000000F5 60501020 + 006E 0001:00023130 00000030 60501020 + 006E 0001:00023160 000000AE 60501020 + 006E 0001:00023210 000000A5 60501020 + 006E 0001:000232C0 00000011 60501020 + 006D 0001:000232E0 0000001A 60501020 + 006D 0001:00023300 00000016 60501020 + 006D 0001:00023320 0000012A 60501020 + 006D 0001:00023450 00000006 60501020 + 006D 0001:00023460 00000072 60501020 + 006D 0001:000234E0 00000061 60501020 + 006D 0001:00023550 00000049 60501020 + 006D 0001:000235A0 00000011 60501020 + 006D 0001:000235C0 00000061 60501020 + 006D 0001:00023630 00000049 60501020 + 006D 0001:00023680 00000006 60501020 + 006D 0001:00023690 000000A2 60501020 + 006D 0001:00023740 0000001E 60501020 + 006D 0001:00023760 00000184 60501020 + 006D 0001:000238F0 00000211 60501020 + 006D 0001:00023B10 00000171 60501020 + 006D 0001:00023C90 0000002E 60501020 + 006D 0001:00023CC0 00000169 60501020 + 006D 0001:00023E30 000001F3 60501020 + 006D 0001:00024030 00000022 60501020 + 006D 0001:00024060 00000008 60501020 + 006D 0001:00024070 00000008 60501020 + 006D 0001:00024080 00000008 60501020 + 006D 0001:00024090 00000008 60501020 + 006D 0001:000240A0 00000008 60501020 + 006C 0001:000240B0 0000007B 60501020 + 006C 0001:00024130 0000001E 60501020 + 006C 0001:00024150 0000006F 60501020 + 006C 0001:000241C0 00000021 60501020 + 006C 0001:000241F0 00000101 60501020 + 006C 0001:00024300 0000001B 60501020 + 006C 0001:00024320 00000018 60501020 + 006C 0001:00024340 0000005B 60501020 + 006C 0001:000243A0 00000294 60501020 + 006C 0001:00024640 0000004C 60501020 + 006C 0001:00024690 000001FA 60501020 + 006C 0001:00024890 000004FE 60501020 + 006C 0001:00024D90 00000005 60501020 + 006C 0001:00024DA0 00000005 60501020 + 006C 0001:00024DB0 000001C4 60501020 + 006C 0001:00024F80 0000002B 60501020 + 006C 0001:00024FB0 00000019 60501020 + 006C 0001:00024FD0 00000005 60501020 + 006C 0001:00024FE0 00000003 60501020 + 006C 0001:00024FF0 00000003 60501020 + 006C 0001:00025000 00000005 60501020 + 006B 0001:00025010 00000123 60501020 + 006B 0001:00025140 00000058 60501020 + 006B 0001:000251A0 00000006 60501020 + 006B 0001:000251B0 000000A2 60501020 + 006B 0001:00025260 0000001E 60501020 + 006B 0001:00025280 00000004 60501020 + 006B 0001:00025290 0000000A 60501020 + 006B 0001:000252A0 00000013 60501020 + 006B 0001:000252C0 0000000D 60501020 + 006B 0001:000252D0 00000007 60501020 + 006B 0001:000252E0 00000062 60501020 + 006B 0001:00025350 000000DC 60501020 + 006B 0001:00025430 0000002B 60501020 + 006B 0001:00025460 0000002A 60501020 + 006B 0001:00025490 00000088 60501020 + 006B 0001:00025520 0000002E 60501020 + 006B 0001:00025550 0000015D 60501020 + 006B 0001:000256B0 0000010E 60501020 + 006B 0001:000257C0 000000EC 60501020 + 006A 0001:000258B0 00000063 60501020 + 006A 0001:00025920 00000006 60501020 + 006A 0001:00025930 0000010A 60501020 + 006A 0001:00025A40 0000001E 60501020 + 006A 0001:00025A60 0000004F 60501020 + 006A 0001:00025AB0 00000003 60501020 + 006A 0001:00025AC0 0000002A 60501020 + 006A 0001:00025AF0 00000088 60501020 + 0069 0001:00025B80 00000081 60501020 + 0069 0001:00025C10 00000006 60501020 + 0069 0001:00025C20 0000001E 60501020 + 0069 0001:00025C40 00000123 60501020 + 0069 0001:00025D70 00000137 60501020 + 0069 0001:00025EB0 00000023 60501020 + 0069 0001:00025EE0 00000108 60501020 + 0069 0001:00025FF0 000000BC 60501020 + 0069 0001:000260B0 000000E1 60501020 + 0069 0001:000261A0 000002A8 60501020 + 0069 0001:00026450 000000E2 60501020 + 0069 0001:00026540 00000006 60501020 + 0069 0001:00026550 000000A2 60501020 + 0069 0001:00026600 0000001E 60501020 + 0069 0001:00026620 000000CB 60501020 + 0069 0001:000266F0 00000014 60501020 + 0069 0001:00026710 0000000E 60501020 + 0069 0001:00026720 0000008D 60501020 + 0069 0001:000267B0 00000015 60501020 + 0068 0001:000267D0 0000006C 60501020 + 0068 0001:00026840 00000006 60501020 + 0068 0001:00026850 00000072 60501020 + 0068 0001:000268D0 0000001E 60501020 + 0068 0001:000268F0 00000068 60501020 + 0068 0001:00026960 00000006 60501020 + 0067 0001:00026970 00000063 60501020 + 0067 0001:000269E0 00000006 60501020 + 0067 0001:000269F0 0000010A 60501020 + 0067 0001:00026B00 0000001E 60501020 + 0067 0001:00026B20 0000004F 60501020 + 0067 0001:00026B70 00000003 60501020 + 0067 0001:00026B80 0000002A 60501020 + 0067 0001:00026BB0 00000088 60501020 + 0066 0001:00026C40 00000083 60501020 + 0066 0001:00026CD0 00000049 60501020 + 0066 0001:00026D20 00000006 60501020 + 0066 0001:00026D30 000000A2 60501020 + 0066 0001:00026DE0 0000001E 60501020 + 0066 0001:00026E00 000000D3 60501020 + 0066 0001:00026EE0 00000006 60501020 + 0066 0001:00026EF0 00000072 60501020 + 0066 0001:00026F70 00000061 60501020 + 0066 0001:00026FE0 00000087 60501020 + 0066 0001:00027070 00000111 60501020 + 0066 0001:00027190 0000003D 60501020 + 0066 0001:000271D0 0000002E 60501020 + 0066 0001:00027200 00000022 60501020 + 0066 0001:00027230 00000004 60501020 + 0066 0001:00027240 00000005 60501020 + 0065 0001:00027250 00000096 60501020 + 0065 0001:000272F0 00000006 60501020 + 0065 0001:00027300 000000D6 60501020 + 0065 0001:000273E0 0000001E 60501020 + 0065 0001:00027400 00000065 60501020 + 0065 0001:00027470 0000005F 60501020 + 0065 0001:000274D0 0000002A 60501020 + 0065 0001:00027500 00000079 60501020 + 0065 0001:00027580 00000042 60501020 + 0065 0001:000275D0 0000008F 60501020 + 0064 0001:00027660 000000F4 60501020 + 0064 0001:00027760 0000001A 60501020 + 0064 0001:00027780 0000000F 60501020 + 0064 0001:00027790 00000001 60501020 + 0064 0001:000277A0 0000004F 60501020 + 0064 0001:000277F0 00000005 60501020 + 0064 0001:00027800 00000061 60501020 + 0064 0001:00027870 00000067 60501020 + 0064 0001:000278E0 000000A3 60501020 + 0064 0001:00027990 00000006 60501020 + 0064 0001:000279A0 000000D6 60501020 + 0064 0001:00027A80 0000001E 60501020 + 0064 0001:00027AA0 00000066 60501020 + 0064 0001:00027B10 00000185 60501020 + 0064 0001:00027CA0 0000002A 60501020 + 0064 0001:00027CD0 000000D6 60501020 + 0064 0001:00027DB0 000000D8 60501020 + 0064 0001:00027E90 000000F2 60501020 + 0064 0001:00027F90 00000088 60501020 + 0064 0001:00028020 000000D9 60501020 + 0064 0001:00028100 000000F0 60501020 + 0064 0001:000281F0 00000104 60501020 + 0064 0001:00028300 0000010D 60501020 + 0064 0001:00028410 0000008B 60501020 + 0063 0001:000284A0 00000085 60501020 + 0063 0001:00028530 00000006 60501020 + 0063 0001:00028540 00000072 60501020 + 0063 0001:000285C0 0000001E 60501020 + 0063 0001:000285E0 00000085 60501020 + 0063 0001:00028670 00000047 60501020 + 0063 0001:000286C0 0000001F 60501020 + 0063 0001:000286E0 00000070 60501020 + 0063 0001:00028750 00000070 60501020 + 0063 0001:000287C0 00000006 60501020 + 0063 0001:000287D0 0000004E 60501020 + 0063 0001:00028820 00000060 60501020 + 0063 0001:00028880 000003A0 60501020 + 0062 0001:00028C20 00000063 60501020 + 0062 0001:00028C90 00000006 60501020 + 0062 0001:00028CA0 0000010A 60501020 + 0062 0001:00028DB0 0000001E 60501020 + 0062 0001:00028DD0 0000004F 60501020 + 0062 0001:00028E20 00000003 60501020 + 0062 0001:00028E30 0000002A 60501020 + 0062 0001:00028E60 00000088 60501020 + 0061 0001:00028EF0 00000063 60501020 + 0061 0001:00028F60 00000006 60501020 + 0061 0001:00028F70 0000010A 60501020 + 0061 0001:00029080 0000001E 60501020 + 0061 0001:000290A0 0000004F 60501020 + 0061 0001:000290F0 00000003 60501020 + 0061 0001:00029100 0000002A 60501020 + 0061 0001:00029130 00000088 60501020 + 0061 0001:000291C0 0000014D 60501020 + 0060 0001:00029310 00000107 60501020 + 0060 0001:00029420 00000043 60501020 + 0060 0001:00029470 0000004F 60501020 + 0060 0001:000294C0 0000005D 60501020 + 0060 0001:00029520 00000067 60501020 + 0060 0001:00029590 000000E5 60501020 + 0060 0001:00029680 0000005E 60501020 + 0060 0001:000296E0 00000006 60501020 + 0060 0001:000296F0 0000013E 60501020 + 0060 0001:00029830 0000001E 60501020 + 0060 0001:00029850 00000061 60501020 + 0060 0001:000298C0 0000007D 60501020 + 0060 0001:00029940 000001E9 60501020 + 0060 0001:00029B30 00000082 60501020 + 0060 0001:00029BC0 00000061 60501020 + 0060 0001:00029C30 00000049 60501020 + 0060 0001:00029C80 00000061 60501020 + 0060 0001:00029CF0 00000049 60501020 + 0060 0001:00029D40 00000021 60501020 + 0060 0001:00029D70 00000088 60501020 + 0060 0001:00029E00 00000145 60501020 + 0060 0001:00029F50 00000361 60501020 + 0060 0001:0002A2C0 000000CD 60501020 + 0060 0001:0002A390 000000E6 60501020 + 0060 0001:0002A480 00000082 60501020 + 005F 0001:0002A510 000000E1 60501020 + 005F 0001:0002A600 00000006 60501020 + 005F 0001:0002A610 0000010A 60501020 + 005F 0001:0002A720 0000001E 60501020 + 005F 0001:0002A740 0000000A 60501020 + 005F 0001:0002A750 00000073 60501020 + 005F 0001:0002A7D0 00000003 60501020 + 005F 0001:0002A7E0 0000002A 60501020 + 005F 0001:0002A810 00000088 60501020 + 005F 0001:0002A8A0 00000115 60501020 + 005E 0001:0002A9C0 0000006D 60501020 + 005E 0001:0002AA30 00000006 60501020 + 005E 0001:0002AA40 0000010A 60501020 + 005E 0001:0002AB50 0000001E 60501020 + 005E 0001:0002AB70 0000004F 60501020 + 005E 0001:0002ABC0 0000001B 60501020 + 005E 0001:0002ABE0 0000002A 60501020 + 005E 0001:0002AC10 00000088 60501020 + 005E 0001:0002ACA0 00000025 60501020 + 005E 0001:0002ACD0 00000017 60501020 + 005D 0001:0002ACF0 00000014 60501020 + 005D 0001:0002AD10 00000004 60501020 + 005D 0001:0002AD20 00000004 60501020 + 005C 0001:0002AD30 00000063 60501020 + 005C 0001:0002ADA0 00000006 60501020 + 005C 0001:0002ADB0 0000010A 60501020 + 005C 0001:0002AEC0 0000001E 60501020 + 005C 0001:0002AEE0 0000004F 60501020 + 005C 0001:0002AF30 00000003 60501020 + 005C 0001:0002AF40 0000002A 60501020 + 005C 0001:0002AF70 00000088 60501020 + 005B 0001:0002B000 00000080 60501020 + 005B 0001:0002B080 0000001E 60501020 + 005B 0001:0002B0A0 0000001C 60501020 + 005B 0001:0002B0C0 00000071 60501020 + 005B 0001:0002B140 0000008C 60501020 + 005B 0001:0002B1D0 00000036 60501020 + 005B 0001:0002B210 0000007D 60501020 + 005B 0001:0002B290 00000021 60501020 + 005B 0001:0002B2C0 00000024 60501020 + 005A 0001:0002B2F0 0000014C 60501020 + 005A 0001:0002B440 0000001A 60501020 + 005A 0001:0002B460 0000000F 60501020 + 005A 0001:0002B470 00000001 60501020 + 005A 0001:0002B480 0000004F 60501020 + 005A 0001:0002B4D0 00000005 60501020 + 005A 0001:0002B4E0 00000061 60501020 + 005A 0001:0002B550 00000067 60501020 + 005A 0001:0002B5C0 000000A3 60501020 + 005A 0001:0002B670 00000049 60501020 + 005A 0001:0002B6C0 00000006 60501020 + 005A 0001:0002B6D0 00000072 60501020 + 005A 0001:0002B750 0000001E 60501020 + 005A 0001:0002B770 000000C7 60501020 + 005A 0001:0002B840 00000155 60501020 + 005A 0001:0002B9A0 00000061 60501020 + 005A 0001:0002BA10 00000049 60501020 + 005A 0001:0002BA60 00000061 60501020 + 005A 0001:0002BAD0 00000111 60501020 + 005A 0001:0002BBF0 000000F7 60501020 + 005A 0001:0002BCF0 00000101 60501020 + 005A 0001:0002BE00 0000002D 60501020 + 005A 0001:0002BE30 000000BE 60501020 + 005A 0001:0002BEF0 0000008B 60501020 + 0059 0001:0002BF80 00000019 60501020 + 0059 0001:0002BFA0 00000067 60501020 + 0059 0001:0002C010 00000006 60501020 + 0059 0001:0002C020 00000072 60501020 + 0059 0001:0002C0A0 0000001E 60501020 + 0059 0001:0002C0C0 00000077 60501020 + 0058 0001:0002C140 00000064 60501020 + 0058 0001:0002C1B0 0000001E 60501020 + 0058 0001:0002C1D0 0000005D 60501020 + 0058 0001:0002C230 00000001 60501020 + 0058 0001:0002C240 0000003E 60501020 + 0058 0001:0002C280 000000E2 60501020 + 0058 0001:0002C370 00000008 60501020 + 0057 0001:0002C380 000000B3 60501020 + 0057 0001:0002C440 00000006 60501020 + 0057 0001:0002C450 000000D6 60501020 + 0057 0001:0002C530 0000001E 60501020 + 0057 0001:0002C550 0000005B 60501020 + 0057 0001:0002C5B0 00000008 60501020 + 0057 0001:0002C5C0 00000026 60501020 + 0057 0001:0002C5F0 00000045 60501020 + 0057 0001:0002C640 00000033 60501020 + 0057 0001:0002C680 0000003E 60501020 + 0057 0001:0002C6C0 00000033 60501020 + 0057 0001:0002C700 000000E0 60501020 + 0056 0001:0002C7E0 000000DF 60501020 + 0056 0001:0002C8C0 00000006 60501020 + 0056 0001:0002C8D0 0000001E 60501020 + 0056 0001:0002C8F0 00000066 60501020 + 0056 0001:0002C960 00000033 60501020 + 0056 0001:0002C9A0 0000009E 60501020 + 0056 0001:0002CA40 00000026 60501020 + 0055 0001:0002CA70 00000012 60501020 + 0055 0001:0002CA90 00000008 60501020 + 0055 0001:0002CAA0 000000A5 60501020 + 0055 0001:0002CB50 0000004F 60501020 + 0055 0001:0002CBA0 000000C8 60501020 + 0055 0001:0002CC70 000001BC 60501020 + 0055 0001:0002CE30 00000048 60501020 + 0055 0001:0002CE80 000000E8 60501020 + 0055 0001:0002CF70 00000157 60501020 + 0055 0001:0002D0D0 000001AF 60501020 + 0054 0001:0002D280 00000064 60501020 + 0054 0001:0002D2F0 00000006 60501020 + 0054 0001:0002D300 0000001E 60501020 + 0054 0001:0002D320 0000005D 60501020 + 0054 0001:0002D380 00000015 60501020 + 0054 0001:0002D3A0 00000031 60501020 + 0054 0001:0002D3E0 0000004C 60501020 + 0053 0001:0002D430 0000005E 60501020 + 0053 0001:0002D490 00000013 60501020 + 0053 0001:0002D4B0 00000067 60501020 + 0052 0001:0002D520 00000064 60501020 + 0052 0001:0002D590 0000010A 60501020 + 0052 0001:0002D6A0 00000006 60501020 + 0052 0001:0002D6B0 0000001E 60501020 + 0052 0001:0002D6D0 0000005D 60501020 + 0052 0001:0002D730 00000018 60501020 + 0052 0001:0002D750 0000002F 60501020 + 0052 0001:0002D780 00000027 60501020 + 0052 0001:0002D7B0 00000058 60501020 + 0052 0001:0002D810 00000065 60501020 + 0052 0001:0002D880 000001C6 60501020 + 0052 0001:0002DA50 00000049 60501020 + 0052 0001:0002DAA0 0000006B 60501020 + 0052 0001:0002DB10 00000008 60501020 + 0051 0001:0002DB20 0000007B 60501020 + 0051 0001:0002DBA0 0000001E 60501020 + 0051 0001:0002DBC0 0000006F 60501020 + 0051 0001:0002DC30 00000009 60501020 + 0051 0001:0002DC40 0000012C 60501020 + 0051 0001:0002DD70 00000071 60501020 + 0051 0001:0002DDF0 0000012C 60501020 + 0051 0001:0002DF20 000000B9 60501020 + 0051 0001:0002DFE0 0000013B 60501020 + 0051 0001:0002E120 000000F0 60501020 + 0050 0001:0002E210 0000005D 60501020 + 0050 0001:0002E270 00000008 60501020 + 0050 0001:0002E280 0000000F 60501020 + 0050 0001:0002E290 00000151 60501020 + 0050 0001:0002E3F0 00000051 60501020 + 0050 0001:0002E450 00000043 60501020 + 0050 0001:0002E4A0 000001FD 60501020 + 0050 0001:0002E6A0 0000014A 60501020 + 0050 0001:0002E7F0 00000072 60501020 + 0050 0001:0002E870 00000072 60501020 + 0050 0001:0002E8F0 000000DB 60501020 + 0050 0001:0002E9D0 0000001D 60501020 + 0050 0001:0002E9F0 00000117 60501020 + 0050 0001:0002EB10 00000073 60501020 + 004F 0001:0002EB90 00000064 60501020 + 004F 0001:0002EC00 00000006 60501020 + 004F 0001:0002EC10 0000013E 60501020 + 004F 0001:0002ED50 0000001E 60501020 + 004F 0001:0002ED70 0000005D 60501020 + 004F 0001:0002EDD0 00000008 60501020 + 004F 0001:0002EDE0 00000058 60501020 + 004F 0001:0002EE40 00000032 60501020 + 004F 0001:0002EE80 00000033 60501020 + 004F 0001:0002EEC0 0000002B 60501020 + 004F 0001:0002EEF0 00000017 60501020 + 004F 0001:0002EF10 00000008 60501020 + 004F 0001:0002EF20 00000062 60501020 + 004F 0001:0002EF90 00000076 60501020 + 004F 0001:0002F010 00000017 60501020 + 004E 0001:0002F030 00000064 60501020 + 004E 0001:0002F0A0 0000001E 60501020 + 004E 0001:0002F0C0 0000005D 60501020 + 004E 0001:0002F120 0000000C 60501020 + 004E 0001:0002F130 0000001B 60501020 + 004E 0001:0002F150 0000005F 60501020 + 004E 0001:0002F1B0 00000027 60501020 + 004E 0001:0002F1E0 000000E2 60501020 + 004E 0001:0002F2D0 00000008 60501020 + 004E 0001:0002F2E0 0000002B 60501020 + 004E 0001:0002F310 00000028 60501020 + 004E 0001:0002F340 0000001D 60501020 + 004E 0001:0002F360 00000005 60501020 + 004E 0001:0002F370 00000067 60501020 + 004D 0001:0002F3E0 000000D2 60501020 + 004D 0001:0002F4C0 00000006 60501020 + 004D 0001:0002F4D0 0000010A 60501020 + 004D 0001:0002F5E0 0000001E 60501020 + 004D 0001:0002F600 0000005D 60501020 + 004D 0001:0002F660 00000001 60501020 + 004D 0001:0002F670 00000047 60501020 + 004D 0001:0002F6C0 00000026 60501020 + 004D 0001:0002F6F0 00000008 60501020 + 004C 0001:0002F700 0000001B 60501020 + 004C 0001:0002F720 0000000E 60501020 + 004C 0001:0002F730 000000C6 60501020 + 004C 0001:0002F800 00000064 60501020 + 004C 0001:0002F870 0000001E 60501020 + 004C 0001:0002F890 00000049 60501020 + 004C 0001:0002F8E0 00000049 60501020 + 004C 0001:0002F930 000000EB 60501020 + 004C 0001:0002FA20 00000049 60501020 + 004C 0001:0002FA70 00000064 60501020 + 004C 0001:0002FAE0 000000BB 60501020 + 004C 0001:0002FBA0 00000135 60501020 + 004C 0001:0002FCE0 0000018F 60501020 + 004C 0001:0002FE70 00000257 60501020 + 004C 0001:000300D0 0000000E 60501020 + 004C 0001:000300E0 0000004E 60501020 + 004C 0001:00030130 00000045 60501020 + 004C 0001:00030180 00000026 60501020 + 004C 0001:000301B0 00000049 60501020 + 004C 0001:00030200 000000C2 60501020 + 004C 0001:000302D0 000000AE 60501020 + 004B 0001:00030380 00000092 60501020 + 004A 0001:00030420 000003DF 60501020 + 004A 0001:00030800 0000015C 60501020 + 004A 0001:00030960 00000564 60501020 + 004A 0001:00030ED0 00000006 60501020 + 004A 0001:00030EE0 00000172 60501020 + 004A 0001:00031060 00000006 60501020 + 004A 0001:00031070 0000010A 60501020 + 004A 0001:00031180 00000075 60501020 + 004A 0001:00031200 00000061 60501020 + 004A 0001:00031270 00000011 60501020 + 0049 0001:00031290 000000B8 60501020 + 0049 0001:00031350 00000004 60501020 + 0049 0001:00031360 00000009 60501020 + 0049 0001:00031370 00000009 60501020 + 0049 0001:00031380 00000009 60501020 + 0049 0001:00031390 00000009 60501020 + 0049 0001:000313A0 00000009 60501020 + 0049 0001:000313B0 00000009 60501020 + 0049 0001:000313C0 00000009 60501020 + 0049 0001:000313D0 00000009 60501020 + 0049 0001:000313E0 00000009 60501020 + 0049 0001:000313F0 00000009 60501020 + 0049 0001:00031400 00000009 60501020 + 0049 0001:00031410 00000012 60501020 + 0049 0001:00031430 00000092 60501020 + 0049 0001:000314D0 0000001E 60501020 + 0049 0001:000314F0 00000005 60501020 + 0049 0001:00031500 00000003 60501020 + 0049 0001:00031510 00000083 60501020 + 0049 0001:000315A0 0000002A 60501020 + 0049 0001:000315D0 0000000A 60501020 + 0049 0001:000315E0 00000604 60501020 + 0049 0001:00031BF0 00000001 60501020 + 0049 0001:00031C00 000000C4 60501020 + 0049 0001:00031CD0 0000003C 60501020 + 0049 0001:00031D10 00000448 60501020 + 0049 0001:00032160 00000039 60501020 + 0049 0001:000321A0 00000049 60501020 + 0049 0001:000321F0 00000009 60501020 + 0049 0001:00032200 00000001 60501020 + 0049 0001:00032210 0000004F 60501020 + 0049 0001:00032260 00000005 60501020 + 0049 0001:00032270 00000005 60501020 + 0049 0001:00032280 00000061 60501020 + 0049 0001:000322F0 00000067 60501020 + 0049 0001:00032360 000000DF 60501020 + 0049 0001:00032440 00000049 60501020 + 0049 0001:00032490 000001FD 60501020 + 0049 0001:00032690 00000024 60501020 + 0049 0001:000326C0 00000014 60501020 + 0049 0001:000326E0 00000213 60501020 + 0049 0001:00032900 00000049 60501020 + 0049 0001:00032950 00000049 60501020 + 0049 0001:000329A0 00000006 60501020 + 0049 0001:000329B0 00000020 60501020 + 0049 0001:000329D0 00000003 60501020 + 0049 0001:000329E0 00000087 60501020 + 0049 0001:00032A70 0000007E 60501020 + 0049 0001:00032AF0 00000006 60501020 + 0049 0001:00032B00 0000002B 60501020 + 0049 0001:00032B30 00000006 60501020 + 0049 0001:00032B40 0000002B 60501020 + 0049 0001:00032B70 00000006 60501020 + 0049 0001:00032B80 0000000A 60501020 + 0049 0001:00032B90 00000030 60501020 + 0049 0001:00032BC0 00000029 60501020 + 0049 0001:00032BF0 00000029 60501020 + 0049 0001:00032C20 000000C7 60501020 + 0048 0001:00032CF0 00000032 60501020 + 0047 0001:00032D30 000000C2 60501020 + 0047 0001:00032E00 0000008C 60501020 + 0046 0001:00032E90 0000007B 60501020 + 0046 0001:00032F10 0000001E 60501020 + 0046 0001:00032F30 000000B7 60501020 + 0046 0001:00032FF0 00000063 60501020 + 0046 0001:00033060 000000AC 60501020 + 0046 0001:00033110 00000093 60501020 + 0046 0001:000331B0 00000017 60501020 + 0046 0001:000331D0 00000146 60501020 + 0046 0001:00033320 00000056 60501020 + 0046 0001:00033380 00000008 60501020 + 0046 0001:00033390 0000004A 60501020 + 0046 0001:000333E0 00000083 60501020 + 0046 0001:00033470 0000006A 60501020 + 0046 0001:000334E0 00000052 60501020 + 0044 0001:00033540 00000001 60501020 + 0044 0001:00033550 0000001E 60501020 + 0044 0001:00033570 00000017 60501020 + 0044 0001:00033590 00000017 60501020 + 0044 0001:000335B0 00000017 60501020 + 0044 0001:000335D0 00000017 60501020 + 0044 0001:000335F0 00000017 60501020 + 0044 0001:00033610 00000067 60501020 + 0044 0001:00033680 00000003 60501020 + 0044 0001:00033690 00000005 60501020 + 0044 0001:000336A0 00000019 60501020 + 0044 0001:000336C0 00000010 60501020 + 0044 0001:000336D0 00000003 60501020 + 0044 0001:000336E0 00000005 60501020 + 0044 0001:000336F0 00000024 60501020 + 0044 0001:00033720 000000B4 60501020 + 0044 0001:000337E0 00000176 60501020 + 0044 0001:00033960 0000014C 60501020 + 0044 0001:00033AB0 000000DB 60501020 + 0044 0001:00033B90 000000D0 60501020 + 0044 0001:00033C60 00000035 60501020 + 0044 0001:00033CA0 000000F4 60501020 + 0044 0001:00033DA0 000000A4 60501020 + 0044 0001:00033E50 00000013 60501020 + 0043 0001:00033E70 000000FE 60501020 + 0043 0001:00033F70 00000108 60501020 + 0043 0001:00034080 000000A0 60501020 + 0043 0001:00034120 000000A4 60501020 + 0043 0001:000341D0 00000003 60501020 + 0042 0001:000341E0 00000086 60501020 + 0042 0001:00034270 00000006 60501020 + 0042 0001:00034280 000000A2 60501020 + 0042 0001:00034330 0000001E 60501020 + 0042 0001:00034350 00000004 60501020 + 0042 0001:00034360 00000006 60501020 + 0042 0001:00034370 00000004 60501020 + 0042 0001:00034380 00000004 60501020 + 0042 0001:00034390 00000083 60501020 + 0042 0001:00034420 0000029F 60501020 + 0041 0001:000346C0 0000011D 60501020 + 0041 0001:000347E0 00000001 60501020 + 0041 0001:000347F0 0000004F 60501020 + 0041 0001:00034840 00000005 60501020 + 0041 0001:00034850 00000021 60501020 + 0041 0001:00034880 00000061 60501020 + 0041 0001:000348F0 00000049 60501020 + 0041 0001:00034940 00000067 60501020 + 0041 0001:000349B0 000000A3 60501020 + 0041 0001:00034A60 00000061 60501020 + 0041 0001:00034AD0 0000001E 60501020 + 0041 0001:00034AF0 0000000C 60501020 + 0041 0001:00034B00 00000063 60501020 + 0041 0001:00034B70 0000004F 60501020 + 0041 0001:00034BC0 00000485 60501020 + 0041 0001:00035050 00000019 60501020 + 0041 0001:00035070 00000061 60501020 + 0041 0001:000350E0 00000049 60501020 + 0041 0001:00035130 00000061 60501020 + 0041 0001:000351A0 00000061 60501020 + 0041 0001:00035210 00000049 60501020 + 0041 0001:00035260 00000049 60501020 + 0041 0001:000352B0 00000146 60501020 + 0041 0001:00035400 000000E8 60501020 + 0041 0001:000354F0 00000001 60501020 + 0041 0001:00035500 0000004F 60501020 + 0041 0001:00035550 00000005 60501020 + 0041 0001:00035560 0000000E 60501020 + 0041 0001:00035570 00000061 60501020 + 0041 0001:000355E0 00000049 60501020 + 0041 0001:00035630 00000067 60501020 + 0041 0001:000356A0 000000A3 60501020 + 0041 0001:00035750 00000061 60501020 + 0041 0001:000357C0 00000191 60501020 + 0041 0001:00035960 00000270 60501020 + 0041 0001:00035BD0 00000066 60501020 + 0041 0001:00035C40 00000061 60501020 + 0041 0001:00035CB0 00000049 60501020 + 0041 0001:00035D00 00000061 60501020 + 0041 0001:00035D70 00000061 60501020 + 0041 0001:00035DE0 00000049 60501020 + 0041 0001:00035E30 00000049 60501020 + 0041 0001:00035E80 0000001B 60501020 + 0041 0001:00035EA0 000001D4 60501020 + 0041 0001:00036080 00000106 60501020 + 0041 0001:00036190 0000008B 60501020 + 0041 0001:00036220 000000A1 60501020 + 0041 0001:000362D0 0000008B 60501020 + 0041 0001:00036360 000000A1 60501020 + 0041 0001:00036410 00000043 60501020 + 0040 0001:00036460 000000F6 60501020 + 0040 0001:00036560 00000004 60501020 + 0040 0001:00036570 00000009 60501020 + 0040 0001:00036580 0000001E 60501020 + 0040 0001:000365A0 00000086 60501020 + 0040 0001:00036630 00000087 60501020 + 0040 0001:000366C0 00000087 60501020 + 0040 0001:00036750 00000100 60501020 + 0040 0001:00036850 00000100 60501020 + 0040 0001:00036950 00000020 60501020 + 0040 0001:00036970 00000020 60501020 + 0040 0001:00036990 000000E2 60501020 + 0040 0001:00036A80 000000E2 60501020 + 0040 0001:00036B70 0000003A 60501020 + 0040 0001:00036BB0 000000C7 60501020 + 0040 0001:00036C80 0000009D 60501020 + 0040 0001:00036D20 00000133 60501020 + 0040 0001:00036E60 00000134 60501020 + 003F 0001:00036FA0 00000003 60501020 + 003F 0001:00036FB0 00000003 60501020 + 003E 0001:00036FC0 00000010 60501020 + 003E 0001:00036FD0 0000002D 60501020 + 003E 0001:00037000 00000012 60501020 + 003E 0001:00037020 00000014 60501020 + 003D 0001:00037040 00000296 60501020 + 003D 0001:000372E0 00000066 60501020 + 003D 0001:00037350 0000029A 60501020 + 003D 0001:000375F0 000000C0 60501020 + 003C 0001:000376B0 000000D2 60501020 + 003C 0001:00037790 00000006 60501020 + 003C 0001:000377A0 0000001E 60501020 + 003C 0001:000377C0 0000005D 60501020 + 003C 0001:00037820 00000028 60501020 + 003C 0001:00037850 0000003D 60501020 + 003C 0001:00037890 00000017 60501020 + 003C 0001:000378B0 00000095 60501020 + 003C 0001:00037950 000001F1 60501020 + 003C 0001:00037B50 00000065 60501020 + 003C 0001:00037BC0 00000001 60501020 + 003C 0001:00037BD0 0000004F 60501020 + 003C 0001:00037C20 00000005 60501020 + 003C 0001:00037C30 0000000E 60501020 + 003C 0001:00037C40 00000061 60501020 + 003C 0001:00037CB0 00000049 60501020 + 003C 0001:00037D00 00000067 60501020 + 003C 0001:00037D70 000000A3 60501020 + 003C 0001:00037E20 00000061 60501020 + 003C 0001:00037E90 00000049 60501020 + 003C 0001:00037EE0 00000061 60501020 + 003C 0001:00037F50 00000049 60501020 + 003C 0001:00037FA0 00000061 60501020 + 003C 0001:00038010 00000061 60501020 + 003C 0001:00038080 00000049 60501020 + 003C 0001:000380D0 00000049 60501020 + 003C 0001:00038120 00000053 60501020 + 003C 0001:00038180 00000026 60501020 + 003C 0001:000381B0 00000005 60501020 + 003C 0001:000381C0 00000008 60501020 + 003C 0001:000381D0 0000008B 60501020 + 003B 0001:00038260 00000064 60501020 + 003B 0001:000382D0 0000001E 60501020 + 003B 0001:000382F0 0000005D 60501020 + 003B 0001:00038350 00000009 60501020 + 003B 0001:00038360 00000065 60501020 + 003B 0001:000383D0 000001F9 60501020 + 003B 0001:000385D0 00000008 60501020 + 003B 0001:000385E0 00000102 60501020 + 003B 0001:000386F0 0000011B 60501020 + 003B 0001:00038810 0000001A 60501020 + 003B 0001:00038830 000000FF 60501020 + 003B 0001:00038930 000000FF 60501020 + 003A 0001:00038A30 0000005D 60501020 + 003A 0001:00038A90 00000008 60501020 + 003A 0001:00038AA0 00000047 60501020 + 003A 0001:00038AF0 00000026 60501020 + 0039 0001:00038B20 00000008 60501020 + 0039 0001:00038B30 00000041 60501020 + 0039 0001:00038B80 00000044 60501020 + 0039 0001:00038BD0 000000A0 60501020 + 0039 0001:00038C70 0000001F 60501020 + 0039 0001:00038C90 00000151 60501020 + 0039 0001:00038DF0 00000026 60501020 + 0039 0001:00038E20 00000023 60501020 + 0039 0001:00038E50 0000005A 60501020 + 0039 0001:00038EB0 00000044 60501020 + 0039 0001:00038F00 000000F2 60501020 + 0039 0001:00039000 00000099 60501020 + 0039 0001:000390A0 000000CC 60501020 + 0039 0001:00039170 00000003 60501020 + 0038 0001:00039180 00000066 60501020 + 0038 0001:000391F0 00000047 60501020 + 0038 0001:00039240 0000003D 60501020 + 0038 0001:00039280 00000083 60501020 + 0038 0001:00039310 0000000A 60501020 + 0038 0001:00039320 00000008 60501020 + 0038 0001:00039330 00000008 60501020 + 0038 0001:00039340 00000008 60501020 + 0038 0001:00039350 00000008 60501020 + 0037 0001:00039360 00000008 60501020 + 0037 0001:00039370 00000008 60501020 + 0037 0001:00039380 00000003 60501020 + 0037 0001:00039390 000001CC 60501020 + 0037 0001:00039560 00000064 60501020 + 0037 0001:000395D0 00000064 60501020 + 0037 0001:00039640 00000026 60501020 + 0037 0001:00039670 00000006 60501020 + 0037 0001:00039680 00000072 60501020 + 0037 0001:00039700 0000001E 60501020 + 0037 0001:00039720 00000049 60501020 + 0037 0001:00039770 00000049 60501020 + 0037 0001:000397C0 00000049 60501020 + 0037 0001:00039810 00000049 60501020 + 0037 0001:00039860 00000049 60501020 + 0037 0001:000398B0 00000049 60501020 + 0037 0001:00039900 0000024A 60501020 + 0037 0001:00039B50 00000017 60501020 + 0037 0001:00039B70 000000A7 60501020 + 0037 0001:00039C20 00000050 60501020 + 0037 0001:00039C70 0000006B 60501020 + 0037 0001:00039CE0 000000A5 60501020 + 0037 0001:00039D90 000000B4 60501020 + 0037 0001:00039E50 000000F2 60501020 + 0037 0001:00039F50 00000006 60501020 + 0037 0001:00039F60 00000072 60501020 + 0037 0001:00039FE0 00000061 60501020 + 0037 0001:0003A050 000001D0 60501020 + 0037 0001:0003A220 000000C1 60501020 + 0037 0001:0003A2F0 000000B2 60501020 + 0037 0001:0003A3B0 000000C4 60501020 + 0037 0001:0003A480 00000088 60501020 + 0037 0001:0003A510 000001AA 60501020 + 0037 0001:0003A6C0 00000018 60501020 + 0037 0001:0003A6E0 0000010F 60501020 + 0036 0001:0003A7F0 0000010B 60501020 + 0036 0001:0003A900 0000000C 60501020 + 0036 0001:0003A910 00000006 60501020 + 0036 0001:0003A920 00000072 60501020 + 0036 0001:0003A9A0 00000064 60501020 + 0036 0001:0003AA10 0000001E 60501020 + 0036 0001:0003AA30 00000049 60501020 + 0036 0001:0003AA80 00000049 60501020 + 0036 0001:0003AAD0 00000049 60501020 + 0036 0001:0003AB20 00000040 60501020 + 0036 0001:0003AB60 000000E8 60501020 + 0036 0001:0003AC50 00000138 60501020 + 0036 0001:0003AD90 00000006 60501020 + 0036 0001:0003ADA0 000000A2 60501020 + 0036 0001:0003AE50 00000079 60501020 + 0036 0001:0003AED0 0000018B 60501020 + 0036 0001:0003B060 0000004F 60501020 + 0036 0001:0003B0B0 00000067 60501020 + 0036 0001:0003B120 000000AC 60501020 + 0036 0001:0003B1D0 00000079 60501020 + 0036 0001:0003B250 0000007F 60501020 + 0036 0001:0003B2D0 0000003E 60501020 + 0036 0001:0003B310 00000140 60501020 + 0036 0001:0003B450 00000024 60501020 + 0036 0001:0003B480 00000108 60501020 + 0035 0001:0003B590 00000065 60501020 + 0035 0001:0003B600 000000A4 60501020 + 0035 0001:0003B6B0 00000051 60501020 + 0035 0001:0003B710 0000007F 60501020 + 0034 0001:0003B790 0000000C 60501020 + 0034 0001:0003B7A0 00000003 60501020 + 0033 0001:0003B7B0 00000073 60501020 + 0033 0001:0003B830 0000001E 60501020 + 0033 0001:0003B850 000000A1 60501020 + 0033 0001:0003B900 000000C8 60501020 + 0033 0001:0003B9D0 00000062 60501020 + 0033 0001:0003BA40 0000000D 60501020 + 0033 0001:0003BA50 0000000D 60501020 + 0033 0001:0003BA60 0000005D 60501020 + 0033 0001:0003BAC0 00000067 60501020 + 0033 0001:0003BB30 0000010D 60501020 + 0033 0001:0003BC40 000000A6 60501020 + 0032 0001:0003BCF0 0000006B 60501020 + 0032 0001:0003BD60 00000067 60501020 + 0032 0001:0003BDD0 00000069 60501020 + 0032 0001:0003BE40 0000006B 60501020 + 0032 0001:0003BEB0 0000001E 60501020 + 0032 0001:0003BED0 00000067 60501020 + 0032 0001:0003BF40 00000049 60501020 + 0032 0001:0003BF90 0000000E 60501020 + 0032 0001:0003BFA0 0000000F 60501020 + 0032 0001:0003BFB0 00000008 60501020 + 0032 0001:0003BFC0 0000000D 60501020 + 0031 0001:0003BFD0 0000001D 60501020 + 0031 0001:0003BFF0 000000AD 60501020 + 0031 0001:0003C0A0 000000B7 60501020 + 0031 0001:0003C160 000000D4 60501020 + 0031 0001:0003C240 0000003D 60501020 + 0031 0001:0003C280 00000051 60501020 + 0031 0001:0003C2E0 0000004F 60501020 + 0030 0001:0003C330 0000006C 60501020 + 0030 0001:0003C3A0 00000061 60501020 + 0030 0001:0003C410 00000013 60501020 + 0030 0001:0003C430 00000013 60501020 + 0030 0001:0003C450 0000001A 60501020 + 002F 0001:0003C470 00000076 60501020 + 002F 0001:0003C4F0 00000006 60501020 + 002F 0001:0003C500 00000072 60501020 + 002F 0001:0003C580 0000001E 60501020 + 002F 0001:0003C5A0 00000099 60501020 + 002F 0001:0003C640 00000015 60501020 + 002F 0001:0003C660 000000A4 60501020 + 002F 0001:0003C710 000000BC 60501020 + 002F 0001:0003C7D0 000000B6 60501020 + 002F 0001:0003C890 0000001B 60501020 + 002F 0001:0003C8B0 000001B4 60501020 + 002F 0001:0003CA70 00000296 60501020 + 002F 0001:0003CD10 00000100 60501020 + 002F 0001:0003CE10 00000167 60501020 + 002F 0001:0003CF80 00000087 60501020 + 002F 0001:0003D010 00000058 60501020 + 002F 0001:0003D070 000000A1 60501020 + 002F 0001:0003D120 00000192 60501020 + 002D 0001:0003D2C0 00000052 60501020 + 002D 0001:0003D320 00000004 60501020 + 002C 0001:0003D330 00000004 60501020 + 002C 0001:0003D340 00000010 60501020 + 002C 0001:0003D350 00000074 60501020 + 002B 0001:0003D3D0 00000037 60501020 + 002B 0001:0003D410 00000021 60501020 + 002B 0001:0003D440 000002D6 60501020 + 002B 0001:0003D720 00000049 60501020 + 002B 0001:0003D770 00000061 60501020 + 002B 0001:0003D7E0 000001AF 60501020 + 002B 0001:0003D990 000001B7 60501020 + 002B 0001:0003DB50 000000C3 60501020 + 002B 0001:0003DC20 00000030 60501020 + 002A 0001:0003DC50 0000007B 60501020 + 002A 0001:0003DCD0 0000001E 60501020 + 002A 0001:0003DCF0 00000003 60501020 + 002A 0001:0003DD00 00000071 60501020 + 002A 0001:0003DD80 00000015 60501020 + 002A 0001:0003DDA0 0000009F 60501020 + 002A 0001:0003DE40 00000061 60501020 + 002A 0001:0003DEB0 000001B2 60501020 + 002A 0001:0003E070 00000217 60501020 + 002A 0001:0003E290 00000230 60501020 + 002A 0001:0003E4C0 00000008 60501020 + 002A 0001:0003E4D0 0000002B 60501020 + 002A 0001:0003E500 00000144 60501020 + 002A 0001:0003E650 0000005C 60501020 + 0029 0001:0003E6B0 00000030 60501020 + 0029 0001:0003E6E0 0000004F 60501020 + 0029 0001:0003E730 0000005A 60501020 + 0029 0001:0003E790 00000011 60501020 + 0029 0001:0003E7B0 00000070 60501020 + 0029 0001:0003E820 00000048 60501020 + 0028 0001:0003E870 00000029 60501020 + 0027 0001:0003E8A0 00000003 60501020 + 0027 0001:0003E8B0 00000001 60501020 + 0027 0001:0003E8C0 00000003 60501020 + 0027 0001:0003E8D0 00000001 60501020 + 0027 0001:0003E8E0 0000005D 60501020 + 0027 0001:0003E940 00000008 60501020 + 0027 0001:0003E950 00000004 60501020 + 0027 0001:0003E960 00000012 60501020 + 0027 0001:0003E980 00000018 60501020 + 0027 0001:0003E9A0 0000001E 60501020 + 0027 0001:0003E9C0 0000015E 60501020 + 0027 0001:0003EB20 0000001E 60501020 + 0027 0001:0003EB40 0000005D 60501020 + 0027 0001:0003EBA0 00000017 60501020 + 0027 0001:0003EBC0 00000066 60501020 + 0027 0001:0003EC30 00000049 60501020 + 0027 0001:0003EC80 000000F7 60501020 + 0027 0001:0003ED80 00000044 60501020 + 0027 0001:0003EDD0 0000015F 60501020 + 0027 0001:0003EF30 000004E6 60501020 + 0027 0001:0003F420 0000003E 60501020 + 0027 0001:0003F460 0000003A 60501020 + 0027 0001:0003F4A0 000000A0 60501020 + 0027 0001:0003F540 000000AD 60501020 + 0027 0001:0003F5F0 00000069 60501020 + 0027 0001:0003F660 00000026 60501020 + 0027 0001:0003F690 000000A4 60501020 + 0027 0001:0003F740 0000007F 60501020 + 0027 0001:0003F7C0 00000003 60501020 + 0026 0001:0003F7D0 0000005D 60501020 + 0026 0001:0003F830 00000008 60501020 + 0026 0001:0003F840 00000004 60501020 + 0026 0001:0003F850 0000001B 60501020 + 0026 0001:0003F870 00000017 60501020 + 0026 0001:0003F890 00000044 60501020 + 0026 0001:0003F8E0 00000033 60501020 + 0026 0001:0003F920 00000022 60501020 + 0026 0001:0003F950 00000111 60501020 + 0026 0001:0003FA70 00000060 60501020 + 0026 0001:0003FAD0 0000014A 60501020 + 0026 0001:0003FC20 0000013B 60501020 + 0026 0001:0003FD60 00000066 60501020 + 0026 0001:0003FDD0 0000002E 60501020 + 0026 0001:0003FE00 00000114 60501020 + 0026 0001:0003FF20 00000077 60501020 + 0026 0001:0003FFA0 0000005B 60501020 + 0026 0001:00040000 0000003C 60501020 + 0026 0001:00040040 00000093 60501020 + 0026 0001:000400E0 00000022 60501020 + 0026 0001:00040110 00000073 60501020 + 0025 0001:00040190 0000009C 60501020 + 0025 0001:00040230 00000006 60501020 + 0025 0001:00040240 0000013E 60501020 + 0025 0001:00040380 0000001E 60501020 + 0025 0001:000403A0 00000066 60501020 + 0025 0001:00040410 00000003 60501020 + 0024 0001:00040420 00000030 60501020 + 0022 0001:00040450 00000073 60501020 + 0022 0001:000404D0 00000006 60501020 + 0022 0001:000404E0 000000A2 60501020 + 0022 0001:00040590 00000061 60501020 + 0021 0001:00040600 0000005D 60501020 + 0021 0001:00040660 00000006 60501020 + 0021 0001:00040670 0000010A 60501020 + 0021 0001:00040780 0000001E 60501020 + 0021 0001:000407A0 0000004F 60501020 + 0021 0001:000407F0 00000005 60501020 + 001F 0001:00040800 00000073 60501020 + 001F 0001:00040880 00000006 60501020 + 001F 0001:00040890 000000A2 60501020 + 001F 0001:00040940 00000061 60501020 + 001E 0001:000409B0 00000067 60501020 + 001E 0001:00040A20 00000006 60501020 + 001E 0001:00040A30 00000172 60501020 + 001E 0001:00040BB0 0000001E 60501020 + 001E 0001:00040BD0 0000004F 60501020 + 001C 0001:00040C20 00000073 60501020 + 001C 0001:00040CA0 00000006 60501020 + 001C 0001:00040CB0 000000A2 60501020 + 001C 0001:00040D60 00000061 60501020 + 001C 0001:00040DD0 00000032 60501020 + 001B 0001:00040E10 00000082 60501020 + 001B 0001:00040EA0 00000006 60501020 + 001B 0001:00040EB0 00000072 60501020 + 001B 0001:00040F30 0000001E 60501020 + 001B 0001:00040F50 0000004F 60501020 + 001B 0001:00040FA0 0000002D 60501020 + 001A 0001:00040FD0 00000073 60501020 + 001A 0001:00041050 00000006 60501020 + 001A 0001:00041060 000000A2 60501020 + 001A 0001:00041110 00000061 60501020 + 0019 0001:00041180 00000015 60501020 + 0019 0001:000411A0 00000018 60501020 + 0019 0001:000411C0 0000000A 60501020 + 0019 0001:000411D0 0000000A 60501020 + 0019 0001:000411E0 00000004 60501020 + 0019 0001:000411F0 00000004 60501020 + 0019 0001:00041200 00000014 60501020 + 0019 0001:00041220 00000014 60501020 + 0019 0001:00041240 0000000F 60501020 + 0019 0001:00041250 00000026 60501020 + 0019 0001:00041280 00000028 60501020 + 0019 0001:000412B0 00000033 60501020 + 0019 0001:000412F0 00000027 60501020 + 0019 0001:00041320 00000063 60501020 + 0019 0001:00041390 00000018 60501020 + 0019 0001:000413B0 00000003 60501020 + 0019 0001:000413C0 00000008 60501020 + 0019 0001:000413D0 0000000C 60501020 + 0019 0001:000413E0 0000000C 60501020 + 0018 0001:000413F0 00000011 60501020 + 0018 0001:00041410 00000023 60501020 + 0018 0001:00041440 0000004B 60501020 + 0018 0001:00041490 0000007E 60501020 + 0018 0001:00041510 00000001 60501020 + 0018 0001:00041520 0000000F 60501020 + 0018 0001:00041530 00000004 60501020 + 0018 0001:00041540 00000007 60501020 + 0017 0001:00041550 00000205 60501020 + 0016 0001:00041760 0000000E 60501020 + 0016 0001:00041770 0000000A 60501020 + 0016 0001:00041780 00000007 60501020 + 0016 0001:00041790 00000007 60501020 + 0016 0001:000417A0 0000001A 60501020 + 0015 0001:000417C0 0000001D 60501020 + 0015 0001:000417E0 0000001C 60501020 + 0015 0001:00041800 0000001D 60501020 + 0015 0001:00041820 0000001D 60501020 + 0015 0001:00041840 0000001C 60501020 + 0015 0001:00041860 0000001C 60501020 + 0015 0001:00041880 00000017 60501020 + 0015 0001:000418A0 00000014 60501020 + 0015 0001:000418C0 00000004 60501020 + 0015 0001:000418D0 00000004 60501020 + 0015 0001:000418E0 00000011 60501020 + 0015 0001:00041900 00000012 60501020 + 0015 0001:00041920 00000018 60501020 + 0015 0001:00041940 00000015 60501020 + 0015 0001:00041960 00000015 60501020 + 0015 0001:00041980 00000010 60501020 + 0015 0001:00041990 00000051 60501020 + 0015 0001:000419F0 0000000C 60501020 + 0015 0001:00041A00 0000000D 60501020 + 0015 0001:00041A10 00000010 60501020 + 0015 0001:00041A20 0000000D 60501020 + 0015 0001:00041A30 00000010 60501020 + 0015 0001:00041A40 0000000D 60501020 + 0015 0001:00041A50 00000010 60501020 + 0015 0001:00041A60 0000000D 60501020 + 0015 0001:00041A70 0000000D 60501020 + 0015 0001:00041A80 0000000D 60501020 + 0015 0001:00041A90 00000010 60501020 + 0015 0001:00041AA0 00000044 60501020 + 0015 0001:00041AF0 00000018 60501020 + 0015 0001:00041B10 00000015 60501020 + 0015 0001:00041B30 00000015 60501020 + 0015 0001:00041B50 00000037 60501020 + 0015 0001:00041B90 00000038 60501020 + 0015 0001:00041BD0 00000037 60501020 + 0015 0001:00041C10 00000037 60501020 + 0015 0001:00041C50 00000034 60501020 + 0015 0001:00041C90 00000034 60501020 + 0015 0001:00041CD0 00000027 60501020 + 0015 0001:00041D00 00000020 60501020 + 0015 0001:00041D20 00000097 60501020 + 0015 0001:00041DC0 00000018 60501020 + 0015 0001:00041DE0 00000011 60501020 + 0015 0001:00041E00 00000020 60501020 + 0015 0001:00041E20 00000028 60501020 + 0015 0001:00041E50 0000006E 60501020 + 0015 0001:00041EC0 000000C5 60501020 + 0015 0001:00041F90 0000002A 60501020 + 0015 0001:00041FC0 0000002A 60501020 + 0015 0001:00041FF0 0000002A 60501020 + 0015 0001:00042020 0000002A 60501020 + 0015 0001:00042050 00000028 60501020 + 0015 0001:00042080 00000028 60501020 + 0015 0001:000420B0 0000001F 60501020 + 0015 0001:000420D0 0000001A 60501020 + 0015 0001:000420F0 0000000E 60501020 + 0015 0001:00042100 00000018 60501020 + 0015 0001:00042120 00000020 60501020 + 0014 0001:00042140 0000005D 60501020 + 0014 0001:000421A0 00000006 60501020 + 0014 0001:000421B0 0000010A 60501020 + 0014 0001:000422C0 0000001E 60501020 + 0014 0001:000422E0 0000004F 60501020 + 0014 0001:00042330 00000005 60501020 + 0012 0001:00042340 0000006E 60501020 + 0012 0001:000423B0 00000006 60501020 + 0012 0001:000423C0 0000010A 60501020 + 0012 0001:000424D0 0000001E 60501020 + 0012 0001:000424F0 00000003 60501020 + 0012 0001:00042500 0000009F 60501020 + 0012 0001:000425A0 00000094 60501020 + 0012 0001:00042640 000000CA 60501020 + 0012 0001:00042710 000000F4 60501020 + 0012 0001:00042810 0000006E 60501020 + 0012 0001:00042880 0000014C 60501020 + 0012 0001:000429D0 000002B0 60501020 + 0012 0001:00042C80 00000049 60501020 + 0012 0001:00042CD0 000002DC 60501020 + 0012 0001:00042FB0 00000114 60501020 + 0012 0001:000430D0 00000016 60501020 + 0011 0001:000430F0 00000003 60501020 + 0011 0001:00043100 00000007 60501020 + 0010 0001:00043110 00000089 60501020 + 0010 0001:000431A0 00000006 60501020 + 0010 0001:000431B0 00000172 60501020 + 0010 0001:00043330 00000061 60501020 + 000F 0001:000433A0 00000004 60501020 + 000F 0001:000433B0 00000078 60501020 + 000E 0001:00043430 00000004 60501020 + 000E 0001:00043440 0000000A 60501020 + 000E 0001:00043450 0000000A 60501020 + 000E 0001:00043460 00000008 60501020 + 000E 0001:00043470 00000064 60501020 + 000E 0001:000434E0 0000001C 60501020 + 000E 0001:00043500 0000001C 60501020 + 000E 0001:00043520 0000003C 60501020 + 000E 0001:00043560 00000029 60501020 + 000E 0001:00043590 00000015 60501020 + 000D 0001:000435B0 00000004 60501020 + 000D 0001:000435C0 00000053 60501020 + 000D 0001:00043620 00000069 60501020 + 000D 0001:00043690 0000002B 60501020 + 000D 0001:000436C0 000000CB 60501020 + 000D 0001:00043790 00000007 60501020 + 000D 0001:000437A0 0000001F 60501020 + 000D 0001:000437C0 00000085 60501020 + 000D 0001:00043850 00000049 60501020 + 000D 0001:000438A0 00000061 60501020 + 000D 0001:00043910 00000049 60501020 + 000D 0001:00043960 00000021 60501020 + 000D 0001:00043990 0000001F 60501020 + 000D 0001:000439B0 00000022 60501020 + 000D 0001:000439E0 00000024 60501020 + 000D 0001:00043A10 00000003 60501020 + 000D 0001:00043A20 00000003 60501020 + 000C 0001:00043A30 00000004 60501020 + 000C 0001:00043A40 00000053 60501020 + 000C 0001:00043AA0 0000004C 60501020 + 000B 0001:00043AF0 00000004 60501020 + 000B 0001:00043B00 0000006F 60501020 + 000B 0001:00043B70 0000002E 60501020 + 000B 0001:00043BA0 00000040 60501020 + 000B 0001:00043BE0 00000070 60501020 + 000B 0001:00043C50 00000225 60501020 + 000B 0001:00043E80 00000088 60501020 + 000B 0001:00043F10 00000049 60501020 + 000B 0001:00043F60 00000061 60501020 + 000B 0001:00043FD0 000000D3 60501020 + 000B 0001:000440B0 000000D1 60501020 + 000A 0001:00044190 000000E6 60501020 + 000A 0001:00044280 00000095 60501020 + 000A 0001:00044320 00000049 60501020 + 000A 0001:00044370 00000061 60501020 + 000A 0001:000443E0 000000CA 60501020 + 000A 0001:000444B0 00000085 60501020 + 000A 0001:00044540 00000049 60501020 + 000A 0001:00044590 00000061 60501020 + 000A 0001:00044600 000000F1 60501020 + 000A 0001:00044700 00000125 60501020 + 000A 0001:00044830 00000085 60501020 + 000A 0001:000448C0 00000049 60501020 + 000A 0001:00044910 00000061 60501020 + 000A 0001:00044980 0000010F 60501020 + 000A 0001:00044A90 00000085 60501020 + 000A 0001:00044B20 00000049 60501020 + 000A 0001:00044B70 00000061 60501020 + 000A 0001:00044BE0 000000C0 60501020 + 000A 0001:00044CA0 00000085 60501020 + 000A 0001:00044D30 00000049 60501020 + 000A 0001:00044D80 00000061 60501020 + 000A 0001:00044DF0 00000190 60501020 + 000A 0001:00044F80 00000085 60501020 + 000A 0001:00045010 00000049 60501020 + 000A 0001:00045060 00000061 60501020 + 000A 0001:000450D0 000000BE 60501020 + 000A 0001:00045190 00000085 60501020 + 000A 0001:00045220 00000049 60501020 + 000A 0001:00045270 00000061 60501020 + 000A 0001:000452E0 00000179 60501020 + 000A 0001:00045460 00000162 60501020 + 000A 0001:000455D0 0000001C 60501020 + 000A 0001:000455F0 0000001C 60501020 + 000A 0001:00045610 00000004 60501020 + 0009 0001:00045620 00000053 60501020 + 0009 0001:00045680 0000002D 60501020 + 0009 0001:000456B0 0000007D 60501020 + 0009 0001:00045730 00000023 60501020 + 0009 0001:00045760 00000005 60501020 + 0009 0001:00045770 0000002D 60501020 + 0009 0001:000457A0 0000008F 60501020 + 0009 0001:00045830 0000004A 60501020 + 0009 0001:00045880 00000022 60501020 + 0009 0001:000458B0 00000021 60501020 + 0009 0001:000458E0 00000081 60501020 + 0009 0001:00045970 00000033 60501020 + 0009 0001:000459B0 00000004 60501020 + 0008 0001:000459C0 00000004 60501020 + 0008 0001:000459D0 00000005 60501020 + 0008 0001:000459E0 00000057 60501020 + 0008 0001:00045A40 000000C5 60501020 + 0007 0001:00045B10 00000028 60501020 + 0007 0001:00045B40 00000079 60501020 + 0007 0001:00045BC0 000000D5 60501020 + 0007 0001:00045CA0 00000043 60501020 + 0007 0001:00045CF0 00000003 60501020 + 0007 0001:00045D00 00000004 60501020 + 0007 0001:00045D10 00000029 60501020 + 0007 0001:00045D40 0000002C 60501020 + 0007 0001:00045D70 00000078 60501020 + 0007 0001:00045DF0 00000032 60501020 + 0007 0001:00045E30 00000084 60501020 + 0007 0001:00045EC0 00000050 60501020 + 0007 0001:00045F10 0000002C 60501020 + 0007 0001:00045F40 00000015 60501020 + 0007 0001:00045F60 0000007C 60501020 + 0007 0001:00045FE0 00000033 60501020 + 0007 0001:00046020 0000002D 60501020 + 0007 0001:00046050 00000063 60501020 + 0007 0001:000460C0 00000063 60501020 + 0006 0001:00046130 0000009E 60501020 + 0006 0001:000461D0 00000006 60501020 + 0006 0001:000461E0 00000172 60501020 + 0006 0001:00046360 00000061 60501020 + 0005 0001:000463D0 000000A2 60501020 + 0005 0001:00046480 00000006 60501020 + 0005 0001:00046490 000000A2 60501020 + 0005 0001:00046540 00000061 60501020 + 0005 0001:000465B0 000000FE 60501020 + 0004 0001:000466B0 000000EB 60501020 + 0004 0001:000467A0 000000C4 60501020 + 0004 0001:00046870 0000003C 60501020 + 0004 0001:000468B0 0000044F 60501020 + 0004 0001:00046D00 00000039 60501020 + 0004 0001:00046D40 00000049 60501020 + 0004 0001:00046D90 0000001E 60501020 + 0004 0001:00046DB0 00000049 60501020 + 0004 0001:00046E00 00000052 60501020 + 0004 0001:00046E60 00000228 60501020 + 0004 0001:00047090 0000002B 60501020 + 0004 0001:000470C0 00000013 60501020 + 0004 0001:000470E0 0000004B 60501020 + 0004 0001:00047130 000002A6 60501020 + 0004 0001:000473E0 00000067 60501020 + 0004 0001:00047450 00000049 60501020 + 0004 0001:000474A0 00000005 60501020 + 0004 0001:000474B0 00000003 60501020 + 0004 0001:000474C0 00000061 60501020 + 0003 0001:00047530 00000003 60501020 + 0002 0001:00047540 00000007 60501020 + 0002 0001:00047550 00000007 60501020 + 0002 0001:00047560 00000007 60501020 + 0002 0001:00047570 00000139 60501020 + 0002 0001:000476B0 00000054 60501020 + 0002 0001:00047710 00000003 60501020 + 0002 0001:00047720 00000001 60501020 + 0002 0001:00047730 00000049 60501020 + 0002 0001:00047780 00000010 60501020 + 00EA 0001:00047790 0000006E 60501020 + 00EA 0001:00047800 00000012 60501020 + 00EA 0001:00047820 0000000F 60501020 + 00E9 0001:00047830 0000006D 60501020 + 00E9 0001:000478A0 00000060 60501020 + 00E9 0001:00047900 0000005C 60501020 + 00E9 0001:00047960 0000000F 60501020 + 00E9 0001:00047970 00000032 60501020 + 00E9 0001:000479B0 00000006 60501020 + 00E9 0001:000479C0 00000090 60501020 + 00E9 0001:00047A50 0000002C 60501020 + 00E9 0001:00047A80 00000012 60501020 + 00E9 0001:00047AA0 0000000E 60501020 + 00E9 0001:00047AB0 00000021 60501020 + 00E9 0001:00047AE0 00000005 60501020 + 00E8 0001:00047AF0 0000006E 60501020 + 00E8 0001:00047B60 00000037 60501020 + 00E7 0001:00047BA0 00000030 60501020 + 00E6 0001:00047BD0 00000089 60501020 + 00E6 0001:00047C60 00000093 60501020 + 00E6 0001:00047D00 00000173 60501020 + 00E6 0001:00047E80 00000268 60501020 + 00E6 0001:000480F0 0000002A 60501020 + 00E6 0001:00048120 0000000A 60501020 + 00E6 0001:00048130 00000196 60501020 + 00E6 0001:000482D0 000000B7 60501020 + 00E6 0001:00048390 0000001E 60501020 + 00E6 0001:000483B0 00000060 60501020 + 00E6 0001:00048410 0000000D 60501020 + 00E6 0001:00048420 000000E8 60501020 + 00E6 0001:00048510 00000030 60501020 + 00E6 0001:00048540 0000004C 60501020 + 00E6 0001:00048590 00000083 60501020 + 00E6 0001:00048620 0000013A 60501020 + 00E6 0001:00048760 000000B5 60501020 + 00E6 0001:00048820 00000031 60501020 + 00E6 0001:00048860 00000085 60501020 + 00E6 0001:000488F0 00000017 60501020 + 00E6 0001:00048910 000000BD 60501020 + 00E6 0001:000489D0 0000016D 60501020 + 00E6 0001:00048B40 00000023 60501020 + 00E6 0001:00048B70 00000189 60501020 + 00E6 0001:00048D00 000001C7 60501020 + 00E6 0001:00048ED0 000000A7 60501020 + 00E6 0001:00048F80 000000E1 60501020 + 00E6 0001:00049070 00000141 60501020 + 00E6 0001:000491C0 0000029C 60501020 + 00E6 0001:00049460 000001C2 60501020 + 00E6 0001:00049630 000000AC 60501020 + 00E4 0001:000496E0 00000006 60501020 + 00E4 0001:000496F0 00000083 60501020 + 00E4 0001:00049780 00000089 60501020 + 00E4 0001:00049810 00000034 60501020 + 00E4 0001:00049850 00000091 60501020 + 00E4 0001:000498F0 00000138 60501020 + 00E4 0001:00049A30 00000093 60501020 + 00E4 0001:00049AD0 0000011E 60501020 + 00E4 0001:00049BF0 00000049 60501020 + 00E4 0001:00049C40 00000174 60501020 + 00E4 0001:00049DC0 000000EB 60501020 + 00E4 0001:00049EB0 00000075 60501020 + 00E4 0001:00049F30 000000F4 60501020 + 00E4 0001:0004A030 00000024 60501020 + 00E4 0001:0004A060 00000128 60501020 + 00E4 0001:0004A190 000000DA 60501020 + 00E3 0001:0004A270 000000D6 60501020 + 00E3 0001:0004A350 000000E0 60501020 + 00E3 0001:0004A430 00000063 60501020 + 00E3 0001:0004A4A0 0000003C 60501020 + 00E3 0001:0004A4E0 0000003F 60501020 + 00E3 0001:0004A520 00000085 60501020 + 00E3 0001:0004A5B0 00000036 60501020 + 00E3 0001:0004A5F0 0000016C 60501020 + 00E2 0001:0004A760 0000003F 60501020 + 00E2 0001:0004A7A0 00000085 60501020 + 00E2 0001:0004A830 00000052 60501020 + 00E2 0001:0004A890 000000A3 60501020 + 00E2 0001:0004A940 000000D6 60501020 + 00E2 0001:0004AA20 00000032 60501020 + 00E2 0001:0004AA60 00000011 60501020 + 00E2 0001:0004AA80 00000029 60501020 + 00E2 0001:0004AAB0 00000011 60501020 + 00E2 0001:0004AAD0 000000F4 60501020 + 00E2 0001:0004ABD0 0000001A 60501020 + 00E2 0001:0004ABF0 00000138 60501020 + 00E2 0001:0004AD30 00000227 60501020 + 00E2 0001:0004AF60 000001D4 60501020 + 00E2 0001:0004B140 0000006C 60501020 + 00E2 0001:0004B1B0 00000008 60501020 + 00E2 0001:0004B1C0 00000036 60501020 + 00E2 0001:0004B200 00000159 60501020 + 00E2 0001:0004B360 0000007F 60501020 + 00E2 0001:0004B3E0 00000111 60501020 + 00E2 0001:0004B500 00000041 60501020 + 00E2 0001:0004B550 00000028 60501020 + 00E2 0001:0004B580 000000EB 60501020 + 00E2 0001:0004B670 0000002B 60501020 + 00E2 0001:0004B6A0 00000013 60501020 + 00E2 0001:0004B6C0 000001F3 60501020 + 00E2 0001:0004B8C0 00000087 60501020 + 00E2 0001:0004B950 0000006C 60501020 + 00E2 0001:0004B9C0 0000001A 60501020 + 00E2 0001:0004B9E0 00000009 60501020 + 00E2 0001:0004B9F0 00000011 60501020 + 00E2 0001:0004BA10 0000010B 60501020 + 00E2 0001:0004BB20 000000AF 60501020 + 00E2 0001:0004BBD0 0000001B 60501020 + 00E2 0001:0004BBF0 00000006 60501020 + 00E2 0001:0004BC00 00000035 60501020 + 00E2 0001:0004BC40 00000069 60501020 + 00E2 0001:0004BCB0 00000038 60501020 + 00E2 0001:0004BCF0 00000014 60501020 + 00E2 0001:0004BD10 00000020 60501020 + 00E2 0001:0004BD30 00000014 60501020 + 00E2 0001:0004BD50 0000001C 60501020 + 00E2 0001:0004BD70 00000017 60501020 + 00E2 0001:0004BD90 0000002B 60501020 + 00E2 0001:0004BDC0 000000D8 60501020 + 00E2 0001:0004BEA0 00000087 60501020 + 00E2 0001:0004BF30 00000024 60501020 + 00E2 0001:0004BF60 000000BF 60501020 + 00E2 0001:0004C020 0000000D 60501020 + 00E2 0001:0004C030 00000039 60501020 + 00E2 0001:0004C070 00000006 60501020 + 00E2 0001:0004C080 00000022 60501020 + 00E1 0001:0004C0B0 00000020 60501020 + 00E1 0001:0004C0D0 00000021 60501020 + 00E1 0001:0004C100 00000029 60501020 + 00E1 0001:0004C130 00000029 60501020 + 00E1 0001:0004C160 00000035 60501020 + 00E1 0001:0004C1A0 0000002F 60501020 + 00E1 0001:0004C1D0 00000095 60501020 + 00E1 0001:0004C270 000002A9 60501020 + 00E1 0001:0004C520 000000B7 60501020 + 00E1 0001:0004C5E0 00000045 60501020 + 00E1 0001:0004C630 000000D8 60501020 + 00E1 0001:0004C710 0000009E 60501020 + 00E1 0001:0004C7B0 000000A2 60501020 + 00E1 0001:0004C860 000000A9 60501020 + 00E1 0001:0004C910 00000027 60501020 + 00E1 0001:0004C940 000001A6 60501020 + 00E1 0001:0004CAF0 00000052 60501020 + 00E1 0001:0004CB50 00000058 60501020 + 00DD 0001:0004CBB0 0000026E 60501020 + 00DD 0001:0004CE20 000000A9 60501020 + 00DD 0001:0004CED0 00000050 60501020 + 00DD 0001:0004CF20 00000052 60501020 + 00DD 0001:0004CF80 00000016 60501020 + 00DD 0001:0004CFA0 0000005D 60501020 + 00DC 0001:0004D000 00000057 60501020 + 00DC 0001:0004D060 000000DA 60501020 + 00DC 0001:0004D140 00000068 60501020 + 00DC 0001:0004D1B0 00000099 60501020 + 00DC 0001:0004D250 0000005C 60501020 + 00DC 0001:0004D2B0 0000001F 60501020 + 00DB 0001:0004D2D0 00000080 60501020 + 00EB 0001:0004D350 00000006 60201020 + 00EB 0001:0004D356 00000006 60201020 + 00EC 0001:0004D35C 00000006 60201020 + 00EE 0001:0004D370 00001018 60500020 + 00ED 0001:0004E388 00000006 60201020 + 00F5 0001:0004E38E 00000006 60201020 + 00F5 0001:0004E394 00000006 60201020 + 00F5 0001:0004E39A 00000006 60201020 + 00F5 0001:0004E3A0 00000006 60201020 + 00F5 0001:0004E3A6 00000006 60201020 + 00F5 0001:0004E3AC 00000006 60201020 + 00F5 0001:0004E3B2 00000006 60201020 + 00F6 0001:0004E3B8 00000006 60201020 + 00F6 0001:0004E3BE 00000006 60201020 + 00F8 0001:0004E3C4 00000006 60201020 + 00F8 0001:0004E3CA 00000006 60201020 + 00F8 0001:0004E3D0 00000006 60201020 + 00F8 0001:0004E3D6 00000006 60201020 + 00F8 0001:0004E3DC 00000006 60201020 + 00F8 0001:0004E3E2 00000006 60201020 + 00F8 0001:0004E3E8 00000006 60201020 + 00F8 0001:0004E3EE 00000006 60201020 + 00F8 0001:0004E3F4 00000006 60201020 + 00F8 0001:0004E3FA 00000006 60201020 + 00F8 0001:0004E400 00000006 60201020 + 00F8 0001:0004E406 00000006 60201020 + 00F8 0001:0004E40C 00000006 60201020 + 00F8 0001:0004E412 00000006 60201020 + 00F8 0001:0004E418 00000006 60201020 + 00F8 0001:0004E41E 00000006 60201020 + 00F8 0001:0004E424 00000006 60201020 + 00F8 0001:0004E42A 00000006 60201020 + 00F8 0001:0004E430 00000006 60201020 + 00F8 0001:0004E436 00000006 60201020 + 00F8 0001:0004E43C 00000006 60201020 + 00F8 0001:0004E442 00000006 60201020 + 00F8 0001:0004E448 00000006 60201020 + 00F8 0001:0004E44E 00000006 60201020 + 00F8 0001:0004E454 00000006 60201020 + 00F8 0001:0004E45A 00000006 60201020 + 00F8 0001:0004E460 00000006 60201020 + 00F8 0001:0004E466 00000006 60201020 + 00F8 0001:0004E46C 00000006 60201020 + 00F8 0001:0004E472 00000006 60201020 + 00F8 0001:0004E478 00000006 60201020 + 00F8 0001:0004E47E 00000006 60201020 + 00F8 0001:0004E484 00000006 60201020 + 00F8 0001:0004E48A 00000006 60201020 + 00F8 0001:0004E490 00000006 60201020 + 00F8 0001:0004E496 00000006 60201020 + 00F8 0001:0004E49C 00000006 60201020 + 00F8 0001:0004E4A2 00000006 60201020 + 00F8 0001:0004E4A8 00000006 60201020 + 00F8 0001:0004E4AE 00000006 60201020 + 00F8 0001:0004E4B4 00000006 60201020 + 00F8 0001:0004E4BA 00000006 60201020 + 00F8 0001:0004E4C0 00000006 60201020 + 00F8 0001:0004E4C6 00000006 60201020 + 00F8 0001:0004E4CC 00000006 60201020 + 00F8 0001:0004E4D2 00000006 60201020 + 00F8 0001:0004E4D8 00000006 60201020 + 00F9 0001:0004E4DE 00000006 60201020 + 00F9 0001:0004E4E4 00000006 60201020 + 00F9 0001:0004E4EA 00000006 60201020 + 00F9 0001:0004E4F0 00000006 60201020 + 00F9 0001:0004E4F6 00000006 60201020 + 00F9 0001:0004E4FC 00000006 60201020 + 00F9 0001:0004E502 00000006 60201020 + 00F9 0001:0004E508 00000006 60201020 + 00F9 0001:0004E50E 00000006 60201020 + 00F9 0001:0004E514 00000006 60201020 + 00F9 0001:0004E51A 00000006 60201020 + 00F9 0001:0004E520 00000006 60201020 + 00F9 0001:0004E526 00000006 60201020 + 00F9 0001:0004E52C 00000006 60201020 + 00F9 0001:0004E532 00000006 60201020 + 00F9 0001:0004E538 00000006 60201020 + 00FA 0001:0004E53E 00000006 60201020 + 00FA 0001:0004E544 00000006 60201020 + 00FA 0001:0004E54A 00000006 60201020 + 00FA 0001:0004E550 00000006 60201020 + 00FA 0001:0004E556 00000006 60201020 + 00FA 0001:0004E55C 00000006 60201020 + 00FA 0001:0004E562 00000006 60201020 + 00FA 0001:0004E568 00000006 60201020 + 00FA 0001:0004E56E 00000006 60201020 + 00FA 0001:0004E574 00000006 60201020 + 00FA 0001:0004E57A 00000006 60201020 + 00FA 0001:0004E580 00000006 60201020 + 00FA 0001:0004E586 00000006 60201020 + 00FA 0001:0004E58C 00000006 60201020 + 00FA 0001:0004E592 00000006 60201020 + 01A1 0001:0004E5A0 0000000B 60501020 + 01A0 0001:0004E5B0 00000035 60501020 + 01A0 0001:0004E5F0 00000007 60501020 + 01A0 0001:0004E600 00000007 60501020 + 01A0 0001:0004E610 00000007 60501020 + 01A0 0001:0004E620 00000051 60501020 + 01A0 0001:0004E680 0000003C 60501020 + 01A0 0001:0004E6C0 0000001D 60501020 + 01A0 0001:0004E6E0 00000062 60501020 + 01A0 0001:0004E750 00000029 60501020 + 01A0 0001:0004E780 000000D3 60501020 + 01A0 0001:0004E860 0000006B 60501020 + 019F 0001:0004E8CC 000000EE 60300020 + 019E 0001:0004E9C0 00000017 60501020 + 019E 0001:0004E9E0 00000001 60501020 + 019E 0001:0004E9F0 00000038 60501020 + 019E 0001:0004EA30 00000010 60501020 + 019D 0001:0004EA40 00000044 60500020 + 019C 0001:0004EA90 000000A4 60501020 + 019C 0001:0004EB40 0000000E 60501020 + 019C 0001:0004EB50 000000DF 60501020 + 019B 0001:0004EC30 000000D8 60501020 + 019A 0001:0004ED10 0000008C 60501020 + 019A 0001:0004EDA0 00000013 60501020 + 019A 0001:0004EDC0 00000036 60501020 + 0199 0001:0004EE00 000000FE 60500020 + 0198 0001:0004EF00 00000067 60501020 + 0197 0001:0004EF68 00000027 60300020 + 0196 0001:0004EF90 00000080 60500020 + 0195 0001:0004F010 000000CC 60500020 + 0194 0001:0004F0E0 0000003F 60501020 + 0194 0001:0004F120 0000005F 60501020 + 0193 0001:0004F180 00000037 60501020 + 0193 0001:0004F1C0 00000146 60501020 + 0192 0001:0004F310 00000037 60501020 + 0192 0001:0004F350 00000182 60501020 + 0191 0001:0004F4E0 00000028 60501020 + 0191 0001:0004F510 000001A2 60501020 + 0190 0001:0004F6C0 00000032 60501020 + 0190 0001:0004F700 0000009A 60501020 + 018F 0001:0004F7A0 0000003A 60501020 + 018F 0001:0004F7E0 00000015 60501020 + 018E 0001:0004F800 0000001A 60501020 + 018D 0001:0004F820 0000001F 60501020 + 018C 0001:0004F840 00000049 60501020 + 018B 0001:0004F890 00000067 60501020 + 018A 0001:0004F900 00000044 60501020 + 0189 0001:0004F950 00000038 60500020 + 0188 0001:0004F990 0000000D 60501020 + 0188 0001:0004F9A0 0000002F 60501020 + 0187 0001:0004F9D0 0000007B 60501020 + 0187 0001:0004FA50 000000B7 60501020 + 0187 0001:0004FB10 00000037 60501020 + 0186 0001:0004FB50 00000044 60500020 + 0185 0001:0004FBA0 0000008C 60501020 + 0185 0001:0004FC30 00000077 60501020 + 0185 0001:0004FCB0 00000016 60501020 + 0184 0001:0004FCD0 0000008C 60501020 + 0183 0001:0004FD60 0000015B 60501020 + 0183 0001:0004FEC0 000000BF 60501020 + 0183 0001:0004FF80 00000038 60501020 + 0182 0001:0004FFC0 00000028 60501020 + 0182 0001:0004FFF0 00000006 60501020 + 0182 0001:00050000 0000003E 60501020 + 0181 0001:00050040 0000001F 60501020 + 0181 0001:00050060 00000006 60501020 + 0180 0001:00050068 000000E0 60300020 + 017F 0001:00050150 000000BC 60501020 + 017F 0001:00050210 0000029E 60501020 + 017F 0001:000504B0 000000D7 60501020 + 017F 0001:00050590 0000009F 60501020 + 017F 0001:00050630 000000CE 60501020 + 017F 0001:00050700 00000016 60501020 + 017F 0001:00050720 00000094 60501020 + 017F 0001:000507C0 0000011E 60501020 + 017F 0001:000508E0 0000002C 60501020 + 017F 0001:00050910 000001FE 60501020 + 017F 0001:00050B10 00000071 60501020 + 017F 0001:00050B90 00000021 60501020 + 017E 0001:00050BC0 00000048 60500020 + 017D 0001:00050C10 00000060 60501020 + 017D 0001:00050C70 00000021 60501020 + 017D 0001:00050CA0 00000013 60501020 + 017D 0001:00050CC0 0000006F 60501020 + 017D 0001:00050D30 000000A1 60501020 + 017D 0001:00050DE0 00000006 60501020 + 017D 0001:00050DF0 00000006 60501020 + 017C 0001:00050E00 00000013 60501020 + 017B 0001:00050E20 0000004F 60501020 + 017B 0001:00050E70 00000029 60501020 + 0179 0001:00050EA0 00000065 60501020 + 0179 0001:00050F10 00000059 60501020 + 0179 0001:00050F70 00000017 60501020 + 0179 0001:00050F90 0000004C 60501020 + 0179 0001:00050FE0 00000077 60501020 + 0179 0001:00051060 000000E3 60501020 + 0179 0001:00051150 00000068 60501020 + 0179 0001:000511C0 000000BE 60501020 + 0179 0001:00051280 000000AB 60501020 + 0179 0001:00051330 00000065 60501020 + 0179 0001:000513A0 0000002B 60501020 + 0178 0001:000513D0 000000A2 60500020 + 0177 0001:00051480 0000026A 60500020 + 0175 0001:000516F0 00000091 60501020 + 0173 0001:00051790 00000034 60500020 + 0172 0001:000517D0 00000030 60501020 + 0172 0001:00051800 00000012 60501020 + 0172 0001:00051820 00000012 60501020 + 0172 0001:00051840 0000000F 60501020 + 0172 0001:00051850 0000000F 60501020 + 0172 0001:00051860 000000B1 60501020 + 0172 0001:00051920 0000000B 60501020 + 0172 0001:00051930 0000000B 60501020 + 0172 0001:00051940 00000020 60501020 + 0171 0001:00051960 0000014D 60501020 + 0170 0001:00051AB0 000009A2 60501020 + 0170 0001:00052460 00000041 60501020 + 0170 0001:000524B0 00000031 60501020 + 0170 0001:000524F0 00000037 60501020 + 0170 0001:00052530 0000000F 60501020 + 0170 0001:00052540 00000015 60501020 + 0170 0001:00052560 00000010 60501020 + 016F 0001:00052570 0000002A 60501020 + 016F 0001:000525A0 00000064 60501020 + 016F 0001:00052610 00000068 60501020 + 016F 0001:00052680 00000017 60501020 + 016F 0001:000526A0 00000036 60501020 + 016F 0001:000526E0 00000028 60501020 + 016F 0001:00052710 00000036 60501020 + 016F 0001:00052750 00000028 60501020 + 016F 0001:00052780 00000019 60501020 + 016E 0001:000527A0 0000006E 60501020 + 016E 0001:00052810 00000089 60501020 + 016D 0001:000528A0 00000039 60501020 + 016C 0001:000528E0 00000039 60501020 + 016C 0001:00052920 0000003C 60501020 + 016C 0001:00052960 00000064 60501020 + 016C 0001:000529D0 0000000B 60501020 + 016C 0001:000529E0 000000CB 60501020 + 016B 0001:00052AB0 000000F5 60501020 + 016A 0001:00052BB0 00000078 60501020 + 016A 0001:00052C30 00000230 60501020 + 0169 0001:00052E60 00000078 60501020 + 0169 0001:00052EE0 000001FB 60501020 + 0168 0001:000530E0 00000078 60501020 + 0168 0001:00053160 00000082 60501020 + 0167 0001:000531F0 000001E0 60501020 + 0167 0001:000533D0 00000055 60501020 + 0166 0001:00053430 00000073 60501020 + 0166 0001:000534B0 00000009 60501020 + 0166 0001:000534C0 00000009 60501020 + 0165 0001:000534D0 0000020E 60501020 + 0164 0001:000536E0 000000E1 60501020 + 0163 0001:000537D0 00000227 60501020 + 0163 0001:00053A00 0000006F 60501020 + 0162 0001:00053A70 000001D5 60501020 + 0162 0001:00053C50 00000083 60501020 + 0162 0001:00053CE0 000001DD 60501020 + 0162 0001:00053EC0 00000031 60501020 + 0162 0001:00053F00 00000009 60501020 + 0162 0001:00053F10 00000009 60501020 + 0161 0001:00053F20 0000003D 60501020 + 0161 0001:00053F60 000001F6 60501020 + 0161 0001:00054160 00000030 60501020 + 0160 0001:00054190 00000092 60501020 + 0160 0001:00054230 00000038 60501020 + 015F 0001:00054270 00000C99 60501020 + 015F 0001:00054F10 0000003E 60501020 + 015F 0001:00054F50 00000023 60501020 + 015F 0001:00054F80 00000018 60501020 + 015F 0001:00054FA0 0000002B 60501020 + 015E 0001:00054FD0 0000014F 60501020 + 015E 0001:00055120 0000002F 60501020 + 015D 0001:00055150 00000207 60500020 + 015C 0001:00055360 0000007B 60501020 + 015C 0001:000553E0 00000018 60501020 + 015C 0001:00055400 00000073 60501020 + 015B 0001:00055480 00000039 60501020 + 015B 0001:000554C0 0000003A 60501020 + 015A 0001:00055500 000000E5 60501020 + 0159 0001:000555F0 0000009B 60501020 + 0159 0001:00055690 000001D0 60501020 + 0158 0001:00055860 00000223 60501020 + 0158 0001:00055A90 0000004D 60501020 + 0158 0001:00055AE0 0000005F 60501020 + 0158 0001:00055B40 0000002C 60501020 + 0158 0001:00055B70 00000006 60501020 + 0158 0001:00055B80 0000000B 60501020 + 0157 0001:00055B90 000001FD 60501020 + 0157 0001:00055D90 0000018C 60501020 + 0156 0001:00055F20 0000002A 60501020 + 0156 0001:00055F50 0000000A 60501020 + 0154 0001:00055F60 00000005 60501020 + 0154 0001:00055F70 0000001E 60501020 + 0154 0001:00055F90 00000058 60501020 + 0154 0001:00055FF0 0000000D 60501020 + 0153 0001:00056000 00000020 60501020 + 0153 0001:00056020 00000020 60501020 + 0153 0001:00056040 0000001B 60501020 + 0152 0001:00056060 0000014E 60500020 + 0151 0001:000561B0 00000016 60501020 + 0151 0001:000561D0 00000017 60501020 + 0151 0001:000561F0 0000003F 60501020 + 0151 0001:00056230 00000018 60501020 + 0151 0001:00056250 00000031 60501020 + 0151 0001:00056290 000000A1 60501020 + 0151 0001:00056340 0000008D 60501020 + 0151 0001:000563D0 0000003C 60501020 + 0150 0001:00056410 0000000B 60501020 + 014F 0001:00056420 00000008 60501020 + 014F 0001:00056430 0000006E 60501020 + 014F 0001:000564A0 000000E5 60501020 + 014E 0001:00056590 00000064 60501020 + 014E 0001:00056600 00000063 60501020 + 014E 0001:00056670 000000AC 60501020 + 014E 0001:00056720 0000001D 60501020 + 014E 0001:00056740 0000000F 60501020 + 014E 0001:00056750 0000001D 60501020 + 014E 0001:00056770 000000AD 60501020 + 014E 0001:00056820 000001CB 60501020 + 014E 0001:000569F0 00000018 60501020 + 014E 0001:00056A10 00000018 60501020 + 014E 0001:00056A30 00000081 60501020 + 014E 0001:00056AC0 00000035 60501020 + 014E 0001:00056B00 00000035 60501020 + 014E 0001:00056B40 00000035 60501020 + 014D 0001:00056B80 00000081 60501020 + 014C 0001:00056C10 00000081 60501020 + 014C 0001:00056CA0 000000BC 60501020 + 014B 0001:00056D60 000001CA 60500020 + 014A 0001:00056F30 00000120 60501020 + 0149 0001:00057050 000001B4 60501020 + 0149 0001:00057210 00000123 60501020 + 0147 0001:00057340 0000004B 60501020 + 0146 0001:00057390 00000030 60501020 + 0145 0001:000573C0 000000C7 60501020 + 0145 0001:00057490 00000014 60501020 + 0144 0001:000574B0 00000056 60501020 + 0144 0001:00057510 00000094 60501020 + 0143 0001:000575B0 00000068 60500020 + 0142 0001:00057620 00000075 60500020 + 0141 0001:000576A0 0000013E 60501020 + 0141 0001:000577E0 000000A4 60501020 + 0141 0001:00057890 00000091 60501020 + 0141 0001:00057930 0000004A 60501020 + 0141 0001:00057980 000000B4 60501020 + 0141 0001:00057A40 00000061 60501020 + 0141 0001:00057AB0 00000028 60501020 + 0140 0001:00057AE0 000000A2 60501020 + 013F 0001:00057B90 0000001A 60501020 + 013F 0001:00057BB0 00000459 60501020 + 013D 0001:00058010 0000004F 60501020 + 013C 0001:00058060 00000084 60501020 + 013B 0001:000580F0 000000B5 60501020 + 013A 0001:000581B0 00000274 60501020 + 0139 0001:00058430 00000396 60501020 + 0138 0001:000587D0 00000092 60501020 + 0137 0001:00058870 0000005B 60501020 + 0137 0001:000588D0 00000105 60501020 + 0136 0001:000589E0 00000032 60501020 + 0136 0001:00058A20 0000002D 60501020 + 0136 0001:00058A50 0000002D 60501020 + 0136 0001:00058A80 0000002D 60501020 + 0136 0001:00058AB0 00000032 60501020 + 0136 0001:00058AF0 0000002D 60501020 + 0136 0001:00058B20 0000002D 60501020 + 0136 0001:00058B50 00000032 60501020 + 0136 0001:00058B90 00000032 60501020 + 0136 0001:00058BD0 00000032 60501020 + 0136 0001:00058C10 0000002D 60501020 + 0136 0001:00058C40 00000011 60501020 + 0136 0001:00058C60 00000008 60501020 + 0136 0001:00058C70 00000047 60501020 + 0136 0001:00058CC0 00000047 60501020 + 0135 0001:00058D10 0000002D 60501020 + 0135 0001:00058D40 00000088 60501020 + 0134 0001:00058DD0 00000248 60501020 + 0134 0001:00059020 0000007F 60501020 + 0133 0001:000590A0 00000D8B 60500020 + 0132 0001:00059E30 00000006 60501020 + 0132 0001:00059E40 0000001F 60501020 + 0132 0001:00059E60 00000170 60501020 + 0132 0001:00059FD0 0000005E 60501020 + 0132 0001:0005A030 000000D7 60501020 + 0132 0001:0005A110 00000051 60501020 + 0132 0001:0005A170 00000046 60501020 + 0132 0001:0005A1C0 0000027A 60501020 + 0132 0001:0005A440 0000017C 60501020 + 0132 0001:0005A5C0 000000C8 60501020 + 0132 0001:0005A690 000001D6 60501020 + 0130 0001:0005A870 00000018 60501020 + 012F 0001:0005A890 000002C3 60501020 + 012F 0001:0005AB60 0000017B 60501020 + 012F 0001:0005ACE0 000000F0 60501020 + 012F 0001:0005ADD0 000001CA 60501020 + 012F 0001:0005AFA0 00000003 60501020 + 012F 0001:0005AFB0 0000004E 60501020 + 012F 0001:0005B000 000000F5 60501020 + 012F 0001:0005B100 00000068 60501020 + 012E 0001:0005B170 0000020C 60501020 + 012E 0001:0005B380 00000033 60501020 + 012E 0001:0005B3C0 0000022B 60501020 + 012E 0001:0005B5F0 0000002C 60501020 + 012D 0001:0005B620 00000023 60501020 + 012D 0001:0005B650 00000066 60501020 + 012D 0001:0005B6C0 0000003E 60501020 + 012D 0001:0005B700 00000036 60501020 + 012D 0001:0005B740 000000E8 60501020 + 012C 0001:0005B830 0000074F 60501020 + 012C 0001:0005BF80 00000049 60501020 + 012B 0001:0005BFD0 0000039B 60501020 + 012A 0001:0005C370 00000050 60501020 + 012A 0001:0005C3C0 00000070 60501020 + 012A 0001:0005C430 000000BB 60501020 + 012A 0001:0005C4F0 000000E8 60501020 + 012A 0001:0005C5E0 0000036C 60501020 + 012A 0001:0005C950 000002C0 60501020 + 012A 0001:0005CC10 000000AE 60501020 + 012A 0001:0005CCC0 0000002C 60501020 + 012A 0001:0005CCF0 00000026 60501020 + 012A 0001:0005CD20 00000032 60501020 + 0129 0001:0005CD60 00000003 60501020 + 0128 0001:0005CD70 00000011 60501020 + 0128 0001:0005CD90 00000012 60501020 + 0128 0001:0005CDB0 00000032 60501020 + 0128 0001:0005CDF0 0000005B 60501020 + 0127 0001:0005CE50 00000098 60501020 + 0126 0001:0005CEF0 00000068 60501020 + 0126 0001:0005CF60 00000132 60501020 + 0124 0001:0005D0A0 00000027 60500020 + 0123 0001:0005D0D0 00000039 60501020 + 0123 0001:0005D110 00000015 60501020 + 0123 0001:0005D130 0000002E 60501020 + 0123 0001:0005D160 00000035 60501020 + 0123 0001:0005D1A0 00000063 60501020 + 0123 0001:0005D210 000000EE 60501020 + 0122 0001:0005D300 00000015 60501020 + 0121 0001:0005D320 00000028 60501020 + 0121 0001:0005D350 00000020 60501020 + 0121 0001:0005D370 00000018 60501020 + 0121 0001:0005D390 00000117 60501020 + 0121 0001:0005D4B0 00000305 60501020 + 0121 0001:0005D7C0 00000015 60501020 + 0121 0001:0005D7E0 0000002F 60501020 + 0121 0001:0005D810 000000A2 60501020 + 0120 0001:0005D8C0 000000AC 60501020 + 0120 0001:0005D970 00000374 60501020 + 0120 0001:0005DCF0 00000233 60501020 + 0120 0001:0005DF30 000000F3 60501020 + 011F 0001:0005E030 00000216 60501020 + 011F 0001:0005E250 00000043 60501020 + 011E 0001:0005E2A0 000000EF 60501020 + 011E 0001:0005E390 0000014F 60501020 + 011E 0001:0005E4E0 00000043 60501020 + 011E 0001:0005E530 00000066 60501020 + 011D 0001:0005E5A0 000002AC 60501020 + 011C 0001:0005E850 00000003 60501020 + 011B 0001:0005E860 0000003E 60500020 + 011A 0001:0005E8A0 0000003A 60500020 + 0118 0001:0005E8E0 000002FF 60501020 + 0118 0001:0005EBE0 00000055 60501020 + 0118 0001:0005EC40 00000055 60501020 + 0118 0001:0005ECA0 00000042 60501020 + 0118 0001:0005ECF0 00000019 60501020 + 0118 0001:0005ED10 0000008E 60501020 + 0117 0001:0005EDA0 000002A6 60501020 + 0117 0001:0005F050 0000007B 60501020 + 0116 0001:0005F0D0 00000068 60501020 + 0116 0001:0005F140 00000069 60501020 + 0115 0001:0005F1B0 0000002F 60500020 + 0114 0001:0005F1E0 00000275 60501020 + 0113 0001:0005F460 000000E5 60501020 + 0113 0001:0005F550 000000EF 60501020 + 0113 0001:0005F640 00000354 60501020 + 0113 0001:0005F9A0 0000001F 60501020 + 0113 0001:0005F9C0 0000011E 60501020 + 0113 0001:0005FAE0 00000592 60501020 + 0113 0001:00060080 0000002A 60501020 + 0113 0001:000600B0 00000088 60501020 + 0113 0001:00060140 0000005E 60501020 + 0113 0001:000601A0 00000318 60501020 + 0112 0001:000604C0 000001B6 60501020 + 0111 0001:00060680 00000006 60501020 + 0110 0001:00060690 0000003C 60501020 + 0110 0001:000606D0 00000060 60501020 + 0110 0001:00060730 0000002F 60501020 + 0110 0001:00060760 0000001E 60501020 + 0110 0001:00060780 0000003D 60501020 + 0110 0001:000607C0 000000A0 60501020 + 0110 0001:00060860 00000020 60501020 + 010F 0001:00060880 0000012E 60501020 + 010F 0001:000609B0 0000013F 60501020 + 010E 0001:00060AF0 0000001A 60501020 + 010E 0001:00060B10 00000206 60501020 + 010E 0001:00060D20 0000001A 60501020 + 010D 0001:00060D40 000000C7 60500020 + 010A 0001:00060E10 00000032 60501020 + 010A 0001:00060E50 0000001A 60501020 + 010A 0001:00060E70 000002DF 60501020 + 010A 0001:00061150 00000028 60501020 + 010A 0001:00061180 0000025B 60501020 + 010A 0001:000613E0 0000018B 60501020 + 0109 0001:00061570 00000075 60501020 + 0109 0001:000615F0 0000009C 60501020 + 0108 0001:00061690 00000073 60501020 + 0108 0001:00061710 00000013 60501020 + 0107 0001:00061730 0000005B 60501020 + 0107 0001:00061790 0000026A 60501020 + 0107 0001:00061A00 00000031 60501020 + 0106 0001:00061A40 00000028 60501020 + 0106 0001:00061A70 00000096 60501020 + 0104 0001:00061B10 0000003B 60501020 + 0103 0001:00061B50 0000008A 60501020 + 0102 0001:00061BE0 0000023B 60501020 + 0102 0001:00061E20 00000033 60501020 + 0102 0001:00061E60 000002ED 60501020 + 0102 0001:00062150 0000002C 60501020 + 0101 0001:00062180 00000250 60501020 + 0101 0001:000623D0 0000005C 60501020 + 0101 0001:00062430 0000006E 60501020 + 0100 0001:000624A0 00000026 60500020 + 00FF 0001:000624D0 0000007B 60500020 + 00FE 0001:00062550 000000F0 60500020 + 00F8 0001:00062640 00000006 60201020 + 00F8 0001:00062646 00000006 60201020 + 00F8 0001:0006264C 00000006 60201020 + 00F8 0001:00062652 00000006 60201020 + 00F8 0001:00062658 00000006 60201020 + 00F8 0001:0006265E 00000006 60201020 + 00F8 0001:00062664 00000006 60201020 + 00F8 0001:0006266A 00000006 60201020 + 00F8 0001:00062670 00000006 60201020 + 00F8 0001:00062676 00000006 60201020 + 00F8 0001:0006267C 00000006 60201020 + 00F8 0001:00062682 00000006 60201020 + 00F8 0001:00062688 00000006 60201020 + 00F8 0001:0006268E 00000006 60201020 + 00F8 0001:00062694 00000006 60201020 + 00F8 0001:0006269A 00000006 60201020 + 00F8 0001:000626A0 00000006 60201020 + 00F8 0001:000626A6 00000006 60201020 + 00F8 0001:000626AC 00000006 60201020 + 00F8 0001:000626B2 00000006 60201020 + 00F8 0001:000626B8 00000006 60201020 + 00F8 0001:000626BE 00000006 60201020 + 00F8 0001:000626C4 00000006 60201020 + 00F8 0001:000626CA 00000006 60201020 + 00F8 0001:000626D0 00000006 60201020 + 00F8 0001:000626D6 00000006 60201020 + 00F8 0001:000626DC 00000006 60201020 + 00F8 0001:000626E2 00000006 60201020 + 00F8 0001:000626E8 00000006 60201020 + 00F8 0001:000626EE 00000006 60201020 + 00F8 0001:000626F4 00000006 60201020 + 00F8 0001:000626FA 00000006 60201020 + 00F8 0001:00062700 00000006 60201020 + 00F8 0001:00062706 00000006 60201020 + 00F8 0001:0006270C 00000006 60201020 + 00F8 0001:00062712 00000006 60201020 + 00F8 0001:00062718 00000006 60201020 + 00F8 0001:0006271E 00000006 60201020 + 00F8 0001:00062724 00000006 60201020 + 00F8 0001:0006272A 00000006 60201020 + 00F8 0001:00062730 00000006 60201020 + 00F8 0001:00062736 00000006 60201020 + 00F8 0001:0006273C 00000006 60201020 + 00F8 0001:00062742 00000006 60201020 + 00F8 0001:00062748 00000006 60201020 + 00F8 0001:0006274E 00000006 60201020 + 00F8 0001:00062754 00000006 60201020 + 00F8 0001:0006275A 00000006 60201020 + 00F8 0001:00062760 00000006 60201020 + 00F8 0001:00062766 00000006 60201020 + 00F8 0001:0006276C 00000006 60201020 + 00F8 0001:00062772 00000006 60201020 + 00F8 0001:00062778 00000006 60201020 + 00F8 0001:0006277E 00000006 60201020 + 00F8 0001:00062784 00000006 60201020 + 00F8 0001:0006278A 00000006 60201020 + 00F8 0001:00062790 00000006 60201020 + 00F8 0001:00062796 00000006 60201020 + 00F8 0001:0006279C 00000006 60201020 + 00FD 0001:000627B0 000000F4 60500020 + 00FC 0001:000628B0 00000156 60501020 + 00FB 0001:00062A10 00000156 60501020 + 00F7 0002:00000000 00003690 60500020 + 00DA 0003:00000058 00000020 40400040 + 00DA 0003:00000078 00000018 40401040 + 00D9 0003:00000090 00000020 40401040 + 00D9 0003:000000B0 00000020 40401040 + 00D8 0003:000000D0 00000004 40300040 + 00D8 0003:000000D8 000000CC 40401040 + 00D7 0003:000001A4 00000004 40300040 + 00D6 0003:000001A8 00000004 40300040 + 00D6 0003:000001B0 0000006C 40401040 + 00D5 0003:0000021C 00000004 40300040 + 00D3 0003:00000220 0000000C 40300040 + 00D3 0003:00000230 000000F0 40401040 + 00D3 0003:00000320 000000F0 40401040 + 00D2 0003:00000410 00000020 40401040 + 00D1 0003:00000430 00000020 40401040 + 00D0 0003:00000450 00000004 40300040 + 00CF 0003:00000454 0000000C 40300040 + 00CF 0003:00000460 000000F0 40401040 + 00CE 0003:00000550 00000004 40300040 + 00CE 0003:00000558 00000050 40401040 + 00CE 0003:000005A8 00000088 40401040 + 00CE 0003:00000630 00000050 40401040 + 00CE 0003:00000680 00000074 40401040 + 00CD 0003:000006F4 00000004 40300040 + 00CC 0003:000006F8 00000004 40300040 + 00CC 0003:00000700 00000080 40401040 + 00C9 0003:00000780 0000000C 40300040 + 00C9 0003:00000790 000000F0 40401040 + 00C8 0003:00000880 00000004 40300040 + 00C8 0003:00000888 0000006C 40401040 + 00C7 0003:000008F4 00000004 40300040 + 00C7 0003:000008F8 0000006C 40401040 + 00C6 0003:00000964 00000004 40300040 + 00C5 0003:00000968 00000020 40401040 + 00C3 0003:00000988 00000050 40400040 + 00C3 0003:000009D8 000000F0 40401040 + 00C3 0003:00000AC8 00000098 40401040 + 00C3 0003:00000B60 0000004C 40401040 + 00C3 0003:00000BB0 00000088 40401040 + 00C3 0003:00000C38 00000098 40401040 + 00C1 0003:00000CD0 00000004 40300040 + 00C1 0003:00000CD8 0000006C 40401040 + 00C0 0003:00000D44 00000004 40300040 + 00C0 0003:00000D48 0000006C 40401040 + 00BF 0003:00000DB4 00000004 40300040 + 00BE 0003:00000DB8 00000020 40401040 + 00BD 0003:00000DD8 00000004 40300040 + 00BD 0003:00000DE0 0000006C 40401040 + 00BC 0003:00000E4C 00000004 40300040 + 00BC 0003:00000E50 0000006C 40401040 + 00BB 0003:00000EBC 00000004 40300040 + 00BA 0003:00000EC0 00000020 40401040 + 00B9 0003:00000EE0 00000004 40300040 + 00B9 0003:00000EE8 00000070 40401040 + 00B8 0003:00000F58 00000004 40300040 + 00B7 0003:00000F5C 00000010 40300040 + 00B6 0003:00000F6C 0000000C 40300040 + 00B6 0003:00000F78 000000F0 40401040 + 00B5 0003:00001068 00000004 40300040 + 00B4 0003:0000106C 00000004 40300040 + 00B4 0003:00001070 0000006C 40401040 + 00B3 0003:000010DC 00000004 40300040 + 00B3 0003:000010E0 00000050 40401040 + 00B1 0003:00001130 00000010 40400040 + 00B1 0003:00001140 00000004 40301040 + 00B0 0003:00001144 00000004 40300040 + 00B0 0003:00001148 00000004 40301040 + 00AE 0003:0000114C 00000004 40300040 + 00AD 0003:00001150 00000008 40300040 + 00AD 0003:00001158 00000068 40401040 + 00AC 0003:000011C0 00000004 40300040 + 00AB 0003:000011C8 00000014 40401040 + 00AA 0003:000011E0 00000068 40401040 + 00A9 0003:00001248 00000088 40401040 + 00A9 0003:000012D0 00000088 40401040 + 00A9 0003:00001358 0000005C 40401040 + 00A9 0003:000013B8 00000058 40401040 + 00A8 0003:00001410 00000010 40400040 + 00A8 0003:00001420 0000000C 40401040 + 00A8 0003:00001430 0000000C 40401040 + 00A7 0003:00001440 00000014 40401040 + 00A6 0003:00001458 00000014 40401040 + 00A5 0003:00001470 00000014 40401040 + 00A4 0003:00001484 00000004 40300040 + 00A4 0003:00001488 0000006C 40401040 + 00A3 0003:000014F8 00000088 40401040 + 00A2 0003:00001580 00000014 40401040 + 00A1 0003:00001594 00000008 40300040 + 00A0 0003:0000159C 00000004 40300040 + 00A0 0003:000015A0 00000070 40401040 + 009E 0003:00001610 00000088 40401040 + 009D 0003:00001698 00000004 40300040 + 009D 0003:000016A0 0000000C 40401040 + 009C 0003:000016AC 00000004 40300040 + 009B 0003:000016B0 00000088 40401040 + 009B 0003:00001738 00000088 40401040 + 009A 0003:000017C0 00000004 40300040 + 009A 0003:000017C8 00000058 40401040 + 009A 0003:00001820 00000018 40401040 + 009A 0003:00001838 00000018 40401040 + 009A 0003:00001850 00000018 40401040 + 009A 0003:00001868 00000018 40401040 + 009A 0003:00001880 00000008 40401040 + 009A 0003:00001888 00000008 40401040 + 009A 0003:00001890 00000004 40301040 + 0099 0003:00001894 00000004 40300040 + 0098 0003:00001898 00000064 40401040 + 0098 0003:00001900 00000064 40401040 + 0098 0003:00001968 00000070 40401040 + 0098 0003:000019D8 00000070 40401040 + 0097 0003:00001A48 00000088 40401040 + 0094 0003:00001AD0 00000008 40300040 + 0094 0003:00001AD8 00000014 40401040 + 0093 0003:00001AEC 00000004 40300040 + 0093 0003:00001AF0 0000001C 40401040 + 0093 0003:00001B10 00000070 40401040 + 0093 0003:00001B80 000000CC 40401040 + 0093 0003:00001C50 000000CC 40401040 + 0093 0003:00001D20 0000005C 40401040 + 0093 0003:00001D80 00000070 40401040 + 0093 0003:00001DF0 00000050 40401040 + 0093 0003:00001E40 00000020 40401040 + 0093 0003:00001E60 00000020 40401040 + 0093 0003:00001E80 000000CC 40401040 + 0093 0003:00001F50 00000020 40401040 + 0093 0003:00001F70 00000050 40401040 + 0093 0003:00001FC0 00000068 40401040 + 0093 0003:00002028 000000CC 40401040 + 0093 0003:000020F8 000000CC 40401040 + 0093 0003:000021C8 00000020 40401040 + 0093 0003:000021E8 00000014 40401040 + 0093 0003:00002200 00000050 40401040 + 0093 0003:00002250 00000068 40401040 + 0093 0003:000022B8 00000020 40401040 + 0093 0003:000022D8 00000020 40401040 + 0093 0003:000022F8 0000006C 40401040 + 0093 0003:00002368 00000050 40401040 + 0093 0003:000023B8 00000060 40401040 + 0093 0003:00002418 00000088 40401040 + 0093 0003:000024A0 000000CC 40401040 + 0093 0003:00002570 00000050 40401040 + 0093 0003:000025C0 0000005C 40401040 + 0093 0003:00002620 000000CC 40401040 + 0093 0003:000026F0 00000020 40401040 + 0093 0003:00002710 00000050 40401040 + 0093 0003:00002760 000000CC 40401040 + 0093 0003:00002830 00000020 40401040 + 0093 0003:00002850 000000CC 40401040 + 0093 0003:00002920 00000050 40401040 + 0092 0003:00002970 00000004 40300040 + 0092 0003:00002978 00000044 40401040 + 0092 0003:000029C0 00000024 40401040 + 0092 0003:000029E8 00000018 40401040 + 0092 0003:00002A00 00000004 40301040 + 0092 0003:00002A04 00000004 40301040 + 0092 0003:00002A08 00000018 40401040 + 0092 0003:00002A20 00000018 40401040 + 0092 0003:00002A38 00000018 40401040 + 0091 0003:00002A50 00000004 40300040 + 0091 0003:00002A58 00000088 40401040 + 0091 0003:00002AE0 0000001C 40401040 + 0091 0003:00002B00 0000001C 40401040 + 008F 0003:00002B1C 00000004 40300040 + 008F 0003:00002B20 000000CC 40401040 + 008E 0003:00002BF0 00000014 40401040 + 008D 0003:00002C04 00000004 40300040 + 008D 0003:00002C08 0000005C 40401040 + 008C 0003:00002C68 00000088 40401040 + 008B 0003:00002CF0 00000014 40401040 + 008A 0003:00002D04 00000004 40300040 + 008A 0003:00002D08 00000080 40401040 + 0089 0003:00002D88 00000020 40400040 + 0089 0003:00002DA8 00000038 40401040 + 0089 0003:00002DE0 00000038 40401040 + 0089 0003:00002E18 00000030 40401040 + 0089 0003:00002E48 00000014 40401040 + 0088 0003:00002E60 0000003C 40401040 + 0086 0003:00002EA0 0000001C 40401040 + 0085 0003:00002EBC 00000004 40300040 + 0084 0003:00002EC0 00000030 40400040 + 0082 0003:00002EF0 00000020 40401040 + 0081 0003:00002F10 0000002C 40400040 + 0081 0003:00002F40 00000040 40401040 + 0081 0003:00002F80 00000018 40401040 + 0081 0003:00002F98 00000004 40301040 + 0081 0003:00002FA0 00000018 40401040 + 0081 0003:00002FB8 00000018 40401040 + 0081 0003:00002FD0 00000004 40301040 + 0081 0003:00002FD8 00000014 40401040 + 0081 0003:00002FF0 00000014 40401040 + 0081 0003:00003008 00000014 40401040 + 0080 0003:0000301C 00000004 40300040 + 0080 0003:00003020 00000018 40401040 + 0080 0003:00003038 00000018 40401040 + 0080 0003:00003050 00000018 40401040 + 0080 0003:00003068 00000018 40401040 + 0080 0003:00003080 00000018 40401040 + 0080 0003:00003098 00000018 40401040 + 0080 0003:000030B0 00000018 40401040 + 0080 0003:000030C8 00000018 40401040 + 0080 0003:000030E0 0000006C 40401040 + 007F 0003:0000314C 00000004 40300040 + 007F 0003:00003150 00000070 40401040 + 007F 0003:000031C0 00000014 40401040 + 007F 0003:000031D8 00000014 40401040 + 007E 0003:000031EC 00000010 40300040 + 007E 0003:00003200 000000F0 40401040 + 007D 0003:000032F0 00000008 40401040 + 007D 0003:000032F8 00000008 40401040 + 007D 0003:00003300 00000008 40401040 + 007D 0003:00003308 00000008 40401040 + 007A 0003:00003310 00000030 40401040 + 0077 0003:00003340 00000018 40401040 + 0076 0003:00003358 00000044 40401040 + 0075 0003:0000339C 00000004 40300040 + 0075 0003:000033A0 00000068 40401040 + 0074 0003:00003408 00000068 40401040 + 0073 0003:00003470 0000006C 40401040 + 0072 0003:000034E0 00000014 40401040 + 0070 0003:000034F8 00000014 40401040 + 006F 0003:00003510 00000014 40401040 + 006E 0003:00003528 00000038 40401040 + 006D 0003:00003560 0000002C 40401040 + 006D 0003:00003590 00000008 40401040 + 006D 0003:00003598 0000002C 40401040 + 006D 0003:000035C4 00000004 40301040 + 006C 0003:000035C8 00000048 40401040 + 006B 0003:00003610 00000008 40300040 + 006B 0003:00003618 00000044 40401040 + 006A 0003:00003660 00000044 40401040 + 0069 0003:000036A8 00000014 40401040 + 0069 0003:000036C0 00000014 40401040 + 0068 0003:000036D8 00000014 40401040 + 0067 0003:000036F0 00000044 40401040 + 0066 0003:00003738 00000038 40401040 + 0066 0003:00003770 00000038 40401040 + 0065 0003:000037A8 00000004 40300040 + 0065 0003:000037B0 00000044 40401040 + 0064 0003:000037F8 00000018 40401040 + 0064 0003:00003810 00000018 40401040 + 0064 0003:00003828 00000018 40401040 + 0064 0003:00003840 00000044 40401040 + 0063 0003:00003884 00000004 40300040 + 0063 0003:00003888 00000024 40401040 + 0062 0003:000038B0 00000048 40401040 + 0061 0003:000038F8 00000044 40401040 + 0060 0003:00003940 00000044 40401040 + 0060 0003:00003988 00000018 40401040 + 0060 0003:000039A0 00000018 40401040 + 0060 0003:000039B8 00000018 40401040 + 0060 0003:000039D0 00000014 40401040 + 0060 0003:000039E8 00000014 40401040 + 005F 0003:00003A00 00000044 40401040 + 005E 0003:00003A44 00000004 40300040 + 005E 0003:00003A48 00000044 40401040 + 005C 0003:00003A90 00000044 40401040 + 005B 0003:00003AD8 00000044 40401040 + 005A 0003:00003B20 00000018 40401040 + 005A 0003:00003B38 00000018 40401040 + 005A 0003:00003B50 00000018 40401040 + 005A 0003:00003B68 00000014 40401040 + 005A 0003:00003B80 00000014 40401040 + 005A 0003:00003B98 00000014 40401040 + 0059 0003:00003BB0 00000018 40401040 + 0058 0003:00003BC8 0000002C 40401040 + 0057 0003:00003BF8 00000060 40401040 + 0056 0003:00003C58 00000088 40401040 + 0054 0003:00003CE0 00000088 40401040 + 0052 0003:00003D68 00000090 40401040 + 0051 0003:00003DF8 00000028 40401040 + 004F 0003:00003E20 00000064 40401040 + 004E 0003:00003E88 00000034 40401040 + 004D 0003:00003EC0 00000064 40401040 + 004C 0003:00003F28 00000018 40401040 + 004A 0003:00003F40 0000001C 40401040 + 004A 0003:00003F60 00000090 40401040 + 004A 0003:00003FF0 00000064 40401040 + 0049 0003:00004058 00000044 40401040 + 0049 0003:000040A0 00000018 40401040 + 0049 0003:000040B8 0000001C 40401040 + 0049 0003:000040D8 0000001C 40401040 + 0047 0003:000040F4 00000004 40301040 + 0046 0003:000040F8 00000014 40401040 + 0042 0003:00004110 0000002C 40401040 + 0041 0003:00004140 00000018 40401040 + 0041 0003:00004158 00000024 40401040 + 0041 0003:00004180 00000018 40401040 + 0041 0003:00004198 00000018 40401040 + 0041 0003:000041B0 00000018 40401040 + 0041 0003:000041C8 00000014 40401040 + 0041 0003:000041E0 00000014 40401040 + 0041 0003:000041F8 00000014 40401040 + 0041 0003:00004210 00000018 40401040 + 0041 0003:00004228 00000018 40401040 + 0041 0003:00004240 00000018 40401040 + 0041 0003:00004258 00000018 40401040 + 0041 0003:00004270 00000014 40401040 + 0041 0003:00004288 00000014 40401040 + 0041 0003:000042A0 00000014 40401040 + 0040 0003:000042B8 00000040 40401040 + 003C 0003:000042F8 0000008C 40401040 + 003C 0003:00004388 00000014 40401040 + 003C 0003:000043A0 00000014 40401040 + 003C 0003:000043B8 00000014 40401040 + 003C 0003:000043D0 00000018 40401040 + 003C 0003:000043E8 00000018 40401040 + 003C 0003:00004400 00000018 40401040 + 003C 0003:00004418 00000018 40401040 + 003B 0003:00004430 0000003C 40401040 + 0038 0003:0000446C 00000004 40300040 + 0037 0003:00004470 00000004 40300040 + 0037 0003:00004478 00000034 40401040 + 0037 0003:000044B0 00000014 40401040 + 0036 0003:000044C8 00000018 40401040 + 0036 0003:000044E0 00000034 40401040 + 0036 0003:00004518 00000008 40401040 + 0033 0003:00004520 00000014 40401040 + 0032 0003:00004538 00000008 40401040 + 0032 0003:00004540 00000008 40401040 + 0030 0003:00004548 00000014 40401040 + 002F 0003:0000455C 00000004 40300040 + 002F 0003:00004560 00000018 40401040 + 002D 0003:00004578 00000004 40301040 + 002B 0003:00004580 00000014 40401040 + 002A 0003:00004598 00000038 40401040 + 0027 0003:000045D0 00000004 40301040 + 0025 0003:000045D4 00000004 40300040 + 0025 0003:000045D8 00000068 40401040 + 0023 0003:00004640 00000004 40300040 + 0022 0003:00004648 00000020 40401040 + 0021 0003:00004668 00000004 40300040 + 0021 0003:00004670 0000006C 40401040 + 0020 0003:000046DC 00000004 40300040 + 001F 0003:000046E0 00000020 40401040 + 001E 0003:00004700 00000008 40300040 + 001E 0003:00004708 000000F0 40401040 + 001D 0003:000047F8 00000004 40300040 + 001C 0003:00004800 00000020 40401040 + 001B 0003:00004820 00000014 40401040 + 001A 0003:00004838 00000020 40401040 + 0019 0003:00004858 00000008 40300040 + 0017 0003:00004860 00000008 40300040 + 0016 0003:00004868 00000004 40300040 + 0015 0003:0000486C 00000008 40300040 + 0014 0003:00004874 00000004 40300040 + 0014 0003:00004878 0000006C 40401040 + 0012 0003:000048E4 00000004 40300040 + 0012 0003:000048E8 0000006C 40401040 + 0010 0003:00004954 0000000C 40300040 + 0010 0003:00004960 000000F0 40401040 + 000F 0003:00004A50 00000004 40300040 + 000E 0003:00004A54 00000004 40300040 + 000D 0003:00004A58 00000004 40300040 + 000D 0003:00004A60 0000001C 40401040 + 000D 0003:00004A80 00000008 40401040 + 000D 0003:00004A88 0000001C 40401040 + 000C 0003:00004AA4 00000004 40300040 + 000B 0003:00004AA8 00000004 40300040 + 000B 0003:00004AB0 00000024 40401040 + 000B 0003:00004AD8 00000024 40401040 + 000A 0003:00004AFC 00000004 40300040 + 000A 0003:00004B00 00000034 40401040 + 000A 0003:00004B38 00000034 40401040 + 000A 0003:00004B70 0000002C 40401040 + 000A 0003:00004BA0 0000002C 40401040 + 000A 0003:00004BD0 0000003C 40401040 + 000A 0003:00004C10 0000003C 40401040 + 000A 0003:00004C50 00000034 40401040 + 000A 0003:00004C88 00000034 40401040 + 000A 0003:00004CC0 0000000C 40401040 + 000A 0003:00004CD0 0000000C 40401040 + 000A 0003:00004CE0 00000010 40401040 + 000A 0003:00004CF0 00000010 40401040 + 000A 0003:00004D00 00000014 40401040 + 000A 0003:00004D18 00000014 40401040 + 0009 0003:00004D2C 00000004 40300040 + 0008 0003:00004D30 00000004 40300040 + 0007 0003:00004D38 00000018 40400040 + 0006 0003:00004D50 0000000C 40300040 + 0006 0003:00004D60 000000F0 40401040 + 0005 0003:00004E50 00000020 40401040 + 0004 0003:00004E70 00000004 40301040 + 0004 0003:00004E74 00000004 40301040 + 0004 0003:00004E78 00000004 40301040 + 0004 0003:00004E7C 00000004 40301040 + 0002 0003:00004E80 00000008 40300040 + 00E2 0003:00004E88 0000000C 40401040 + 00E2 0003:00004E98 0000000C 40401040 + 00E2 0003:00004EA8 0000000C 40401040 + 00DD 0003:00004EB8 0000003C 40400040 + 00DD 0003:00004EF8 0000000C 40401040 + 00DB 0003:00004F08 00000012 40400040 + 00F4 0003:00004F20 00000010 40400040 + 00F3 0003:00004F30 00000010 40400040 + 00F2 0003:00004F40 00000010 40400040 + 00F1 0003:00004F50 00000010 40400040 + 00F0 0003:00004F60 00000010 40400040 + 00EF 0003:00004F70 00000010 40400040 + 0187 0003:00004F80 0000000C 40401040 + 0185 0003:00004F90 0000000C 40401040 + 0185 0003:00004FA0 0000000C 40401040 + 0184 0003:00004FB0 0000000C 40401040 + 0183 0003:00004FBC 00000006 40301040 + 0183 0003:00004FC4 0000000D 40301040 + 017F 0003:00004FD8 0000000C 40401040 + 017F 0003:00004FE8 00000018 40401040 + 017F 0003:00005000 0000000C 40401040 + 017F 0003:00005010 0000000C 40401040 + 017B 0003:00005020 00000018 40400040 + 017B 0003:00005038 0000001A 40301040 + 017B 0003:00005054 00000009 40301040 + 0179 0003:00005060 00000008 40400040 + 0179 0003:00005068 00000006 40301040 + 0177 0003:00005070 00000030 40500040 + 0170 0003:000050A0 0000000E 40301040 + 0170 0003:000050B0 00000007 40301040 + 0170 0003:000050B8 00000059 40400040 + 0163 0003:00005114 00000005 40301040 + 0163 0003:0000511C 00000005 40301040 + 0163 0003:00005124 00000005 40301040 + 0163 0003:0000512C 00000005 40301040 + 0163 0003:00005134 00000003 40301040 + 0161 0003:00005138 0000000F 40301040 + 0161 0003:00005148 00000003 40301040 + 0161 0003:0000514C 0000000E 40301040 + 0161 0003:0000515C 0000000D 40301040 + 0161 0003:0000516C 0000000F 40301040 + 0161 0003:0000517C 00000025 40301040 + 0161 0003:000051A4 00000035 40301040 + 0161 0003:000051DC 00000035 40301040 + 0161 0003:00005214 00000026 40301040 + 0161 0003:0000523C 00000035 40301040 + 0161 0003:00005274 00000029 40301040 + 0161 0003:000052A0 00000021 40301040 + 0161 0003:000052C4 0000002D 40301040 + 0161 0003:000052F4 0000002C 40301040 + 0161 0003:00005320 00000021 40301040 + 0161 0003:00005344 0000002C 40301040 + 0161 0003:00005370 0000002A 40301040 + 0161 0003:0000539C 00000025 40301040 + 0161 0003:000053C4 00000025 40301040 + 0161 0003:000053EC 00000003 40301040 + 0161 0003:000053F0 0000001A 40301040 + 0161 0003:0000540C 00000004 40301040 + 0161 0003:00005410 00000017 40301040 + 015C 0003:00005428 00000018 40401040 + 015C 0003:00005440 00000018 40401040 + 0149 0003:00005458 00000002 40301040 + 0149 0003:0000545C 00000004 40301040 + 0138 0003:00005460 00000013 40301040 + 0138 0003:00005474 00000010 40301040 + 0138 0003:00005484 0000000C 40301040 + 0138 0003:00005490 0000000B 40301040 + 0134 0003:000054A0 00000018 40400040 + 012F 0003:000054B8 00000008 40301040 + 012F 0003:000054C0 0000000B 40301040 + 012F 0003:000054CC 0000000C 40301040 + 012F 0003:000054D8 00000009 40301040 + 012F 0003:000054E4 0000000B 40301040 + 012F 0003:000054F0 00000007 40301040 + 012F 0003:000054F8 00000002 40301040 + 012F 0003:000054FC 00000003 40301040 + 012F 0003:00005500 00000002 40301040 + 012F 0003:00005504 00000004 40301040 + 012F 0003:00005508 00000002 40301040 + 012F 0003:0000550C 00000002 40301040 + 012B 0003:00005510 00000007 40301040 + 012B 0003:00005518 00000006 40301040 + 012B 0003:00005520 00000006 40301040 + 012B 0003:00005528 00000007 40301040 + 012A 0003:00005530 00000004 40301040 + 012A 0003:00005534 00000004 40301040 + 012A 0003:00005538 00000004 40301040 + 012A 0003:0000553C 00000006 40301040 + 012A 0003:00005544 00000005 40301040 + 012A 0003:0000554C 00000007 40301040 + 012A 0003:00005554 00000006 40301040 + 012A 0003:0000555C 00000006 40301040 + 012A 0003:00005564 00000005 40301040 + 012A 0003:0000556C 00000005 40301040 + 012A 0003:00005574 00000006 40301040 + 012A 0003:0000557C 00000005 40301040 + 012A 0003:00005584 00000004 40301040 + 012A 0003:00005588 00000004 40301040 + 012A 0003:0000558C 00000004 40301040 + 012A 0003:00005590 00000005 40301040 + 012A 0003:00005598 00000006 40301040 + 012A 0003:000055A0 00000005 40301040 + 012A 0003:000055A8 00000005 40301040 + 012A 0003:000055B0 00000005 40301040 + 012A 0003:000055B8 00000005 40301040 + 012A 0003:000055C0 00000005 40301040 + 012A 0003:000055C8 00000005 40301040 + 012A 0003:000055D0 00000006 40301040 + 012A 0003:000055D8 00000004 40301040 + 012A 0003:000055DC 00000004 40301040 + 012A 0003:000055E0 00000004 40301040 + 012A 0003:000055E8 00000008 40400040 + 0123 0003:000055F0 00000008 40400040 + 0121 0003:000055F8 00000010 40400040 + 0118 0003:00005608 0000000E 40301040 + 0118 0003:00005618 0000000F 40301040 + 0118 0003:00005628 0000000E 40301040 + 0118 0003:00005638 0000000F 40301040 + 0118 0003:00005648 00000004 40301040 + 0118 0003:0000564C 00000007 40301040 + 0118 0003:00005654 00000004 40301040 + 0118 0003:00005658 00000007 40301040 + 0118 0003:00005660 0000000C 40301040 + 0118 0003:0000566C 00000007 40301040 + 0118 0003:00005674 00000004 40301040 + 0118 0003:00005678 00000004 40301040 + 0118 0003:0000567C 00000006 40301040 + 0118 0003:00005684 0000000C 40301040 + 0118 0003:00005690 0000000C 40301040 + 0118 0003:0000569C 00000004 40301040 + 0118 0003:000056A0 0000000A 40301040 + 0118 0003:000056AC 00000007 40301040 + 0118 0003:000056B4 00000004 40301040 + 0118 0003:000056B8 00000009 40301040 + 0118 0003:000056C4 00000009 40301040 + 0118 0003:000056D0 00000009 40301040 + 0118 0003:000056DC 00000007 40301040 + 0118 0003:000056E4 00000004 40301040 + 0118 0003:000056E8 00000004 40301040 + 0118 0003:000056EC 00000003 40301040 + 0118 0003:000056F0 00000007 40301040 + 0118 0003:000056F8 0000000C 40301040 + 0118 0003:00005704 0000000C 40301040 + 0118 0003:00005710 0000000C 40301040 + 0118 0003:0000571C 00000007 40301040 + 0118 0003:00005724 00000004 40301040 + 0118 0003:00005728 00000006 40301040 + 0118 0003:00005730 00000006 40301040 + 0118 0003:00005738 00000006 40301040 + 0118 0003:00005740 00000004 40301040 + 0118 0003:00005744 00000008 40301040 + 0118 0003:0000574C 00000008 40301040 + 0118 0003:00005754 00000008 40301040 + 0118 0003:0000575C 0000000A 40301040 + 0118 0003:00005768 0000000A 40301040 + 0118 0003:00005774 00000008 40301040 + 0118 0003:0000577C 00000004 40301040 + 0118 0003:00005780 00000007 40301040 + 0118 0003:00005788 0000000E 40301040 + 0118 0003:00005798 00000004 40301040 + 0118 0003:0000579C 00000008 40301040 + 0118 0003:000057A4 00000004 40301040 + 0118 0003:000057A8 00000007 40301040 + 0118 0003:000057B0 00000008 40301040 + 0118 0003:000057B8 00000008 40301040 + 0118 0003:000057C0 00000004 40301040 + 0118 0003:000057C4 00000008 40301040 + 0118 0003:000057CC 00000004 40301040 + 0118 0003:000057D0 00000004 40301040 + 0118 0003:000057D4 00000006 40301040 + 0118 0003:000057DC 00000004 40301040 + 0118 0003:000057E0 00000007 40301040 + 0118 0003:000057E8 00000004 40301040 + 0118 0003:000057EC 00000008 40301040 + 0118 0003:000057F4 00000007 40301040 + 0118 0003:000057FC 00000004 40301040 + 0118 0003:00005800 00000008 40301040 + 0118 0003:00005808 00000004 40301040 + 0118 0003:0000580C 00000004 40301040 + 0118 0003:00005810 00000008 40301040 + 0118 0003:00005818 0000000A 40301040 + 0118 0003:00005824 00000004 40301040 + 0118 0003:00005828 00000008 40301040 + 0118 0003:00005830 00000004 40301040 + 0118 0003:00005834 00000003 40301040 + 0118 0003:00005838 00000003 40301040 + 0118 0003:0000583C 00000008 40301040 + 0118 0003:00005844 00000004 40301040 + 0118 0003:00005848 00000006 40301040 + 0118 0003:00005850 00000008 40301040 + 0118 0003:00005858 00000004 40301040 + 0118 0003:0000585C 0000000F 40301040 + 0118 0003:0000586C 00000010 40301040 + 0118 0003:0000587C 00000008 40301040 + 0118 0003:00005884 00000007 40301040 + 0118 0003:0000588C 00000004 40301040 + 0118 0003:00005890 00000008 40301040 + 0118 0003:00005898 00000004 40301040 + 0118 0003:0000589C 00000004 40301040 + 0118 0003:000058A0 00000004 40301040 + 0118 0003:000058A4 00000015 40301040 + 0118 0003:000058BC 0000000B 40301040 + 0118 0003:000058C8 00000007 40301040 + 0118 0003:000058D0 00000004 40301040 + 0118 0003:000058D4 00000012 40301040 + 0118 0003:000058E8 00000011 40301040 + 0118 0003:000058FC 0000000A 40301040 + 0118 0003:00005908 00000004 40301040 + 0118 0003:0000590C 00000004 40301040 + 0118 0003:00005910 00000004 40301040 + 0118 0003:00005914 00000004 40301040 + 0118 0003:00005918 00000007 40301040 + 0118 0003:00005920 00000004 40301040 + 0118 0003:00005924 00000004 40301040 + 0118 0003:00005928 00000009 40301040 + 0118 0003:00005934 00000004 40301040 + 0118 0003:00005938 0000000E 40301040 + 0118 0003:00005948 00000008 40301040 + 0118 0003:00005950 00000004 40301040 + 0118 0003:00005954 00000004 40301040 + 0118 0003:00005958 0000000E 40301040 + 0118 0003:00005968 0000000A 40301040 + 0118 0003:00005974 0000000A 40301040 + 0118 0003:00005980 00000004 40301040 + 0118 0003:00005984 00000006 40301040 + 0118 0003:0000598C 0000000D 40301040 + 0118 0003:0000599C 00000010 40301040 + 0118 0003:000059AC 00000007 40301040 + 0118 0003:000059B4 00000004 40301040 + 0118 0003:000059B8 0000000D 40301040 + 0118 0003:000059C8 00000010 40301040 + 0118 0003:000059D8 0000000F 40301040 + 0118 0003:000059E8 00000007 40301040 + 0118 0003:000059F0 00000004 40301040 + 0118 0003:000059F4 00000004 40301040 + 0118 0003:000059F8 00000004 40301040 + 0118 0003:000059FC 00000008 40301040 + 0118 0003:00005A04 00000004 40301040 + 0118 0003:00005A08 00000004 40301040 + 0118 0003:00005A0C 00000004 40301040 + 0118 0003:00005A10 00000004 40301040 + 0118 0003:00005A14 00000004 40301040 + 0118 0003:00005A18 00000004 40301040 + 0118 0003:00005A1C 00000004 40301040 + 0118 0003:00005A20 0000000C 40301040 + 0118 0003:00005A2C 0000000B 40301040 + 0118 0003:00005A38 0000000B 40301040 + 0118 0003:00005A44 0000000B 40301040 + 0118 0003:00005A50 0000000C 40301040 + 0118 0003:00005A5C 0000000C 40301040 + 0118 0003:00005A68 0000000C 40301040 + 0118 0003:00005A74 00000011 40301040 + 0118 0003:00005A88 00000008 40301040 + 0118 0003:00005A90 00000004 40301040 + 0118 0003:00005A94 00000004 40301040 + 0118 0003:00005A98 00000004 40301040 + 0118 0003:00005A9C 00000004 40301040 + 0118 0003:00005AA0 0000000E 40301040 + 0118 0003:00005AB0 00000006 40301040 + 0118 0003:00005AB8 00000004 40301040 + 0118 0003:00005ABC 00000004 40301040 + 0118 0003:00005AC0 00000004 40301040 + 0118 0003:00005AC4 00000007 40301040 + 0118 0003:00005ACC 00000004 40301040 + 0118 0003:00005AD0 00000006 40301040 + 0118 0003:00005AD8 00000004 40301040 + 0118 0003:00005ADC 00000004 40301040 + 0118 0003:00005AE0 00000004 40301040 + 0118 0003:00005AE4 00000014 40301040 + 0118 0003:00005AF8 00000012 40301040 + 0118 0003:00005B0C 00000013 40301040 + 0118 0003:00005B20 00000011 40301040 + 0118 0003:00005B34 00000008 40301040 + 0118 0003:00005B3C 00000004 40301040 + 0118 0003:00005B40 00000004 40301040 + 0118 0003:00005B44 00000009 40301040 + 0118 0003:00005B50 00000008 40301040 + 0118 0003:00005B58 0000000B 40301040 + 0118 0003:00005B64 00000011 40301040 + 0118 0003:00005B78 00000011 40301040 + 0118 0003:00005B8C 00000009 40301040 + 0118 0003:00005B98 00000004 40301040 + 0118 0003:00005B9C 00000004 40301040 + 0114 0003:00005BA0 00000010 40400040 + 0113 0003:00005BB0 00000008 40301040 + 0113 0003:00005BB8 00000014 40301040 + 0113 0003:00005BCC 00000007 40301040 + 0113 0003:00005BD4 00000003 40301040 + 0113 0003:00005BD8 00000003 40301040 + 0113 0003:00005BDC 00000009 40301040 + 0113 0003:00005BE8 00000009 40301040 + 0113 0003:00005BF4 00000008 40301040 + 0113 0003:00005BFC 0000000A 40301040 + 0113 0003:00005C08 00000007 40301040 + 0113 0003:00005C10 00000005 40301040 + 0113 0003:00005C18 00000005 40301040 + 0113 0003:00005C20 00000006 40301040 + 0113 0003:00005C28 00000006 40301040 + 0113 0003:00005C30 00000009 40301040 + 0113 0003:00005C3C 00000008 40301040 + 0113 0003:00005C44 00000004 40301040 + 0113 0003:00005C48 00000004 40301040 + 0113 0003:00005C4C 00000004 40301040 + 0113 0003:00005C50 00000004 40301040 + 0113 0003:00005C54 00000004 40301040 + 0113 0003:00005C58 00000004 40301040 + 0113 0003:00005C5C 00000004 40301040 + 0113 0003:00005C60 00000004 40301040 + 0113 0003:00005C64 00000004 40301040 + 0113 0003:00005C68 00000004 40301040 + 0113 0003:00005C6C 00000004 40301040 + 0113 0003:00005C70 00000004 40301040 + 0113 0003:00005C74 00000009 40301040 + 0113 0003:00005C80 00000007 40301040 + 0113 0003:00005C88 00000009 40301040 + 0113 0003:00005C94 0000000A 40301040 + 0113 0003:00005CA0 00000008 40301040 + 0113 0003:00005CA8 00000007 40301040 + 0113 0003:00005CB0 00000007 40301040 + 0113 0003:00005CB8 00000004 40301040 + 0113 0003:00005CBC 00000004 40301040 + 0113 0003:00005CC0 00000004 40301040 + 0113 0003:00005CC4 00000004 40301040 + 0113 0003:00005CC8 00000004 40301040 + 0113 0003:00005CCC 00000004 40301040 + 0113 0003:00005CD0 00000004 40301040 + 0113 0003:00005CD4 00000004 40301040 + 0113 0003:00005CD8 00000006 40301040 + 010B 0003:00005CE0 0000003D 40400040 + 010A 0003:00005D20 00000003 40301040 + 00DA 0003:00005D28 00000040 40401040 + 00DA 0003:00005D68 00000028 40401040 + 00DA 0003:00005D90 00000030 40401040 + 00DA 0003:00005DC0 00000028 40401040 + 00D9 0003:00005DE8 00000030 40401040 + 00D9 0003:00005E18 00000028 40401040 + 00D8 0003:00005E40 00000028 40401040 + 00D8 0003:00005E68 00000028 40401040 + 00D6 0003:00005E90 00000028 40401040 + 00D6 0003:00005EB8 00000028 40401040 + 00D3 0003:00005EE0 00000028 40401040 + 00D3 0003:00005F08 00000028 40401040 + 00D3 0003:00005F30 00000028 40401040 + 00D3 0003:00005F58 00000028 40401040 + 00D2 0003:00005F80 00000030 40401040 + 00D2 0003:00005FB0 00000028 40401040 + 00D1 0003:00005FD8 00000030 40401040 + 00D1 0003:00006008 00000028 40401040 + 00CF 0003:00006030 00000028 40401040 + 00CF 0003:00006058 00000028 40401040 + 00CE 0003:00006080 00000030 40401040 + 00CE 0003:000060B0 00000028 40401040 + 00CC 0003:000060D8 00000028 40401040 + 00CC 0003:00006100 00000028 40401040 + 00C9 0003:00006128 00000028 40401040 + 00C9 0003:00006150 00000028 40401040 + 00C8 0003:00006178 00000028 40401040 + 00C8 0003:000061A0 00000028 40401040 + 00C7 0003:000061C8 00000028 40401040 + 00C7 0003:000061F0 00000028 40401040 + 00C5 0003:00006218 00000030 40401040 + 00C5 0003:00006248 00000028 40401040 + 00C3 0003:00006270 00000030 40401040 + 00C3 0003:000062A0 00000030 40401040 + 00C3 0003:000062D0 00000028 40401040 + 00C1 0003:000062F8 00000028 40401040 + 00C1 0003:00006320 00000028 40401040 + 00C0 0003:00006348 00000028 40401040 + 00C0 0003:00006370 00000028 40401040 + 00BE 0003:00006398 00000030 40401040 + 00BE 0003:000063C8 00000028 40401040 + 00BD 0003:000063F0 00000028 40401040 + 00BD 0003:00006418 00000028 40401040 + 00BC 0003:00006440 00000028 40401040 + 00BC 0003:00006468 00000028 40401040 + 00BA 0003:00006490 00000030 40401040 + 00BA 0003:000064C0 00000028 40401040 + 00B9 0003:000064E8 00000030 40401040 + 00B9 0003:00006518 00000030 40401040 + 00B7 0003:00006548 00000028 40401040 + 00B6 0003:00006570 00000028 40401040 + 00B6 0003:00006598 00000028 40401040 + 00B4 0003:000065C0 00000028 40401040 + 00B4 0003:000065E8 00000028 40401040 + 00B3 0003:00006610 00000030 40401040 + 00B3 0003:00006640 00000028 40401040 + 00B1 0003:00006668 00000030 40401040 + 00AD 0003:00006698 00000030 40401040 + 00AD 0003:000066C8 00000028 40401040 + 00AB 0003:000066F0 00000028 40401040 + 00AB 0003:00006718 00000028 40401040 + 00AA 0003:00006740 00000028 40401040 + 00AA 0003:00006768 00000028 40401040 + 00A9 0003:00006790 00000048 40401040 + 00A9 0003:000067D8 00000028 40401040 + 00A8 0003:00006800 00000038 40401040 + 00A8 0003:00006838 00000030 40401040 + 00A7 0003:00006868 00000028 40401040 + 00A7 0003:00006890 00000028 40401040 + 00A6 0003:000068B8 00000028 40401040 + 00A6 0003:000068E0 00000028 40401040 + 00A5 0003:00006908 00000028 40401040 + 00A5 0003:00006930 00000028 40401040 + 00A4 0003:00006958 00000028 40401040 + 00A4 0003:00006980 00000028 40401040 + 00A3 0003:000069A8 00000028 40401040 + 00A3 0003:000069D0 00000028 40401040 + 00A3 0003:000069F8 00000028 40401040 + 00A2 0003:00006A20 00000028 40401040 + 00A2 0003:00006A48 00000028 40401040 + 00A1 0003:00006A70 00000028 40401040 + 00A0 0003:00006A98 00000028 40401040 + 00A0 0003:00006AC0 00000028 40401040 + 009E 0003:00006AE8 00000028 40401040 + 009E 0003:00006B10 00000028 40401040 + 009D 0003:00006B38 00000038 40401040 + 009C 0003:00006B70 00000038 40401040 + 009C 0003:00006BA8 00000030 40401040 + 009C 0003:00006BD8 00000028 40401040 + 009C 0003:00006C00 00000030 40401040 + 009B 0003:00006C30 00000030 40401040 + 009B 0003:00006C60 00000028 40401040 + 009B 0003:00006C88 00000028 40401040 + 009B 0003:00006CB0 00000028 40401040 + 009A 0003:00006CD8 00000040 40401040 + 009A 0003:00006D18 00000030 40401040 + 009A 0003:00006D48 00000048 40401040 + 009A 0003:00006D90 00000028 40401040 + 009A 0003:00006DB8 00000028 40401040 + 009A 0003:00006DE0 00000028 40401040 + 009A 0003:00006E08 00000028 40401040 + 009A 0003:00006E30 00000028 40401040 + 009A 0003:00006E58 00000028 40401040 + 009A 0003:00006E80 00000030 40401040 + 009A 0003:00006EB0 00000028 40401040 + 009A 0003:00006ED8 00000038 40401040 + 009A 0003:00006F10 00000038 40401040 + 009A 0003:00006F48 00000028 40401040 + 009A 0003:00006F70 00000028 40401040 + 009A 0003:00006F98 00000028 40401040 + 009A 0003:00006FC0 00000038 40401040 + 009A 0003:00006FF8 00000050 40401040 + 009A 0003:00007048 00000038 40401040 + 0098 0003:00007080 00000058 40401040 + 0098 0003:000070D8 00000028 40401040 + 0098 0003:00007100 00000028 40401040 + 0098 0003:00007128 00000028 40401040 + 0097 0003:00007150 00000030 40401040 + 0097 0003:00007180 00000028 40401040 + 0094 0003:000071A8 00000028 40401040 + 0094 0003:000071D0 00000028 40401040 + 0093 0003:000071F8 00000588 40401040 + 0093 0003:00007780 00000088 40401040 + 0093 0003:00007808 000002D8 40401040 + 0093 0003:00007AE0 00000558 40401040 + 0093 0003:00008038 00000030 40401040 + 0093 0003:00008068 00000028 40401040 + 0093 0003:00008090 00000028 40401040 + 0093 0003:000080B8 00000028 40401040 + 0093 0003:000080E0 00000028 40401040 + 0093 0003:00008108 00000028 40401040 + 0093 0003:00008130 00000028 40401040 + 0093 0003:00008158 00000028 40401040 + 0093 0003:00008180 00000028 40401040 + 0093 0003:000081A8 00000028 40401040 + 0093 0003:000081D0 00000028 40401040 + 0093 0003:000081F8 00000028 40401040 + 0093 0003:00008220 00000028 40401040 + 0093 0003:00008248 00000028 40401040 + 0093 0003:00008270 00000028 40401040 + 0093 0003:00008298 00000028 40401040 + 0093 0003:000082C0 00000028 40401040 + 0093 0003:000082E8 00000028 40401040 + 0093 0003:00008310 00000028 40401040 + 0093 0003:00008338 00000028 40401040 + 0093 0003:00008360 00000028 40401040 + 0093 0003:00008388 00000028 40401040 + 0093 0003:000083B0 00000028 40401040 + 0093 0003:000083D8 00000028 40401040 + 0093 0003:00008400 00000028 40401040 + 0093 0003:00008428 00000028 40401040 + 0093 0003:00008450 00000028 40401040 + 0093 0003:00008478 00000028 40401040 + 0093 0003:000084A0 00000028 40401040 + 0093 0003:000084C8 00000028 40401040 + 0093 0003:000084F0 00000028 40401040 + 0093 0003:00008518 00000028 40401040 + 0093 0003:00008540 00000028 40401040 + 0093 0003:00008568 00000028 40401040 + 0093 0003:00008590 00000028 40401040 + 0093 0003:000085B8 00000028 40401040 + 0093 0003:000085E0 00000028 40401040 + 0093 0003:00008608 00000028 40401040 + 0093 0003:00008630 00000028 40401040 + 0093 0003:00008658 00000028 40401040 + 0092 0003:00008680 00000030 40401040 + 0092 0003:000086B0 00000100 40401040 + 0092 0003:000087B0 00000030 40401040 + 0092 0003:000087E0 00000030 40401040 + 0092 0003:00008810 00000028 40401040 + 0092 0003:00008838 000000D8 40401040 + 0092 0003:00008910 00000028 40401040 + 0092 0003:00008938 00000028 40401040 + 0092 0003:00008960 00000028 40401040 + 0092 0003:00008988 00000028 40401040 + 0092 0003:000089B0 00000028 40401040 + 0092 0003:000089D8 00000028 40401040 + 0092 0003:00008A00 00000028 40401040 + 0092 0003:00008A28 00000028 40401040 + 0092 0003:00008A50 00000028 40401040 + 0092 0003:00008A78 00000028 40401040 + 0092 0003:00008AA0 00000028 40401040 + 0092 0003:00008AC8 00000028 40401040 + 0091 0003:00008AF0 00000048 40401040 + 0091 0003:00008B38 00000028 40401040 + 0091 0003:00008B60 00000030 40401040 + 0091 0003:00008B90 00000028 40401040 + 0091 0003:00008BB8 00000028 40401040 + 008F 0003:00008BE0 00000028 40401040 + 008F 0003:00008C08 00000028 40401040 + 008E 0003:00008C30 00000028 40401040 + 008E 0003:00008C58 00000028 40401040 + 008D 0003:00008C80 00000048 40401040 + 008D 0003:00008CC8 00000030 40401040 + 008D 0003:00008CF8 00000028 40401040 + 008C 0003:00008D20 00000030 40401040 + 008C 0003:00008D50 00000030 40401040 + 008B 0003:00008D80 00000028 40401040 + 008B 0003:00008DA8 00000028 40401040 + 008A 0003:00008DD0 00000028 40401040 + 008A 0003:00008DF8 00000028 40401040 + 0089 0003:00008E20 00000038 40401040 + 0089 0003:00008E58 00000028 40401040 + 0089 0003:00008E80 00000028 40401040 + 0089 0003:00008EA8 00000028 40401040 + 0089 0003:00008ED0 00000028 40401040 + 0089 0003:00008EF8 00000028 40401040 + 0088 0003:00008F20 00000028 40401040 + 0088 0003:00008F48 00000028 40401040 + 0088 0003:00008F70 00000028 40401040 + 0087 0003:00008F98 00000028 40401040 + 0087 0003:00008FC0 00000028 40401040 + 0087 0003:00008FE8 00000028 40401040 + 0086 0003:00009010 00000028 40401040 + 0086 0003:00009038 00000028 40401040 + 0086 0003:00009060 00000028 40401040 + 0085 0003:00009088 00000028 40401040 + 0084 0003:000090B0 00000030 40401040 + 0084 0003:000090E0 00000028 40401040 + 0082 0003:00009108 00000038 40401040 + 0082 0003:00009140 00000030 40401040 + 0081 0003:00009170 00000028 40401040 + 0081 0003:00009198 00000028 40401040 + 0081 0003:000091C0 00000028 40401040 + 0081 0003:000091E8 00000070 40401040 + 0081 0003:00009258 00000028 40401040 + 0081 0003:00009280 00000028 40401040 + 0081 0003:000092A8 00000028 40401040 + 0081 0003:000092D0 00000028 40401040 + 0081 0003:000092F8 00000028 40401040 + 0081 0003:00009320 00000028 40401040 + 0081 0003:00009348 00000028 40401040 + 0081 0003:00009370 00000050 40401040 + 0081 0003:000093C0 00000028 40401040 + 0081 0003:000093E8 00000028 40401040 + 0081 0003:00009410 00000028 40401040 + 0081 0003:00009438 00000028 40401040 + 0081 0003:00009460 00000028 40401040 + 0081 0003:00009488 00000028 40401040 + 0081 0003:000094B0 00000028 40401040 + 0081 0003:000094D8 00000028 40401040 + 0080 0003:00009500 000000A0 40401040 + 0080 0003:000095A0 00000028 40401040 + 0080 0003:000095C8 00000028 40401040 + 0080 0003:000095F0 00000028 40401040 + 0080 0003:00009618 00000028 40401040 + 0080 0003:00009640 00000028 40401040 + 0080 0003:00009668 00000028 40401040 + 0080 0003:00009690 00000028 40401040 + 0080 0003:000096B8 00000028 40401040 + 0080 0003:000096E0 00000028 40401040 + 0080 0003:00009708 00000028 40401040 + 0080 0003:00009730 00000028 40401040 + 0080 0003:00009758 00000028 40401040 + 0080 0003:00009780 00000028 40401040 + 0080 0003:000097A8 00000028 40401040 + 0080 0003:000097D0 00000028 40401040 + 0080 0003:000097F8 00000040 40401040 + 0080 0003:00009838 00000028 40401040 + 0080 0003:00009860 00000028 40401040 + 007F 0003:00009888 00000028 40401040 + 007F 0003:000098B0 00000028 40401040 + 007F 0003:000098D8 00000040 40401040 + 007F 0003:00009918 00000028 40401040 + 007F 0003:00009940 00000028 40401040 + 007F 0003:00009968 00000028 40401040 + 007F 0003:00009990 00000028 40401040 + 007E 0003:000099B8 00000028 40401040 + 007E 0003:000099E0 00000028 40401040 + 007D 0003:00009A08 00000040 40401040 + 007D 0003:00009A48 00000028 40401040 + 007D 0003:00009A70 00000048 40401040 + 007D 0003:00009AB8 00000028 40401040 + 007D 0003:00009AE0 00000028 40401040 + 007D 0003:00009B08 00000048 40401040 + 007D 0003:00009B50 00000028 40401040 + 007D 0003:00009B78 00000040 40401040 + 007D 0003:00009BB8 00000028 40401040 + 007C 0003:00009BE0 00000030 40401040 + 007C 0003:00009C10 00000028 40401040 + 007C 0003:00009C38 00000040 40401040 + 007A 0003:00009C78 00000028 40401040 + 007A 0003:00009CA0 00000028 40401040 + 0077 0003:00009CC8 00000040 40401040 + 0077 0003:00009D08 00000040 40401040 + 0077 0003:00009D48 00000030 40401040 + 0077 0003:00009D78 00000028 40401040 + 0077 0003:00009DA0 00000028 40401040 + 0077 0003:00009DC8 00000030 40401040 + 0077 0003:00009DF8 00000030 40401040 + 0077 0003:00009E28 00000030 40401040 + 0076 0003:00009E58 00000028 40401040 + 0076 0003:00009E80 00000028 40401040 + 0076 0003:00009EA8 00000028 40401040 + 0076 0003:00009ED0 00000028 40401040 + 0076 0003:00009EF8 00000028 40401040 + 0075 0003:00009F20 00000028 40401040 + 0075 0003:00009F48 00000028 40401040 + 0075 0003:00009F70 00000040 40401040 + 0075 0003:00009FB0 00000028 40401040 + 0075 0003:00009FD8 00000028 40401040 + 0075 0003:0000A000 00000028 40401040 + 0074 0003:0000A028 00000050 40401040 + 0074 0003:0000A078 00000028 40401040 + 0074 0003:0000A0A0 00000028 40401040 + 0074 0003:0000A0C8 00000030 40401040 + 0074 0003:0000A0F8 00000040 40401040 + 0074 0003:0000A138 00000048 40401040 + 0074 0003:0000A180 00000028 40401040 + 0074 0003:0000A1A8 00000028 40401040 + 0074 0003:0000A1D0 00000038 40401040 + 0074 0003:0000A208 00000038 40401040 + 0073 0003:0000A240 00000028 40401040 + 0073 0003:0000A268 00000028 40401040 + 0070 0003:0000A290 00000028 40401040 + 0070 0003:0000A2B8 00000028 40401040 + 0070 0003:0000A2E0 00000030 40401040 + 0070 0003:0000A310 00000040 40401040 + 0070 0003:0000A350 00000028 40401040 + 0070 0003:0000A378 00000028 40401040 + 0070 0003:0000A3A0 00000030 40401040 + 0070 0003:0000A3D0 00000030 40401040 + 0070 0003:0000A400 00000028 40401040 + 0070 0003:0000A428 00000040 40401040 + 0070 0003:0000A468 00000028 40401040 + 006E 0003:0000A490 000000C0 40401040 + 006E 0003:0000A550 00000028 40401040 + 006E 0003:0000A578 00000028 40401040 + 006E 0003:0000A5A0 00000028 40401040 + 006E 0003:0000A5C8 00000028 40401040 + 006E 0003:0000A5F0 00000068 40401040 + 006E 0003:0000A658 00000030 40401040 + 006E 0003:0000A688 00000028 40401040 + 006E 0003:0000A6B0 00000030 40401040 + 006E 0003:0000A6E0 00000030 40401040 + 006E 0003:0000A710 00000028 40401040 + 006E 0003:0000A738 00000028 40401040 + 006E 0003:0000A760 00000028 40401040 + 006E 0003:0000A788 00000028 40401040 + 006E 0003:0000A7B0 00000030 40401040 + 006E 0003:0000A7E0 00000058 40401040 + 006E 0003:0000A838 00000028 40401040 + 006E 0003:0000A860 00000028 40401040 + 006E 0003:0000A888 00000028 40401040 + 006E 0003:0000A8B0 00000028 40401040 + 006E 0003:0000A8D8 00000028 40401040 + 006D 0003:0000A900 00000070 40401040 + 006D 0003:0000A970 00000028 40401040 + 006D 0003:0000A998 00000028 40401040 + 006D 0003:0000A9C0 00000028 40401040 + 006D 0003:0000A9E8 00000028 40401040 + 006D 0003:0000AA10 00000050 40401040 + 006D 0003:0000AA60 00000060 40401040 + 006D 0003:0000AAC0 00000030 40401040 + 006D 0003:0000AAF0 00000030 40401040 + 006D 0003:0000AB20 00000030 40401040 + 006C 0003:0000AB50 00000030 40401040 + 006C 0003:0000AB80 00000030 40401040 + 006B 0003:0000ABB0 00000028 40401040 + 006B 0003:0000ABD8 00000028 40401040 + 006B 0003:0000AC00 00000028 40401040 + 006B 0003:0000AC28 00000028 40401040 + 006A 0003:0000AC50 00000028 40401040 + 006A 0003:0000AC78 00000028 40401040 + 006A 0003:0000ACA0 00000028 40401040 + 0069 0003:0000ACC8 00000028 40401040 + 0069 0003:0000ACF0 00000028 40401040 + 0069 0003:0000AD18 00000030 40401040 + 0069 0003:0000AD48 00000030 40401040 + 0068 0003:0000AD78 00000028 40401040 + 0068 0003:0000ADA0 00000028 40401040 + 0067 0003:0000ADC8 00000028 40401040 + 0067 0003:0000ADF0 00000028 40401040 + 0067 0003:0000AE18 00000028 40401040 + 0066 0003:0000AE40 00000038 40401040 + 0066 0003:0000AE78 00000028 40401040 + 0066 0003:0000AEA0 00000040 40401040 + 0066 0003:0000AEE0 00000028 40401040 + 0065 0003:0000AF08 00000028 40401040 + 0065 0003:0000AF30 00000028 40401040 + 0064 0003:0000AF58 00000048 40401040 + 0064 0003:0000AFA0 00000028 40401040 + 0064 0003:0000AFC8 00000028 40401040 + 0064 0003:0000AFF0 00000028 40401040 + 0064 0003:0000B018 00000028 40401040 + 0064 0003:0000B040 00000028 40401040 + 0064 0003:0000B068 00000040 40401040 + 0064 0003:0000B0A8 00000038 40401040 + 0064 0003:0000B0E0 00000038 40401040 + 0064 0003:0000B118 00000038 40401040 + 0064 0003:0000B150 00000028 40401040 + 0064 0003:0000B178 00000038 40401040 + 0064 0003:0000B1B0 00000038 40401040 + 0064 0003:0000B1E8 00000028 40401040 + 0064 0003:0000B210 00000048 40401040 + 0064 0003:0000B258 00000028 40401040 + 0063 0003:0000B280 00000030 40401040 + 0063 0003:0000B2B0 00000030 40401040 + 0063 0003:0000B2E0 00000080 40401040 + 0062 0003:0000B360 00000028 40401040 + 0062 0003:0000B388 00000028 40401040 + 0062 0003:0000B3B0 00000028 40401040 + 0061 0003:0000B3D8 00000028 40401040 + 0061 0003:0000B400 00000028 40401040 + 0061 0003:0000B428 00000028 40401040 + 0061 0003:0000B450 00000038 40401040 + 0060 0003:0000B488 00000050 40401040 + 0060 0003:0000B4D8 00000028 40401040 + 0060 0003:0000B500 00000028 40401040 + 0060 0003:0000B528 00000030 40401040 + 0060 0003:0000B558 00000028 40401040 + 0060 0003:0000B580 00000038 40401040 + 0060 0003:0000B5B8 00000028 40401040 + 0060 0003:0000B5E0 00000028 40401040 + 0060 0003:0000B608 00000030 40401040 + 0060 0003:0000B638 00000060 40401040 + 0060 0003:0000B698 00000030 40401040 + 0060 0003:0000B6C8 00000028 40401040 + 0060 0003:0000B6F0 00000028 40401040 + 0060 0003:0000B718 00000028 40401040 + 0060 0003:0000B740 00000028 40401040 + 0060 0003:0000B768 00000028 40401040 + 0060 0003:0000B790 00000048 40401040 + 0060 0003:0000B7D8 00000048 40401040 + 0060 0003:0000B820 00000038 40401040 + 0060 0003:0000B858 00000038 40401040 + 0060 0003:0000B890 00000030 40401040 + 005F 0003:0000B8C0 00000040 40401040 + 005F 0003:0000B900 00000028 40401040 + 005F 0003:0000B928 00000028 40401040 + 005F 0003:0000B950 00000038 40401040 + 005E 0003:0000B988 00000028 40401040 + 005E 0003:0000B9B0 00000028 40401040 + 005E 0003:0000B9D8 00000028 40401040 + 005C 0003:0000BA00 00000028 40401040 + 005C 0003:0000BA28 00000028 40401040 + 005C 0003:0000BA50 00000028 40401040 + 005B 0003:0000BA78 00000028 40401040 + 005B 0003:0000BAA0 00000028 40401040 + 005B 0003:0000BAC8 00000028 40401040 + 005A 0003:0000BAF0 00000068 40401040 + 005A 0003:0000BB58 00000028 40401040 + 005A 0003:0000BB80 00000028 40401040 + 005A 0003:0000BBA8 00000028 40401040 + 005A 0003:0000BBD0 00000028 40401040 + 005A 0003:0000BBF8 00000028 40401040 + 005A 0003:0000BC20 00000038 40401040 + 005A 0003:0000BC58 00000050 40401040 + 005A 0003:0000BCA8 00000028 40401040 + 005A 0003:0000BCD0 00000028 40401040 + 005A 0003:0000BCF8 00000028 40401040 + 005A 0003:0000BD20 00000030 40401040 + 005A 0003:0000BD50 00000028 40401040 + 005A 0003:0000BD78 00000028 40401040 + 0059 0003:0000BDA0 00000030 40401040 + 0059 0003:0000BDD0 00000030 40401040 + 0058 0003:0000BE00 00000028 40401040 + 0058 0003:0000BE28 00000028 40401040 + 0058 0003:0000BE50 00000028 40401040 + 0057 0003:0000BE78 00000040 40401040 + 0057 0003:0000BEB8 00000028 40401040 + 0057 0003:0000BEE0 00000028 40401040 + 0056 0003:0000BF08 00000048 40401040 + 0056 0003:0000BF50 00000028 40401040 + 0056 0003:0000BF78 00000028 40401040 + 0054 0003:0000BFA0 00000028 40401040 + 0054 0003:0000BFC8 00000028 40401040 + 0052 0003:0000BFF0 00000028 40401040 + 0052 0003:0000C018 00000028 40401040 + 0052 0003:0000C040 00000038 40401040 + 0052 0003:0000C078 00000028 40401040 + 0052 0003:0000C0A0 00000028 40401040 + 0051 0003:0000C0C8 00000030 40401040 + 0051 0003:0000C0F8 00000030 40401040 + 0051 0003:0000C128 00000050 40401040 + 0051 0003:0000C178 00000028 40401040 + 0051 0003:0000C1A0 00000048 40401040 + 0051 0003:0000C1E8 00000030 40401040 + 0051 0003:0000C218 00000048 40401040 + 0051 0003:0000C260 00000048 40401040 + 0050 0003:0000C2A8 00000028 40401040 + 0050 0003:0000C2D0 00000040 40401040 + 0050 0003:0000C310 00000068 40401040 + 0050 0003:0000C378 00000048 40401040 + 0050 0003:0000C3C0 00000028 40401040 + 0050 0003:0000C3E8 00000038 40401040 + 004F 0003:0000C420 00000028 40401040 + 004F 0003:0000C448 00000028 40401040 + 004F 0003:0000C470 00000028 40401040 + 004E 0003:0000C498 00000028 40401040 + 004E 0003:0000C4C0 00000028 40401040 + 004E 0003:0000C4E8 00000028 40401040 + 004D 0003:0000C510 00000048 40401040 + 004D 0003:0000C558 00000028 40401040 + 004C 0003:0000C580 00000048 40401040 + 004C 0003:0000C5C8 00000028 40401040 + 004C 0003:0000C5F0 00000028 40401040 + 004C 0003:0000C618 00000048 40401040 + 004C 0003:0000C660 00000028 40401040 + 004C 0003:0000C688 00000038 40401040 + 004C 0003:0000C6C0 00000030 40401040 + 004C 0003:0000C6F0 00000048 40401040 + 004C 0003:0000C738 00000040 40401040 + 004C 0003:0000C778 00000028 40401040 + 004C 0003:0000C7A0 00000028 40401040 + 004C 0003:0000C7C8 00000028 40401040 + 004B 0003:0000C7F0 00000030 40401040 + 004A 0003:0000C820 000000E8 40401040 + 004A 0003:0000C908 00000088 40401040 + 004A 0003:0000C990 00000118 40401040 + 004A 0003:0000CAA8 00000028 40401040 + 004A 0003:0000CAD0 00000028 40401040 + 0049 0003:0000CAF8 00000030 40401040 + 0049 0003:0000CB28 00000038 40401040 + 0049 0003:0000CB60 00000038 40401040 + 0049 0003:0000CB98 000000C8 40401040 + 0049 0003:0000CC60 00000028 40401040 + 0049 0003:0000CC88 00000028 40401040 + 0049 0003:0000CCB0 00000028 40401040 + 0049 0003:0000CCD8 00000028 40401040 + 0049 0003:0000CD00 00000028 40401040 + 0049 0003:0000CD28 00000028 40401040 + 0049 0003:0000CD50 00000038 40401040 + 0049 0003:0000CD88 00000060 40401040 + 0049 0003:0000CDE8 00000028 40401040 + 0049 0003:0000CE10 00000028 40401040 + 0049 0003:0000CE38 00000028 40401040 + 0049 0003:0000CE60 00000028 40401040 + 0047 0003:0000CE88 00000038 40401040 + 0047 0003:0000CEC0 00000038 40401040 + 0046 0003:0000CEF8 00000028 40401040 + 0046 0003:0000CF20 00000028 40401040 + 0046 0003:0000CF48 00000028 40401040 + 0046 0003:0000CF70 00000028 40401040 + 0044 0003:0000CF98 00000030 40401040 + 0044 0003:0000CFC8 00000028 40401040 + 0044 0003:0000CFF0 00000050 40401040 + 0044 0003:0000D040 00000028 40401040 + 0044 0003:0000D068 00000038 40401040 + 0044 0003:0000D0A0 00000028 40401040 + 0043 0003:0000D0C8 00000030 40401040 + 0043 0003:0000D0F8 00000030 40401040 + 0043 0003:0000D128 00000028 40401040 + 0043 0003:0000D150 00000028 40401040 + 0042 0003:0000D178 00000030 40401040 + 0042 0003:0000D1A8 00000028 40401040 + 0042 0003:0000D1D0 00000060 40401040 + 0041 0003:0000D230 00000050 40401040 + 0041 0003:0000D280 00000028 40401040 + 0041 0003:0000D2A8 00000028 40401040 + 0041 0003:0000D2D0 00000028 40401040 + 0041 0003:0000D2F8 00000028 40401040 + 0041 0003:0000D320 00000028 40401040 + 0041 0003:0000D348 00000028 40401040 + 0041 0003:0000D370 00000028 40401040 + 0041 0003:0000D398 00000070 40401040 + 0041 0003:0000D408 00000028 40401040 + 0041 0003:0000D430 00000028 40401040 + 0041 0003:0000D458 00000028 40401040 + 0041 0003:0000D480 00000028 40401040 + 0041 0003:0000D4A8 00000028 40401040 + 0041 0003:0000D4D0 00000028 40401040 + 0041 0003:0000D4F8 00000040 40401040 + 0041 0003:0000D538 00000048 40401040 + 0041 0003:0000D580 00000028 40401040 + 0041 0003:0000D5A8 00000028 40401040 + 0041 0003:0000D5D0 00000028 40401040 + 0041 0003:0000D5F8 00000028 40401040 + 0041 0003:0000D620 00000028 40401040 + 0041 0003:0000D648 00000028 40401040 + 0041 0003:0000D670 00000058 40401040 + 0041 0003:0000D6C8 00000068 40401040 + 0041 0003:0000D730 00000028 40401040 + 0041 0003:0000D758 00000028 40401040 + 0041 0003:0000D780 00000028 40401040 + 0041 0003:0000D7A8 00000028 40401040 + 0041 0003:0000D7D0 00000028 40401040 + 0041 0003:0000D7F8 00000028 40401040 + 0041 0003:0000D820 00000028 40401040 + 0041 0003:0000D848 00000058 40401040 + 0041 0003:0000D8A0 00000040 40401040 + 0041 0003:0000D8E0 00000028 40401040 + 0041 0003:0000D908 00000028 40401040 + 0041 0003:0000D930 00000028 40401040 + 0041 0003:0000D958 00000028 40401040 + 0040 0003:0000D980 00000048 40401040 + 0040 0003:0000D9C8 00000028 40401040 + 0040 0003:0000D9F0 00000040 40401040 + 0040 0003:0000DA30 00000028 40401040 + 003D 0003:0000DA58 00000030 40401040 + 003C 0003:0000DA88 00000048 40401040 + 003C 0003:0000DAD0 00000028 40401040 + 003C 0003:0000DAF8 00000028 40401040 + 003C 0003:0000DB20 00000060 40401040 + 003C 0003:0000DB80 00000028 40401040 + 003C 0003:0000DBA8 00000028 40401040 + 003C 0003:0000DBD0 00000028 40401040 + 003C 0003:0000DBF8 00000028 40401040 + 003C 0003:0000DC20 00000028 40401040 + 003C 0003:0000DC48 00000028 40401040 + 003C 0003:0000DC70 00000028 40401040 + 003C 0003:0000DC98 00000028 40401040 + 003C 0003:0000DCC0 00000028 40401040 + 003C 0003:0000DCE8 00000028 40401040 + 003C 0003:0000DD10 00000028 40401040 + 003C 0003:0000DD38 00000028 40401040 + 003C 0003:0000DD60 00000028 40401040 + 003C 0003:0000DD88 00000028 40401040 + 003C 0003:0000DDB0 00000028 40401040 + 003B 0003:0000DDD8 00000028 40401040 + 003B 0003:0000DE00 00000028 40401040 + 003B 0003:0000DE28 00000028 40401040 + 003B 0003:0000DE50 00000040 40401040 + 003B 0003:0000DE90 00000048 40401040 + 003B 0003:0000DED8 00000048 40401040 + 003B 0003:0000DF20 00000048 40401040 + 003A 0003:0000DF68 00000028 40401040 + 0039 0003:0000DF90 00000028 40401040 + 0039 0003:0000DFB8 00000028 40401040 + 0038 0003:0000DFE0 00000028 40401040 + 0037 0003:0000E008 000000B8 40401040 + 0037 0003:0000E0C0 00000028 40401040 + 0037 0003:0000E0E8 00000028 40401040 + 0037 0003:0000E110 00000028 40401040 + 0037 0003:0000E138 00000028 40401040 + 0037 0003:0000E160 00000028 40401040 + 0037 0003:0000E188 00000028 40401040 + 0037 0003:0000E1B0 00000068 40401040 + 0037 0003:0000E218 00000030 40401040 + 0037 0003:0000E248 00000028 40401040 + 0037 0003:0000E270 00000028 40401040 + 0037 0003:0000E298 00000030 40401040 + 0037 0003:0000E2C8 00000028 40401040 + 0037 0003:0000E2F0 00000028 40401040 + 0037 0003:0000E318 00000028 40401040 + 0037 0003:0000E340 00000028 40401040 + 0037 0003:0000E368 00000028 40401040 + 0037 0003:0000E390 00000028 40401040 + 0037 0003:0000E3B8 00000050 40401040 + 0037 0003:0000E408 00000038 40401040 + 0036 0003:0000E440 00000058 40401040 + 0036 0003:0000E498 00000028 40401040 + 0036 0003:0000E4C0 00000028 40401040 + 0036 0003:0000E4E8 00000028 40401040 + 0036 0003:0000E510 00000040 40401040 + 0036 0003:0000E550 00000040 40401040 + 0036 0003:0000E590 00000030 40401040 + 0036 0003:0000E5C0 00000040 40401040 + 0036 0003:0000E600 00000028 40401040 + 0036 0003:0000E628 00000028 40401040 + 0036 0003:0000E650 00000038 40401040 + 0036 0003:0000E688 00000038 40401040 + 0036 0003:0000E6C0 00000040 40401040 + 0033 0003:0000E700 00000028 40401040 + 0033 0003:0000E728 00000028 40401040 + 0033 0003:0000E750 00000028 40401040 + 0033 0003:0000E778 00000028 40401040 + 0033 0003:0000E7A0 00000030 40401040 + 0032 0003:0000E7D0 00000028 40401040 + 0032 0003:0000E7F8 00000028 40401040 + 0032 0003:0000E820 00000028 40401040 + 0032 0003:0000E848 00000028 40401040 + 0031 0003:0000E870 00000030 40401040 + 0031 0003:0000E8A0 00000028 40401040 + 0030 0003:0000E8C8 00000028 40401040 + 0030 0003:0000E8F0 00000028 40401040 + 002F 0003:0000E918 00000028 40401040 + 002F 0003:0000E940 00000028 40401040 + 002F 0003:0000E968 00000030 40401040 + 002D 0003:0000E998 00000028 40401040 + 002C 0003:0000E9C0 00000030 40401040 + 002B 0003:0000E9F0 00000060 40401040 + 002B 0003:0000EA50 00000028 40401040 + 002B 0003:0000EA78 00000028 40401040 + 002B 0003:0000EAA0 00000038 40401040 + 002B 0003:0000EAD8 00000058 40401040 + 002A 0003:0000EB30 00000030 40401040 + 002A 0003:0000EB60 00000030 40401040 + 002A 0003:0000EB90 00000060 40401040 + 002A 0003:0000EBF0 00000040 40401040 + 002A 0003:0000EC30 00000040 40401040 + 002A 0003:0000EC70 00000048 40401040 + 0027 0003:0000ECB8 00000028 40401040 + 0027 0003:0000ECE0 00000028 40401040 + 0027 0003:0000ED08 00000028 40401040 + 0027 0003:0000ED30 00000028 40401040 + 0026 0003:0000ED58 00000028 40401040 + 0026 0003:0000ED80 00000030 40401040 + 0026 0003:0000EDB0 00000028 40401040 + 0026 0003:0000EDD8 00000028 40401040 + 0025 0003:0000EE00 00000030 40401040 + 0025 0003:0000EE30 00000028 40401040 + 0022 0003:0000EE58 00000030 40401040 + 0022 0003:0000EE88 00000028 40401040 + 0021 0003:0000EEB0 00000028 40401040 + 0021 0003:0000EED8 00000028 40401040 + 001F 0003:0000EF00 00000030 40401040 + 001F 0003:0000EF30 00000028 40401040 + 001E 0003:0000EF58 00000028 40401040 + 001E 0003:0000EF80 00000028 40401040 + 001C 0003:0000EFA8 00000030 40401040 + 001C 0003:0000EFD8 00000028 40401040 + 001B 0003:0000F000 00000028 40401040 + 001B 0003:0000F028 00000028 40401040 + 001A 0003:0000F050 00000030 40401040 + 001A 0003:0000F080 00000028 40401040 + 0014 0003:0000F0A8 00000028 40401040 + 0014 0003:0000F0D0 00000028 40401040 + 0012 0003:0000F0F8 00000028 40401040 + 0012 0003:0000F120 00000028 40401040 + 0012 0003:0000F148 00000030 40401040 + 0012 0003:0000F178 00000040 40401040 + 0012 0003:0000F1B8 00000060 40401040 + 0010 0003:0000F218 00000028 40401040 + 0010 0003:0000F240 00000028 40401040 + 000D 0003:0000F268 00000038 40401040 + 000D 0003:0000F2A0 00000028 40401040 + 000D 0003:0000F2C8 00000028 40401040 + 000D 0003:0000F2F0 00000028 40401040 + 000B 0003:0000F318 00000038 40401040 + 000B 0003:0000F350 00000028 40401040 + 000B 0003:0000F378 00000028 40401040 + 000B 0003:0000F3A0 00000028 40401040 + 000B 0003:0000F3C8 00000038 40401040 + 000B 0003:0000F400 00000038 40401040 + 000A 0003:0000F438 00000038 40401040 + 000A 0003:0000F470 00000028 40401040 + 000A 0003:0000F498 00000028 40401040 + 000A 0003:0000F4C0 00000028 40401040 + 000A 0003:0000F4E8 00000038 40401040 + 000A 0003:0000F520 00000028 40401040 + 000A 0003:0000F548 00000028 40401040 + 000A 0003:0000F570 00000028 40401040 + 000A 0003:0000F598 00000038 40401040 + 000A 0003:0000F5D0 00000038 40401040 + 000A 0003:0000F608 00000028 40401040 + 000A 0003:0000F630 00000028 40401040 + 000A 0003:0000F658 00000028 40401040 + 000A 0003:0000F680 00000038 40401040 + 000A 0003:0000F6B8 00000028 40401040 + 000A 0003:0000F6E0 00000028 40401040 + 000A 0003:0000F708 00000028 40401040 + 000A 0003:0000F730 00000038 40401040 + 000A 0003:0000F768 00000028 40401040 + 000A 0003:0000F790 00000028 40401040 + 000A 0003:0000F7B8 00000028 40401040 + 000A 0003:0000F7E0 00000038 40401040 + 000A 0003:0000F818 00000028 40401040 + 000A 0003:0000F840 00000028 40401040 + 000A 0003:0000F868 00000028 40401040 + 000A 0003:0000F890 00000038 40401040 + 000A 0003:0000F8C8 00000028 40401040 + 000A 0003:0000F8F0 00000028 40401040 + 000A 0003:0000F918 00000028 40401040 + 000A 0003:0000F940 00000040 40401040 + 000A 0003:0000F980 00000040 40401040 + 0008 0003:0000F9C0 00000038 40401040 + 0007 0003:0000F9F8 00000028 40401040 + 0006 0003:0000FA20 00000028 40401040 + 0006 0003:0000FA48 00000028 40401040 + 0005 0003:0000FA70 00000030 40401040 + 0005 0003:0000FAA0 00000028 40401040 + 0005 0003:0000FAC8 00000028 40401040 + 0004 0003:0000FAF0 00000040 40401040 + 0004 0003:0000FB30 00000028 40401040 + 0004 0003:0000FB58 00000028 40401040 + 0004 0003:0000FB80 00000028 40401040 + 0004 0003:0000FBA8 00000038 40401040 + 0004 0003:0000FBE0 00000028 40401040 + 0004 0003:0000FC08 00000028 40401040 + 0004 0003:0000FC30 00000028 40401040 + 0002 0003:0000FC58 00000038 40401040 + 0002 0003:0000FC90 00000028 40401040 + 0002 0003:0000FCB8 00000028 40401040 + 0001 0003:0000FCE0 00001776 40000040 + 0148 0004:00000000 00000004 C0300040 + 0154 0004:00000004 00000004 C0300040 + 0086 0004:00000008 00000004 C0300040 + 0148 0004:0000000C 00000004 C0300040 + 0148 0004:00000010 00000004 C0300040 + 019A 0004:00000014 00000004 C0300040 + 0145 0004:00000018 00000004 C0300040 + 0148 0004:0000001C 00000004 C0300040 + 0148 0004:00000020 00000004 C0300040 + 0145 0004:00000024 00000004 C0300040 + 0148 0004:00000028 00000004 C0300040 + 0148 0004:0000002C 00000004 C0300040 + 0148 0004:00000030 00000004 C0300040 + 00D9 0004:00000040 0000000A C0301040 + 00D9 0004:0000004C 00000007 C0301040 + 00D9 0004:00000054 0000000A C0301040 + 00D8 0004:00000060 0000000A C0301040 + 00D8 0004:0000006C 0000000B C0301040 + 00D8 0004:00000078 00000009 C0301040 + 00D6 0004:00000084 00000005 C0301040 + 00D6 0004:0000008C 0000000A C0301040 + 00D3 0004:00000098 0000000E C0301040 + 00D3 0004:000000A8 0000000E C0301040 + 00D3 0004:000000B8 0000000A C0301040 + 00D3 0004:000000C4 0000000A C0301040 + 00D2 0004:000000D0 00000016 C0301040 + 00D1 0004:000000E8 0000000A C0301040 + 00CF 0004:000000F4 00000005 C0301040 + 00CE 0004:000000FC 0000000F C0301040 + 00CC 0004:0000010C 00000008 C0301040 + 00CC 0004:00000114 00000009 C0301040 + 00CB 0004:00000120 0000000B C0301040 + 00CB 0004:0000012C 00000007 C0301040 + 00CB 0004:00000134 00000007 C0301040 + 00CB 0004:0000013C 00000006 C0301040 + 00CB 0004:00000144 00000006 C0301040 + 00CB 0004:0000014C 00000003 C0301040 + 00CB 0004:00000150 000001AC C0400040 + 00C9 0004:000002FC 0000000A C0301040 + 00C8 0004:00000308 0000000F C0301040 + 00C7 0004:00000318 0000000B C0301040 + 00C5 0004:00000324 00000010 C0301040 + 00C3 0004:00000334 0000000B C0301040 + 00C3 0004:00000340 00000010 C0301040 + 00C1 0004:00000350 0000000C C0301040 + 00C0 0004:0000035C 00000009 C0301040 + 00BE 0004:00000368 0000000E C0301040 + 00BD 0004:00000378 0000000B C0301040 + 00BC 0004:00000384 0000000F C0301040 + 00BA 0004:00000394 00000010 C0301040 + 00B9 0004:000003A4 00000005 C0301040 + 00B9 0004:000003AC 00000008 C0301040 + 00B9 0004:000003B4 00000007 C0301040 + 00B9 0004:000003BC 0000000B C0301040 + 00B9 0004:000003C8 0000000B C0301040 + 00B9 0004:000003D4 0000000E C0301040 + 00B9 0004:000003E4 00000009 C0301040 + 00B9 0004:000003F0 00000009 C0301040 + 00B9 0004:000003FC 00000006 C0301040 + 00B4 0004:00000404 00000008 C0301040 + 00AB 0004:0000040C 00000004 C0300040 + 00AB 0004:00000410 00000015 C0301040 + 00AA 0004:00000428 00000014 C0301040 + 00AA 0004:0000043C 00000015 C0301040 + 00AA 0004:00000454 0000000C C0301040 + 00A9 0004:00000460 00000011 C0301040 + 00A9 0004:00000474 00000011 C0301040 + 00A9 0004:00000488 00000012 C0301040 + 00A8 0004:0000049C 00000006 C0301040 + 00A8 0004:000004A4 00000004 C0301040 + 00A8 0004:000004A8 00000002 C0301040 + 00A8 0004:000004AC 0000000C C0300040 + 00A7 0004:000004B8 00000004 C0300040 + 00A7 0004:000004BC 00000014 C0301040 + 00A6 0004:000004D0 0000000F C0301040 + 00A5 0004:000004E0 00000015 C0301040 + 00A4 0004:000004F8 0000000D C0301040 + 00A3 0004:00000508 0000001A C0301040 + 00A2 0004:00000524 00000013 C0301040 + 00A0 0004:00000538 00000014 C0301040 + 009E 0004:0000054C 0000000F C0301040 + 009E 0004:0000055C 00000018 C0301040 + 009D 0004:00000574 00000008 C0301040 + 009D 0004:0000057C 00000007 C0301040 + 009D 0004:00000584 00000008 C0300040 + 009C 0004:0000058C 0000000B C0301040 + 009C 0004:00000598 0000000B C0301040 + 009C 0004:000005A4 0000000B C0301040 + 009C 0004:000005B0 0000000B C0301040 + 009C 0004:000005BC 0000000B C0301040 + 009C 0004:000005C8 0000000B C0301040 + 009C 0004:000005D4 0000000B C0301040 + 009C 0004:000005E0 0000000B C0301040 + 009C 0004:000005EC 0000000B C0301040 + 009C 0004:000005F8 0000000B C0301040 + 009C 0004:00000604 0000000B C0301040 + 009C 0004:00000610 0000000B C0301040 + 009C 0004:0000061C 0000000B C0301040 + 009C 0004:00000628 0000000B C0301040 + 009C 0004:00000634 0000000B C0301040 + 009C 0004:00000640 0000000B C0301040 + 009C 0004:0000064C 0000000B C0301040 + 009C 0004:00000658 0000000B C0301040 + 009C 0004:00000664 0000000B C0301040 + 009C 0004:00000670 0000000B C0301040 + 009C 0004:0000067C 0000000B C0301040 + 009C 0004:00000688 0000000A C0301040 + 009C 0004:00000694 0000000B C0301040 + 009C 0004:000006A0 0000000B C0301040 + 009C 0004:000006AC 0000000B C0301040 + 009C 0004:000006B8 0000000B C0301040 + 009C 0004:000006C4 0000000B C0301040 + 009C 0004:000006D0 0000000C C0301040 + 009C 0004:000006DC 0000000B C0301040 + 009C 0004:000006E8 0000000B C0301040 + 009C 0004:000006F4 0000000B C0301040 + 009C 0004:00000700 0000000B C0301040 + 009C 0004:0000070C 0000000B C0301040 + 009C 0004:00000718 0000000B C0301040 + 009C 0004:00000724 0000000B C0301040 + 009C 0004:00000730 0000000A C0301040 + 009C 0004:0000073C 0000000B C0301040 + 009C 0004:00000748 0000000B C0301040 + 009C 0004:00000754 0000000B C0301040 + 009C 0004:00000760 0000000B C0301040 + 009C 0004:0000076C 0000000B C0301040 + 009C 0004:00000778 0000000B C0301040 + 009C 0004:00000784 0000000B C0301040 + 009C 0004:00000790 0000000B C0301040 + 009C 0004:0000079C 0000000B C0301040 + 009C 0004:000007A8 0000000B C0301040 + 009C 0004:000007B4 0000000B C0301040 + 009C 0004:000007C0 00000009 C0301040 + 009C 0004:000007CC 0000000B C0301040 + 009C 0004:000007D8 00000004 C0301040 + 009C 0004:000007DC 0000000C C0301040 + 009C 0004:000007E8 0000000C C0301040 + 009C 0004:000007F8 00000168 C0400040 + 009C 0004:00000960 0000000E C0301040 + 009C 0004:00000970 00000002 C0301040 + 009C 0004:00000974 00000008 C0301040 + 009C 0004:0000097C 00000014 C0301040 + 009C 0004:00000990 00000010 C0301040 + 009C 0004:000009A0 0000000D C0301040 + 009C 0004:000009B0 00000002 C0301040 + 009C 0004:000009B4 00000002 C0301040 + 009C 0004:000009B8 00000001 C0301040 + 009C 0004:000009BC 00000005 C0301040 + 009C 0004:000009C4 00000009 C0301040 + 009C 0004:000009D0 00000009 C0301040 + 009C 0004:000009DC 00000002 C0301040 + 009B 0004:000009E0 00000019 C0301040 + 009B 0004:000009FC 00000016 C0301040 + 0098 0004:00000A14 00000011 C0301040 + 0098 0004:00000A28 00000011 C0301040 + 0098 0004:00000A3C 00000010 C0301040 + 0098 0004:00000A4C 0000001C C0301040 + 0097 0004:00000A68 0000001C C0301040 + 0095 0004:00000A84 00000004 C0300040 + 0094 0004:00000A88 0000002D C0300040 + 0094 0004:00000AB8 00000012 C0301040 + 0093 0004:00000ACC 00000011 C0301040 + 0093 0004:00000AE0 00000009 C0301040 + 0093 0004:00000AEC 0000000E C0301040 + 0093 0004:00000AFC 0000001A C0301040 + 0093 0004:00000B18 0000000D C0301040 + 0093 0004:00000B28 0000000D C0301040 + 0093 0004:00000B38 0000000E C0301040 + 0093 0004:00000B48 00000010 C0301040 + 0093 0004:00000B58 00000011 C0301040 + 0093 0004:00000B6C 0000000F C0301040 + 0093 0004:00000B7C 00000011 C0301040 + 0093 0004:00000B90 0000000D C0301040 + 0093 0004:00000BA0 00000009 C0301040 + 0093 0004:00000BAC 00000011 C0301040 + 0093 0004:00000BC0 0000000A C0301040 + 0093 0004:00000BCC 0000000A C0301040 + 0093 0004:00000BD8 00000015 C0301040 + 0093 0004:00000BF0 00000006 C0301040 + 0093 0004:00000BF8 0000000A C0301040 + 0093 0004:00000C04 00000012 C0301040 + 0093 0004:00000C18 00000006 C0301040 + 0093 0004:00000C20 0000000B C0301040 + 0093 0004:00000C2C 00000011 C0301040 + 0093 0004:00000C40 0000000C C0301040 + 0093 0004:00000C4C 00000007 C0301040 + 0093 0004:00000C54 00000012 C0301040 + 0093 0004:00000C68 00000013 C0301040 + 0093 0004:00000C7C 00000013 C0301040 + 0093 0004:00000C90 00000015 C0301040 + 0093 0004:00000CA8 0000000C C0301040 + 0093 0004:00000CB4 00000015 C0301040 + 0093 0004:00000CCC 00000012 C0301040 + 0093 0004:00000CE0 00000012 C0301040 + 0093 0004:00000CF4 00000015 C0301040 + 0093 0004:00000D0C 00000013 C0301040 + 0093 0004:00000D20 0000000B C0301040 + 0093 0004:00000D2C 00000014 C0301040 + 0093 0004:00000D40 00000013 C0301040 + 0093 0004:00000D54 0000001B C0301040 + 0093 0004:00000D70 0000000E C0301040 + 0093 0004:00000D80 00000011 C0301040 + 0093 0004:00000D94 00000014 C0301040 + 0093 0004:00000DA8 0000000B C0301040 + 0093 0004:00000DB4 00000010 C0301040 + 0093 0004:00000DC4 0000000E C0301040 + 0093 0004:00000DD4 0000000A C0301040 + 0093 0004:00000DE0 0000000A C0301040 + 0092 0004:00000DEC 00000008 C0301040 + 0092 0004:00000DF4 00000075 C0300040 + 0092 0004:00000E6C 00000013 C0301040 + 0092 0004:00000E80 00000016 C0301040 + 0092 0004:00000E98 00000016 C0301040 + 0092 0004:00000EB0 0000001C C0301040 + 0092 0004:00000ECC 00000018 C0301040 + 0092 0004:00000EE4 00000014 C0301040 + 0092 0004:00000EF8 00000017 C0301040 + 0092 0004:00000F10 0000001B C0301040 + 0092 0004:00000F2C 00000018 C0301040 + 0092 0004:00000F44 0000001C C0301040 + 0092 0004:00000F60 0000001C C0301040 + 0092 0004:00000F7C 0000001C C0301040 + 0092 0004:00000F98 00000020 C0301040 + 0092 0004:00000FB8 00000020 C0301040 + 0092 0004:00000FD8 0000001F C0301040 + 0092 0004:00000FF8 00000020 C0301040 + 0092 0004:00001018 00000020 C0301040 + 0092 0004:00001038 00000020 C0301040 + 0092 0004:00001058 00000020 C0301040 + 0092 0004:00001078 00000018 C0301040 + 0092 0004:00001090 0000001C C0301040 + 0092 0004:000010AC 0000001B C0301040 + 0092 0004:000010C8 0000001C C0301040 + 0092 0004:000010E4 0000001B C0301040 + 0092 0004:00001100 0000001C C0301040 + 0092 0004:0000111C 0000001B C0301040 + 0092 0004:00001138 0000001C C0301040 + 0092 0004:00001154 0000001B C0301040 + 0092 0004:00001170 00000009 C0301040 + 0092 0004:0000117C 00000004 C0301040 + 0092 0004:00001180 00000007 C0301040 + 0090 0004:00001188 00000008 C0300040 + 008E 0004:00001190 00000013 C0301040 + 008B 0004:000011A4 00000011 C0301040 + 0089 0004:000011B8 00000011 C0301040 + 0089 0004:000011CC 00000010 C0301040 + 0089 0004:000011DC 0000000E C0301040 + 0089 0004:000011EC 00000011 C0301040 + 0089 0004:00001200 00000011 C0301040 + 0089 0004:00001214 0000000D C0301040 + 0089 0004:00001224 00000010 C0301040 + 0089 0004:00001234 00000011 C0301040 + 0089 0004:00001248 00000012 C0301040 + 0089 0004:0000125C 0000000E C0301040 + 0089 0004:0000126C 00000010 C0301040 + 0089 0004:0000127C 0000000F C0301040 + 0089 0004:0000128C 0000000B C0301040 + 0089 0004:00001298 0000000F C0301040 + 0089 0004:000012A8 00000010 C0301040 + 0089 0004:000012B8 0000000D C0301040 + 0089 0004:000012C8 000001C0 C0400040 + 0086 0004:00001488 00000011 C0301040 + 0086 0004:0000149C 00000004 C0300040 + 0086 0004:000014A0 00000002 C0301040 + 0086 0004:000014A4 00000002 C0301040 + 0086 0004:000014A8 00000002 C0301040 + 0086 0004:000014AC 00000002 C0301040 + 0084 0004:000014B0 00000007 C0301040 + 0084 0004:000014B8 00000005 C0301040 + 0084 0004:000014C0 00000004 C0301040 + 0084 0004:000014C4 00000005 C0301040 + 0084 0004:000014CC 00000006 C0301040 + 0084 0004:000014D4 00000006 C0301040 + 0084 0004:000014DC 00000009 C0301040 + 0084 0004:000014E8 00000008 C0301040 + 0084 0004:000014F0 0000001C C0301040 + 0084 0004:0000150C 00000008 C0301040 + 0081 0004:00001514 0000000A C0301040 + 007F 0004:00001520 00000004 C0300040 + 007F 0004:00001524 00000011 C0301040 + 007C 0004:00001538 00000004 C0301040 + 007A 0004:0000153C 00000004 C0300040 + 0077 0004:00001540 00000019 C0301040 + 0076 0004:0000155C 00000002 C0300040 + 0071 0004:00001560 00000004 C0300040 + 0071 0004:00001564 00000019 C0301040 + 0071 0004:00001580 00000010 C0301040 + 0071 0004:00001590 00000002 C0301040 + 0070 0004:00001594 0000001D C0301040 + 0070 0004:000015B4 0000002C C0301040 + 0070 0004:000015E0 0000002B C0301040 + 0070 0004:0000160C 00000034 C0301040 + 0070 0004:00001640 00000019 C0301040 + 0070 0004:0000165C 00000043 C0301040 + 0070 0004:000016A0 0000001D C0301040 + 0070 0004:000016C0 00000019 C0301040 + 0070 0004:000016DC 00000014 C0301040 + 0070 0004:000016F0 0000001E C0301040 + 0070 0004:00001710 00000027 C0301040 + 0070 0004:00001738 00000017 C0301040 + 006F 0004:00001750 00000008 C0300040 + 006F 0004:00001758 00000012 C0301040 + 006F 0004:0000176C 0000001B C0301040 + 006F 0004:00001788 00000012 C0301040 + 006F 0004:0000179C 00000015 C0301040 + 006F 0004:000017B4 0000005A C0301040 + 006F 0004:00001810 00000016 C0301040 + 006F 0004:00001828 00000024 C0301040 + 006F 0004:0000184C 00000012 C0301040 + 006F 0004:00001860 00000017 C0301040 + 006F 0004:00001878 00000015 C0301040 + 006F 0004:00001890 0000002C C0301040 + 006F 0004:000018BC 0000002D C0301040 + 006F 0004:000018EC 0000002D C0301040 + 006F 0004:0000191C 00000036 C0301040 + 006F 0004:00001954 0000001E C0301040 + 006F 0004:00001974 00000028 C0301040 + 006F 0004:0000199C 00000028 C0301040 + 006F 0004:000019C4 00000006 C0301040 + 006F 0004:000019CC 0000002F C0301040 + 006F 0004:000019FC 00000017 C0301040 + 006F 0004:00001A14 00000021 C0301040 + 006F 0004:00001A38 00000021 C0301040 + 006F 0004:00001A5C 0000001B C0301040 + 006F 0004:00001A78 0000001E C0301040 + 006F 0004:00001A98 0000001F C0301040 + 006F 0004:00001AB8 00000026 C0301040 + 006F 0004:00001AE0 0000002D C0301040 + 006F 0004:00001B10 00000018 C0301040 + 006F 0004:00001B28 0000001B C0301040 + 006F 0004:00001B44 00000047 C0301040 + 006F 0004:00001B8C 0000004E C0301040 + 006F 0004:00001BDC 00000072 C0301040 + 006F 0004:00001C50 00000020 C0301040 + 006F 0004:00001C70 00000045 C0301040 + 006F 0004:00001CB8 00000037 C0301040 + 006F 0004:00001CF0 00000017 C0301040 + 006F 0004:00001D08 0000002D C0301040 + 006F 0004:00001D38 00000058 C0301040 + 006F 0004:00001D90 0000002E C0301040 + 006F 0004:00001DC0 00000028 C0301040 + 006F 0004:00001DE8 000000A6 C0301040 + 006F 0004:00001E90 0000003C C0301040 + 006F 0004:00001ECC 00000062 C0301040 + 006F 0004:00001F30 00000057 C0301040 + 006F 0004:00001F88 0000004A C0301040 + 006F 0004:00001FD4 00000035 C0301040 + 006F 0004:0000200C 00000035 C0301040 + 006F 0004:00002044 00000062 C0301040 + 006F 0004:000020A8 00000041 C0301040 + 006F 0004:000020EC 0000003E C0301040 + 006F 0004:0000212C 00000031 C0301040 + 006F 0004:00002160 00000042 C0301040 + 006F 0004:000021A4 0000004D C0301040 + 006F 0004:000021F4 0000007F C0301040 + 006F 0004:00002274 0000005F C0301040 + 006F 0004:000022D4 00000075 C0301040 + 006F 0004:0000234C 00000038 C0301040 + 006F 0004:00002384 0000007D C0301040 + 006F 0004:00002404 0000001F C0301040 + 006F 0004:00002424 00000043 C0301040 + 006F 0004:00002468 00000067 C0301040 + 006F 0004:000024D0 00000046 C0301040 + 006F 0004:00002518 00000060 C0301040 + 006F 0004:00002578 00000077 C0301040 + 006F 0004:000025F0 0000006B C0301040 + 006F 0004:0000265C 00000059 C0301040 + 006F 0004:000026B8 00000060 C0301040 + 006F 0004:00002718 0000006D C0301040 + 006F 0004:00002788 00000033 C0301040 + 006F 0004:000027BC 0000002D C0301040 + 006F 0004:000027EC 0000005F C0301040 + 006F 0004:0000284C 00000082 C0301040 + 006F 0004:000028D0 00000057 C0301040 + 006F 0004:00002928 00000068 C0301040 + 006F 0004:00002990 0000001A C0301040 + 006F 0004:000029AC 0000002D C0301040 + 006F 0004:000029DC 0000006D C0301040 + 006F 0004:00002A4C 00000023 C0301040 + 006F 0004:00002A70 00000067 C0301040 + 006F 0004:00002AD8 0000001D C0301040 + 006F 0004:00002AF8 0000002A C0301040 + 006F 0004:00002B24 0000005B C0301040 + 006F 0004:00002B80 00000067 C0301040 + 006F 0004:00002BE8 0000002C C0301040 + 006F 0004:00002C14 00000068 C0301040 + 006F 0004:00002C7C 0000002F C0301040 + 006F 0004:00002CAC 00000018 C0301040 + 006F 0004:00002CC4 0000001E C0301040 + 006F 0004:00002CE4 00000069 C0301040 + 006F 0004:00002D50 00000019 C0301040 + 006F 0004:00002D6C 0000004D C0301040 + 006F 0004:00002DBC 00000021 C0301040 + 006F 0004:00002DE0 00000067 C0301040 + 006F 0004:00002E48 0000002C C0301040 + 006F 0004:00002E74 00000045 C0301040 + 006F 0004:00002EBC 00000046 C0301040 + 006F 0004:00002F04 00000031 C0301040 + 006F 0004:00002F38 00000052 C0301040 + 006F 0004:00002F8C 00000034 C0301040 + 006F 0004:00002FC0 00000044 C0301040 + 006F 0004:00003004 00000051 C0301040 + 006F 0004:00003058 0000004F C0301040 + 006F 0004:000030A8 0000006E C0301040 + 006F 0004:00003118 00000079 C0301040 + 006F 0004:00003194 00000043 C0301040 + 006F 0004:000031D8 00000012 C0301040 + 006F 0004:000031EC 00000058 C0301040 + 006F 0004:00003244 00000048 C0301040 + 006F 0004:0000328C 00000059 C0301040 + 006F 0004:000032E8 00000025 C0301040 + 006F 0004:00003310 00000030 C0301040 + 006F 0004:00003340 00000060 C0301040 + 006F 0004:000033A0 00000051 C0301040 + 006F 0004:000033F4 00000026 C0301040 + 006F 0004:0000341C 0000003E C0301040 + 006F 0004:0000345C 0000003C C0301040 + 006F 0004:00003498 0000005A C0301040 + 006F 0004:000034F4 00000025 C0301040 + 006F 0004:0000351C 0000000B C0301040 + 006E 0004:00003528 00000017 C0301040 + 006E 0004:00003540 00000013 C0301040 + 006D 0004:00003554 00000004 C0300040 + 006D 0004:00003558 00000011 C0301040 + 006D 0004:0000356C 00000015 C0301040 + 006C 0004:00003584 00000004 C0300040 + 006C 0004:00003588 00000021 C0301040 + 006B 0004:000035AC 00000002 C0300040 + 006B 0004:000035B0 0000000B C0301040 + 006B 0004:000035BC 0000000B C0301040 + 006B 0004:000035C8 00000004 C0301040 + 006A 0004:000035CC 00000009 C0301040 + 006A 0004:000035D8 00000010 C0301040 + 0069 0004:000035E8 0000000B C0301040 + 0069 0004:000035F4 0000000E C0301040 + 0069 0004:00003604 0000000A C0301040 + 0067 0004:00003610 0000000A C0301040 + 0066 0004:0000361C 00000009 C0301040 + 0066 0004:00003628 0000000B C0301040 + 0066 0004:00003634 00000027 C0301040 + 0064 0004:0000365C 00000010 C0301040 + 0062 0004:0000366C 00000011 C0301040 + 0061 0004:00003680 00000013 C0301040 + 0060 0004:00003694 00000011 C0301040 + 0060 0004:000036A8 00000008 C0301040 + 005E 0004:000036B0 0000000A C0301040 + 005C 0004:000036BC 0000000A C0301040 + 005A 0004:000036C8 0000000F C0301040 + 0057 0004:000036D8 00000011 C0301040 + 0054 0004:000036EC 00000016 C0301040 + 0052 0004:00003704 0000000F C0301040 + 0052 0004:00003714 00000016 C0301040 + 004F 0004:0000372C 00000010 C0301040 + 004F 0004:0000373C 00000011 C0301040 + 004A 0004:00003750 00000011 C0301040 + 004A 0004:00003764 00000017 C0301040 + 0049 0004:0000377C 00000004 C0300040 + 0046 0004:00003780 00000400 C0400040 + 0042 0004:00003B80 00000014 C0301040 + 0039 0004:00003B94 0000000A C0301040 + 0039 0004:00003BA0 00000004 C0300040 + 0039 0004:00003BA4 00000006 C0301040 + 0037 0004:00003BAC 00000016 C0301040 + 0036 0004:00003BC4 0000000B C0301040 + 0036 0004:00003BD0 00000016 C0301040 + 0030 0004:00003BE8 00000008 C0300040 + 002F 0004:00003BF0 00000010 C0400040 + 002F 0004:00003C00 00000014 C0301040 + 001B 0004:00003C14 00000006 C0301040 + 0016 0004:00003C1C 0000000C C0300040 + 0012 0004:00003C28 0000000C C0301040 + 000A 0004:00003C34 00000008 C0300040 + 0004 0004:00003C3C 00000004 C0301040 + 0002 0004:00003C40 00000001 C0300040 + 00EA 0004:00003C44 00000008 C0300040 + 00E8 0004:00003C4C 00000004 C0300040 + 00E7 0004:00003C50 00000004 C0300040 + 00E6 0004:00003C58 0000001C C0400040 + 00E5 0004:00003C74 00000004 C0300040 + 00E2 0004:00003C78 00000048 C0300040 + 00E2 0004:00003CC0 00000007 C0301040 + 00E1 0004:00003CC8 00000004 C0300040 + 00E0 0004:00003CCC 00000002 C0300040 + 00DF 0004:00003CD0 00000004 C0300040 + 00DE 0004:00003CD4 00000034 C0300040 + 00DD 0004:00003D08 00000190 C0400040 + 00DD 0004:00003E98 00000068 C0401040 + 00DC 0004:00003F00 000000DC C0400040 + 019F 0004:00003FDC 00000010 C0300040 + 019E 0004:00003FEC 0000001C C0300040 + 0183 0004:00004010 00000018 C0300040 + 017F 0004:00004028 00000004 C0300040 + 017D 0004:00004030 00000004 C0300040 + 017A 0004:00004038 00000018 C0400040 + 0178 0004:00004050 000000B0 C0500040 + 0176 0004:00004100 0000020A C0400040 + 0174 0004:0000430C 0000000C C0300040 + 0172 0004:00004320 00000044 C0300040 + 0170 0004:00004364 00000008 C0300040 + 016F 0004:00004370 000000C0 C0400040 + 0167 0004:00004430 00000024 C0400040 + 0166 0004:00004458 00000168 C0400040 + 0163 0004:000045C0 00000010 C0400040 + 0162 0004:000045D0 00000014 C0300040 + 0161 0004:000045E8 00000094 C0400040 + 0160 0004:00004680 00000008 C0400040 + 015F 0004:00004688 0000000A C0300040 + 015E 0004:00004698 00000088 C0400040 + 015D 0004:00004720 000000EA C0500040 + 015C 0004:0000480C 00000004 C0300040 + 015B 0004:00004810 00000004 C0300040 + 0158 0004:00004818 00000218 C0400040 + 0157 0004:00004A30 00000008 C0300040 + 0155 0004:00004A38 00000004 C0300040 + 014E 0004:00004A40 00000030 C0400040 + 014B 0004:00004A70 0000002C C0500040 + 0149 0004:00004A9C 00000008 C0300040 + 0145 0004:00004AA8 00000284 C0400040 + 013E 0004:00004D30 00000004 C0300040 + 013A 0004:00004D34 00000004 C0300040 + 0138 0004:00004D38 0000000C C0300040 + 0133 0004:00004D50 00000160 C0500040 + 0132 0004:00004EB0 00000820 C0400040 + 0131 0004:000056D0 0000001C C0400040 + 012F 0004:000056F0 0000016B C0400040 + 012E 0004:0000585C 00000008 C0300040 + 012A 0004:00005868 000000D8 C0400040 + 0129 0004:00005940 00000004 C0300040 + 0128 0004:00005948 0000001C C0400040 + 0125 0004:00005964 00000004 C0300040 + 0123 0004:00005970 00000028 C0400040 + 0120 0004:00005998 00000004 C0300040 + 011F 0004:0000599C 0000000C C0300040 + 011E 0004:000059A8 00000004 C0300040 + 011D 0004:000059AC 00000008 C0300040 + 0119 0004:000059C0 00000024 C0400040 + 0118 0004:000059E8 000007F2 C0400040 + 0113 0004:000061E0 000000B8 C0400040 + 0111 0004:00006298 0000003C C0400040 + 010F 0004:000062D4 00000008 C0300040 + 010C 0004:000062E0 000002BC C0400040 + 010B 0004:000065A0 00000098 C0400040 + 010A 0004:00006638 00000028 C0400040 + 0105 0004:00006660 0000006C C0400040 + 0102 0004:000066CC 00000008 C0300040 + 00C4 0004:000066E0 00000004 C0300080 + 00A5 0004:000066E8 00000054 C0400080 + 0092 0004:0000673C 00000004 C0300080 + 0083 0004:00006740 00004410 C0400080 + 006F 0004:0000AB50 00000004 C0300080 + 0049 0004:0000AB58 00000801 C0400080 + 0016 0004:0000B35C 00000004 C0300080 + 00E9 0004:0000B360 00000020 C0400080 + 00E2 0004:0000B380 00000018 C0400080 + 0182 0004:0000B398 00000004 C0300080 + 016F 0004:0000B3A0 00000060 C0400080 + 0159 0004:0000B400 00000104 C0400080 + 0154 0004:0000B504 00000004 C0300080 + 0112 0004:0000B508 00000008 C0400080 + 010A 0004:0000B510 000000B4 C0400080 + 00EB 0005:00000000 00000014 C0100040 + 00EC 0005:00000014 00000014 C0100040 + 00ED 0005:00000028 00000014 C0100040 + 00F5 0005:0000003C 00000014 C0100040 + 00F6 0005:00000050 00000014 C0100040 + 00F8 0005:00000064 00000014 C0100040 + 00F9 0005:00000078 00000014 C0100040 + 00FA 0005:0000008C 00000014 C0100040 + 00EB 0005:000000A0 00000014 C0100040 + 00EB 0005:000000B4 00000004 C0301040 + 00EB 0005:000000B8 00000004 C0301040 + 00EB 0005:000000BC 00000004 C0300040 + 00ED 0005:000000C0 00000004 C0301040 + 00ED 0005:000000C4 00000004 C0300040 + 00EC 0005:000000C8 00000004 C0301040 + 00EC 0005:000000CC 00000004 C0300040 + 00FA 0005:000000D0 00000004 C0301040 + 00FA 0005:000000D4 00000004 C0301040 + 00FA 0005:000000D8 00000004 C0301040 + 00FA 0005:000000DC 00000004 C0301040 + 00FA 0005:000000E0 00000004 C0301040 + 00FA 0005:000000E4 00000004 C0301040 + 00FA 0005:000000E8 00000004 C0301040 + 00FA 0005:000000EC 00000004 C0301040 + 00FA 0005:000000F0 00000004 C0301040 + 00FA 0005:000000F4 00000004 C0301040 + 00FA 0005:000000F8 00000004 C0301040 + 00FA 0005:000000FC 00000004 C0301040 + 00FA 0005:00000100 00000004 C0301040 + 00FA 0005:00000104 00000004 C0301040 + 00FA 0005:00000108 00000004 C0301040 + 00FA 0005:0000010C 00000004 C0300040 + 00F8 0005:00000110 00000004 C0301040 + 00F8 0005:00000114 00000004 C0301040 + 00F8 0005:00000118 00000004 C0301040 + 00F8 0005:0000011C 00000004 C0301040 + 00F8 0005:00000120 00000004 C0301040 + 00F8 0005:00000124 00000004 C0301040 + 00F8 0005:00000128 00000004 C0301040 + 00F8 0005:0000012C 00000004 C0301040 + 00F8 0005:00000130 00000004 C0301040 + 00F8 0005:00000134 00000004 C0301040 + 00F8 0005:00000138 00000004 C0301040 + 00F8 0005:0000013C 00000004 C0301040 + 00F8 0005:00000140 00000004 C0301040 + 00F8 0005:00000144 00000004 C0301040 + 00F8 0005:00000148 00000004 C0301040 + 00F8 0005:0000014C 00000004 C0301040 + 00F8 0005:00000150 00000004 C0301040 + 00F8 0005:00000154 00000004 C0301040 + 00F8 0005:00000158 00000004 C0301040 + 00F8 0005:0000015C 00000004 C0301040 + 00F8 0005:00000160 00000004 C0301040 + 00F8 0005:00000164 00000004 C0301040 + 00F8 0005:00000168 00000004 C0301040 + 00F8 0005:0000016C 00000004 C0301040 + 00F8 0005:00000170 00000004 C0301040 + 00F8 0005:00000174 00000004 C0301040 + 00F8 0005:00000178 00000004 C0301040 + 00F8 0005:0000017C 00000004 C0301040 + 00F8 0005:00000180 00000004 C0301040 + 00F8 0005:00000184 00000004 C0301040 + 00F8 0005:00000188 00000004 C0301040 + 00F8 0005:0000018C 00000004 C0301040 + 00F8 0005:00000190 00000004 C0301040 + 00F8 0005:00000194 00000004 C0301040 + 00F8 0005:00000198 00000004 C0301040 + 00F8 0005:0000019C 00000004 C0301040 + 00F8 0005:000001A0 00000004 C0301040 + 00F8 0005:000001A4 00000004 C0301040 + 00F8 0005:000001A8 00000004 C0301040 + 00F8 0005:000001AC 00000004 C0301040 + 00F8 0005:000001B0 00000004 C0301040 + 00F8 0005:000001B4 00000004 C0301040 + 00F8 0005:000001B8 00000004 C0301040 + 00F8 0005:000001BC 00000004 C0301040 + 00F8 0005:000001C0 00000004 C0301040 + 00F8 0005:000001C4 00000004 C0301040 + 00F8 0005:000001C8 00000004 C0301040 + 00F8 0005:000001CC 00000004 C0301040 + 00F8 0005:000001D0 00000004 C0301040 + 00F8 0005:000001D4 00000004 C0301040 + 00F8 0005:000001D8 00000004 C0301040 + 00F8 0005:000001DC 00000004 C0301040 + 00F8 0005:000001E0 00000004 C0301040 + 00F8 0005:000001E4 00000004 C0301040 + 00F8 0005:000001E8 00000004 C0301040 + 00F8 0005:000001EC 00000004 C0301040 + 00F8 0005:000001F0 00000004 C0301040 + 00F8 0005:000001F4 00000004 C0301040 + 00F8 0005:000001F8 00000004 C0301040 + 00F8 0005:000001FC 00000004 C0301040 + 00F8 0005:00000200 00000004 C0301040 + 00F8 0005:00000204 00000004 C0301040 + 00F8 0005:00000208 00000004 C0301040 + 00F8 0005:0000020C 00000004 C0301040 + 00F8 0005:00000210 00000004 C0301040 + 00F8 0005:00000214 00000004 C0301040 + 00F8 0005:00000218 00000004 C0301040 + 00F8 0005:0000021C 00000004 C0301040 + 00F8 0005:00000220 00000004 C0301040 + 00F8 0005:00000224 00000004 C0301040 + 00F8 0005:00000228 00000004 C0301040 + 00F8 0005:0000022C 00000004 C0301040 + 00F8 0005:00000230 00000004 C0301040 + 00F8 0005:00000234 00000004 C0301040 + 00F8 0005:00000238 00000004 C0301040 + 00F8 0005:0000023C 00000004 C0301040 + 00F8 0005:00000240 00000004 C0301040 + 00F8 0005:00000244 00000004 C0301040 + 00F8 0005:00000248 00000004 C0301040 + 00F8 0005:0000024C 00000004 C0301040 + 00F8 0005:00000250 00000004 C0301040 + 00F8 0005:00000254 00000004 C0301040 + 00F8 0005:00000258 00000004 C0301040 + 00F8 0005:0000025C 00000004 C0301040 + 00F8 0005:00000260 00000004 C0301040 + 00F8 0005:00000264 00000004 C0301040 + 00F8 0005:00000268 00000004 C0301040 + 00F8 0005:0000026C 00000004 C0301040 + 00F8 0005:00000270 00000004 C0301040 + 00F8 0005:00000274 00000004 C0301040 + 00F8 0005:00000278 00000004 C0301040 + 00F8 0005:0000027C 00000004 C0301040 + 00F8 0005:00000280 00000004 C0301040 + 00F8 0005:00000284 00000004 C0301040 + 00F8 0005:00000288 00000004 C0301040 + 00F8 0005:0000028C 00000004 C0301040 + 00F8 0005:00000290 00000004 C0301040 + 00F8 0005:00000294 00000004 C0301040 + 00F8 0005:00000298 00000004 C0301040 + 00F8 0005:0000029C 00000004 C0301040 + 00F8 0005:000002A0 00000004 C0301040 + 00F8 0005:000002A4 00000004 C0301040 + 00F8 0005:000002A8 00000004 C0301040 + 00F8 0005:000002AC 00000004 C0301040 + 00F8 0005:000002B0 00000004 C0301040 + 00F8 0005:000002B4 00000004 C0301040 + 00F8 0005:000002B8 00000004 C0300040 + 00F9 0005:000002BC 00000004 C0301040 + 00F9 0005:000002C0 00000004 C0301040 + 00F9 0005:000002C4 00000004 C0301040 + 00F9 0005:000002C8 00000004 C0301040 + 00F9 0005:000002CC 00000004 C0301040 + 00F9 0005:000002D0 00000004 C0301040 + 00F9 0005:000002D4 00000004 C0301040 + 00F9 0005:000002D8 00000004 C0301040 + 00F9 0005:000002DC 00000004 C0301040 + 00F9 0005:000002E0 00000004 C0301040 + 00F9 0005:000002E4 00000004 C0301040 + 00F9 0005:000002E8 00000004 C0301040 + 00F9 0005:000002EC 00000004 C0301040 + 00F9 0005:000002F0 00000004 C0301040 + 00F9 0005:000002F4 00000004 C0301040 + 00F9 0005:000002F8 00000004 C0301040 + 00F9 0005:000002FC 00000004 C0300040 + 00F5 0005:00000300 00000004 C0301040 + 00F5 0005:00000304 00000004 C0301040 + 00F5 0005:00000308 00000004 C0301040 + 00F5 0005:0000030C 00000004 C0301040 + 00F5 0005:00000310 00000004 C0301040 + 00F5 0005:00000314 00000004 C0301040 + 00F5 0005:00000318 00000004 C0301040 + 00F5 0005:0000031C 00000004 C0300040 + 00F6 0005:00000320 00000004 C0301040 + 00F6 0005:00000324 00000004 C0301040 + 00F6 0005:00000328 00000004 C0300040 + 00EB 0005:0000032C 00000004 C0301040 + 00EB 0005:00000330 00000004 C0301040 + 00EB 0005:00000334 00000004 C0300040 + 00ED 0005:00000338 00000004 C0301040 + 00ED 0005:0000033C 00000004 C0300040 + 00EC 0005:00000340 00000004 C0301040 + 00EC 0005:00000344 00000004 C0300040 + 00FA 0005:00000348 00000004 C0301040 + 00FA 0005:0000034C 00000004 C0301040 + 00FA 0005:00000350 00000004 C0301040 + 00FA 0005:00000354 00000004 C0301040 + 00FA 0005:00000358 00000004 C0301040 + 00FA 0005:0000035C 00000004 C0301040 + 00FA 0005:00000360 00000004 C0301040 + 00FA 0005:00000364 00000004 C0301040 + 00FA 0005:00000368 00000004 C0301040 + 00FA 0005:0000036C 00000004 C0301040 + 00FA 0005:00000370 00000004 C0301040 + 00FA 0005:00000374 00000004 C0301040 + 00FA 0005:00000378 00000004 C0301040 + 00FA 0005:0000037C 00000004 C0301040 + 00FA 0005:00000380 00000004 C0301040 + 00FA 0005:00000384 00000004 C0300040 + 00F8 0005:00000388 00000004 C0301040 + 00F8 0005:0000038C 00000004 C0301040 + 00F8 0005:00000390 00000004 C0301040 + 00F8 0005:00000394 00000004 C0301040 + 00F8 0005:00000398 00000004 C0301040 + 00F8 0005:0000039C 00000004 C0301040 + 00F8 0005:000003A0 00000004 C0301040 + 00F8 0005:000003A4 00000004 C0301040 + 00F8 0005:000003A8 00000004 C0301040 + 00F8 0005:000003AC 00000004 C0301040 + 00F8 0005:000003B0 00000004 C0301040 + 00F8 0005:000003B4 00000004 C0301040 + 00F8 0005:000003B8 00000004 C0301040 + 00F8 0005:000003BC 00000004 C0301040 + 00F8 0005:000003C0 00000004 C0301040 + 00F8 0005:000003C4 00000004 C0301040 + 00F8 0005:000003C8 00000004 C0301040 + 00F8 0005:000003CC 00000004 C0301040 + 00F8 0005:000003D0 00000004 C0301040 + 00F8 0005:000003D4 00000004 C0301040 + 00F8 0005:000003D8 00000004 C0301040 + 00F8 0005:000003DC 00000004 C0301040 + 00F8 0005:000003E0 00000004 C0301040 + 00F8 0005:000003E4 00000004 C0301040 + 00F8 0005:000003E8 00000004 C0301040 + 00F8 0005:000003EC 00000004 C0301040 + 00F8 0005:000003F0 00000004 C0301040 + 00F8 0005:000003F4 00000004 C0301040 + 00F8 0005:000003F8 00000004 C0301040 + 00F8 0005:000003FC 00000004 C0301040 + 00F8 0005:00000400 00000004 C0301040 + 00F8 0005:00000404 00000004 C0301040 + 00F8 0005:00000408 00000004 C0301040 + 00F8 0005:0000040C 00000004 C0301040 + 00F8 0005:00000410 00000004 C0301040 + 00F8 0005:00000414 00000004 C0301040 + 00F8 0005:00000418 00000004 C0301040 + 00F8 0005:0000041C 00000004 C0301040 + 00F8 0005:00000420 00000004 C0301040 + 00F8 0005:00000424 00000004 C0301040 + 00F8 0005:00000428 00000004 C0301040 + 00F8 0005:0000042C 00000004 C0301040 + 00F8 0005:00000430 00000004 C0301040 + 00F8 0005:00000434 00000004 C0301040 + 00F8 0005:00000438 00000004 C0301040 + 00F8 0005:0000043C 00000004 C0301040 + 00F8 0005:00000440 00000004 C0301040 + 00F8 0005:00000444 00000004 C0301040 + 00F8 0005:00000448 00000004 C0301040 + 00F8 0005:0000044C 00000004 C0301040 + 00F8 0005:00000450 00000004 C0301040 + 00F8 0005:00000454 00000004 C0301040 + 00F8 0005:00000458 00000004 C0301040 + 00F8 0005:0000045C 00000004 C0301040 + 00F8 0005:00000460 00000004 C0301040 + 00F8 0005:00000464 00000004 C0301040 + 00F8 0005:00000468 00000004 C0301040 + 00F8 0005:0000046C 00000004 C0301040 + 00F8 0005:00000470 00000004 C0301040 + 00F8 0005:00000474 00000004 C0301040 + 00F8 0005:00000478 00000004 C0301040 + 00F8 0005:0000047C 00000004 C0301040 + 00F8 0005:00000480 00000004 C0301040 + 00F8 0005:00000484 00000004 C0301040 + 00F8 0005:00000488 00000004 C0301040 + 00F8 0005:0000048C 00000004 C0301040 + 00F8 0005:00000490 00000004 C0301040 + 00F8 0005:00000494 00000004 C0301040 + 00F8 0005:00000498 00000004 C0301040 + 00F8 0005:0000049C 00000004 C0301040 + 00F8 0005:000004A0 00000004 C0301040 + 00F8 0005:000004A4 00000004 C0301040 + 00F8 0005:000004A8 00000004 C0301040 + 00F8 0005:000004AC 00000004 C0301040 + 00F8 0005:000004B0 00000004 C0301040 + 00F8 0005:000004B4 00000004 C0301040 + 00F8 0005:000004B8 00000004 C0301040 + 00F8 0005:000004BC 00000004 C0301040 + 00F8 0005:000004C0 00000004 C0301040 + 00F8 0005:000004C4 00000004 C0301040 + 00F8 0005:000004C8 00000004 C0301040 + 00F8 0005:000004CC 00000004 C0301040 + 00F8 0005:000004D0 00000004 C0301040 + 00F8 0005:000004D4 00000004 C0301040 + 00F8 0005:000004D8 00000004 C0301040 + 00F8 0005:000004DC 00000004 C0301040 + 00F8 0005:000004E0 00000004 C0301040 + 00F8 0005:000004E4 00000004 C0301040 + 00F8 0005:000004E8 00000004 C0301040 + 00F8 0005:000004EC 00000004 C0301040 + 00F8 0005:000004F0 00000004 C0301040 + 00F8 0005:000004F4 00000004 C0301040 + 00F8 0005:000004F8 00000004 C0301040 + 00F8 0005:000004FC 00000004 C0301040 + 00F8 0005:00000500 00000004 C0301040 + 00F8 0005:00000504 00000004 C0301040 + 00F8 0005:00000508 00000004 C0301040 + 00F8 0005:0000050C 00000004 C0301040 + 00F8 0005:00000510 00000004 C0301040 + 00F8 0005:00000514 00000004 C0301040 + 00F8 0005:00000518 00000004 C0301040 + 00F8 0005:0000051C 00000004 C0301040 + 00F8 0005:00000520 00000004 C0301040 + 00F8 0005:00000524 00000004 C0301040 + 00F8 0005:00000528 00000004 C0301040 + 00F8 0005:0000052C 00000004 C0301040 + 00F8 0005:00000530 00000004 C0300040 + 00F9 0005:00000534 00000004 C0301040 + 00F9 0005:00000538 00000004 C0301040 + 00F9 0005:0000053C 00000004 C0301040 + 00F9 0005:00000540 00000004 C0301040 + 00F9 0005:00000544 00000004 C0301040 + 00F9 0005:00000548 00000004 C0301040 + 00F9 0005:0000054C 00000004 C0301040 + 00F9 0005:00000550 00000004 C0301040 + 00F9 0005:00000554 00000004 C0301040 + 00F9 0005:00000558 00000004 C0301040 + 00F9 0005:0000055C 00000004 C0301040 + 00F9 0005:00000560 00000004 C0301040 + 00F9 0005:00000564 00000004 C0301040 + 00F9 0005:00000568 00000004 C0301040 + 00F9 0005:0000056C 00000004 C0301040 + 00F9 0005:00000570 00000004 C0301040 + 00F9 0005:00000574 00000004 C0300040 + 00F5 0005:00000578 00000004 C0301040 + 00F5 0005:0000057C 00000004 C0301040 + 00F5 0005:00000580 00000004 C0301040 + 00F5 0005:00000584 00000004 C0301040 + 00F5 0005:00000588 00000004 C0301040 + 00F5 0005:0000058C 00000004 C0301040 + 00F5 0005:00000590 00000004 C0301040 + 00F5 0005:00000594 00000004 C0300040 + 00F6 0005:00000598 00000004 C0301040 + 00F6 0005:0000059C 00000004 C0301040 + 00F6 0005:000005A0 00000004 C0300040 + 00EB 0005:000005A4 00000014 C0201040 + 00EB 0005:000005B8 00000018 C0201040 + 00EB 0005:000005D0 0000000A C0200040 + 00EC 0005:000005DA 00000014 C0201040 + 00EC 0005:000005EE 0000000C C0200040 + 00ED 0005:000005FA 00000016 C0201040 + 00ED 0005:00000610 0000000C C0200040 + 00F5 0005:0000061C 0000000E C0201040 + 00F5 0005:0000062A 00000012 C0201040 + 00F5 0005:0000063C 00000014 C0201040 + 00F5 0005:00000650 00000012 C0201040 + 00F5 0005:00000662 0000001A C0201040 + 00F5 0005:0000067C 00000012 C0201040 + 00F5 0005:0000068E 0000000E C0201040 + 00F5 0005:0000069C 0000000A C0200040 + 00F6 0005:000006A6 00000018 C0201040 + 00F6 0005:000006BE 00000014 C0201040 + 00F6 0005:000006D2 0000000A C0200040 + 00F8 0005:000006DC 0000001C C0201040 + 00F8 0005:000006F8 0000001A C0201040 + 00F8 0005:00000712 00000008 C0201040 + 00F8 0005:0000071A 0000000E C0201040 + 00F8 0005:00000728 0000000E C0201040 + 00F8 0005:00000736 0000000C C0201040 + 00F8 0005:00000742 0000001C C0201040 + 00F8 0005:0000075E 00000010 C0201040 + 00F8 0005:0000076E 00000018 C0201040 + 00F8 0005:00000786 00000018 C0201040 + 00F8 0005:0000079E 00000016 C0201040 + 00F8 0005:000007B4 00000018 C0201040 + 00F8 0005:000007CC 00000010 C0201040 + 00F8 0005:000007DC 00000016 C0201040 + 00F8 0005:000007F2 0000000C C0201040 + 00F8 0005:000007FE 0000000A C0201040 + 00F8 0005:00000808 0000000A C0201040 + 00F8 0005:00000812 0000000A C0201040 + 00F8 0005:0000081C 0000000A C0201040 + 00F8 0005:00000826 0000000E C0201040 + 00F8 0005:00000834 00000014 C0201040 + 00F8 0005:00000848 00000014 C0201040 + 00F8 0005:0000085C 00000010 C0201040 + 00F8 0005:0000086C 0000000E C0201040 + 00F8 0005:0000087A 00000010 C0201040 + 00F8 0005:0000088A 0000000E C0201040 + 00F8 0005:00000898 0000000C C0201040 + 00F8 0005:000008A4 00000012 C0201040 + 00F8 0005:000008B6 0000000E C0201040 + 00F8 0005:000008C4 0000000C C0201040 + 00F8 0005:000008D0 00000010 C0201040 + 00F8 0005:000008E0 00000012 C0201040 + 00F8 0005:000008F2 00000012 C0201040 + 00F8 0005:00000904 00000016 C0201040 + 00F8 0005:0000091A 00000014 C0201040 + 00F8 0005:0000092E 00000010 C0201040 + 00F8 0005:0000093E 0000000E C0201040 + 00F8 0005:0000094C 00000014 C0201040 + 00F8 0005:00000960 00000012 C0201040 + 00F8 0005:00000972 0000000E C0201040 + 00F8 0005:00000980 00000010 C0201040 + 00F8 0005:00000990 00000016 C0201040 + 00F8 0005:000009A6 00000010 C0201040 + 00F8 0005:000009B6 00000016 C0201040 + 00F8 0005:000009CC 00000010 C0201040 + 00F8 0005:000009DC 0000000C C0201040 + 00F8 0005:000009E8 0000000E C0201040 + 00F8 0005:000009F6 0000000E C0200040 + 00F9 0005:00000A04 00000012 C0201040 + 00F9 0005:00000A16 0000000C C0201040 + 00F9 0005:00000A22 0000000C C0201040 + 00F9 0005:00000A2E 00000010 C0201040 + 00F9 0005:00000A3E 0000000C C0201040 + 00F9 0005:00000A4A 00000008 C0201040 + 00F9 0005:00000A52 00000012 C0201040 + 00F9 0005:00000A64 00000010 C0201040 + 00F9 0005:00000A74 00000016 C0201040 + 00F9 0005:00000A8A 0000000A C0201040 + 00F9 0005:00000A94 0000000A C0201040 + 00F9 0005:00000A9E 00000010 C0201040 + 00F9 0005:00000AAE 0000000E C0201040 + 00F9 0005:00000ABC 00000012 C0201040 + 00F9 0005:00000ACE 0000000E C0201040 + 00F9 0005:00000ADC 0000000E C0201040 + 00F9 0005:00000AEA 0000000C C0200040 + 00FA 0005:00000AF6 00000010 C0201040 + 00FA 0005:00000B06 00000010 C0201040 + 00FA 0005:00000B16 0000001A C0201040 + 00FA 0005:00000B30 0000000E C0201040 + 00FA 0005:00000B3E 00000018 C0201040 + 00FA 0005:00000B56 0000000C C0201040 + 00FA 0005:00000B62 0000000E C0201040 + 00FA 0005:00000B70 00000010 C0201040 + 00FA 0005:00000B80 00000010 C0201040 + 00FA 0005:00000B90 00000016 C0201040 + 00FA 0005:00000BA6 0000000E C0201040 + 00FA 0005:00000BB4 00000012 C0201040 + 00FA 0005:00000BC6 00000010 C0201040 + 00FA 0005:00000BD6 00000010 C0201040 + 00FA 0005:00000BE6 00000010 C0201040 + 00FA 0005:00000BF6 0000000A C0200040 + 00F8 0005:00000C00 0000000C C0201040 + 00F8 0005:00000C0C 00000010 C0201040 + 00F8 0005:00000C1C 0000000E C0201040 + 00F8 0005:00000C2A 0000000E C0201040 + 00F8 0005:00000C38 00000012 C0201040 + 00F8 0005:00000C4A 00000012 C0201040 + 00F8 0005:00000C5C 00000014 C0201040 + 00F8 0005:00000C70 0000000C C0201040 + 00F8 0005:00000C7C 0000000A C0201040 + 00F8 0005:00000C86 00000010 C0201040 + 00F8 0005:00000C96 0000000E C0201040 + 00F8 0005:00000CA4 00000014 C0201040 + 00F8 0005:00000CB8 0000000E C0201040 + 00F8 0005:00000CC6 00000014 C0201040 + 00F8 0005:00000CDA 00000010 C0201040 + 00F8 0005:00000CEA 0000000C C0201040 + 00F8 0005:00000CF6 00000012 C0201040 + 00F8 0005:00000D08 00000012 C0201040 + 00F8 0005:00000D1A 0000000E C0201040 + 00F8 0005:00000D28 00000010 C0201040 + 00F8 0005:00000D38 00000012 C0201040 + 00F8 0005:00000D4A 00000018 C0201040 + 00F8 0005:00000D62 00000016 C0201040 + 00F8 0005:00000D78 0000001C C0201040 + 00F8 0005:00000D94 0000000E C0201040 + 00F8 0005:00000DA2 0000000E C0201040 + 00F8 0005:00000DB0 0000000C C0201040 + 00F8 0005:00000DBC 0000000A C0201040 + 00F8 0005:00000DC6 0000000C C0201040 + 00F8 0005:00000DD2 0000001A C0201040 + 00F8 0005:00000DEC 00000016 C0201040 + 00F8 0005:00000E02 00000018 C0201040 + 00F8 0005:00000E1A 0000001A C0201040 + 00F8 0005:00000E34 0000001A C0201040 + 00F8 0005:00000E4E 00000016 C0201040 + 00F8 0005:00000E64 0000001E C0201040 + 00F8 0005:00000E82 00000010 C0201040 + 00F8 0005:00000E92 00000010 C0201040 + 00F8 0005:00000EA2 00000012 C0201040 + 00F8 0005:00000EB4 00000012 C0201040 + 00F8 0005:00000EC6 00000010 C0201040 + 00F8 0005:00000ED6 00000014 C0201040 + 00F8 0005:00000EEA 00000016 C0201040 + 00F8 0005:00000F00 00000016 C0201040 + 00F8 0005:00000F16 00000012 C0201040 + 00F8 0005:00000F28 00000010 C0201040 + 00F8 0005:00000F38 00000010 C0201040 + 00F8 0005:00000F48 00000010 C0201040 + 00F8 0005:00000F58 00000012 C0201040 + 00F8 0005:00000F6A 00000010 C0201040 + 00F8 0005:00000F7A 00000010 C0201040 + 00F8 0005:00000F8A 00000012 C0201040 + 00F8 0005:00000F9C 00000016 C0201040 + 00F8 0005:00000FB2 00000012 C0201040 + 00F8 0005:00000FC4 00000012 C0201040 + 00F8 0005:00000FD6 0000001A C0201040 + 00F8 0005:00000FF0 00000012 C0201040 + 00F8 0005:00001002 00000012 C0201040 + 00F8 0005:00001014 0000001A C0201040 + 00F7 0006:00000000 000001F0 C0500040 + 0013 0007:00000000 00000448 40000040 + 0013 0007:00000450 00001D88 40000040 + +*** SEGMENT MAP + +Sec flags ovl grp frm sname cname offset cbSeg + 01 010d 0000 0000 0001 ffff ffff 00000000 00062c00 + 02 010d 0000 0000 0002 ffff ffff 00000000 00003800 + 03 0109 0000 0000 0003 ffff ffff 00000000 00011600 + 04 010b 0000 0000 0004 ffff ffff 00000000 0000c800 + 05 010b 0000 0000 0005 ffff ffff 00000000 00001200 + 06 010b 0000 0000 0006 ffff ffff 00000000 00000200 + 07 0109 0000 0000 0007 ffff ffff 00000000 00002200 + 08 0109 0000 0000 0008 ffff ffff 00000000 00009200 + 09 0208 0000 0000 0000 ffff ffff 00000000 ffffffff + +*** FPO + +DBIOpenDbg(, dbgtypeFPO,) failed. +DBIOpenDbg(, dbgtypeNewFPO,) failed. + +*** TokenMap + +DBIOpenDbg(, dbgtypeTokenRidMap,) failed. + +*** FIXUPS + +DBIOpenDbg(, dbgtypeFixup,) failed. + +*** OMAP FROM SRC + +DBIOpenDbg(, dbgtypeOmapFromSrc,) failed. + +*** OMAP TO SRC + +DBIOpenDbg(, dbgtypeOmapToSrc,) failed. + +*** PDATA/XDATA + +DBIOpenDbg(, dbgtypePdata,) failed. + +*** SECTION HEADERS + +DBIOpenDbg(, dbgtypeSectionHdr,) failed. + +*** ORIGINAL SECTION HEADERS + +DBIOpenDbg(, dbgtypeSectionHdrOrig,) failed. + +*** CROSS MODULE EXPORTS + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** CROSS MODULE IMPORTS + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** FUNCTION TOKEN MAP + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** TYPE TOKEN MAP + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** MERGED ASSEMBLY INPUT + +** Module: "LEGO1.exp" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/viewmanager/viewlodlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrackmissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/towtrack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/view.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/unk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/texture.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/renderer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/mesh.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/light.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/group.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/device.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/tgl/d3drm/camera.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/skateboard.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/scorestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/score.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/res/lego1.rc.res" + +** Module: "CMakeFiles/lego1.dir/LEGO1/registrationbook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/vector.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtimeview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/realtime.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/orientableroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/realtime/matrix.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radiostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/radio.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racestandsentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/racecar.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/policeentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/police.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeriastate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzeria.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizzamissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/pizza.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxwavepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparamflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideoparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariabletable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxvariable.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxunknown100d7c88.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtype17notificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtransitionmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxtimer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxticklemanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxthread.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstring.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamlist.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstreamchunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxstillpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsmack.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxsemaphore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxscheduler.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregioncursor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxregion.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxramstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxpalette.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomnicreateflags.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxnotificationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmusicmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxmediamanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingsmkpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingmidipresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxloopingflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxioinfo.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxflcpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxeventmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssubscriber.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstreamingaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsstill.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssource.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdssound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsserialaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsselectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsparallelaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobjectaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsobject.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmultiaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsmediaaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsfile.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsevent.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdschunk.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsbuffer.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsanim.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdsaction.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdisplaysurface.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamprovider.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdiskstreamcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirectdraw.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxdirect3d.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcriticalsection.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcore.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxcompositemediapresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbitmap.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxbackgroundaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxautolocker.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiopresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxaudiomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomidcounter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxatomid.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/mxactionnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/motorcycle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworldpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoworld.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovideomanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legovehiclebuildstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legounksavedatawriter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoutil.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legotexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostream.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legostate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legosoundmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoroi.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legorace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoplantmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legophonemepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopartpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legopalettepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoomni.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoobjectfactory.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legonavcontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legomodelpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legometerpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legolocomotionanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoloadcachesoundpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legojetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoinputmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legohideanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legogamestate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legofullscreenmovie.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoflctexturepresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoeventnotificationparam.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentitypresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocontrolmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuildanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocarbuild.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocameracontroller.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legocachesound.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobuildingmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legobackgroundcolor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimmmpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimationmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoanimactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoactioncontrolpresenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/legoact2state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dview.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/lego3dmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukeboxentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jukebox.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetskirace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/jetski.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/islepathactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isleactor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/isle.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenterdoor.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/infocenter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospitalentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/hospital.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/historybook.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopterstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/helicopter.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gifmanager.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstationentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/gasstation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/elevatorbottom.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dunebuggy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/dllmain.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/define.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/carrace.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bumpbouy.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/buildingentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/bike.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/beachhouseentity.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/animstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulancemissionstate.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/ambulance.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3shark.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act3.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2policestation.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act2brick.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/act1state.cpp.obj" + +** Module: "CMakeFiles/lego1.dir/LEGO1/3dmanager/tglsurface.cpp.obj" + +** Module: "iowinapi.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "task.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "error.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmaljmp.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpagsz.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defsizfs.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "pool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "syswin32.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "check.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "info.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defflgmt.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "heap.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnewhnd.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "defpool.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shmalloc.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "shnew.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smartheap\SHLW32MT.LIB" + +** Module: "DDRAW.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\ddraw.lib" + +** Module: "DSOUND.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dsound.lib" + +** Module: "DINPUT.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "dilib2.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dinput.lib" + +** Module: "guid130.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid75.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid99.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid100.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid31.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "guid134.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\dxguid.lib" + +** Module: "WINMM.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\winmm.lib" + +** Module: "d3drm.dll" from "C:\Users\Christian\Downloads\isle\3rdparty\dx5\lib\d3drm.lib" + +** Module: "_SmackGetRect.obj" from "C:\Users\Christian\Downloads\isle\3rdparty\smack\smack.lib" + +** Module: "KERNEL32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\kernel32.lib" + +** Module: "USER32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\user32.lib" + +** Module: "GDI32.dll" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\gdi32.lib" + +** Module: "build\intel\mt_obj\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strlen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strdup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_cmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wtombenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsnbico.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\days.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getenv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstombs.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\iswctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\towupper.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tzset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\timeset.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\constpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stricmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcstol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_loc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\xtoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lconv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inithelp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strftime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ldexp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chkstk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\tenpow.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\getqloc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strpbrk.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strcspn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initcoll.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initctyp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initmon.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\initnum.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\inittime.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieeemisc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\frnd.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\util.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\txtmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\chsize.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\closeall.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\matherr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpexcept.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\x10fout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\strgtold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\mantold.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_map.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\setlocal.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wcslen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata2.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sbheap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\adj_fdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\powhlp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ungetc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbtowc.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crtmbox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cenvarg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dospawn.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbschr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbsrchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\access.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ncommode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\commit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\osfinfo.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ullrem.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ulldiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\wctomb.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_file.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isatty.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_getbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0init.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_str.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87except.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87disp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cfout.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_fptostr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\intrncvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tolower.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0fp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ieee87.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\memmove.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\validate.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\unhandld.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_newmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\errmode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\aw_env.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mbctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdargv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stdenvp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\heapinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\hooks.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87tran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winxfltr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\input.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_sftbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0msg.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\winsig.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnve.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\stream.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_open.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dosmap.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ioinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\write.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\read.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_filbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fflush.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_freebuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\close.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\mlock.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\output.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\_flsbuf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\crt0dat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\llmul.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\nlsdata1.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\isctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ctype.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87cdisp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87triga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\cvt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\cmiscdat.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\testfdiv.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fp8.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\tidtable.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\lowhelpr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\frame.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup3.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\new_mode.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\handler.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\dllcrt0.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecctr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ehvecdtr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctran.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\threadex.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\rand.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sscanf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\vsprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\abort.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\spawnl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fopen.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fseek.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\ftell.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fwrite.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fread.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\fclose.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strchr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strstr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\ftol.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\sprintf.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strncpy.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\onexit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\strtok.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\atox.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\87ctriga.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "..\build\intel\mt_obj\fpinit.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\exsup.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\trnsctrl.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\mt_obj\purevirt.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\LIBCMT.lib" + +** Module: "build\intel\st_obj\oldnames\strupr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\itoa.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strlwr.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strcmpi.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + +** Module: "build\intel\st_obj\oldnames\strnicmp.obj" from "C:\Users\Christian\Downloads\MSVC420-master\bin\\..\LIB\OLDNAMES.lib" + + +*** STRINGTABLE + +00000001 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewroi.cpp +00000041 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../tgl/tglvector.h +00000088 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewmanager.cpp +000000cc C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\viewlodlist.cpp +00000110 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xtree +00000152 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager\../realtime/lodlist.h +0000019c C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.cpp +000001dd C:\Users\Christian\Downloads\isle\LEGO1\towtrackmissionstate.h +0000021c C:\Users\Christian\Downloads\isle\LEGO1\towtrack.cpp +00000251 C:\Users\Christian\Downloads\isle\LEGO1\towtrack.h +00000284 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\view.cpp +000002bf C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\unk.cpp +000002f9 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\texture.cpp +00000337 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\renderer.cpp +00000376 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\mesh.cpp +000003b1 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\light.cpp +000003ed C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\group.cpp +00000429 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\../tgl.h +00000464 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\device.cpp +000004a1 C:\Users\Christian\Downloads\isle\LEGO1\tgl\d3drm\camera.cpp +000004de C:\Users\Christian\Downloads\isle\LEGO1\skateboard.cpp +00000515 C:\Users\Christian\Downloads\isle\LEGO1\skateboard.h +0000054a C:\Users\Christian\Downloads\isle\LEGO1\scorestate.cpp +00000581 C:\Users\Christian\Downloads\isle\LEGO1\score.cpp +000005b3 C:\Users\Christian\Downloads\isle\LEGO1\score.h +000005e3 C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.cpp +00000620 C:\Users\Christian\Downloads\isle\LEGO1\registrationbook.h +0000065b C:\Users\Christian\Downloads\isle\LEGO1\realtime\vector.cpp +00000697 C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtimeview.cpp +000006d9 C:\Users\Christian\Downloads\isle\LEGO1\realtime\realtime.cpp +00000717 C:\Users\Christian\Downloads\isle\LEGO1\realtime\orientableroi.cpp +0000075a C:\Users\Christian\Downloads\isle\LEGO1\realtime\matrix.cpp +00000796 C:\Users\Christian\Downloads\isle\LEGO1\radiostate.cpp +000007cd C:\Users\Christian\Downloads\isle\LEGO1\radiostate.h +00000802 C:\Users\Christian\Downloads\isle\LEGO1\radio.cpp +00000834 C:\Users\Christian\Downloads\isle\LEGO1\radio.h +00000864 C:\Users\Christian\Downloads\isle\LEGO1\racestate.cpp +0000089a C:\Users\Christian\Downloads\isle\LEGO1\racestate.h +000008ce C:\Users\Christian\Downloads\isle\LEGO1\racecar.cpp +00000902 C:\Users\Christian\Downloads\isle\LEGO1\racecar.h +00000934 C:\Users\Christian\Downloads\isle\LEGO1\policestate.cpp +0000096c C:\Users\Christian\Downloads\isle\LEGO1\policestate.h +000009a2 C:\Users\Christian\Downloads\isle\LEGO1\police.cpp +000009d5 C:\Users\Christian\Downloads\isle\LEGO1\police.h +00000a06 C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.cpp +00000a40 C:\Users\Christian\Downloads\isle\LEGO1\pizzeriastate.h +00000a78 C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.cpp +00000ab6 C:\Users\Christian\Downloads\isle\LEGO1\pizza.cpp +00000ae8 C:\Users\Christian\Downloads\isle\LEGO1\pizza.h +00000b18 C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.cpp +00000b54 C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.cpp +00000b91 C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparamflags.cpp +00000bcf C:\Users\Christian\Downloads\isle\LEGO1\mxvideoparam.cpp +00000c08 C:\Users\Christian\Downloads\isle\LEGO1\mxvideomanager.cpp +00000c43 C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.cpp +00000c7f C:\Users\Christian\Downloads\isle\LEGO1\mxhashtable.h +00000cb5 C:\Users\Christian\Downloads\isle\LEGO1\mxvariable.cpp +00000cec C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d7c88.cpp +00000d2a C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.cpp +00000d6a C:\Users\Christian\Downloads\isle\LEGO1\mxtransitionmanager.h +00000da8 C:\Users\Christian\Downloads\isle\LEGO1\mxtimer.cpp +00000ddc C:\Users\Christian\Downloads\isle\LEGO1\mxticklemanager.cpp +00000e18 C:\Users\Christian\Downloads\isle\LEGO1\mxthread.cpp +00000e4d C:\Users\Christian\Downloads\isle\LEGO1\mxstring.cpp +00000e82 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.cpp +00000ebf C:\Users\Christian\Downloads\isle\LEGO1\mxstreamlist.cpp +00000ef8 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.cpp +00000f2f C:\Users\Christian\Downloads\isle\LEGO1\mxstreamer.h +00000f64 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\list +00000fa5 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.h +00000fe5 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.cpp +00001024 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamcontroller.h +00001061 C:\Users\Christian\Downloads\isle\LEGO1\mxnextactiondatastart.h +000010a1 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.cpp +000010db C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.cpp +00001118 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.cpp +00001155 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundmanager.cpp +00001190 C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.cpp +000011cb C:\Users\Christian\Downloads\isle\LEGO1\mxsmkpresenter.h +00001204 C:\Users\Christian\Downloads\isle\LEGO1\mxcollection.h +0000123b C:\Users\Christian\Downloads\isle\LEGO1\mxlist.h +0000126c C:\Users\Christian\Downloads\isle\LEGO1\mxsmack.cpp +000012a0 C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.cpp +000012d8 C:\Users\Christian\Downloads\isle\LEGO1\mxscheduler.cpp +00001310 C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.cpp +0000134b C:\Users\Christian\Downloads\isle\LEGO1\mxregioncursor.h +00001384 C:\Users\Christian\Downloads\isle\LEGO1\mxregion.cpp +000013b9 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.cpp +000013f9 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamprovider.h +00001437 C:\Users\Christian\Downloads\isle\LEGO1\mxramstreamcontroller.cpp +00001479 C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.cpp +000014b1 C:\Users\Christian\Downloads\isle\LEGO1\mxpalette.cpp +000014e7 C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateparam.cpp +00001525 C:\Users\Christian\Downloads\isle\LEGO1\mxomnicreateflags.cpp +00001563 C:\Users\Christian\Downloads\isle\LEGO1\mxomni.cpp +00001596 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xstddef +000015da C:\Users\Christian\Downloads\isle\LEGO1\mxvariabletable.h +00001614 C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.cpp +00001650 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.h +00001691 C:\Users\Christian\Downloads\isle\LEGO1\mxstillpresenter.h +000016cc C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.cpp +0000170c C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationmanager.cpp +0000174e C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.cpp +0000178b C:\Users\Christian\Downloads\isle\LEGO1\mxmusicpresenter.h +000017c6 C:\Users\Christian\Downloads\isle\LEGO1\mxmusicmanager.cpp +00001801 C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.cpp +0000183d C:\Users\Christian\Downloads\isle\LEGO1\mxmidipresenter.h +00001877 C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.cpp +000018b4 C:\Users\Christian\Downloads\isle\LEGO1\mxmediamanager.cpp +000018ef C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.cpp +00001931 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingsmkpresenter.h +00001971 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingmidipresenter.cpp +000019b4 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.cpp +000019f6 C:\Users\Christian\Downloads\isle\LEGO1\mxloopingflcpresenter.h +00001a36 C:\Users\Christian\Downloads\isle\LEGO1\mxioinfo.cpp +00001a6b C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.cpp +00001aa6 C:\Users\Christian\Downloads\isle\LEGO1\mxflcpresenter.h +00001adf C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.cpp +00001b1c C:\Users\Christian\Downloads\isle\LEGO1\mxeventpresenter.h +00001b57 C:\Users\Christian\Downloads\isle\LEGO1\mxeventmanager.cpp +00001b92 C:\Users\Christian\Downloads\isle\LEGO1\mxentity.cpp +00001bc7 C:\Users\Christian\Downloads\isle\LEGO1\mxentity.h +00001bfa C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.cpp +00001c35 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunklist.h +00001c71 C:\Users\Christian\Downloads\isle\LEGO1\mxdssubscriber.h +00001caa C:\Users\Christian\Downloads\isle\LEGO1\mxdsstreamingaction.cpp +00001cea C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.cpp +00001d20 C:\Users\Christian\Downloads\isle\LEGO1\mxdsstill.h +00001d54 C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.cpp +00001d8b C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.cpp +00001dc1 C:\Users\Christian\Downloads\isle\LEGO1\mxdssound.h +00001df5 C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.cpp +00001e32 C:\Users\Christian\Downloads\isle\LEGO1\mxdsserialaction.h +00001e6d C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.cpp +00001eaa C:\Users\Christian\Downloads\isle\LEGO1\mxdsselectaction.h +00001ee5 C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.cpp +00001f24 C:\Users\Christian\Downloads\isle\LEGO1\mxdsparallelaction.h +00001f61 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.cpp +00001f9e C:\Users\Christian\Downloads\isle\LEGO1\mxdsobjectaction.h +00001fd9 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.cpp +00002010 C:\Users\Christian\Downloads\isle\LEGO1\mxdsobject.h +00002045 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.cpp +00002081 C:\Users\Christian\Downloads\isle\LEGO1\mxdsactionlist.h +000020ba C:\Users\Christian\Downloads\isle\LEGO1\mxdsmultiaction.h +000020f4 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.cpp +00002130 C:\Users\Christian\Downloads\isle\LEGO1\mxdsmediaaction.h +0000216a C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.cpp +0000219f C:\Users\Christian\Downloads\isle\LEGO1\mxdsfile.h +000021d2 C:\Users\Christian\Downloads\isle\LEGO1\mxdssource.h +00002207 C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.cpp +0000223d C:\Users\Christian\Downloads\isle\LEGO1\mxdsevent.h +00002271 C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.cpp +000022a7 C:\Users\Christian\Downloads\isle\LEGO1\mxdschunk.h +000022db C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.cpp +00002312 C:\Users\Christian\Downloads\isle\LEGO1\mxdsbuffer.h +00002347 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamchunk.h +0000237f C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.cpp +000023b4 C:\Users\Christian\Downloads\isle\LEGO1\mxdsanim.h +000023e7 C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.cpp +0000241e C:\Users\Christian\Downloads\isle\LEGO1\mxdsaction.h +00002453 C:\Users\Christian\Downloads\isle\LEGO1\mxdisplaysurface.cpp +00002490 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.cpp +000024d1 C:\Users\Christian\Downloads\isle\LEGO1\mxstreamprovider.h +0000250c C:\Users\Christian\Downloads\isle\LEGO1\mxsemaphore.h +00002542 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamprovider.h +00002581 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.cpp +000025c4 C:\Users\Christian\Downloads\isle\LEGO1\mxdiskstreamcontroller.h +00002605 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xmemory +00002649 C:\Users\Christian\Downloads\isle\LEGO1\mxdirectdraw.cpp +00002682 C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.cpp +000026b9 C:\Users\Christian\Downloads\isle\LEGO1\mxcriticalsection.cpp +000026f7 C:\Users\Christian\Downloads\isle\LEGO1\mxcore.cpp +0000272a C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.cpp +00002769 C:\Users\Christian\Downloads\isle\LEGO1\mxcontrolpresenter.h +000027a6 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.cpp +000027e7 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositepresenter.h +00002826 C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.cpp +0000286c C:\Users\Christian\Downloads\isle\LEGO1\mxcompositemediapresenter.h +000028b0 C:\Users\Christian\Downloads\isle\LEGO1\mxbitmap.cpp +000028e5 C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.cpp +0000292a C:\Users\Christian\Downloads\isle\LEGO1\mxbackgroundaudiomanager.h +0000296d C:\Users\Christian\Downloads\isle\LEGO1\mxautolocker.cpp +000029a6 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.cpp +000029e3 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiomanager.cpp +00002a1e C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.cpp +00002a5a C:\Users\Christian\Downloads\isle\LEGO1\mxatomid.cpp +00002a8f C:\Users\Christian\Downloads\isle\LEGO1\mxatomidcounter.h +00002ac9 C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.cpp +00002b0f C:\Users\Christian\Downloads\isle\LEGO1\mxactionnotificationparam.h +00002b53 C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.cpp +00002b8a C:\Users\Christian\Downloads\isle\LEGO1\motorcycle.h +00002bbf C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.cpp +00002bfe C:\Users\Christian\Downloads\isle\LEGO1\legoworldpresenter.h +00002c3b C:\Users\Christian\Downloads\isle\LEGO1\legoworld.cpp +00002c71 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontrollerlist.h +00002cb2 C:\Users\Christian\Downloads\isle\LEGO1\mxpresenterlist.h +00002cec C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.cpp +00002d29 C:\Users\Christian\Downloads\isle\LEGO1\legovideomanager.h +00002d64 C:\Users\Christian\Downloads\isle\LEGO1\mxdirect3d.h +00002d99 C:\Users\Christian\Downloads\isle\LEGO1\mxunknown100d9d00.h +00002dd5 C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.cpp +00002e17 C:\Users\Christian\Downloads\isle\LEGO1\legovehiclebuildstate.h +00002e57 C:\Users\Christian\Downloads\isle\LEGO1\legounksavedatawriter.cpp +00002e99 C:\Users\Christian\Downloads\isle\LEGO1\legoutil.cpp +00002ece C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.cpp +00002f0f C:\Users\Christian\Downloads\isle\LEGO1\legostream.cpp +00002f46 C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocnum +00002f8a C:\Users\Christian\Downloads\MSVC420-master\bin\\..\INCLUDE\xlocale +00002fce C:\Users\Christian\Downloads\isle\LEGO1\legostate.cpp +00003004 C:\Users\Christian\Downloads\isle\LEGO1\legosoundmanager.cpp +00003041 C:\Users\Christian\Downloads\isle\LEGO1\legoroi.cpp +00003075 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/vector.h +000030be C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/matrix.h +00003107 C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/roi.h +0000314d C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/../realtime/orientableroi.h +0000319d C:\Users\Christian\Downloads\isle\LEGO1\viewmanager/viewroi.h +000031db C:\Users\Christian\Downloads\isle\LEGO1\legorace.cpp +00003210 C:\Users\Christian\Downloads\isle\LEGO1\legorace.h +00003243 C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.cpp +00003280 C:\Users\Christian\Downloads\isle\LEGO1\legoplantmanager.h +000032bb C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.cpp +000032fc C:\Users\Christian\Downloads\isle\LEGO1\legophonemepresenter.h +0000333b C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.cpp +00003379 C:\Users\Christian\Downloads\isle\LEGO1\legopathpresenter.h +000033b5 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.cpp +000033f4 C:\Users\Christian\Downloads\isle\LEGO1\legopathcontroller.h +00003431 C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.cpp +0000346b C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.cpp +000034a9 C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.cpp +000034ea C:\Users\Christian\Downloads\isle\LEGO1\legopalettepresenter.h +00003529 C:\Users\Christian\Downloads\isle\LEGO1\legostream.h +0000355e C:\Users\Christian\Downloads\isle\LEGO1\legoomni.cpp +00003593 C:\Users\Christian\Downloads\isle\LEGO1\legoomni.h +000035c6 C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.h +000035fb C:\Users\Christian\Downloads\isle\LEGO1\legoworldlist.h +00003633 C:\Users\Christian\Downloads\isle\LEGO1\mxrect32.h +00003666 C:\Users\Christian\Downloads\isle\LEGO1\legoobjectfactory.cpp +000036a4 C:\Users\Christian\Downloads\isle\LEGO1\mxobjectfactory.h +000036de C:\Users\Christian\Downloads\isle\LEGO1\realtime/vector.h +00003718 C:\Users\Christian\Downloads\isle\LEGO1\legoworld.h +0000374c C:\Users\Christian\Downloads\isle\LEGO1\legopathactor.h +00003784 C:\Users\Christian\Downloads\isle\LEGO1\helicopterstate.h +000037be C:\Users\Christian\Downloads\isle\LEGO1\lego3dwavepresenter.h +000037fc C:\Users\Christian\Downloads\isle\LEGO1\legoraceactor.h +00003834 C:\Users\Christian\Downloads\isle\LEGO1\legocarraceactor.h +0000386f C:\Users\Christian\Downloads\isle\LEGO1\legoact2state.h +000038a7 C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.h +000038ec C:\Users\Christian\Downloads\isle\LEGO1\legoactorpresenter.h +00003929 C:\Users\Christian\Downloads\isle\LEGO1\legojetskiraceactor.h +00003967 C:\Users\Christian\Downloads\isle\LEGO1\legojetski.h +0000399c C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.h +000039d9 C:\Users\Christian\Downloads\isle\LEGO1\legopartpresenter.h +00003a15 C:\Users\Christian\Downloads\isle\LEGO1\legoracecar.h +00003a4b C:\Users\Christian\Downloads\isle\LEGO1\legotexturepresenter.h +00003a8a C:\Users\Christian\Downloads\isle\LEGO1\isleactor.h +00003abe C:\Users\Christian\Downloads\isle\LEGO1\pizzamissionstate.h +00003afa C:\Users\Christian\Downloads\isle\LEGO1\scorestate.h +00003b2f C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.h +00003b6b C:\Users\Christian\Downloads\isle\LEGO1\act3state.h +00003b9f C:\Users\Christian\Downloads\isle\LEGO1\doors.h +00003bcf C:\Users\Christian\Downloads\isle\LEGO1\act3actor.h +00003c03 C:\Users\Christian\Downloads\isle\LEGO1\act3shark.h +00003c37 C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.h +00003c72 C:\Users\Christian\Downloads\isle\LEGO1\bumpbouy.h +00003ca5 C:\Users\Christian\Downloads\isle\LEGO1\carracestate.h +00003cdc C:\Users\Christian\Downloads\isle\LEGO1\gasstationentity.h +00003d17 C:\Users\Christian\Downloads\isle\LEGO1\hospitalentity.h +00003d50 C:\Users\Christian\Downloads\isle\LEGO1\infocenterentity.h +00003d8b C:\Users\Christian\Downloads\isle\LEGO1\jetskiracestate.h +00003dc5 C:\Users\Christian\Downloads\isle\LEGO1\pizzeria.h +00003df8 C:\Users\Christian\Downloads\isle\LEGO1\policeentity.h +00003e2f C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.h +00003e66 C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.cpp +00003ea4 C:\Users\Christian\Downloads\isle\LEGO1\legonavcontroller.h +00003ee0 C:\Users\Christian\Downloads\isle\LEGO1\legomodelpresenter.cpp +00003f1f C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.cpp +00003f67 C:\Users\Christian\Downloads\isle\LEGO1\legolocomotionanimpresenter.h +00003fad C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.cpp +00003ff5 C:\Users\Christian\Downloads\isle\LEGO1\mxaudiopresenter.h +00004030 C:\Users\Christian\Downloads\isle\LEGO1\mxsoundpresenter.h +0000406b C:\Users\Christian\Downloads\isle\LEGO1\mxwavepresenter.h +000040a5 C:\Users\Christian\Downloads\isle\LEGO1\legoloadcachesoundpresenter.h +000040eb C:\Users\Christian\Downloads\isle\LEGO1\legoinputmanager.cpp +00004128 C:\Users\Christian\Downloads\isle\LEGO1\mxcore.h +00004159 C:\Users\Christian\Downloads\isle\LEGO1\legoeventnotificationparam.h +0000419e C:\Users\Christian\Downloads\isle\LEGO1\mxnotificationparam.h +000041dc C:\Users\Christian\Downloads\isle\LEGO1\mxparam.h +0000420e C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.cpp +00004250 C:\Users\Christian\Downloads\isle\LEGO1\legoloopinganimpresenter.h +00004293 C:\Users\Christian\Downloads\isle\LEGO1\legohideanimpresenter.h +000042d3 C:\Users\Christian\Downloads\isle\LEGO1\legogamestate.cpp +0000430d C:\Users\Christian\Downloads\isle\LEGO1\legofullscreenmovie.cpp +0000434d C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.cpp +00004391 C:\Users\Christian\Downloads\isle\LEGO1\legoflctexturepresenter.h +000043d3 C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.cpp +00004413 C:\Users\Christian\Downloads\isle\LEGO1\legoentitypresenter.h +00004451 C:\Users\Christian\Downloads\isle\LEGO1\legoentity.cpp +00004488 C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.cpp +000044c7 C:\Users\Christian\Downloads\isle\LEGO1\legocontrolmanager.h +00004504 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.cpp +0000454a C:\Users\Christian\Downloads\isle\LEGO1\legocarbuildanimpresenter.h +0000458e C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.cpp +000045c7 C:\Users\Christian\Downloads\isle\LEGO1\legocarbuild.h +000045fe C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.cpp +0000463f C:\Users\Christian\Downloads\isle\LEGO1\legocameracontroller.h +0000467e C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.cpp +000046b9 C:\Users\Christian\Downloads\isle\LEGO1\legocachesound.h +000046f2 C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.cpp +00004732 C:\Users\Christian\Downloads\isle\LEGO1\legobuildingmanager.h +00004770 C:\Users\Christian\Downloads\isle\LEGO1\legobackgroundcolor.cpp +000047b0 C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.cpp +000047ee C:\Users\Christian\Downloads\isle\LEGO1\mxpresenter.h +00004824 C:\Users\Christian\Downloads\isle\LEGO1\mxmediapresenter.h +0000485f C:\Users\Christian\Downloads\isle\LEGO1\mxvideopresenter.h +0000489a C:\Users\Christian\Downloads\isle\LEGO1\legoanimpresenter.h +000048d6 C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.cpp +00004916 C:\Users\Christian\Downloads\isle\LEGO1\legoanimmmpresenter.h +00004954 C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.cpp +00004995 C:\Users\Christian\Downloads\isle\LEGO1\legoanimationmanager.h +000049d4 C:\Users\Christian\Downloads\isle\LEGO1\legoactor.cpp +00004a0a C:\Users\Christian\Downloads\isle\LEGO1\legoactor.h +00004a3e C:\Users\Christian\Downloads\isle\LEGO1\legoactioncontrolpresenter.cpp +00004a85 C:\Users\Christian\Downloads\isle\LEGO1\lego3dview.cpp +00004abc C:\Users\Christian\Downloads\isle\LEGO1\lego3dmanager.cpp +00004af6 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxstate.cpp +00004b2f C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.cpp +00004b69 C:\Users\Christian\Downloads\isle\LEGO1\jukeboxentity.h +00004ba1 C:\Users\Christian\Downloads\isle\LEGO1\jukebox.cpp +00004bd5 C:\Users\Christian\Downloads\isle\LEGO1\jukebox.h +00004c07 C:\Users\Christian\Downloads\isle\LEGO1\jetski.cpp +00004c3a C:\Users\Christian\Downloads\isle\LEGO1\jetski.h +00004c6b C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.cpp +00004ca5 C:\Users\Christian\Downloads\isle\LEGO1\isle.cpp +00004cd6 C:\Users\Christian\Downloads\isle\LEGO1\isle.h +00004d05 C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.cpp +00004d41 C:\Users\Christian\Downloads\isle\LEGO1\infocenterstate.h +00004d7b C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.cpp +00004db6 C:\Users\Christian\Downloads\isle\LEGO1\infocenterdoor.h +00004def C:\Users\Christian\Downloads\isle\LEGO1\infocenter.cpp +00004e26 C:\Users\Christian\Downloads\isle\LEGO1\infocenter.h +00004e5b C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.cpp +00004e95 C:\Users\Christian\Downloads\isle\LEGO1\hospitalstate.h +00004ecd C:\Users\Christian\Downloads\isle\LEGO1\hospital.cpp +00004f02 C:\Users\Christian\Downloads\isle\LEGO1\hospital.h +00004f35 C:\Users\Christian\Downloads\isle\LEGO1\historybook.cpp +00004f6d C:\Users\Christian\Downloads\isle\LEGO1\historybook.h +00004fa3 C:\Users\Christian\Downloads\isle\LEGO1\helicopter.cpp +00004fda C:\Users\Christian\Downloads\isle\LEGO1\helicopter.h +0000500f C:\Users\Christian\Downloads\isle\LEGO1\gifmanager.cpp +00005046 C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.cpp +00005082 C:\Users\Christian\Downloads\isle\LEGO1\gasstationstate.h +000050bc C:\Users\Christian\Downloads\isle\LEGO1\gasstation.cpp +000050f3 C:\Users\Christian\Downloads\isle\LEGO1\gasstation.h +00005128 C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.cpp +00005163 C:\Users\Christian\Downloads\isle\LEGO1\elevatorbottom.h +0000519c C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.cpp +000051d2 C:\Users\Christian\Downloads\isle\LEGO1\dunebuggy.h +00005206 C:\Users\Christian\Downloads\isle\LEGO1\dllmain.cpp +0000523a C:\Users\Christian\Downloads\isle\LEGO1\carrace.cpp +0000526e C:\Users\Christian\Downloads\isle\LEGO1\carrace.h +000052a0 C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.cpp +000052db C:\Users\Christian\Downloads\isle\LEGO1\legoentity.h +00005310 C:\Users\Christian\Downloads\isle\LEGO1\buildingentity.h +00005349 C:\Users\Christian\Downloads\isle\LEGO1\bike.cpp +0000537a C:\Users\Christian\Downloads\isle\LEGO1\bike.h +000053a9 C:\Users\Christian\Downloads\isle\LEGO1\beachhouseentity.cpp +000053e6 C:\Users\Christian\Downloads\isle\LEGO1\animstate.cpp +0000541c C:\Users\Christian\Downloads\isle\LEGO1\animstate.h +00005450 C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.cpp +00005492 C:\Users\Christian\Downloads\isle\LEGO1\ambulancemissionstate.h +000054d2 C:\Users\Christian\Downloads\isle\LEGO1\ambulance.cpp +00005508 C:\Users\Christian\Downloads\isle\LEGO1\islepathactor.h +00005540 C:\Users\Christian\Downloads\isle\LEGO1\ambulance.h +00005574 C:\Users\Christian\Downloads\isle\LEGO1\act3state.cpp +000055aa C:\Users\Christian\Downloads\isle\LEGO1\act3.cpp +000055db C:\Users\Christian\Downloads\isle\LEGO1\act3.h +0000560a C:\Users\Christian\Downloads\isle\LEGO1\act2policestation.cpp +00005648 C:\Users\Christian\Downloads\isle\LEGO1\act2brick.cpp +0000567e C:\Users\Christian\Downloads\isle\LEGO1\act2brick.h +000056b2 C:\Users\Christian\Downloads\isle\LEGO1\act1state.cpp +000056e8 C:\Users\Christian\Downloads\isle\LEGO1\legostate.h +0000571c C:\Users\Christian\Downloads\isle\LEGO1\act1state.h +00005750 C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\tglsurface.cpp +00005791 C:\Users\Christian\Downloads\isle\LEGO1\3dmanager\../mxdirectx/mxstopwatch.h